hexsha
stringlengths
40
40
size
int64
3
1.03M
ext
stringclasses
10 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
972
max_stars_repo_name
stringlengths
6
130
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
972
max_issues_repo_name
stringlengths
6
130
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
972
max_forks_repo_name
stringlengths
6
130
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.03M
avg_line_length
float64
1.13
941k
max_line_length
int64
2
941k
alphanum_fraction
float64
0
1
e65f4e0b4ec626358f179bd13aaec4faa3109855
995
py
Python
core/migrations/0005_auto_20190726_2347.py
thiagomurtinho/djangoStudies
c17e922980f5f2944616fb6f6c7365f19ce07016
[ "MIT" ]
null
null
null
core/migrations/0005_auto_20190726_2347.py
thiagomurtinho/djangoStudies
c17e922980f5f2944616fb6f6c7365f19ce07016
[ "MIT" ]
null
null
null
core/migrations/0005_auto_20190726_2347.py
thiagomurtinho/djangoStudies
c17e922980f5f2944616fb6f6c7365f19ce07016
[ "MIT" ]
null
null
null
# Generated by Django 2.2.3 on 2019-07-27 02:47 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('core', '0004_rotarymotion'), ] operations = [ migrations.AlterField( model_name='rotarymotion', name='vehicle', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='vehicleRotary', to='core.Vehicle'), ), migrations.CreateModel( name='Monthly', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('checkin', models.DateField()), ('priceMouth', models.DecimalField(decimal_places=2, max_digits=6)), ('vehicle', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='vehicleMounth', to='core.Vehicle')), ], ), ]
34.310345
141
0.61407
4ff53b809639ed126624d26aab8a5fed7dc71b97
2,011
py
Python
ucsmsdk/mometa/mgmt/MgmtSwPersonalities.py
Kego/ucsmsdk
244f283a5c295cf746110bb96686d079b19927ce
[ "Apache-2.0" ]
78
2015-11-30T14:10:05.000Z
2022-02-13T00:29:08.000Z
ucsmsdk/mometa/mgmt/MgmtSwPersonalities.py
Kego/ucsmsdk
244f283a5c295cf746110bb96686d079b19927ce
[ "Apache-2.0" ]
113
2015-11-20T09:42:46.000Z
2022-03-16T16:53:29.000Z
ucsmsdk/mometa/mgmt/MgmtSwPersonalities.py
Kego/ucsmsdk
244f283a5c295cf746110bb96686d079b19927ce
[ "Apache-2.0" ]
86
2015-12-12T08:22:18.000Z
2022-01-23T03:56:34.000Z
"""This module contains the general information for MgmtSwPersonalities ManagedObject.""" from ...ucsmo import ManagedObject from ...ucscoremeta import MoPropertyMeta, MoMeta from ...ucsmeta import VersionMeta class MgmtSwPersonalitiesConsts: pass class MgmtSwPersonalities(ManagedObject): """This is MgmtSwPersonalities class.""" consts = MgmtSwPersonalitiesConsts() naming_props = set([]) mo_meta = MoMeta("MgmtSwPersonalities", "mgmtSwPersonalities", "sw-personalities", VersionMeta.Version421a, "InputOutput", 0x1f, [], ["admin"], ['mgmtController'], ['mgmtSwPersonality'], [None]) prop_meta = { "child_action": MoPropertyMeta("child_action", "childAction", "string", VersionMeta.Version421a, MoPropertyMeta.INTERNAL, 0x2, None, None, r"""((deleteAll|ignore|deleteNonPresent),){0,2}(deleteAll|ignore|deleteNonPresent){0,1}""", [], []), "dn": MoPropertyMeta("dn", "dn", "string", VersionMeta.Version421a, MoPropertyMeta.READ_ONLY, 0x4, 0, 256, None, [], []), "rn": MoPropertyMeta("rn", "rn", "string", VersionMeta.Version421a, MoPropertyMeta.READ_ONLY, 0x8, 0, 256, None, [], []), "sacl": MoPropertyMeta("sacl", "sacl", "string", VersionMeta.Version421a, MoPropertyMeta.READ_ONLY, None, None, None, r"""((none|del|mod|addchild|cascade),){0,4}(none|del|mod|addchild|cascade){0,1}""", [], []), "status": MoPropertyMeta("status", "status", "string", VersionMeta.Version421a, MoPropertyMeta.READ_WRITE, 0x10, None, None, r"""((removed|created|modified|deleted),){0,3}(removed|created|modified|deleted){0,1}""", [], []), } prop_map = { "childAction": "child_action", "dn": "dn", "rn": "rn", "sacl": "sacl", "status": "status", } def __init__(self, parent_mo_or_dn, **kwargs): self._dirty_mask = 0 self.child_action = None self.sacl = None self.status = None ManagedObject.__init__(self, "MgmtSwPersonalities", parent_mo_or_dn, **kwargs)
46.767442
247
0.664346
806b477dac0de2416f1f2e68495076bbf833f450
4,110
py
Python
frappe/core/page/permission_manager/permission_manager.py
nehasacher143/frappe
2a2bdf722108b983f5116fe43ac6a5c4c290e01a
[ "MIT" ]
null
null
null
frappe/core/page/permission_manager/permission_manager.py
nehasacher143/frappe
2a2bdf722108b983f5116fe43ac6a5c4c290e01a
[ "MIT" ]
null
null
null
frappe/core/page/permission_manager/permission_manager.py
nehasacher143/frappe
2a2bdf722108b983f5116fe43ac6a5c4c290e01a
[ "MIT" ]
null
null
null
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors # MIT License. See license.txt from __future__ import unicode_literals import frappe from frappe import _ import frappe.defaults from frappe.modules.import_file import get_file_path, read_doc_from_file from frappe.translate import send_translations from frappe.core.doctype.doctype.doctype import (clear_permissions_cache, validate_permissions_for_doctype) from frappe.permissions import (reset_perms, get_linked_doctypes, get_all_perms, setup_custom_perms, add_permission, update_permission_property) not_allowed_in_permission_manager = ["DocType", "Patch Log", "Module Def", "Transaction Log"] @frappe.whitelist() def get_roles_and_doctypes(): frappe.only_for("System Manager") send_translations(frappe.get_lang_dict("doctype", "DocPerm")) active_domains = frappe.get_active_domains() doctypes = frappe.get_all("DocType", filters={ "istable": 0, "name": ("not in", ",".join(not_allowed_in_permission_manager)), }, or_filters={ "ifnull(restrict_to_domain, '')": "", "restrict_to_domain": ("in", active_domains) }, fields=["name"]) roles = frappe.get_all("Role", filters={ "name": ("not in", "Administrator"), "disabled": 0, }, or_filters={ "ifnull(restrict_to_domain, '')": "", "restrict_to_domain": ("in", active_domains) }, fields=["name"]) doctypes_list = [ {"label":_(d.get("name")), "value":d.get("name")} for d in doctypes] roles_list = [ {"label":_(d.get("name")), "value":d.get("name")} for d in roles] return { "doctypes": sorted(doctypes_list, key=lambda d: d['label']), "roles": sorted(roles_list, key=lambda d: d['label']) } @frappe.whitelist() def get_permissions(doctype=None, role=None): frappe.only_for("System Manager") if role: out = get_all_perms(role) if doctype: out = [p for p in out if p.parent == doctype] else: out = frappe.get_all('Custom DocPerm', fields='*', filters=dict(parent = doctype), order_by="permlevel") if not out: out = frappe.get_all('DocPerm', fields='*', filters=dict(parent = doctype), order_by="permlevel") linked_doctypes = {} for d in out: if not d.parent in linked_doctypes: linked_doctypes[d.parent] = get_linked_doctypes(d.parent) d.linked_doctypes = linked_doctypes[d.parent] meta = frappe.get_meta(d.parent) if meta: d.is_submittable = meta.is_submittable return out @frappe.whitelist() def add(parent, role, permlevel): frappe.only_for("System Manager") add_permission(parent, role, permlevel) @frappe.whitelist() def update(doctype, role, permlevel, ptype, value=None): frappe.only_for("System Manager") out = update_permission_property(doctype, role, permlevel, ptype, value) return 'refresh' if out else None @frappe.whitelist() def remove(doctype, role, permlevel): frappe.only_for("System Manager") setup_custom_perms(doctype) name = frappe.get_value('Custom DocPerm', dict(parent=doctype, role=role, permlevel=permlevel)) frappe.db.sql('delete from `tabCustom DocPerm` where name=%s', name) if not frappe.get_all('Custom DocPerm', dict(parent=doctype)): frappe.throw(_('There must be atleast one permission rule.'), title=_('Cannot Remove')) validate_permissions_for_doctype(doctype, for_remove=True) @frappe.whitelist() def reset(doctype): frappe.only_for("System Manager") reset_perms(doctype) clear_permissions_cache(doctype) @frappe.whitelist() def get_users_with_role(role): frappe.only_for("System Manager") return [p for p in frappe.db.sql("""select distinct tabUser.name, tabUser.first_name from `tabHas Role`, tabUser where `tabHas Role`.role=%s and tabUser.name != "Administrator" and `tabHas Role`.parent = tabUser.name and tabUser.enabled=1""", role)] @frappe.whitelist() def get_standard_permissions(doctype): frappe.only_for("System Manager") meta = frappe.get_meta(doctype) if meta.custom: doc = frappe.get_doc('DocType', doctype) return [p.as_dict() for p in doc.permissions] else: # also used to setup permissions via patch path = get_file_path(meta.module, "DocType", doctype) return read_doc_from_file(path).get("permissions")
33.414634
106
0.739416
de6039de046440d03e93f7b721848d8b9a466894
682
py
Python
src/python/pants/backend/codegen/protobuf/python/register.py
jperkelens/pants
b7ad997b5ef9175cc5e22e36574d8590bc8da120
[ "Apache-2.0" ]
null
null
null
src/python/pants/backend/codegen/protobuf/python/register.py
jperkelens/pants
b7ad997b5ef9175cc5e22e36574d8590bc8da120
[ "Apache-2.0" ]
null
null
null
src/python/pants/backend/codegen/protobuf/python/register.py
jperkelens/pants
b7ad997b5ef9175cc5e22e36574d8590bc8da120
[ "Apache-2.0" ]
null
null
null
# Copyright 2020 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). """Generate Python sources from Protocol Buffers (Protobufs). See https://www.pantsbuild.org/docs/protobuf. """ from pants.backend.codegen.protobuf.python import additional_fields from pants.backend.codegen.protobuf.python.rules import rules as python_rules from pants.backend.codegen.protobuf.target_types import ProtobufLibrary from pants.backend.codegen.protobuf.target_types import rules as target_rules def rules(): return [*additional_fields.rules(), *python_rules(), *target_rules()] def target_types(): return [ProtobufLibrary]
32.47619
77
0.794721
73535e94db50f016b826f552c28c7cfba43258c2
15,089
py
Python
test/test_optimize.py
odidev/cmdstanpy
49f00baff21bfd11541b3c98a5f2fb36e6b7d9ce
[ "BSD-3-Clause" ]
null
null
null
test/test_optimize.py
odidev/cmdstanpy
49f00baff21bfd11541b3c98a5f2fb36e6b7d9ce
[ "BSD-3-Clause" ]
null
null
null
test/test_optimize.py
odidev/cmdstanpy
49f00baff21bfd11541b3c98a5f2fb36e6b7d9ce
[ "BSD-3-Clause" ]
null
null
null
"""CmdStan method optimize tests""" import json import os import unittest import numpy as np import pytest from cmdstanpy.cmdstan_args import CmdStanArgs, OptimizeArgs from cmdstanpy.model import CmdStanModel from cmdstanpy.stanfit import CmdStanMLE, RunSet, from_csv from cmdstanpy.utils import EXTENSION HERE = os.path.dirname(os.path.abspath(__file__)) DATAFILES_PATH = os.path.join(HERE, 'data') class CmdStanMLETest(unittest.TestCase): # pylint: disable=no-self-use @pytest.fixture(scope='class', autouse=True) def do_clean_up(self): for root, _, files in os.walk(DATAFILES_PATH): for filename in files: _, ext = os.path.splitext(filename) if ext.lower() in ('.o', '.d', '.hpp', '.exe', '') and ( filename != ".gitignore" ): filepath = os.path.join(root, filename) os.remove(filepath) def test_instantiate(self): stan = os.path.join(DATAFILES_PATH, 'optimize', 'rosenbrock.stan') model = CmdStanModel(stan_file=stan) no_data = {} args = OptimizeArgs(algorithm='Newton') cmdstan_args = CmdStanArgs( model_name=model.name, model_exe=model.exe_file, chain_ids=None, data=no_data, method_args=args, ) runset = RunSet(args=cmdstan_args, chains=1) runset._csv_files = [ os.path.join(DATAFILES_PATH, 'optimize', 'rosenbrock_mle.csv') ] mle = CmdStanMLE(runset) self.assertIn('CmdStanMLE: model=rosenbrock', mle.__repr__()) self.assertIn('method=optimize', mle.__repr__()) self.assertEqual(mle.column_names, ('lp__', 'x', 'y')) self.assertAlmostEqual(mle.optimized_params_dict['x'], 1, places=3) self.assertAlmostEqual(mle.optimized_params_dict['y'], 1, places=3) def test_instantiate_from_csvfiles(self): csvfiles_path = os.path.join(DATAFILES_PATH, 'optimize') mle = from_csv(path=csvfiles_path) self.assertIn('CmdStanMLE: model=rosenbrock', mle.__repr__()) self.assertIn('method=optimize', mle.__repr__()) self.assertEqual(mle.column_names, ('lp__', 'x', 'y')) self.assertAlmostEqual(mle.optimized_params_dict['x'], 1, places=3) self.assertAlmostEqual(mle.optimized_params_dict['y'], 1, places=3) def test_variable_bern(self): stan = os.path.join(DATAFILES_PATH, 'bernoulli.stan') jdata = os.path.join(DATAFILES_PATH, 'bernoulli.data.json') bern_model = CmdStanModel(stan_file=stan) bern_mle = bern_model.optimize( data=jdata, seed=1239812093, algorithm='LBFGS', init_alpha=0.001, iter=100, tol_obj=1e-12, tol_rel_obj=1e4, tol_grad=1e-8, tol_rel_grad=1e7, tol_param=1e-8, history_size=5, ) self.assertEqual(1, len(bern_mle.metadata.stan_vars_dims)) self.assertTrue('theta' in bern_mle.metadata.stan_vars_dims) self.assertEqual(bern_mle.metadata.stan_vars_dims['theta'], ()) theta = bern_mle.stan_variable(name='theta') self.assertEqual(theta.shape, ()) with self.assertRaises(ValueError): bern_mle.stan_variable(name='eta') with self.assertRaises(ValueError): bern_mle.stan_variable(name='lp__') def test_variables_3d(self): # construct fit using existing sampler output stan = os.path.join(DATAFILES_PATH, 'multidim_vars.stan') jdata = os.path.join(DATAFILES_PATH, 'logistic.data.R') multidim_model = CmdStanModel(stan_file=stan) multidim_mle = multidim_model.optimize( data=jdata, seed=1239812093, algorithm='LBFGS', init_alpha=0.001, iter=100, tol_obj=1e-12, tol_rel_obj=1e4, tol_grad=1e-8, tol_rel_grad=1e7, tol_param=1e-8, history_size=5, ) self.assertEqual(3, len(multidim_mle.metadata.stan_vars_dims)) self.assertTrue('y_rep' in multidim_mle.metadata.stan_vars_dims) self.assertEqual( multidim_mle.metadata.stan_vars_dims['y_rep'], (5, 4, 3) ) var_y_rep = multidim_mle.stan_variable(name='y_rep') self.assertEqual(var_y_rep.shape, (5, 4, 3)) var_beta = multidim_mle.stan_variable(name='beta') self.assertEqual(var_beta.shape, (2,)) # 1-element tuple var_frac_60 = multidim_mle.stan_variable(name='frac_60') self.assertEqual(var_frac_60.shape, ()) vars = multidim_mle.stan_variables() self.assertEqual(len(vars), len(multidim_mle.metadata.stan_vars_dims)) self.assertTrue('y_rep' in vars) self.assertEqual(vars['y_rep'].shape, (5, 4, 3)) self.assertTrue('beta' in vars) self.assertEqual(vars['beta'].shape, (2,)) self.assertTrue('frac_60' in vars) self.assertEqual(vars['frac_60'].shape, ()) class OptimizeTest(unittest.TestCase): def test_optimize_good(self): stan = os.path.join(DATAFILES_PATH, 'bernoulli.stan') model = CmdStanModel(stan_file=stan) jdata = os.path.join(DATAFILES_PATH, 'bernoulli.data.json') jinit = os.path.join(DATAFILES_PATH, 'bernoulli.init.json') mle = model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', init_alpha=0.001, iter=100, tol_obj=1e-12, tol_rel_obj=1e4, tol_grad=1e-8, tol_rel_grad=1e7, tol_param=1e-8, history_size=5, ) # test numpy output self.assertTrue(isinstance(mle.optimized_params_np, np.ndarray)) self.assertAlmostEqual(mle.optimized_params_np[0], -5, places=2) self.assertAlmostEqual(mle.optimized_params_np[1], 0.2, places=3) # test pandas output self.assertEqual( mle.optimized_params_np[0], mle.optimized_params_pd['lp__'][0] ) self.assertEqual( mle.optimized_params_np[1], mle.optimized_params_pd['theta'][0] ) # test dict output self.assertEqual( mle.optimized_params_np[0], mle.optimized_params_dict['lp__'] ) self.assertEqual( mle.optimized_params_np[1], mle.optimized_params_dict['theta'] ) def test_negative_parameter_values(self): stan = os.path.join(DATAFILES_PATH, 'bernoulli.stan') model = CmdStanModel(stan_file=stan) jdata = os.path.join(DATAFILES_PATH, 'bernoulli.data.json') jinit = os.path.join(DATAFILES_PATH, 'bernoulli.init.json') with self.assertRaisesRegex(ValueError, 'must be greater than'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_obj=-1, ) with self.assertRaisesRegex(ValueError, 'must be greater than'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_rel_obj=-1, ) with self.assertRaisesRegex(ValueError, 'must be greater than'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_grad=-1, ) with self.assertRaisesRegex(ValueError, 'must be greater than'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_rel_grad=-1, ) with self.assertRaisesRegex(ValueError, 'must be greater than'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_param=-1, ) with self.assertRaisesRegex(ValueError, 'must be greater than'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', history_size=-1, ) def test_parameters_are_floats(self): stan = os.path.join(DATAFILES_PATH, 'bernoulli.stan') model = CmdStanModel(stan_file=stan) jdata = os.path.join(DATAFILES_PATH, 'bernoulli.data.json') jinit = os.path.join(DATAFILES_PATH, 'bernoulli.init.json') with self.assertRaisesRegex(ValueError, 'must be type of float'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_obj="rabbit", ) with self.assertRaisesRegex(ValueError, 'must be type of float'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_rel_obj="rabbit", ) with self.assertRaisesRegex(ValueError, 'must be type of float'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_grad="rabbit", ) with self.assertRaisesRegex(ValueError, 'must be type of float'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_rel_grad="rabbit", ) with self.assertRaisesRegex(ValueError, 'must be type of float'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', tol_param="rabbit", ) with self.assertRaisesRegex(ValueError, 'must be type of int'): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='LBFGS', history_size="rabbit", ) def test_parameters_and_optimizer_compatible(self): stan = os.path.join(DATAFILES_PATH, 'bernoulli.stan') model = CmdStanModel(stan_file=stan) jdata = os.path.join(DATAFILES_PATH, 'bernoulli.data.json') jinit = os.path.join(DATAFILES_PATH, 'bernoulli.init.json') with self.assertRaisesRegex( ValueError, 'must not be set when algorithm is Newton' ): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='Newton', tol_obj=1, ) with self.assertRaisesRegex( ValueError, 'must not be set when algorithm is Newton' ): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='Newton', tol_rel_obj=1, ) with self.assertRaisesRegex( ValueError, 'must not be set when algorithm is Newton' ): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='Newton', tol_grad=1, ) with self.assertRaisesRegex( ValueError, 'must not be set when algorithm is Newton' ): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='Newton', tol_rel_grad=1, ) with self.assertRaisesRegex( ValueError, 'must not be set when algorithm is Newton' ): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='Newton', tol_param=1, ) with self.assertRaisesRegex( ValueError, 'history_size must not be set when algorithm is Newton or BFGS', ): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='Newton', history_size=1, ) with self.assertRaisesRegex( ValueError, 'history_size must not be set when algorithm is Newton or BFGS', ): model.optimize( data=jdata, seed=1239812093, inits=jinit, algorithm='BFGS', history_size=1, ) def test_optimize_good_dict(self): exe = os.path.join(DATAFILES_PATH, 'bernoulli' + EXTENSION) stan = os.path.join(DATAFILES_PATH, 'bernoulli.stan') model = CmdStanModel(stan_file=stan, exe_file=exe) with open(os.path.join(DATAFILES_PATH, 'bernoulli.data.json')) as fd: data = json.load(fd) with open(os.path.join(DATAFILES_PATH, 'bernoulli.init.json')) as fd: init = json.load(fd) mle = model.optimize( data=data, seed=1239812093, inits=init, algorithm='BFGS', init_alpha=0.001, iter=100, ) # test numpy output self.assertAlmostEqual(mle.optimized_params_np[0], -5, places=2) self.assertAlmostEqual(mle.optimized_params_np[1], 0.2, places=3) def test_optimize_rosenbrock(self): stan = os.path.join(DATAFILES_PATH, 'optimize', 'rosenbrock.stan') rose_model = CmdStanModel(stan_file=stan) mle = rose_model.optimize(seed=1239812093, inits=None, algorithm='BFGS') self.assertEqual(mle.column_names, ('lp__', 'x', 'y')) self.assertAlmostEqual(mle.optimized_params_dict['x'], 1, places=3) self.assertAlmostEqual(mle.optimized_params_dict['y'], 1, places=3) def test_optimize_no_data(self): stan = os.path.join(DATAFILES_PATH, 'optimize', 'no_data.stan') rose_model = CmdStanModel(stan_file=stan) mle = rose_model.optimize(seed=1239812093) self.assertEqual(mle.column_names, ('lp__', 'a')) self.assertAlmostEqual(mle.optimized_params_dict['a'], 0, places=3) def test_optimize_bad(self): stan = os.path.join( DATAFILES_PATH, 'optimize', 'exponential_boundary.stan' ) exp_bound_model = CmdStanModel(stan_file=stan) no_data = {} with self.assertRaisesRegex(RuntimeError, 'Error during optimization'): exp_bound_model.optimize( data=no_data, seed=1239812093, inits=None, algorithm='BFGS' ) if __name__ == '__main__': unittest.main()
35.337237
80
0.562529
42dbae2d4162991975e727bcdaf299401a7b11c4
6,003
py
Python
DEEPLEARNING/DL_VOXELNET/config.py
Hqss/DINK
5fecaa65e2f9da48eb8ac38ef709aa555fca8766
[ "BSD-3-Clause" ]
189
2019-01-16T03:05:23.000Z
2020-09-14T14:54:16.000Z
DEEPLEARNING/DL_VOXELNET/config.py
jtpils/DINK
5f6b3eaba279126f79ae6607f965311002d7451c
[ "BSD-3-Clause" ]
3
2019-02-11T06:20:15.000Z
2020-04-05T07:03:53.000Z
DEEPLEARNING/DL_VOXELNET/config.py
jtpils/DINK
5f6b3eaba279126f79ae6607f965311002d7451c
[ "BSD-3-Clause" ]
25
2019-01-16T03:05:24.000Z
2020-04-04T21:07:53.000Z
#!/usr/bin/env python # -*- coding:UTF-8 -*- # BSD 3-Clause License # # Copyright (c) 2019, FPAI # Copyright (c) 2019, SeriouslyHAO # Copyright (c) 2019, xcj2019 # Copyright (c) 2019, Leonfirst # # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright notice, this # list of conditions and the following disclaimer. # # * Redistributions in binary form must reproduce the above copyright notice, # this list of conditions and the following disclaimer in the documentation # and/or other materials provided with the distribution. # # * Neither the name of the copyright holder nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """VoxelNet config system. """ import os import os.path as osp import numpy as np from time import strftime, localtime from easydict import EasyDict as edict import math __C = edict() # Consumers can get config by: # import config as cfg cfg = __C # for dataset dir __C.DATA_DIR = '/home/dink/DATASETS/voxelnet_kitty' __C.CALIB_DIR = '/home/dink/DATASETS/voxelnet_kitty/training/calib' # for gpu allocation # __C.GPU_AVAILABLE = '0,1' __C.GPU_AVAILABLE = '0' __C.GPU_USE_COUNT = len(__C.GPU_AVAILABLE.split(',')) __C.GPU_MEMORY_FRACTION = 1 # selected object __C.DETECT_OBJ = 'Car' # Pedestrian/Cyclist # if __C.DETECT_OBJ == 'Car': __C.Y_MIN = -40 __C.Y_MAX = 40 __C.X_MIN = 0 __C.X_MAX = 70.4 __C.VOXEL_X_SIZE = 0.2 __C.VOXEL_Y_SIZE = 0.2 __C.VOXEL_FILTER_SIZE=2 __C.VOXEL_POINT_COUNT = 30 __C.VOXEL_POINT_RAW_DIM = 4 __C.VOXEL_POINT_DIM = 7 __C.INPUT_WIDTH = int((__C.X_MAX - __C.X_MIN) / __C.VOXEL_X_SIZE) __C.INPUT_HEIGHT = int((__C.Y_MAX - __C.Y_MIN) / __C.VOXEL_Y_SIZE) __C.FEATURE_RATIO = 2 __C.FEATURE_WIDTH = int(__C.INPUT_WIDTH / __C.FEATURE_RATIO) __C.FEATURE_HEIGHT = int(__C.INPUT_HEIGHT / __C.FEATURE_RATIO) # set the log image scale factor __C.BV_LOG_FACTOR = 4 # for data set type __C.DATA_SETS_TYPE = 'kitti' # Root directory of project __C.CHECKPOINT_DIR = osp.join('checkpoint') __C.LOG_DIR = osp.join('log') # for data preprocess # sensors __C.VELODYNE_ANGULAR_RESOLUTION = 0.08 / 180 * math.pi __C.VELODYNE_VERTICAL_RESOLUTION = 0.4 / 180 * math.pi __C.VELODYNE_HEIGHT = 1.73 # rgb if __C.DATA_SETS_TYPE == 'kitti': __C.IMAGE_WIDTH = 1242 __C.IMAGE_HEIGHT = 375 __C.IMAGE_CHANNEL = 3 # top if __C.DATA_SETS_TYPE == 'kitti': __C.TOP_Y_MIN = -30 __C.TOP_Y_MAX = +30 __C.TOP_X_MIN = 0 __C.TOP_X_MAX = 80 __C.TOP_Z_MIN = -4.2 __C.TOP_Z_MAX = 0.8 __C.TOP_X_DIVISION = 0.1 __C.TOP_Y_DIVISION = 0.1 __C.TOP_Z_DIVISION = 0.2 __C.TOP_WIDTH = (__C.TOP_X_MAX - __C.TOP_X_MIN) // __C.TOP_X_DIVISION __C.TOP_HEIGHT = (__C.TOP_Y_MAX - __C.TOP_Y_MIN) // __C.TOP_Y_DIVISION __C.TOP_CHANNEL = (__C.TOP_Z_MAX - __C.TOP_Z_MIN) // __C.TOP_Z_DIVISION # for 2d proposal to 3d proposal __C.PROPOSAL3D_Z_MIN = -2.3 # -2.52 __C.PROPOSAL3D_Z_MAX = 1.5 # -1.02 # for RPN basenet choose __C.USE_VGG_AS_RPN = 0 __C.USE_RESNET_AS_RPN = 0 __C.USE_RESNEXT_AS_RPN = 0 # for camera and lidar coordination convert if __C.DATA_SETS_TYPE == 'kitti': # cal mean from train set __C.MATRIX_P2 = ([[719.787081, 0., 608.463003, 44.9538775], [0., 719.787081, 174.545111, 0.1066855], [0., 0., 1., 3.0106472e-03], [0., 0., 0., 0]]) # cal mean from train set __C.MATRIX_T_VELO_2_CAM = ([ [7.49916597e-03, -9.99971248e-01, -8.65110297e-04, -6.71807577e-03], [1.18652889e-02, 9.54520517e-04, -9.99910318e-01, -7.33152811e-02], [9.99882833e-01, 7.49141178e-03, 1.18719929e-02, -2.78557062e-01], [0, 0, 0, 1] ]) # cal mean from train set __C.MATRIX_R_RECT_0 = ([ [0.99992475, 0.00975976, -0.00734152, 0], [-0.0097913, 0.99994262, -0.00430371, 0], [0.00729911, 0.0043753, 0.99996319, 0], [0, 0, 0, 1] ]) # Faster-RCNN/SSD Hyper params if __C.DETECT_OBJ == 'Car': # car anchor __C.ANCHOR_L = 3.9 __C.ANCHOR_W = 1.6 __C.ANCHOR_H = 1.56 __C.ANCHOR_Z = -1.0 - cfg.ANCHOR_H/2 __C.RPN_POS_IOU = 0.6 __C.RPN_NEG_IOU = 0.45 elif __C.DETECT_OBJ == 'Pedestrian': # pedestrian anchor __C.ANCHOR_L = 0.8 __C.ANCHOR_W = 0.6 __C.ANCHOR_H = 1.73 __C.ANCHOR_Z = -0.6 - cfg.ANCHOR_H/2 __C.RPN_POS_IOU = 0.5 __C.RPN_NEG_IOU = 0.35 if __C.DETECT_OBJ == 'Cyclist': # cyclist anchor __C.ANCHOR_L = 1.76 __C.ANCHOR_W = 0.6 __C.ANCHOR_H = 1.73 __C.ANCHOR_Z = -0.6 - cfg.ANCHOR_H/2 __C.RPN_POS_IOU = 0.5 __C.RPN_NEG_IOU = 0.35 # for rpn nms __C.RPN_NMS_POST_TOPK = 20 __C.RPN_NMS_THRESH = 0.1 __C.RPN_SCORE_THRESH = 0.96 # utils __C.CORNER2CENTER_AVG = True # average version or max version if __name__ == '__main__': print('__C.ROOT_DIR = ' + __C.ROOT_DIR) print('__C.DATA_SETS_DIR = ' + __C.DATA_SETS_DIR)
29.140777
80
0.685824
99ed8832595af4b0f23b3ddbf2099176657d6043
9,387
py
Python
tuir/oauth.py
c4pt0r/tuir
ba3435cca3e4e66c029230e523fa24b775378874
[ "MIT" ]
null
null
null
tuir/oauth.py
c4pt0r/tuir
ba3435cca3e4e66c029230e523fa24b775378874
[ "MIT" ]
null
null
null
tuir/oauth.py
c4pt0r/tuir
ba3435cca3e4e66c029230e523fa24b775378874
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- from __future__ import unicode_literals import os import time import uuid import string import codecs import logging import threading # pylint: disable=import-error from six.moves.urllib.parse import urlparse, parse_qs from six.moves.BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer from . import docs from .config import Config from .exceptions import InvalidRefreshToken from .packages.praw.errors import HTTPException, OAuthException _logger = logging.getLogger(__name__) INDEX = os.path.join(Config.TEMPLATES, 'index.html') class OAuthHTTPServer(HTTPServer): def handle_error(self, request, client_address): """ The default HTTPServer's error handler prints the request traceback to stdout, which breaks the curses display. Override it to log to a file instead. """ _logger.exception('Error processing request in OAuth HTTP Server') class OAuthHandler(BaseHTTPRequestHandler): # params are stored as a global because we don't have control over what # gets passed into the handler __init__. These will be accessed by the # OAuthHelper class. params = {'state': None, 'code': None, 'error': None} shutdown_on_request = True def do_GET(self): """ Accepts GET requests to http://localhost:6500/, and stores the query params in the global dict. If shutdown_on_request is true, stop the server after the first successful request. The http request may contain the following query params: - state : unique identifier, should match what we passed to reddit - code : code that can be exchanged for a refresh token - error : if provided, the OAuth error that occurred """ parsed_path = urlparse(self.path) if parsed_path.path != '/': self.send_error(404) qs = parse_qs(parsed_path.query) self.params['state'] = qs['state'][0] if 'state' in qs else None self.params['code'] = qs['code'][0] if 'code' in qs else None self.params['error'] = qs['error'][0] if 'error' in qs else None body = self.build_body() # send_response also sets the Server and Date headers self.send_response(200) self.send_header('Content-Type', 'text/html; charset=UTF-8') self.send_header('Content-Length', len(body)) self.end_headers() self.wfile.write(body) if self.shutdown_on_request: # Shutdown the server after serving the request # http://stackoverflow.com/a/22533929 thread = threading.Thread(target=self.server.shutdown) thread.daemon = True thread.start() def log_message(self, fmt, *args): """ Redirect logging to our own handler instead of stdout """ _logger.debug(fmt, *args) def build_body(self, template_file=INDEX): """ Params: template_file (text): Path to an index.html template Returns: body (bytes): THe utf-8 encoded document body """ if self.params['error'] == 'access_denied': message = docs.OAUTH_ACCESS_DENIED elif self.params['error'] is not None: message = docs.OAUTH_ERROR.format(error=self.params['error']) elif self.params['state'] is None or self.params['code'] is None: message = docs.OAUTH_INVALID else: message = docs.OAUTH_SUCCESS with codecs.open(template_file, 'r', 'utf-8') as fp: index_text = fp.read() body = string.Template(index_text).substitute(message=message) body = codecs.encode(body, 'utf-8') return body class OAuthHelper(object): params = OAuthHandler.params def __init__(self, reddit, term, config): self.term = term self.reddit = reddit self.config = config # Wait to initialize the server, we don't want to reserve the port # unless we know that the server needs to be used. self.server = None self.reddit.set_oauth_app_info( self.config['oauth_client_id'], self.config['oauth_client_secret'], self.config['oauth_redirect_uri']) # Reddit's mobile website works better on terminal browsers if not self.term.display: if '.compact' not in self.reddit.config.API_PATHS['authorize']: self.reddit.config.API_PATHS['authorize'] += '.compact' def authorize(self, autologin=False): self.params.update(state=None, code=None, error=None) # If we already have a token, request new access credentials if self.config.refresh_token: with self.term.loader('Logging in'): try: self.reddit.refresh_access_information( self.config.refresh_token) except (HTTPException, OAuthException) as e: # Reddit didn't accept the refresh-token # This appears to throw a generic 400 error instead of the # more specific invalid_token message that it used to send if isinstance(e, HTTPException): if e._raw.status_code != 400: # No special handling if the error is something # temporary like a 5XX. raise e # Otherwise we know the token is bad, so we can remove it. _logger.exception(e) self.clear_oauth_data() raise InvalidRefreshToken( ' Invalid user credentials!\n' 'The cached refresh token has been removed') else: if not autologin: # Only show the welcome message if explicitly logging # in, not when TUIR first launches. message = 'Welcome {}!'.format(self.reddit.user.name) self.term.show_notification(message) return state = uuid.uuid4().hex authorize_url = self.reddit.get_authorize_url( state, scope=self.config['oauth_scope'], refreshable=True) if self.server is None: address = ('', self.config['oauth_redirect_port']) self.server = OAuthHTTPServer(address, OAuthHandler) #if self.term.display: if True: # Open a background browser (e.g. firefox) which is non-blocking. # The server will block until it responds to its first request, # at which point we can check the callback params. OAuthHandler.shutdown_on_request = True with self.term.loader('Opening browser for authorization'): self.term.open_browser(authorize_url) self.server.serve_forever() if self.term.loader.exception: # Don't need to call server.shutdown() because serve_forever() # is wrapped in a try-finally that doees it for us. return else: # Open the terminal webbrowser in a background thread and wait # while for the user to close the process. Once the process is # closed, the iloop is stopped and we can check if the user has # hit the callback URL. OAuthHandler.shutdown_on_request = False with self.term.loader('Redirecting to reddit', delay=0): # This load message exists to provide user feedback time.sleep(1) thread = threading.Thread(target=self.server.serve_forever) thread.daemon = True thread.start() try: self.term.open_browser(authorize_url) except Exception as e: # If an exception is raised it will be seen by the thread # so we don't need to explicitly shutdown() the server _logger.exception(e) self.term.show_notification('Browser Error', style='Error') else: self.server.shutdown() finally: thread.join() if self.params['error'] == 'access_denied': self.term.show_notification('Denied access', style='Error') return elif self.params['error']: self.term.show_notification('Authentication error', style='Error') return elif self.params['state'] is None: # Something went wrong but it's not clear what happened return elif self.params['state'] != state: self.term.show_notification('UUID mismatch', style='Error') return with self.term.loader('Logging in'): info = self.reddit.get_access_information(self.params['code']) if self.term.loader.exception: return message = 'Welcome {}!'.format(self.reddit.user.name) self.term.show_notification(message) self.config.refresh_token = info['refresh_token'] if self.config['persistent']: self.config.save_refresh_token() def clear_oauth_data(self): self.reddit.clear_authentication() self.config.delete_refresh_token()
37.548
78
0.601577
0911d4e1e4d7a603db69b977b87307fe0fa7d071
274
py
Python
graph_rl/aux_rewards/constant_reward.py
nicoguertler/graphrl
21a1cefc53e5c457745570460de0d99e68622e57
[ "MIT" ]
1
2022-01-04T15:21:55.000Z
2022-01-04T15:21:55.000Z
graph_rl/aux_rewards/constant_reward.py
nicoguertler/graph_rl
21a1cefc53e5c457745570460de0d99e68622e57
[ "MIT" ]
null
null
null
graph_rl/aux_rewards/constant_reward.py
nicoguertler/graph_rl
21a1cefc53e5c457745570460de0d99e68622e57
[ "MIT" ]
null
null
null
import numpy as np from . import AuxReward class ConstantReward(AuxReward): """Constant auxiliary reward.""" def __init__(self, constant_reward): self._reward = constant_reward def __call__(self, obs, action, env_reward): return self._reward
21.076923
48
0.70073
b2e35b0f517f6c934ddd1c46ecd581976fdb81cd
135
py
Python
aces_1.2/python/aces_ocio/tests/__init__.py
SaeedDeev/OpenColorIO-Configs
af9ec74c233cc4ef87ceeaccbac3d1c5fec93885
[ "AMPAS" ]
409
2015-04-19T04:34:43.000Z
2022-03-31T06:43:08.000Z
aces_1.2/python/aces_ocio/tests/__init__.py
SaeedDeev/OpenColorIO-Configs
af9ec74c233cc4ef87ceeaccbac3d1c5fec93885
[ "AMPAS" ]
10
2020-03-03T12:07:05.000Z
2021-11-22T19:58:14.000Z
aces_1.2/python/aces_ocio/tests/__init__.py
SaeedDeev/OpenColorIO-Configs
af9ec74c233cc4ef87ceeaccbac3d1c5fec93885
[ "AMPAS" ]
277
2016-03-08T09:27:14.000Z
2022-03-30T07:50:59.000Z
#!/usr/bin/env python # -*- coding: utf-8 -*- # SPDX-License-Identifier: AMPAS # Copyright Academy of Motion Picture Arts and Sciences
27
55
0.718519
603224c603a018708217e3f8ac4aaf829a919145
956
py
Python
run.py
javecruz/redisAPI
b8ea21b888bb6e23563e46a7904f627a2ba3a5b2
[ "MIT" ]
null
null
null
run.py
javecruz/redisAPI
b8ea21b888bb6e23563e46a7904f627a2ba3a5b2
[ "MIT" ]
null
null
null
run.py
javecruz/redisAPI
b8ea21b888bb6e23563e46a7904f627a2ba3a5b2
[ "MIT" ]
null
null
null
from flask import Flask, jsonify #la conexion para poder iniciarlizar la app de flask desde aqui from models.dbFlaskLink import db #views from clientesView import bp_clientes from vehiculosView import bp_vehiculos from ficherosView import bp_ficheros #all config info such db import config # redis connection from redisApp import r app = Flask(__name__) # Registro de blueprints app.register_blueprint(bp_clientes) app.register_blueprint(bp_vehiculos) app.register_blueprint(bp_ficheros) #config de db connector y url app.config[config.key] = config.url # inicio db con la app de flask asi la tienen los modelos db.init_app(app) @app.route('/', methods=['GET']) def test(): return jsonify({'info' : 'API REST - VELANDO CRUZ, JAVIER','Curso':'DAW IES CONSELLERIA 2017-2018'}) #si este script se ha ejecutado de forma directa(es decir, no se ha importado) __name__ sera igual a __main__ if __name__ == '__main__': app.run(debug=True, port=8080)
28.969697
109
0.777197
ebd4d24a2b93591f26a4ba7480a83970c5625255
6,543
py
Python
code/client/munkilib/authrestart/client.py
dderusha/munki
ad3dd1673fc6544770e561b52000371113cd5294
[ "Apache-2.0" ]
1
2019-01-13T22:36:59.000Z
2019-01-13T22:36:59.000Z
code/client/munkilib/authrestart/client.py
MarcelRaschke/munki
5ab55e81934cf081d369ab11df70d2ee215df33e
[ "Apache-2.0" ]
null
null
null
code/client/munkilib/authrestart/client.py
MarcelRaschke/munki
5ab55e81934cf081d369ab11df70d2ee215df33e
[ "Apache-2.0" ]
null
null
null
# encoding: utf-8 # # Copyright 2017-2018 Greg Neagle. # # Licensed under the Apache License, Version 2.0 (the 'License'); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an 'AS IS' BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """ authrestart.client.py Created by Greg Neagle on 2017-04-15. Routines for communicating with authrestartd. Socket communications code adapted from autopkg's PkgCreator by Per Olofsson """ import os import plistlib import select import socket import sys AUTHRESTARTD_SOCKET = "/var/run/authrestartd" class AuthRestartClientError(Exception): '''Exception to raise for errors in AuthRestartClient''' pass class AuthRestartClient(object): '''Handles communication with authrestartd daemon''' def connect(self): '''Connect to authrestartd''' try: #pylint: disable=attribute-defined-outside-init self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) #pylint: enable=attribute-defined-outside-init self.socket.connect(AUTHRESTARTD_SOCKET) except socket.error as err: raise AuthRestartClientError( "Couldn't connect to authrestartd: %s" % err.strerror) def send_request(self, request): '''Send a request to authrestartd''' self.socket.send(plistlib.writePlistToString(request)) with os.fdopen(self.socket.fileno()) as fileref: # use select so we don't hang indefinitely if authrestartd dies ready = select.select([fileref], [], [], 2) if ready[0]: reply = fileref.read() else: reply = '' if reply: return reply.rstrip() else: return "ERROR:No reply" def disconnect(self): '''Disconnect from authrestartd''' self.socket.close() def process(self, request): '''Send a request and return the result''' try: self.connect() result = self.send_request(request) finally: self.disconnect() return result def fv_is_active(self): '''Returns a boolean to indicate if FileVault is active''' result = self.process({'task': 'verify_filevault'}) return result.startswith('OK') def verify_user(self, username): '''Returns True if username can unlock the FV volume''' request = {'task': 'verify_user', 'username': username} result = self.process(request) return result.startswith('OK') def verify_recovery_key_present(self): '''Returns True if plist containing a FV recovery key is present''' request = {'task': 'verify_recovery_key_present'} result = self.process(request) return result.startswith('OK') def verify_can_attempt_auth_restart(self): '''Returns True if we are ready to attempt an auth restart''' request = {'task': 'verify_can_attempt_auth_restart'} result = self.process(request) return result.startswith('OK') def store_password(self, password, username=None): '''Stores a FV password with authrestartd''' request = {'task': 'store_password', 'password': password} if username: request['username'] = username result = self.process(request) if not result.startswith('OK'): raise AuthRestartClientError(result) def restart(self): '''Returns True if restart was successful''' result = self.process({'task': 'restart'}) if not result.startswith('OK'): raise AuthRestartClientError(result) # Higher-level wrapper functions that swallow AuthRestartClientErrors def fv_is_active(): '''Returns True if FileVault can be verified to be active, False otherwise''' try: return AuthRestartClient().fv_is_active() except AuthRestartClientError: return False def verify_user(username): '''Returns True if user can be verified to be able to perform an authrestart, False otherwise''' try: return AuthRestartClient().verify_user(username) except AuthRestartClientError: return False def verify_recovery_key_present(): '''Returns True if we have a plist with a FileVault recovery key, False otherwise''' try: return AuthRestartClient().verify_recovery_key_present() except AuthRestartClientError: return False def verify_can_attempt_auth_restart(): '''Returns True if we have what we need to attempt an auth restart''' try: return AuthRestartClient().verify_can_attempt_auth_restart() except AuthRestartClientError: return False def store_password(password, username=None): '''Stores a password for later authrestart usage. Returns boolean to indicate success/failure''' try: AuthRestartClient().store_password(password, username=username) return True except AuthRestartClientError: return False def restart(): '''Performs a restart -- authenticated if possible. Returns boolean to indicate success/failure''' try: AuthRestartClient().restart() return True except AuthRestartClientError: return False def test(): import getpass import pwd print 'FileVault is active: %s' % fv_is_active() print 'Recovery key is present: %s' % verify_recovery_key_present() username = pwd.getpwuid(os.getuid()).pw_name print '%s is FV user: %s' % (username, verify_user(username)) password = getpass.getpass('Enter password: ') if password: if username == 'root': username = None if store_password(password, username=username): print 'store_password was successful' else: print 'store_password failed' print 'Can attempt auth restart: %s' % verify_can_attempt_auth_restart() answer = raw_input('Test auth restart (y/n)? ') if answer.lower().startswith('y'): print 'Attempting auth restart...' if restart(): print 'restart was successfully triggered' else: print 'restart failed'
32.552239
76
0.6604
6cb5c6bcb186a0b9bcc8d7320f085a8ce70728f7
12,323
py
Python
atomic_reactor/plugins/exit_store_metadata_in_osv3.py
MartinBasti/atomic-reactor
4431225c5a474c7f88c63ec1f25216d4b84a0f1d
[ "BSD-3-Clause" ]
null
null
null
atomic_reactor/plugins/exit_store_metadata_in_osv3.py
MartinBasti/atomic-reactor
4431225c5a474c7f88c63ec1f25216d4b84a0f1d
[ "BSD-3-Clause" ]
null
null
null
atomic_reactor/plugins/exit_store_metadata_in_osv3.py
MartinBasti/atomic-reactor
4431225c5a474c7f88c63ec1f25216d4b84a0f1d
[ "BSD-3-Clause" ]
null
null
null
""" Copyright (c) 2015 Red Hat, Inc All rights reserved. This software may be modified and distributed under the terms of the BSD license. See the LICENSE file for details. """ from __future__ import unicode_literals import json import os from osbs.exceptions import OsbsResponseException from osbs.utils import graceful_chain_get from atomic_reactor.plugins.pre_add_help import AddHelpPlugin from atomic_reactor.plugins.pre_reactor_config import get_openshift_session from atomic_reactor.constants import (PLUGIN_KOJI_IMPORT_PLUGIN_KEY, PLUGIN_KOJI_PROMOTE_PLUGIN_KEY, PLUGIN_KOJI_UPLOAD_PLUGIN_KEY, PLUGIN_PULP_PUSH_KEY, PLUGIN_ADD_FILESYSTEM_KEY, PLUGIN_BUILD_ORCHESTRATE_KEY, PLUGIN_GROUP_MANIFESTS_KEY, PLUGIN_PULP_PULL_KEY, PLUGIN_VERIFY_MEDIA_KEY, MEDIA_TYPE_DOCKER_V1) from atomic_reactor.plugin import ExitPlugin from atomic_reactor.util import get_build_json class StoreMetadataInOSv3Plugin(ExitPlugin): key = "store_metadata_in_osv3" is_allowed_to_fail = False def __init__(self, tasker, workflow, url=None, verify_ssl=True, use_auth=True): """ constructor :param tasker: DockerTasker instance :param workflow: DockerBuildWorkflow instance :param url: str, URL to OSv3 instance :param use_auth: bool, initiate authentication with openshift? """ # call parent constructor super(StoreMetadataInOSv3Plugin, self).__init__(tasker, workflow) self.openshift_fallback = { 'url': url, 'insecure': not verify_ssl, 'auth': {'enable': use_auth} } def get_result(self, result): if isinstance(result, Exception): result = '' return result def get_post_result(self, key): return self.get_result(self.workflow.postbuild_results.get(key, '')) def get_exit_result(self, key): return self.get_result(self.workflow.exit_results.get(key, '')) def get_config_map(self): annotations = self.get_post_result(PLUGIN_KOJI_UPLOAD_PLUGIN_KEY) if not annotations: return {} return annotations def get_filesystem_koji_task_id(self): res = self.get_result(self.workflow.prebuild_results.get(PLUGIN_ADD_FILESYSTEM_KEY)) return graceful_chain_get(res, 'filesystem-koji-task-id') def get_digests(self): """ Returns a map of repositories to digests """ digests = {} # repository -> digest for registry in self.workflow.push_conf.docker_registries: for image in self.workflow.tag_conf.images: image_str = image.to_str() if image_str in registry.digests: digest = registry.digests[image_str] digests[image.to_str(registry=False)] = digest return digests def _get_registries(self): """ Return a list of registries that this build updated For orchestrator it should attempt to filter out non-pulp registries, on worker - return all registries """ if self.workflow.buildstep_result.get(PLUGIN_BUILD_ORCHESTRATE_KEY): registries = self.workflow.push_conf.pulp_registries if not registries: registries = self.workflow.push_conf.all_registries return registries else: return self.workflow.push_conf.all_registries def get_repositories(self): # usually repositories formed from NVR labels # these should be used for pulling and layering primary_repositories = [] for registry in self._get_registries(): for image in self.workflow.tag_conf.primary_images: registry_image = image.copy() registry_image.registry = registry.uri primary_repositories.append(registry_image.to_str()) # unique unpredictable repositories unique_repositories = [] for registry in self._get_registries(): for image in self.workflow.tag_conf.unique_images: registry_image = image.copy() registry_image.registry = registry.uri unique_repositories.append(registry_image.to_str()) return { "primary": primary_repositories, "unique": unique_repositories, } def get_pullspecs(self, digests): # v2 registry digests pullspecs = [] for registry in self._get_registries(): for image in self.workflow.tag_conf.images: image_str = image.to_str() if image_str in digests: digest = digests[image_str] for digest_version in digest.content_type: if digest_version not in digest: continue pullspecs.append({ "registry": registry.uri, "repository": image.to_str(registry=False, tag=False), "tag": image.tag, "digest": digest[digest_version], "version": digest_version }) return pullspecs def get_plugin_metadata(self): return { "errors": self.workflow.plugins_errors, "timestamps": self.workflow.plugins_timestamps, "durations": self.workflow.plugins_durations, } def get_filesystem_metadata(self): data = {} try: data = self.workflow.fs_watcher.get_usage_data() self.log.debug("filesystem metadata: %s", data) except Exception: self.log.exception("Error getting filesystem stats") return data def make_labels(self): labels = {} koji_build_id = self.get_exit_result(PLUGIN_KOJI_IMPORT_PLUGIN_KEY) if not koji_build_id: koji_build_id = self.get_exit_result(PLUGIN_KOJI_PROMOTE_PLUGIN_KEY) if koji_build_id: labels["koji-build-id"] = str(koji_build_id) filesystem_koji_task_id = self.get_filesystem_koji_task_id() if filesystem_koji_task_id: labels["filesystem-koji-task-id"] = str(filesystem_koji_task_id) updates = self.workflow.build_result.labels if updates: updates = {key: str(value) for key, value in updates.items()} labels.update(updates) return labels def apply_build_result_annotations(self, annotations): updates = self.workflow.build_result.annotations if updates: updates = {key: json.dumps(value) for key, value in updates.items()} annotations.update(updates) def run(self): metadata = get_build_json().get("metadata", {}) try: build_id = metadata["name"] except KeyError: self.log.error("malformed build json") return self.log.info("build id = %s", build_id) osbs = get_openshift_session(self.workflow, self.openshift_fallback) try: commit_id = self.workflow.source.commit_id except AttributeError: commit_id = "" if hasattr(self.workflow.builder, "original_base_image"): base_image = self.workflow.builder.original_base_image else: base_image = self.workflow.builder.base_image if base_image is not None: base_image_name = base_image.to_str() try: base_image_id = self.workflow.builder.base_image_inspect['Id'] except KeyError: base_image_id = "" else: base_image_name = "" base_image_id = "" try: with open(self.workflow.builder.df_path) as f: dockerfile_contents = f.read() except AttributeError: dockerfile_contents = "" annotations = { "dockerfile": dockerfile_contents, "repositories": json.dumps(self.get_repositories()), "commit_id": commit_id, "base-image-id": base_image_id, "base-image-name": base_image_name, "image-id": self.workflow.builder.image_id or '', "digests": json.dumps(self.get_pullspecs(self.get_digests())), "parent_images": json.dumps(self.workflow.builder.parent_images_to_str()), "plugins-metadata": json.dumps(self.get_plugin_metadata()), "filesystem": json.dumps(self.get_filesystem_metadata()), } help_result = self.workflow.prebuild_results.get(AddHelpPlugin.key) if isinstance(help_result, dict) and 'help_file' in help_result and 'status' in help_result: if help_result['status'] == AddHelpPlugin.NO_HELP_FILE_FOUND: annotations['help_file'] = json.dumps(None) elif help_result['status'] == AddHelpPlugin.HELP_GENERATED: annotations['help_file'] = json.dumps(help_result['help_file']) else: self.log.error("Unknown result from add_help plugin: %s", help_result) pulp_push_results = self.workflow.postbuild_results.get(PLUGIN_PULP_PUSH_KEY) if pulp_push_results: top_layer, _ = pulp_push_results annotations['v1-image-id'] = top_layer media_types = [] if pulp_push_results: media_types += [MEDIA_TYPE_DOCKER_V1] # pulp_pull may run on worker as a postbuild plugin or on orchestrator as an exit plugin # verify_media_results runs if pulp_pull does not media_results = (self.workflow.postbuild_results.get(PLUGIN_PULP_PULL_KEY) or self.workflow.exit_results.get(PLUGIN_PULP_PULL_KEY) or self.workflow.exit_results.get(PLUGIN_VERIFY_MEDIA_KEY)) if isinstance(media_results, Exception): media_results = None if media_results: media_types += media_results if media_types: annotations['media-types'] = json.dumps(sorted(list(set(media_types)))) tar_path = tar_size = tar_md5sum = tar_sha256sum = None if len(self.workflow.exported_image_sequence) > 0: tar_path = self.workflow.exported_image_sequence[-1].get("path") tar_size = self.workflow.exported_image_sequence[-1].get("size") tar_md5sum = self.workflow.exported_image_sequence[-1].get("md5sum") tar_sha256sum = self.workflow.exported_image_sequence[-1].get("sha256sum") # looks like that openshift can't handle value being None (null in json) if tar_size is not None and tar_md5sum is not None and tar_sha256sum is not None and \ tar_path is not None: annotations["tar_metadata"] = json.dumps({ "size": tar_size, "md5sum": tar_md5sum, "sha256sum": tar_sha256sum, "filename": os.path.basename(tar_path), }) annotations.update(self.get_config_map()) self.apply_build_result_annotations(annotations) # For arrangement version 4 onwards (where group_manifests # runs in the orchestrator build), restore the repositories # metadata which orchestrate_build adjusted. if PLUGIN_GROUP_MANIFESTS_KEY in self.workflow.postbuild_results: annotations['repositories'] = json.dumps(self.get_repositories()) try: osbs.update_annotations_on_build(build_id, annotations) except OsbsResponseException: self.log.debug("annotations: %r", annotations) raise labels = self.make_labels() if labels: try: osbs.update_labels_on_build(build_id, labels) except OsbsResponseException: self.log.debug("labels: %r", labels) raise return {"annotations": annotations, "labels": labels}
39.245223
100
0.614542
3e8fcc8d76c7eff8dfdca2197ca9c7b6cf40d40c
59,216
py
Python
core/domain/user_jobs_one_off_test.py
marianazangrossi/oppia
f9bd0712503ed483f34c86692954a31021596858
[ "Apache-2.0" ]
null
null
null
core/domain/user_jobs_one_off_test.py
marianazangrossi/oppia
f9bd0712503ed483f34c86692954a31021596858
[ "Apache-2.0" ]
null
null
null
core/domain/user_jobs_one_off_test.py
marianazangrossi/oppia
f9bd0712503ed483f34c86692954a31021596858
[ "Apache-2.0" ]
null
null
null
# coding: utf-8 # # Copyright 2014 The Oppia Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS-IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Tests for user-related one-off computations.""" from __future__ import absolute_import # pylint: disable=import-only-modules from __future__ import unicode_literals # pylint: disable=import-only-modules import ast import datetime import re from core.domain import collection_domain from core.domain import collection_services from core.domain import event_services from core.domain import exp_domain from core.domain import exp_services from core.domain import feedback_services from core.domain import rating_services from core.domain import rights_manager from core.domain import subscription_services from core.domain import user_jobs_continuous from core.domain import user_jobs_one_off from core.domain import user_services from core.platform import models from core.tests import test_utils import feconf import python_utils (user_models, feedback_models, exp_models) = models.Registry.import_models( [models.NAMES.user, models.NAMES.feedback, models.NAMES.exploration]) taskqueue_services = models.Registry.import_taskqueue_services() search_services = models.Registry.import_search_services() class UserContributionsOneOffJobTests(test_utils.GenericTestBase): """Tests for the one-off dashboard subscriptions job.""" EXP_ID_1 = 'exp_id_1' EXP_ID_2 = 'exp_id_2' USER_A_EMAIL = 'a@example.com' USER_A_USERNAME = 'a' USER_B_EMAIL = 'b@example.com' USER_B_USERNAME = 'b' USER_C_EMAIL = 'c@example.com' USER_C_USERNAME = 'c' USER_D_EMAIL = 'd@example.com' USER_D_USERNAME = 'd' def _run_one_off_job(self): """Runs the one-off MapReduce job.""" job_id = user_jobs_one_off.UserContributionsOneOffJob.create_new() user_jobs_one_off.UserContributionsOneOffJob.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() def setUp(self): super(UserContributionsOneOffJobTests, self).setUp() # User A has no created or edited explorations. # User B has one created exploration. # User C has one edited exploration. # User D has created an exploration and then edited it. # (This is used to check that there are no duplicate # entries in the contribution lists). self.signup(self.USER_A_EMAIL, self.USER_A_USERNAME) self.user_a_id = self.get_user_id_from_email(self.USER_A_EMAIL) self.signup(self.USER_B_EMAIL, self.USER_B_USERNAME) self.user_b_id = self.get_user_id_from_email(self.USER_B_EMAIL) self.signup(self.USER_C_EMAIL, self.USER_C_USERNAME) self.user_c_id = self.get_user_id_from_email(self.USER_C_EMAIL) self.signup(self.USER_D_EMAIL, self.USER_D_USERNAME) self.user_d_id = self.get_user_id_from_email(self.USER_D_EMAIL) self.save_new_valid_exploration( self.EXP_ID_1, self.user_b_id, end_state_name='End') exp_services.update_exploration( self.user_c_id, self.EXP_ID_1, [exp_domain.ExplorationChange({ 'cmd': 'edit_exploration_property', 'property_name': 'objective', 'new_value': 'the objective' })], 'Test edit') self.save_new_valid_exploration( self.EXP_ID_2, self.user_d_id, end_state_name='End') exp_services.update_exploration( self.user_d_id, self.EXP_ID_2, [exp_domain.ExplorationChange({ 'cmd': 'edit_exploration_property', 'property_name': 'objective', 'new_value': 'the objective' })], 'Test edit') def test_null_case(self): """Tests the case where user has no created or edited explorations.""" self._run_one_off_job() user_a_contributions_model = user_models.UserContributionsModel.get( self.user_a_id, strict=False) self.assertEqual(user_a_contributions_model.created_exploration_ids, []) self.assertEqual(user_a_contributions_model.edited_exploration_ids, []) def test_created_exp(self): """Tests the case where user has created (and therefore edited) an exploration. """ self._run_one_off_job() user_b_contributions_model = user_models.UserContributionsModel.get( self.user_b_id) self.assertEqual( user_b_contributions_model.created_exploration_ids, [self.EXP_ID_1]) self.assertEqual( user_b_contributions_model.edited_exploration_ids, [self.EXP_ID_1]) def test_edited_exp(self): """Tests the case where user has an edited exploration.""" self._run_one_off_job() user_c_contributions_model = user_models.UserContributionsModel.get( self.user_c_id) self.assertEqual( user_c_contributions_model.created_exploration_ids, []) self.assertEqual( user_c_contributions_model.edited_exploration_ids, [self.EXP_ID_1]) def test_for_duplicates(self): """Tests the case where user has an edited exploration, and edits it again making sure it is not duplicated. """ self._run_one_off_job() user_d_contributions_model = user_models.UserContributionsModel.get( self.user_d_id) self.assertEqual( user_d_contributions_model.edited_exploration_ids, [self.EXP_ID_2]) self.assertEqual( user_d_contributions_model.created_exploration_ids, [self.EXP_ID_2]) def test_no_new_user_contributions_model_get_created_with_existing_model( self): model1 = exp_models.ExplorationSnapshotMetadataModel( id='exp_id-1', committer_id=self.user_a_id, commit_type='create') model1.put() user_models.UserContributionsModel( id=self.user_a_id, created_exploration_ids=['exp_id'] ).put() user_contributions_model = user_models.UserContributionsModel.get( self.user_a_id) self.assertEqual( user_contributions_model.created_exploration_ids, ['exp_id']) self._run_one_off_job() user_contributions_model = user_models.UserContributionsModel.get( self.user_a_id) self.assertEqual( user_contributions_model.created_exploration_ids, ['exp_id']) def test_user_contributions_get_created_after_running_the_job(self): model1 = exp_models.ExplorationSnapshotMetadataModel( id='exp_id-1', committer_id='new_user', commit_type='create') model1.put() user_contributions_model = user_models.UserContributionsModel.get( 'new_user', strict=False) self.assertIsNone(user_contributions_model) self._run_one_off_job() user_contributions_model = user_models.UserContributionsModel.get( 'new_user', strict=False) self.assertEqual( user_contributions_model.created_exploration_ids, ['exp_id']) class UsernameLengthDistributionOneOffJobTests(test_utils.GenericTestBase): """Tests for the one-off username length distribution job.""" USER_A_EMAIL = 'a@example.com' USER_A_USERNAME = 'a' USER_B_EMAIL = 'ab@example.com' USER_B_USERNAME = 'ab' USER_C_EMAIL = 'bc@example.com' USER_C_USERNAME = 'bc' USER_D_EMAIL = 'bcd@example.com' USER_D_USERNAME = 'bcd' def _run_one_off_job(self): """Runs the one-off MapReduce job.""" job_id = ( user_jobs_one_off.UsernameLengthDistributionOneOffJob.create_new()) user_jobs_one_off.UsernameLengthDistributionOneOffJob.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() stringified_output = ( user_jobs_one_off.UsernameLengthDistributionOneOffJob.get_output( job_id)) output = {} for stringified_distribution in stringified_output: value = re.findall(r'\d+', stringified_distribution) # The following is output['username length'] = number of users. output[value[0]] = int(value[1]) return output def test_null_case(self): """Tests the case when there are no signed up users but there is one default user having the username - 'tmpsuperadm1n'. """ output = self._run_one_off_job() # Number of users = 1. # length of usernames = 13 (tmpsuperadm1n). self.assertEqual(output['13'], 1) def test_single_user_case(self): """Tests the case when there is only one signed up user and a default user - 'tmpsuperadm1n'. """ self.signup(self.USER_A_EMAIL, self.USER_A_USERNAME) output = self._run_one_off_job() # Number of users = 2. # length of usernames = 13 (tmpsuperadm1n), 1 (a). self.assertEqual(output['13'], 1) self.assertEqual(output['1'], 1) def test_multiple_users_case(self): """Tests the case when there are multiple signed up users and a default user - 'tmpsuperadm1n'. """ self.signup(self.USER_A_EMAIL, self.USER_A_USERNAME) self.signup(self.USER_B_EMAIL, self.USER_B_USERNAME) output = self._run_one_off_job() # Number of users = 3 # length of usernames = 13 (tmpsuperadm1n), 2 (ab), 1 (a). self.assertEqual(output['13'], 1) self.assertEqual(output['2'], 1) self.assertEqual(output['1'], 1) self.signup(self.USER_C_EMAIL, self.USER_C_USERNAME) self.signup(self.USER_D_EMAIL, self.USER_D_USERNAME) output = self._run_one_off_job() # Number of users = 5 # length of usernames = 13 (tmpsuperadm1n), 3 (bcd), 2 (ab, bc), 1 (a). self.assertEqual(output['13'], 1) self.assertEqual(output['3'], 1) self.assertEqual(output['2'], 2) self.assertEqual(output['1'], 1) class UsernameLengthAuditOneOffJobTests(test_utils.GenericTestBase): """Tests for the one-off username length limit job.""" USER_1_EMAIL = '1@example.com' USER_1_USERNAME = '123456789123456789123' USER_2_EMAIL = '2@example.com' USER_2_USERNAME = '123456789123456789124' USER_3_EMAIL = '3@example.com' USER_3_USERNAME = '123456789123456789123456789123456789' USER_4_EMAIL = '4@example.com' # Username 4 length is 20, so it shouldn't be in the output. USER_4_USERNAME = '12345678912345678912' def _run_one_off_job(self): """Runs the one-off MapReduce job.""" job_id = ( user_jobs_one_off.UsernameLengthAuditOneOffJob.create_new()) user_jobs_one_off.UsernameLengthAuditOneOffJob.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() return user_jobs_one_off.UsernameLengthAuditOneOffJob.get_output(job_id) def test_username_length_limit(self): self.signup(self.USER_1_EMAIL, self.USER_1_USERNAME) self.signup(self.USER_2_EMAIL, self.USER_2_USERNAME) self.signup(self.USER_3_EMAIL, self.USER_3_USERNAME) expected_output = [u'[u\'Length: 21\', u"Usernames: [\'%s\', \'%s\']"]' % (self.USER_1_USERNAME, self.USER_2_USERNAME), u'[u\'Length: 36\', u"Usernames: [\'%s\']"]' % self.USER_3_USERNAME] actual_output = self._run_one_off_job() self.assertEqual(actual_output, expected_output) class LongUserBiosOneOffJobTests(test_utils.GenericTestBase): """Tests for the one-off long userbio length job.""" USER_A_EMAIL = 'a@example.com' USER_A_USERNAME = 'a' USER_A_BIO = 'I am less than 500' USER_B_EMAIL = 'b@example.com' USER_B_USERNAME = 'b' USER_B_BIO = 'Long Bio' * 100 USER_C_EMAIL = 'c@example.com' USER_C_USERNAME = 'c' USER_C_BIO = 'Same Bio' * 100 USER_D_EMAIL = 'd@example.com' USER_D_USERNAME = 'd' USER_D_BIO = 'Diff Bio' * 300 def _run_one_off_job(self): """Runs the one-off MapReduce job.""" job_id = ( user_jobs_one_off.LongUserBiosOneOffJob.create_new()) user_jobs_one_off.LongUserBiosOneOffJob.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() stringified_output = ( user_jobs_one_off.LongUserBiosOneOffJob.get_output( job_id)) eval_output = [ast.literal_eval(stringified_item) for stringified_item in stringified_output] output = [[int(eval_item[0]), eval_item[1]] for eval_item in eval_output] return output def test_no_userbio_returns_empty_list(self): """Tests the case when userbio is None.""" self.signup(self.USER_C_EMAIL, self.USER_C_USERNAME) result = self._run_one_off_job() self.assertEqual(result, []) def test_short_userbio_returns_empty_list(self): """Tests the case where the userbio is less than 500 characters.""" self.signup(self.USER_A_EMAIL, self.USER_A_USERNAME) user_id_a = self.get_user_id_from_email(self.USER_A_EMAIL) user_services.update_user_bio(user_id_a, self.USER_A_BIO) result = self._run_one_off_job() self.assertEqual(result, []) def test_long_userbio_length(self): """Tests the case where the userbio is more than 500 characters.""" self.signup(self.USER_B_EMAIL, self.USER_B_USERNAME) user_id_b = self.get_user_id_from_email(self.USER_B_EMAIL) user_services.update_user_bio(user_id_b, self.USER_B_BIO) result = self._run_one_off_job() expected_result = [[800, ['b']]] self.assertEqual(result, expected_result) def test_same_userbio_length(self): """Tests the case where two users have same userbio length.""" self.signup(self.USER_B_EMAIL, self.USER_B_USERNAME) user_id_b = self.get_user_id_from_email(self.USER_B_EMAIL) user_services.update_user_bio(user_id_b, self.USER_B_BIO) self.signup(self.USER_C_EMAIL, self.USER_C_USERNAME) user_id_c = self.get_user_id_from_email(self.USER_C_EMAIL) user_services.update_user_bio(user_id_c, self.USER_C_BIO) result = self._run_one_off_job() result[0][1].sort() expected_result = [[800, ['b', 'c']]] self.assertEqual(result, expected_result) def test_diff_userbio_length(self): """Tests the case where two users have different userbio lengths.""" self.signup(self.USER_C_EMAIL, self.USER_C_USERNAME) user_id_c = self.get_user_id_from_email(self.USER_C_EMAIL) user_services.update_user_bio(user_id_c, self.USER_C_BIO) self.signup(self.USER_D_EMAIL, self.USER_D_USERNAME) user_id_d = self.get_user_id_from_email(self.USER_D_EMAIL) user_services.update_user_bio(user_id_d, self.USER_D_BIO) result = sorted(self._run_one_off_job(), key=lambda x: x[0]) expected_result = [[800, ['c']], [2400, ['d']]] self.assertEqual(result, expected_result) def test_bio_length_for_users_with_no_bio(self): self.signup(self.USER_A_EMAIL, self.USER_A_USERNAME) user_id_a = self.get_user_id_from_email(self.USER_A_EMAIL) model1 = user_models.UserSettingsModel( id=user_id_a, gae_id='gae_' + user_id_a, email=self.USER_A_EMAIL) model1.put() result = self._run_one_off_job() self.assertEqual(result, []) class DashboardSubscriptionsOneOffJobTests(test_utils.GenericTestBase): """Tests for the one-off dashboard subscriptions job.""" EXP_ID_1 = 'exp_id_1' EXP_ID_2 = 'exp_id_2' COLLECTION_ID_1 = 'col_id_1' COLLECTION_ID_2 = 'col_id_2' EXP_ID_FOR_COLLECTION_1 = 'id_of_exp_in_collection_1' USER_A_EMAIL = 'a@example.com' USER_A_USERNAME = 'a' USER_B_EMAIL = 'b@example.com' USER_B_USERNAME = 'b' USER_C_EMAIL = 'c@example.com' USER_C_USERNAME = 'c' def _run_one_off_job(self): """Runs the one-off MapReduce job.""" job_id = user_jobs_one_off.DashboardSubscriptionsOneOffJob.create_new() user_jobs_one_off.DashboardSubscriptionsOneOffJob.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() def _null_fn(self, *args, **kwargs): """A mock for functions of the form subscribe_to_*() to represent behavior prior to the implementation of subscriptions. """ pass def setUp(self): super(DashboardSubscriptionsOneOffJobTests, self).setUp() self.signup(self.USER_A_EMAIL, self.USER_A_USERNAME) self.user_a_id = self.get_user_id_from_email(self.USER_A_EMAIL) self.signup(self.USER_B_EMAIL, self.USER_B_USERNAME) self.user_b_id = self.get_user_id_from_email(self.USER_B_EMAIL) self.signup(self.USER_C_EMAIL, self.USER_C_USERNAME) self.user_c_id = self.get_user_id_from_email(self.USER_C_EMAIL) self.user_a = user_services.UserActionsInfo(self.user_a_id) with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ): # User A creates and saves a new valid exploration. self.save_new_valid_exploration( self.EXP_ID_1, self.user_a_id, end_state_name='End') def test_null_case(self): user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id, strict=False) self.assertEqual(user_b_subscriptions_model, None) self._run_one_off_job() user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id, strict=False) self.assertEqual(user_b_subscriptions_model, None) def test_feedback_thread_subscription(self): user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id, strict=False) user_c_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_c_id, strict=False) self.assertEqual(user_b_subscriptions_model, None) self.assertEqual(user_c_subscriptions_model, None) with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ): # User B starts a feedback thread. feedback_services.create_thread( 'exploration', self.EXP_ID_1, self.user_b_id, 'subject', 'text') # User C adds to that thread. thread_id = feedback_services.get_all_threads( 'exploration', self.EXP_ID_1, False)[0].id feedback_services.create_message( thread_id, self.user_c_id, None, None, 'more text') self._run_one_off_job() # Both users are subscribed to the feedback thread. user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id) user_c_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_c_id) self.assertEqual(user_b_subscriptions_model.activity_ids, []) self.assertEqual(user_c_subscriptions_model.activity_ids, []) self.assertEqual( user_b_subscriptions_model.general_feedback_thread_ids, [thread_id]) self.assertEqual( user_c_subscriptions_model.general_feedback_thread_ids, [thread_id]) def test_exploration_subscription(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ): # User A adds user B as an editor to the exploration. rights_manager.assign_role_for_exploration( self.user_a, self.EXP_ID_1, self.user_b_id, rights_manager.ROLE_EDITOR) # User A adds user C as a viewer of the exploration. rights_manager.assign_role_for_exploration( self.user_a, self.EXP_ID_1, self.user_c_id, rights_manager.ROLE_VIEWER) self._run_one_off_job() # Users A and B are subscribed to the exploration. User C is not. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id) user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id) user_c_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_c_id, strict=False) self.assertEqual( user_a_subscriptions_model.activity_ids, [self.EXP_ID_1]) self.assertEqual( user_b_subscriptions_model.activity_ids, [self.EXP_ID_1]) self.assertEqual(user_a_subscriptions_model.feedback_thread_ids, []) self.assertEqual(user_b_subscriptions_model.feedback_thread_ids, []) self.assertEqual(user_c_subscriptions_model, None) def test_two_explorations(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ): # User A creates and saves another valid exploration. self.save_new_valid_exploration(self.EXP_ID_2, self.user_a_id) self._run_one_off_job() # User A is subscribed to two explorations. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id) self.assertEqual( sorted(user_a_subscriptions_model.activity_ids), sorted([self.EXP_ID_1, self.EXP_ID_2])) def test_community_owned_exploration(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ): # User A adds user B as an editor to the exploration. rights_manager.assign_role_for_exploration( self.user_a, self.EXP_ID_1, self.user_b_id, rights_manager.ROLE_EDITOR) # The exploration becomes community-owned. rights_manager.publish_exploration(self.user_a, self.EXP_ID_1) rights_manager.release_ownership_of_exploration( self.user_a, self.EXP_ID_1) # User C edits the exploration. exp_services.update_exploration( self.user_c_id, self.EXP_ID_1, [], 'Update exploration') self._run_one_off_job() # User A and user B are subscribed to the exploration; user C is not. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id) user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id) user_c_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_c_id, strict=False) self.assertEqual( user_a_subscriptions_model.activity_ids, [self.EXP_ID_1]) self.assertEqual( user_b_subscriptions_model.activity_ids, [self.EXP_ID_1]) self.assertEqual(user_c_subscriptions_model, None) def test_deleted_exploration(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ): # User A deletes the exploration. exp_services.delete_exploration(self.user_a_id, self.EXP_ID_1) self.process_and_flush_pending_tasks() self._run_one_off_job() # User A is not subscribed to the exploration. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id, strict=False) self.assertEqual(user_a_subscriptions_model, None) def test_collection_subscription(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ), self.swap( subscription_services, 'subscribe_to_collection', self._null_fn ): # User A creates and saves a new valid collection. self.save_new_valid_collection( self.COLLECTION_ID_1, self.user_a_id, exploration_id=self.EXP_ID_FOR_COLLECTION_1) # User A adds user B as an editor to the collection. rights_manager.assign_role_for_collection( self.user_a, self.COLLECTION_ID_1, self.user_b_id, rights_manager.ROLE_EDITOR) # User A adds user C as a viewer of the collection. rights_manager.assign_role_for_collection( self.user_a, self.COLLECTION_ID_1, self.user_c_id, rights_manager.ROLE_VIEWER) self._run_one_off_job() # Users A and B are subscribed to the collection. User C is not. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id) user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id) user_c_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_c_id, strict=False) self.assertEqual( user_a_subscriptions_model.collection_ids, [self.COLLECTION_ID_1]) # User A is also subscribed to the exploration within the collection # because they created both. self.assertEqual( sorted(user_a_subscriptions_model.activity_ids), [ self.EXP_ID_1, self.EXP_ID_FOR_COLLECTION_1]) self.assertEqual( user_b_subscriptions_model.collection_ids, [self.COLLECTION_ID_1]) self.assertEqual(user_a_subscriptions_model.feedback_thread_ids, []) self.assertEqual(user_b_subscriptions_model.feedback_thread_ids, []) self.assertEqual(user_c_subscriptions_model, None) def test_two_collections(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ), self.swap( subscription_services, 'subscribe_to_collection', self._null_fn ): # User A creates and saves a new valid collection. self.save_new_valid_collection( self.COLLECTION_ID_1, self.user_a_id, exploration_id=self.EXP_ID_FOR_COLLECTION_1) # User A creates and saves another valid collection. self.save_new_valid_collection( self.COLLECTION_ID_2, self.user_a_id, exploration_id=self.EXP_ID_FOR_COLLECTION_1) self._run_one_off_job() # User A is subscribed to two collections. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id) self.assertEqual( sorted(user_a_subscriptions_model.collection_ids), sorted([self.COLLECTION_ID_1, self.COLLECTION_ID_2])) def test_deleted_collection(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_exploration', self._null_fn ), self.swap( subscription_services, 'subscribe_to_collection', self._null_fn ): # User A creates and saves a new collection. self.save_new_default_collection( self.COLLECTION_ID_1, self.user_a_id) # User A deletes the collection. collection_services.delete_collection( self.user_a_id, self.COLLECTION_ID_1) # User A deletes the exploration from earlier. exp_services.delete_exploration(self.user_a_id, self.EXP_ID_1) self.process_and_flush_pending_tasks() self._run_one_off_job() # User A is not subscribed to the collection. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id, strict=False) self.assertEqual(user_a_subscriptions_model, None) def test_adding_exploration_to_collection(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_collection', self._null_fn ): # User B creates and saves a new collection. self.save_new_default_collection( self.COLLECTION_ID_1, self.user_b_id) # User B adds the exploration created by user A to the collection. collection_services.update_collection( self.user_b_id, self.COLLECTION_ID_1, [{ 'cmd': collection_domain.CMD_ADD_COLLECTION_NODE, 'exploration_id': self.EXP_ID_1 }], 'Add new exploration to collection.') # Users A and B have no subscriptions (to either explorations or # collections). user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id, strict=False) user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id, strict=False) self.assertEqual(user_a_subscriptions_model, None) self.assertEqual(user_b_subscriptions_model, None) self._run_one_off_job() user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id) user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id) # User B should be subscribed to the collection and user A to the # exploration. self.assertEqual( user_a_subscriptions_model.activity_ids, [self.EXP_ID_1]) self.assertEqual( user_a_subscriptions_model.collection_ids, []) self.assertEqual( user_b_subscriptions_model.activity_ids, []) self.assertEqual( user_b_subscriptions_model.collection_ids, [self.COLLECTION_ID_1]) def test_community_owned_collection(self): with self.swap( subscription_services, 'subscribe_to_thread', self._null_fn ), self.swap( subscription_services, 'subscribe_to_collection', self._null_fn ): rights_manager.publish_exploration(self.user_a, self.EXP_ID_1) # User A creates and saves a new valid collection. self.save_new_valid_collection( self.COLLECTION_ID_1, self.user_a_id, exploration_id=self.EXP_ID_1) # User A adds user B as an editor to the collection. rights_manager.assign_role_for_collection( self.user_a, self.COLLECTION_ID_1, self.user_b_id, rights_manager.ROLE_EDITOR) # The collection becomes community-owned. rights_manager.publish_collection(self.user_a, self.COLLECTION_ID_1) rights_manager.release_ownership_of_collection( self.user_a, self.COLLECTION_ID_1) # User C edits the collection. collection_services.update_collection( self.user_c_id, self.COLLECTION_ID_1, [{ 'cmd': collection_domain.CMD_EDIT_COLLECTION_PROPERTY, 'property_name': ( collection_domain.COLLECTION_PROPERTY_TITLE), 'new_value': 'New title' }], 'Changed title.') self._run_one_off_job() # User A and user B are subscribed to the collection; user C is not. user_a_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_a_id) user_b_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_b_id) user_c_subscriptions_model = user_models.UserSubscriptionsModel.get( self.user_c_id, strict=False) self.assertEqual( user_a_subscriptions_model.collection_ids, [self.COLLECTION_ID_1]) self.assertEqual( user_b_subscriptions_model.collection_ids, [self.COLLECTION_ID_1]) self.assertEqual(user_c_subscriptions_model, None) class MockUserStatsAggregator( user_jobs_continuous.UserStatsAggregator): """A modified UserStatsAggregator that does not start a new batch job when the previous one has finished. """ @classmethod def _get_batch_job_manager_class(cls): return MockUserStatsMRJobManager @classmethod def _kickoff_batch_job_after_previous_one_ends(cls): pass class MockUserStatsMRJobManager( user_jobs_continuous.UserStatsMRJobManager): @classmethod def _get_continuous_computation_class(cls): return MockUserStatsAggregator class DashboardStatsOneOffJobTests(test_utils.GenericTestBase): """Tests for the one-off dashboard stats job.""" CURRENT_DATE_AS_STRING = user_services.get_current_date_as_string() DATE_AFTER_ONE_WEEK = ( (datetime.datetime.utcnow() + datetime.timedelta(7)).strftime( feconf.DASHBOARD_STATS_DATETIME_STRING_FORMAT)) USER_SESSION_ID = 'session1' EXP_ID_1 = 'exp_id_1' EXP_ID_2 = 'exp_id_2' EXP_VERSION = 1 def _run_one_off_job(self): """Runs the one-off MapReduce job.""" job_id = user_jobs_one_off.DashboardStatsOneOffJob.create_new() user_jobs_one_off.DashboardStatsOneOffJob.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() def setUp(self): super(DashboardStatsOneOffJobTests, self).setUp() self.signup(self.OWNER_EMAIL, self.OWNER_USERNAME) self.owner_id = self.get_user_id_from_email(self.OWNER_EMAIL) def mock_get_current_date_as_string(self): return self.CURRENT_DATE_AS_STRING def _rate_exploration(self, user_id, exp_id, rating): """Assigns rating to the exploration corresponding to the given exploration id. Args: user_id: str. The user id. exp_id: str. The exploration id. rating: int. The rating to be assigned to the given exploration. """ rating_services.assign_rating_to_exploration(user_id, exp_id, rating) def _record_play(self, exp_id, state): """Calls StartExplorationEventHandler and records the 'play' event corresponding to the given exploration id. Args: exp_id: str. The exploration id. state: dict(str, *). The state of the exploration corresponding to the given id. """ event_services.StartExplorationEventHandler.record( exp_id, self.EXP_VERSION, state, self.USER_SESSION_ID, {}, feconf.PLAY_TYPE_NORMAL) def test_weekly_stats_if_continuous_stats_job_has_not_been_run(self): exploration = self.save_new_valid_exploration( self.EXP_ID_1, self.owner_id) exp_id = exploration.id init_state_name = exploration.init_state_name self._record_play(exp_id, init_state_name) self._rate_exploration('user1', exp_id, 5) weekly_stats = user_services.get_weekly_dashboard_stats(self.owner_id) self.assertEqual(weekly_stats, None) self.assertEqual( user_services.get_last_week_dashboard_stats(self.owner_id), None) with self.swap( user_services, 'get_current_date_as_string', self.mock_get_current_date_as_string): self._run_one_off_job() weekly_stats = user_services.get_weekly_dashboard_stats(self.owner_id) expected_results_list = [{ self.mock_get_current_date_as_string(): { 'num_ratings': 0, 'average_ratings': None, 'total_plays': 0 } }] self.assertEqual(weekly_stats, expected_results_list) self.assertEqual( user_services.get_last_week_dashboard_stats(self.owner_id), expected_results_list[0]) def test_weekly_stats_if_no_explorations(self): MockUserStatsAggregator.start_computation() self.process_and_flush_pending_tasks() with self.swap( user_services, 'get_current_date_as_string', self.mock_get_current_date_as_string): self._run_one_off_job() weekly_stats = user_services.get_weekly_dashboard_stats(self.owner_id) self.assertEqual( weekly_stats, [{ self.mock_get_current_date_as_string(): { 'num_ratings': 0, 'average_ratings': None, 'total_plays': 0 } }]) def test_weekly_stats_for_single_exploration(self): exploration = self.save_new_valid_exploration( self.EXP_ID_1, self.owner_id) exp_id = exploration.id init_state_name = exploration.init_state_name self._record_play(exp_id, init_state_name) self._rate_exploration('user1', exp_id, 5) event_services.StatsEventsHandler.record( self.EXP_ID_1, 1, { 'num_starts': 1, 'num_actual_starts': 0, 'num_completions': 0, 'state_stats_mapping': {} }) MockUserStatsAggregator.start_computation() self.process_and_flush_pending_tasks() with self.swap( user_services, 'get_current_date_as_string', self.mock_get_current_date_as_string): self._run_one_off_job() weekly_stats = user_services.get_weekly_dashboard_stats(self.owner_id) self.assertEqual( weekly_stats, [{ self.mock_get_current_date_as_string(): { 'num_ratings': 1, 'average_ratings': 5.0, 'total_plays': 1 } }]) def test_weekly_stats_for_multiple_explorations(self): exploration_1 = self.save_new_valid_exploration( self.EXP_ID_1, self.owner_id) exp_id_1 = exploration_1.id exploration_2 = self.save_new_valid_exploration( self.EXP_ID_2, self.owner_id) exp_id_2 = exploration_2.id init_state_name_1 = exploration_1.init_state_name self._record_play(exp_id_1, init_state_name_1) self._rate_exploration('user1', exp_id_1, 5) self._rate_exploration('user2', exp_id_2, 4) event_services.StatsEventsHandler.record( self.EXP_ID_1, 1, { 'num_starts': 1, 'num_actual_starts': 0, 'num_completions': 0, 'state_stats_mapping': {} }) MockUserStatsAggregator.start_computation() self.process_and_flush_pending_tasks() with self.swap( user_services, 'get_current_date_as_string', self.mock_get_current_date_as_string): self._run_one_off_job() weekly_stats = user_services.get_weekly_dashboard_stats(self.owner_id) self.assertEqual( weekly_stats, [{ self.mock_get_current_date_as_string(): { 'num_ratings': 2, 'average_ratings': 4.5, 'total_plays': 1 } }]) def test_stats_for_multiple_weeks(self): exploration = self.save_new_valid_exploration( self.EXP_ID_1, self.owner_id) exp_id = exploration.id init_state_name = exploration.init_state_name self._rate_exploration('user1', exp_id, 4) self._record_play(exp_id, init_state_name) self._record_play(exp_id, init_state_name) event_services.StatsEventsHandler.record( self.EXP_ID_1, 1, { 'num_starts': 2, 'num_actual_starts': 0, 'num_completions': 0, 'state_stats_mapping': {} }) MockUserStatsAggregator.start_computation() self.process_and_flush_pending_tasks() with self.swap( user_services, 'get_current_date_as_string', self.mock_get_current_date_as_string): self._run_one_off_job() weekly_stats = user_services.get_weekly_dashboard_stats(self.owner_id) self.assertEqual( weekly_stats, [{ self.mock_get_current_date_as_string(): { 'num_ratings': 1, 'average_ratings': 4.0, 'total_plays': 2 } }]) MockUserStatsAggregator.stop_computation(self.owner_id) self.process_and_flush_pending_tasks() self._rate_exploration('user2', exp_id, 2) MockUserStatsAggregator.start_computation() self.process_and_flush_pending_tasks() def _mock_get_date_after_one_week(): """Returns the date of the next week.""" return self.DATE_AFTER_ONE_WEEK with self.swap( user_services, 'get_current_date_as_string', _mock_get_date_after_one_week): self._run_one_off_job() expected_results_list = [ { self.mock_get_current_date_as_string(): { 'num_ratings': 1, 'average_ratings': 4.0, 'total_plays': 2 } }, { _mock_get_date_after_one_week(): { 'num_ratings': 2, 'average_ratings': 3.0, 'total_plays': 2 } } ] weekly_stats = user_services.get_weekly_dashboard_stats(self.owner_id) self.assertEqual(weekly_stats, expected_results_list) self.assertEqual( user_services.get_last_week_dashboard_stats(self.owner_id), expected_results_list[1]) class UserFirstContributionMsecOneOffJobTests(test_utils.GenericTestBase): EXP_ID = 'test_exp' def setUp(self): super(UserFirstContributionMsecOneOffJobTests, self).setUp() self.signup(self.ADMIN_EMAIL, self.ADMIN_USERNAME) self.admin_id = self.get_user_id_from_email(self.ADMIN_EMAIL) self.set_admins([self.ADMIN_USERNAME]) self.admin = user_services.UserActionsInfo(self.admin_id) self.signup(self.OWNER_EMAIL, self.OWNER_USERNAME) self.owner_id = self.get_user_id_from_email(self.OWNER_EMAIL) self.owner = user_services.UserActionsInfo(self.owner_id) self.signup(self.EDITOR_EMAIL, self.EDITOR_USERNAME) self.editor_id = self.get_user_id_from_email(self.EDITOR_EMAIL) def test_contribution_msec_updates_on_published_explorations(self): exploration = self.save_new_valid_exploration( self.EXP_ID, self.admin_id, end_state_name='End') init_state_name = exploration.init_state_name # Test that no contribution time is set. job_id = ( user_jobs_one_off.UserFirstContributionMsecOneOffJob.create_new()) user_jobs_one_off.UserFirstContributionMsecOneOffJob.enqueue(job_id) self.process_and_flush_pending_tasks() self.assertIsNone( user_services.get_user_settings( self.admin_id).first_contribution_msec) # Test all owners and editors of exploration after publication have # updated times. exp_services.publish_exploration_and_update_user_profiles( self.admin, self.EXP_ID) rights_manager.release_ownership_of_exploration( self.admin, self.EXP_ID) exp_services.update_exploration( self.editor_id, self.EXP_ID, [exp_domain.ExplorationChange({ 'cmd': 'edit_state_property', 'state_name': init_state_name, 'property_name': 'widget_id', 'new_value': 'MultipleChoiceInput' })], 'commit') job_id = ( user_jobs_one_off.UserFirstContributionMsecOneOffJob.create_new()) user_jobs_one_off.UserFirstContributionMsecOneOffJob.enqueue(job_id) self.process_and_flush_pending_tasks() self.assertIsNotNone(user_services.get_user_settings( self.admin_id).first_contribution_msec) self.assertIsNotNone(user_services.get_user_settings( self.editor_id).first_contribution_msec) def test_contribution_msec_does_not_update_on_unpublished_explorations( self): self.save_new_valid_exploration( self.EXP_ID, self.owner_id, end_state_name='End') exp_services.publish_exploration_and_update_user_profiles( self.owner, self.EXP_ID) # We now manually reset the user's first_contribution_msec to None. # This is to test that the one off job skips over the unpublished # exploration and does not reset the user's first_contribution_msec. user_models.UserSettingsModel( id=self.owner_id, gae_id='gae_id', email='email@email.com', username='username', first_contribution_msec=None ).put() rights_manager.unpublish_exploration(self.admin, self.EXP_ID) # Test that first contribution time is not set for unpublished # explorations. job_id = ( user_jobs_one_off.UserFirstContributionMsecOneOffJob.create_new()) user_jobs_one_off.UserFirstContributionMsecOneOffJob.enqueue(job_id) self.process_and_flush_pending_tasks() self.assertIsNone(user_services.get_user_settings( self.owner_id).first_contribution_msec) def test_contribution_msec_is_not_generated_if_exploration_not_created( self): model1 = exp_models.ExplorationRightsSnapshotMetadataModel( id='exp_id-1', committer_id=self.owner_id, commit_type='create') model1.put() self.assertIsNone(user_services.get_user_settings( self.owner_id).first_contribution_msec) job_id = ( user_jobs_one_off.UserFirstContributionMsecOneOffJob.create_new()) user_jobs_one_off.UserFirstContributionMsecOneOffJob.enqueue(job_id) self.process_and_flush_pending_tasks() self.assertIsNone(user_services.get_user_settings( self.owner_id).first_contribution_msec) class UserProfilePictureOneOffJobTests(test_utils.GenericTestBase): FETCHED_GRAVATAR = 'fetched_gravatar' def setUp(self): super(UserProfilePictureOneOffJobTests, self).setUp() self.signup(self.OWNER_EMAIL, self.OWNER_USERNAME) self.owner_id = self.get_user_id_from_email(self.OWNER_EMAIL) def _mock_fetch_gravatar(self, unused_email): """Mocks user_services.fetch_gravatar().""" return self.FETCHED_GRAVATAR def test_new_profile_picture_is_generated_if_it_does_not_exist(self): user_services.update_profile_picture_data_url(self.owner_id, None) # Before the job runs, the data URL is None. user_settings = user_services.get_user_settings(self.owner_id) self.assertIsNone(user_settings.profile_picture_data_url) job_id = ( user_jobs_one_off.UserProfilePictureOneOffJob.create_new()) user_jobs_one_off.UserProfilePictureOneOffJob.enqueue(job_id) with self.swap( user_services, 'fetch_gravatar', self._mock_fetch_gravatar): self.process_and_flush_pending_tasks() # After the job runs, the data URL has been updated. new_user_settings = user_services.get_user_settings(self.owner_id) self.assertEqual( new_user_settings.profile_picture_data_url, self.FETCHED_GRAVATAR) def test_profile_picture_is_not_regenerated_if_it_already_exists(self): user_services.update_profile_picture_data_url( self.owner_id, 'manually_added_data_url') # Before the job runs, the data URL is the manually-added one. user_settings = user_services.get_user_settings(self.owner_id) self.assertEqual( user_settings.profile_picture_data_url, 'manually_added_data_url') job_id = ( user_jobs_one_off.UserProfilePictureOneOffJob.create_new()) user_jobs_one_off.UserProfilePictureOneOffJob.enqueue(job_id) with self.swap( user_services, 'fetch_gravatar', self._mock_fetch_gravatar): self.process_and_flush_pending_tasks() # After the job runs, the data URL is still the manually-added one. new_user_settings = user_services.get_user_settings(self.owner_id) self.assertEqual( new_user_settings.profile_picture_data_url, 'manually_added_data_url') class UserLastExplorationActivityOneOffJobTests(test_utils.GenericTestBase): def setUp(self): super(UserLastExplorationActivityOneOffJobTests, self).setUp() self.signup(self.OWNER_EMAIL, self.OWNER_USERNAME) self.owner_id = self.get_user_id_from_email(self.OWNER_EMAIL) self.signup(self.EDITOR_EMAIL, self.EDITOR_USERNAME) self.editor_id = self.get_user_id_from_email(self.EDITOR_EMAIL) self.exp_id = 'exp' def _run_one_off_job(self): """Runs the one-off MapReduce job.""" job_id = ( user_jobs_one_off.UserLastExplorationActivityOneOffJob.create_new()) user_jobs_one_off.UserLastExplorationActivityOneOffJob.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() def test_that_last_created_time_is_updated(self): self.login(self.OWNER_EMAIL) self.save_new_valid_exploration( self.exp_id, self.owner_id, end_state_name='End') self.logout() user_models.UserSettingsModel( id=self.owner_id, gae_id='gae_' + self.owner_id, email=self.OWNER_EMAIL, last_created_an_exploration=None ).put() owner_settings = user_services.get_user_settings(self.owner_id) self.assertIsNone(owner_settings.last_created_an_exploration) self.assertIsNone(owner_settings.last_edited_an_exploration) self._run_one_off_job() owner_settings = user_services.get_user_settings(self.owner_id) self.assertIsNotNone(owner_settings.last_created_an_exploration) self.assertIsNotNone(owner_settings.last_edited_an_exploration) def test_that_last_edited_time_is_updated(self): self.login(self.OWNER_EMAIL) self.save_new_valid_exploration( self.exp_id, self.owner_id, end_state_name='End') self.logout() self.login(self.EDITOR_EMAIL) exp_services.update_exploration( self.editor_id, self.exp_id, [exp_domain.ExplorationChange({ 'cmd': 'edit_exploration_property', 'property_name': 'objective', 'new_value': 'the objective' })], 'Test edit') self.logout() user_models.UserSettingsModel( id=self.editor_id, gae_id='gae_' + self.editor_id, email=self.EDITOR_EMAIL, last_edited_an_exploration=None ).put() editor_settings = user_services.get_user_settings(self.editor_id) self.assertIsNone(editor_settings.last_created_an_exploration) self.assertIsNone(editor_settings.last_edited_an_exploration) self._run_one_off_job() editor_settings = user_services.get_user_settings(self.editor_id) self.assertIsNotNone(editor_settings.last_edited_an_exploration) self.assertIsNone(editor_settings.last_created_an_exploration) def test_that_last_edited_and_created_time_both_updated(self): self.login(self.OWNER_EMAIL) self.save_new_valid_exploration( self.exp_id, self.owner_id, end_state_name='End') exp_services.update_exploration( self.owner_id, self.exp_id, [exp_domain.ExplorationChange({ 'cmd': 'edit_exploration_property', 'property_name': 'objective', 'new_value': 'the objective' })], 'Test edit') self.logout() self.login(self.EDITOR_EMAIL) exp_services.update_exploration( self.editor_id, self.exp_id, [exp_domain.ExplorationChange({ 'cmd': 'edit_exploration_property', 'property_name': 'objective', 'new_value': 'new objective' })], 'Test edit new') self.logout() user_models.UserSettingsModel( id=self.owner_id, gae_id='gae_' + self.owner_id, email=self.OWNER_EMAIL, last_created_an_exploration=None, last_edited_an_exploration=None ).put() user_models.UserSettingsModel( id=self.editor_id, gae_id='gae_' + self.editor_id, email=self.EDITOR_EMAIL, last_edited_an_exploration=None ).put() owner_settings = user_services.get_user_settings(self.owner_id) editor_settings = user_services.get_user_settings(self.editor_id) self.assertIsNone(owner_settings.last_created_an_exploration) self.assertIsNone(owner_settings.last_edited_an_exploration) self.assertIsNone(editor_settings.last_created_an_exploration) self.assertIsNone(editor_settings.last_edited_an_exploration) self._run_one_off_job() owner_settings = user_services.get_user_settings(self.owner_id) editor_settings = user_services.get_user_settings(self.editor_id) self.assertIsNotNone(owner_settings.last_edited_an_exploration) self.assertIsNotNone(owner_settings.last_created_an_exploration) self.assertIsNotNone(editor_settings.last_edited_an_exploration) self.assertIsNone(editor_settings.last_created_an_exploration) def test_that_last_edited_and_created_time_are_not_updated(self): user_models.UserSettingsModel( id=self.owner_id, gae_id='gae_' + self.owner_id, email=self.OWNER_EMAIL, last_created_an_exploration=None, last_edited_an_exploration=None ).put() owner_settings = user_services.get_user_settings(self.owner_id) self.assertIsNone(owner_settings.last_created_an_exploration) self.assertIsNone(owner_settings.last_edited_an_exploration) self._run_one_off_job() owner_settings = user_services.get_user_settings(self.owner_id) self.assertIsNone(owner_settings.last_created_an_exploration) self.assertIsNone(owner_settings.last_edited_an_exploration) class CleanupUserSubscriptionsModelUnitTests(test_utils.GenericTestBase): def setUp(self): super(CleanupUserSubscriptionsModelUnitTests, self).setUp() self.signup(self.OWNER_EMAIL, self.OWNER_USERNAME) self.signup('user@email', 'user') self.owner_id = self.get_user_id_from_email(self.OWNER_EMAIL) self.user_id = self.get_user_id_from_email('user@email') self.owner = user_services.UserActionsInfo(self.owner_id) explorations = [exp_domain.Exploration.create_default_exploration( '%s' % i, title='title %d' % i, category='category%d' % i ) for i in python_utils.RANGE(3)] for exp in explorations: exp_services.save_new_exploration(self.owner_id, exp) rights_manager.publish_exploration(self.owner, exp.id) for exp in explorations: subscription_services.subscribe_to_exploration( self.user_id, exp.id) self.process_and_flush_pending_tasks() def test_standard_operation(self): for exp_id in python_utils.RANGE(3): exp_models.ExplorationModel.get('%s' % exp_id).delete( self.owner_id, 'deleted exploration') self.assertEqual( len(user_models.UserSubscriptionsModel.get(self.owner_id) .activity_ids), 3) self.assertEqual( len(user_models.UserSubscriptionsModel.get(self.user_id) .activity_ids), 3) job = user_jobs_one_off.CleanupActivityIdsFromUserSubscriptionsModelOneOffJob # pylint: disable=line-too-long job_id = job.create_new() job.enqueue(job_id) self.assertEqual( self.count_jobs_in_taskqueue( taskqueue_services.QUEUE_NAME_ONE_OFF_JOBS), 1) self.process_and_flush_pending_tasks() self.assertEqual( len(user_models.UserSubscriptionsModel.get(self.owner_id) .activity_ids), 0) self.assertEqual( len(user_models.UserSubscriptionsModel.get(self.user_id) .activity_ids), 0) actual_output = job.get_output(job_id) expected_output = [ u'[u\'Successfully cleaned up UserSubscriptionsModel %s and ' 'removed explorations 0, 1, 2\', 1]' % self.owner_id, u'[u\'Successfully cleaned up UserSubscriptionsModel %s and ' 'removed explorations 0, 1, 2\', 1]' % self.user_id] self.assertEqual(sorted(actual_output), sorted(expected_output))
40.782369
117
0.668552
d1b71dc3ede3aaac896caee3159eb2d6220e441d
860
py
Python
bigflow_python/python/bigflow/transform_impls/__init__.py
advancedxy/bigflow_python
8a244b483404fde7afc42eee98bc964da8ae03e2
[ "Apache-2.0" ]
1,236
2017-11-14T11:10:10.000Z
2022-03-08T11:54:41.000Z
bigflow_python/python/bigflow/transform_impls/__init__.py
advancedxy/bigflow_python
8a244b483404fde7afc42eee98bc964da8ae03e2
[ "Apache-2.0" ]
38
2017-11-14T16:29:12.000Z
2020-01-23T08:32:04.000Z
bigflow_python/python/bigflow/transform_impls/__init__.py
advancedxy/bigflow_python
8a244b483404fde7afc42eee98bc964da8ae03e2
[ "Apache-2.0" ]
184
2017-11-27T07:23:36.000Z
2022-03-14T02:54:16.000Z
#!/usr/bin/env python # -*- coding: utf-8 -*- ######################################################################## # # Copyright (c) 2015 Baidu, Inc. All Rights Reserved. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ######################################################################## """ Package of all transform definitions and implementations """
34.4
74
0.616279
08594054df5d42631db3dfc9ed2ba7bef9346b16
23,134
py
Python
lib/carbon/conf.py
hessu/carbon
db0ffa3dea0e8fffd5cd05c22b60c08d7e4ae799
[ "Apache-2.0" ]
1
2015-08-04T08:58:56.000Z
2015-08-04T08:58:56.000Z
lib/carbon/conf.py
hessu/carbon
db0ffa3dea0e8fffd5cd05c22b60c08d7e4ae799
[ "Apache-2.0" ]
null
null
null
lib/carbon/conf.py
hessu/carbon
db0ffa3dea0e8fffd5cd05c22b60c08d7e4ae799
[ "Apache-2.0" ]
null
null
null
"""Copyright 2009 Chris Davis Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.""" import os import sys import pwd import errno from os.path import join, dirname, normpath, exists, isdir from optparse import OptionParser try: from ConfigParser import ConfigParser # ConfigParser is renamed to configparser in py3 except ImportError: from configparser import ConfigParser from carbon import log, state from carbon.database import TimeSeriesDatabase from carbon.routers import DatapointRouter from carbon.exceptions import CarbonConfigException from twisted.python import usage defaults = dict( USER="", MAX_CACHE_SIZE=float('inf'), MAX_UPDATES_PER_SECOND=500, MAX_CREATES_PER_MINUTE=float('inf'), MIN_TIMESTAMP_RESOLUTION=0, MIN_TIMESTAMP_LAG=0, LINE_RECEIVER_INTERFACE='0.0.0.0', LINE_RECEIVER_PORT=2003, ENABLE_UDP_LISTENER=False, UDP_RECEIVER_INTERFACE='0.0.0.0', UDP_RECEIVER_PORT=2003, PICKLE_RECEIVER_INTERFACE='0.0.0.0', PICKLE_RECEIVER_PORT=2004, MAX_RECEIVER_CONNECTIONS=float('inf'), CACHE_QUERY_INTERFACE='0.0.0.0', CACHE_QUERY_PORT=7002, LOG_UPDATES=True, LOG_CREATES=True, LOG_CACHE_HITS=True, LOG_CACHE_QUEUE_SORTS=True, DATABASE='whisper', WHISPER_AUTOFLUSH=False, WHISPER_SPARSE_CREATE=False, WHISPER_FALLOCATE_CREATE=False, WHISPER_LOCK_WRITES=False, WHISPER_FADVISE_RANDOM=False, CERES_MAX_SLICE_GAP=80, CERES_NODE_CACHING_BEHAVIOR='all', CERES_SLICE_CACHING_BEHAVIOR='latest', CERES_LOCK_WRITES=False, MAX_DATAPOINTS_PER_MESSAGE=500, MAX_AGGREGATION_INTERVALS=5, FORWARD_ALL=True, MAX_QUEUE_SIZE=1000, QUEUE_LOW_WATERMARK_PCT=0.8, TIME_TO_DEFER_SENDING=0.0001, ENABLE_AMQP=False, AMQP_METRIC_NAME_IN_BODY=False, AMQP_VERBOSE=False, AMQP_SPEC=None, BIND_PATTERNS=['#'], GRAPHITE_URL='http://127.0.0.1:80', ENABLE_TAGS=True, TAG_UPDATE_INTERVAL=100, TAG_BATCH_SIZE=100, TAG_QUEUE_SIZE=10000, TAG_HASH_FILENAMES=True, TAG_RELAY_NORMALIZED=False, ENABLE_MANHOLE=False, MANHOLE_INTERFACE='127.0.0.1', MANHOLE_PORT=7222, MANHOLE_USER="", MANHOLE_PUBLIC_KEY="", RELAY_METHOD='rules', DYNAMIC_ROUTER=False, DYNAMIC_ROUTER_MAX_RETRIES=5, ROUTER_HASH_TYPE=None, REPLICATION_FACTOR=1, DIVERSE_REPLICAS=True, DESTINATIONS=[], DESTINATION_PROTOCOL="pickle", DESTINATION_TRANSPORT="none", DESTINATION_SSL_CA=None, DESTINATION_POOL_REPLICAS=False, USE_FLOW_CONTROL=True, USE_INSECURE_UNPICKLER=False, USE_WHITELIST=False, CARBON_METRIC_PREFIX='carbon', CARBON_METRIC_INTERVAL=60, CACHE_WRITE_STRATEGY='sorted', WRITE_BACK_FREQUENCY=None, MIN_RESET_STAT_FLOW=1000, MIN_RESET_RATIO=0.9, MIN_RESET_INTERVAL=121, TCP_KEEPALIVE=True, TCP_KEEPIDLE=10, TCP_KEEPINTVL=30, TCP_KEEPCNT=2, USE_RATIO_RESET=False, LOG_LISTENER_CONN_SUCCESS=True, LOG_AGGREGATOR_MISSES=True, AGGREGATION_RULES='aggregation-rules.conf', REWRITE_RULES='rewrite-rules.conf', RELAY_RULES='relay-rules.conf', ENABLE_LOGROTATION=True, METRIC_CLIENT_IDLE_TIMEOUT=None, CACHE_METRIC_NAMES_MAX=0, CACHE_METRIC_NAMES_TTL=0, RAVEN_DSN=None, PICKLE_RECEIVER_MAX_LENGTH=2**20, ) def _process_alive(pid): if exists("/proc"): return exists("/proc/%d" % pid) else: try: os.kill(int(pid), 0) return True except OSError as err: return err.errno == errno.EPERM class OrderedConfigParser(ConfigParser): """Hacky workaround to ensure sections are always returned in the order they are defined in. Note that this does *not* make any guarantees about the order of options within a section or the order in which sections get written back to disk on write().""" _ordered_sections = [] def read(self, path): # Verifies a file exists *and* is readable if not os.access(path, os.R_OK): raise CarbonConfigException("Error: Missing config file or wrong perms on %s" % path) result = ConfigParser.read(self, path) sections = [] with open(path) as f: for line in f: line = line.strip() if line.startswith('[') and line.endswith(']'): sections.append(line[1:-1]) self._ordered_sections = sections return result def sections(self): return list(self._ordered_sections) # return a copy for safety class Settings(dict): __getattr__ = dict.__getitem__ def __init__(self): dict.__init__(self) self.update(defaults) def readFrom(self, path, section): parser = ConfigParser() if not parser.read(path): raise CarbonConfigException("Failed to read config file %s" % path) if not parser.has_section(section): return for key, value in parser.items(section): key = key.upper() # Detect type from defaults dict if key in defaults: valueType = type(defaults[key]) else: valueType = str if valueType is list: value = [v.strip() for v in value.split(',')] elif valueType is bool: value = parser.getboolean(section, key) else: # Attempt to figure out numeric types automatically try: value = int(value) except ValueError: try: value = float(value) except ValueError: pass self[key] = value settings = Settings() settings.update(defaults) class CarbonCacheOptions(usage.Options): optFlags = [ ["debug", "", "Run in debug mode."], ] optParameters = [ ["config", "c", None, "Use the given config file."], ["instance", "", "a", "Manage a specific carbon instance."], ["logdir", "", None, "Write logs to the given directory."], ["whitelist", "", None, "List of metric patterns to allow."], ["blacklist", "", None, "List of metric patterns to disallow."], ] def postOptions(self): global settings program = self.parent.subCommand # Use provided pidfile (if any) as default for configuration. If it's # set to 'twistd.pid', that means no value was provided and the default # was used. pidfile = self.parent["pidfile"] if pidfile.endswith("twistd.pid"): pidfile = None self["pidfile"] = pidfile # Enforce a default umask of '022' if none was set. if "umask" not in self.parent or self.parent["umask"] is None: self.parent["umask"] = 0o022 # Read extra settings from the configuration file. program_settings = read_config(program, self) settings.update(program_settings) settings["program"] = program # Normalize and expand paths def cleanpath(path): return os.path.normpath(os.path.expanduser(path)) settings["STORAGE_DIR"] = cleanpath(settings["STORAGE_DIR"]) settings["LOCAL_DATA_DIR"] = cleanpath(settings["LOCAL_DATA_DIR"]) settings["WHITELISTS_DIR"] = cleanpath(settings["WHITELISTS_DIR"]) settings["PID_DIR"] = cleanpath(settings["PID_DIR"]) settings["LOG_DIR"] = cleanpath(settings["LOG_DIR"]) settings["pidfile"] = cleanpath(settings["pidfile"]) # Set process uid/gid by changing the parent config, if a user was # provided in the configuration file. if settings.USER: self.parent["uid"], self.parent["gid"] = ( pwd.getpwnam(settings.USER)[2:4]) # Set the pidfile in parent config to the value that was computed by # C{read_config}. self.parent["pidfile"] = settings["pidfile"] storage_schemas = join(settings["CONF_DIR"], "storage-schemas.conf") if not exists(storage_schemas): print("Error: missing required config %s" % storage_schemas) sys.exit(1) if settings.CACHE_WRITE_STRATEGY not in ('timesorted', 'sorted', 'max', 'naive'): log.err("%s is not a valid value for CACHE_WRITE_STRATEGY, defaulting to %s" % (settings.CACHE_WRITE_STRATEGY, defaults['CACHE_WRITE_STRATEGY'])) else: log.msg("Using %s write strategy for cache" % settings.CACHE_WRITE_STRATEGY) # Database-specific settings database = settings.DATABASE if database not in TimeSeriesDatabase.plugins: print("No database plugin implemented for '%s'" % database) raise SystemExit(1) database_class = TimeSeriesDatabase.plugins[database] state.database = database_class(settings) settings.CACHE_SIZE_LOW_WATERMARK = settings.MAX_CACHE_SIZE * 0.95 if "action" not in self: self["action"] = "start" self.handleAction() # If we are not running in debug mode or non-daemon mode, then log to a # directory, otherwise log output will go to stdout. If parent options # are set to log to syslog, then use that instead. if not self["debug"]: if self.parent.get("syslog", None): prefix = "%s-%s[%d]" % (program, self["instance"], os.getpid()) log.logToSyslog(prefix) elif not self.parent["nodaemon"]: logdir = settings.LOG_DIR if not isdir(logdir): os.makedirs(logdir) if settings.USER: # We have not yet switched to the specified user, # but that user must be able to create files in this # directory. os.chown(logdir, self.parent["uid"], self.parent["gid"]) log.logToDir(logdir) if self["whitelist"] is None: self["whitelist"] = join(settings["CONF_DIR"], "whitelist.conf") settings["whitelist"] = self["whitelist"] if self["blacklist"] is None: self["blacklist"] = join(settings["CONF_DIR"], "blacklist.conf") settings["blacklist"] = self["blacklist"] def parseArgs(self, *action): """If an action was provided, store it for further processing.""" if len(action) == 1: self["action"] = action[0] def handleAction(self): """Handle extra argument for backwards-compatibility. * C{start} will simply do minimal pid checking and otherwise let twistd take over. * C{stop} will kill an existing running process if it matches the C{pidfile} contents. * C{status} will simply report if the process is up or not. """ action = self["action"] pidfile = self.parent["pidfile"] program = settings["program"] instance = self["instance"] if action == "stop": if not exists(pidfile): print("Pidfile %s does not exist" % pidfile) raise SystemExit(0) pf = open(pidfile, 'r') try: pid = int(pf.read().strip()) pf.close() except ValueError: print("Failed to parse pid from pidfile %s" % pidfile) pf.close() try: print("removing corrupted pidfile %s" % pidfile) os.unlink(pidfile) except IOError: print("Could not remove pidfile %s" % pidfile) raise SystemExit(1) except IOError: print("Could not read pidfile %s" % pidfile) raise SystemExit(1) print("Sending kill signal to pid %d" % pid) try: os.kill(pid, 15) except OSError as e: if e.errno == errno.ESRCH: print("No process with pid %d running" % pid) else: raise raise SystemExit(0) elif action == "status": if not exists(pidfile): print("%s (instance %s) is not running" % (program, instance)) raise SystemExit(1) pf = open(pidfile, "r") try: pid = int(pf.read().strip()) pf.close() except ValueError: print("Failed to parse pid from pidfile %s" % pidfile) pf.close() try: print("removing corrupted pidfile %s" % pidfile) os.unlink(pidfile) except IOError: print("Could not remove pidfile %s" % pidfile) raise SystemExit(1) except IOError: print("Failed to read pid from %s" % pidfile) raise SystemExit(1) if _process_alive(pid): print("%s (instance %s) is running with pid %d" % (program, instance, pid)) raise SystemExit(0) else: print("%s (instance %s) is not running" % (program, instance)) raise SystemExit(1) elif action == "start": if exists(pidfile): pf = open(pidfile, 'r') try: pid = int(pf.read().strip()) pf.close() except ValueError: print("Failed to parse pid from pidfile %s" % pidfile) pf.close() try: print("removing corrupted pidfile %s" % pidfile) os.unlink(pidfile) except IOError: print("Could not remove pidfile %s" % pidfile) raise SystemExit(1) except IOError: print("Could not read pidfile %s" % pidfile) raise SystemExit(1) if _process_alive(pid): print("%s (instance %s) is already running with pid %d" % (program, instance, pid)) raise SystemExit(1) else: print("Removing stale pidfile %s" % pidfile) try: os.unlink(pidfile) except IOError: print("Could not remove pidfile %s" % pidfile) # Try to create the PID directory else: if not os.path.exists(settings["PID_DIR"]): try: os.makedirs(settings["PID_DIR"]) except OSError as exc: # Python >2.5 if exc.errno == errno.EEXIST and os.path.isdir(settings["PID_DIR"]): pass else: raise print("Starting %s (instance %s)" % (program, instance)) else: print("Invalid action '%s'" % action) print("Valid actions: start stop status") raise SystemExit(1) class CarbonAggregatorOptions(CarbonCacheOptions): optParameters = [ ["rules", "", None, "Use the given aggregation rules file."], ["rewrite-rules", "", None, "Use the given rewrite rules file."], ] + CarbonCacheOptions.optParameters def postOptions(self): CarbonCacheOptions.postOptions(self) if self["rules"] is None: self["rules"] = join(settings["CONF_DIR"], settings['AGGREGATION_RULES']) settings["aggregation-rules"] = self["rules"] if self["rewrite-rules"] is None: self["rewrite-rules"] = join(settings["CONF_DIR"], settings['REWRITE_RULES']) settings["rewrite-rules"] = self["rewrite-rules"] class CarbonRelayOptions(CarbonCacheOptions): optParameters = [ ["rules", "", None, "Use the given relay rules file."], ["aggregation-rules", "", None, "Use the given aggregation rules file."], ] + CarbonCacheOptions.optParameters def postOptions(self): CarbonCacheOptions.postOptions(self) if self["rules"] is None: self["rules"] = join(settings["CONF_DIR"], settings['RELAY_RULES']) settings["relay-rules"] = self["rules"] if self["aggregation-rules"] is None: self["aggregation-rules"] = join(settings["CONF_DIR"], settings['AGGREGATION_RULES']) settings["aggregation-rules"] = self["aggregation-rules"] router = settings["RELAY_METHOD"] if router not in DatapointRouter.plugins: print("In carbon.conf, RELAY_METHOD must be one of %s. " "Invalid value: '%s'" % (', '.join(DatapointRouter.plugins), router)) raise SystemExit(1) def get_default_parser(usage="%prog [options] <start|stop|status>"): """Create a parser for command line options.""" parser = OptionParser(usage=usage) parser.add_option( "--debug", action="store_true", help="Run in the foreground, log to stdout") parser.add_option( "--syslog", action="store_true", help="Write logs to syslog") parser.add_option( "--nodaemon", action="store_true", help="Run in the foreground") parser.add_option( "--profile", help="Record performance profile data to the given file") parser.add_option( "--profiler", help="Specify the profiler to use") parser.add_option( "--pidfile", default=None, help="Write pid to the given file") parser.add_option( "--umask", default=None, help="Use the given umask when creating files") parser.add_option( "--config", default=None, help="Use the given config file") parser.add_option( "--whitelist", default=None, help="Use the given whitelist file") parser.add_option( "--blacklist", default=None, help="Use the given blacklist file") parser.add_option( "--logdir", default=None, help="Write logs in the given directory") parser.add_option( "--instance", default='a', help="Manage a specific carbon instance") parser.add_option( "--logfile", default=None, help="Log to a specified file, - for stdout") parser.add_option( "--logger", default=None, help="A fully-qualified name to a log observer factory to use for the initial log " "observer. Takes precedence over --logfile and --syslog (when available).") return parser def get_parser(name): parser = get_default_parser() if "carbon-aggregator" in name: parser.add_option( "--rules", default=None, help="Use the given aggregation rules file.") parser.add_option( "--rewrite-rules", default=None, help="Use the given rewrite rules file.") elif name == "carbon-relay": parser.add_option( "--rules", default=None, help="Use the given relay rules file.") return parser def parse_options(parser, args): """ Parse command line options and print usage message if no arguments were provided for the command. """ (options, args) = parser.parse_args(args) if not args: parser.print_usage() raise SystemExit(1) if args[0] not in ("start", "stop", "status"): parser.print_usage() raise SystemExit(1) return options, args def read_config(program, options, **kwargs): """ Read settings for 'program' from configuration file specified by 'options["config"]', with missing values provided by 'defaults'. """ settings = Settings() settings.update(defaults) # Initialize default values if not set yet. for name, value in kwargs.items(): settings.setdefault(name, value) graphite_root = kwargs.get("ROOT_DIR") if graphite_root is None: graphite_root = os.environ.get('GRAPHITE_ROOT') if graphite_root is None: raise CarbonConfigException("Either ROOT_DIR or GRAPHITE_ROOT " "needs to be provided.") # Default config directory to root-relative, unless overriden by the # 'GRAPHITE_CONF_DIR' environment variable. settings.setdefault("CONF_DIR", os.environ.get("GRAPHITE_CONF_DIR", join(graphite_root, "conf"))) if options["config"] is None: options["config"] = join(settings["CONF_DIR"], "carbon.conf") else: # Set 'CONF_DIR' to the parent directory of the 'carbon.conf' config # file. settings["CONF_DIR"] = dirname(normpath(options["config"])) # Storage directory can be overriden by the 'GRAPHITE_STORAGE_DIR' # environment variable. It defaults to a path relative to GRAPHITE_ROOT # for backwards compatibility though. settings.setdefault("STORAGE_DIR", os.environ.get("GRAPHITE_STORAGE_DIR", join(graphite_root, "storage"))) def update_STORAGE_DIR_deps(): # By default, everything is written to subdirectories of the storage dir. settings.setdefault( "PID_DIR", settings["STORAGE_DIR"]) settings.setdefault( "LOG_DIR", join(settings["STORAGE_DIR"], "log", program)) settings.setdefault( "LOCAL_DATA_DIR", join(settings["STORAGE_DIR"], "whisper")) settings.setdefault( "WHITELISTS_DIR", join(settings["STORAGE_DIR"], "lists")) # Read configuration options from program-specific section. section = program[len("carbon-"):] config = options["config"] if not exists(config): raise CarbonConfigException("Error: missing required config %r" % config) settings.readFrom(config, section) settings.setdefault("instance", options["instance"]) update_STORAGE_DIR_deps() # If a specific instance of the program is specified, augment the settings # with the instance-specific settings and provide sane defaults for # optional settings. if options["instance"]: settings.readFrom(config, "%s:%s" % (section, options["instance"])) settings["pidfile"] = ( options["pidfile"] or join(settings["PID_DIR"], "%s-%s.pid" % (program, options["instance"]))) settings["LOG_DIR"] = ( options["logdir"] or join(settings["LOG_DIR"], "%s-%s" % (program, options["instance"]))) else: settings["pidfile"] = ( options["pidfile"] or join(settings["PID_DIR"], '%s.pid' % program)) settings["LOG_DIR"] = (options["logdir"] or settings["LOG_DIR"]) update_STORAGE_DIR_deps() return settings
34.683658
97
0.60383
eebcc3a4111f94add2f05af23399a71834ba2024
1,625
py
Python
src/newton-opt-lu.py
codinginbrazil/GA018
714fcfca0144536ce17481793b100058fb07b928
[ "MIT" ]
1
2021-03-24T12:52:12.000Z
2021-03-24T12:52:12.000Z
src/newton-opt-lu.py
codinginbrazil/GA018
714fcfca0144536ce17481793b100058fb07b928
[ "MIT" ]
null
null
null
src/newton-opt-lu.py
codinginbrazil/GA018
714fcfca0144536ce17481793b100058fb07b928
[ "MIT" ]
null
null
null
#!/usr/bin/env python # from sympy import lambdify, diff, hessian, jacobi, cos, sin, exp, pprint # from sympy.matrices import Matrix, eye, zeros, ones, diag, GramSchmidt from sympy.abc import x,y,w,z from Linear_system import * from Error import * from Log import * MAX = 20 PATH = 'log/newton-opt/' TOLERANCE = 0.00000001 # 10**(-8) F = 1 - (exp(-( ( ((x-1)**2)/(2*(0.75**2)) ) + ( ((y-2)**2)/(2*(0.5**2)) ) ))) + ( 0.04 * (((x-1)**2) + ((y-2)**2)) ) def optimization(fn, point, tol, nmax) : # l = Log() e = Error() ls = Linear_system() h = ls.hessiana(fn,[x,y]) j = ls.jacobiana_transpose(fn,[x,y]) previous = point for n in range(nmax) : hh = h(float(point[0]), float(point[1])) jj = j(float(point[0]), float(point[1])) L, U, _ = Matrix(hh).LUdecomposition() gauss = ls.gauss_jordan(Matrix(L), Matrix(-jj)) point = point + ls.gauss_jordan(Matrix(U), Matrix(gauss)) e.matrix_norm(point, previous) # l.append([float(point[0]), float(point[1]), # float(previous[0]), float(previous[1]), # float(e._norm)]) if (e._norm < tol) : # l.set_header(['X axes', 'Y axes','X-1 axes', 'Y-1 axes', 'Matrix Norm']) # l.list2file(PATH+'main-lu') # l.time(PATH+'time-n-opt-lu') return point breakpoint previous = point return False if __name__ == "__main__" : seed = Matrix([[0.0],[0.0]]) for i in range(1): r = optimization(F, seed, TOLERANCE, MAX) pprint(r)
30.092593
118
0.527385
976eedf8890e9b621a7cd9fe5b8c1870c131fc09
1,598
py
Python
trix/trix_student/views/users.py
Elthan/trix2
5fea5eaea8dfd2a6201377fc7775e89ce99f6cbd
[ "BSD-3-Clause" ]
1
2020-03-15T12:29:13.000Z
2020-03-15T12:29:13.000Z
trix/trix_student/views/users.py
devilry/trix2
5bbf15671b4a72ef1ec41240b975950f413735d8
[ "BSD-3-Clause" ]
63
2015-01-03T17:21:38.000Z
2020-10-07T13:21:08.000Z
trix/trix_student/views/users.py
Elthan/trix2
5fea5eaea8dfd2a6201377fc7775e89ce99f6cbd
[ "BSD-3-Clause" ]
4
2015-01-08T14:49:44.000Z
2018-06-18T06:55:30.000Z
from django.views.generic import DeleteView from django.contrib.auth.mixins import LoginRequiredMixin from django.utils.translation import ugettext_lazy as _ from django.http import Http404 from django.urls import reverse_lazy from trix.trix_core import models from trix.trix_student.views import base class ProfilePageView(LoginRequiredMixin, base.TrixListViewBase): template_name = 'trix_student/users.django.html' model = models.HowSolved def get_context_data(self): context = super(ProfilePageView, self).get_context_data() context['solved_assignments'] = self.get_solved_assignments() context['user_role'] = self.get_user_role() return context def get_solved_assignments(self): return models.HowSolved.objects.all() def get_user_role(self): if self.request.user.is_superuser: return _('Superuser') elif self.request.user.is_admin_on_anything(): courses = models.Course.objects.filter(admins__id=self.request.user.id) courses_string = ', '.join([str(course) for course in courses]) return _('Administrator for ') + courses_string else: return _('Student') class UserDeleteView(LoginRequiredMixin, DeleteView): template_name = 'trix_student/user_delete.django.html' model = models.User success_url = reverse_lazy('trix_student_dashboard') def get_object(self, queryset=None): user = super(UserDeleteView, self).get_object() if not user.id == self.request.user.id: raise Http404 return user
35.511111
83
0.711514
82718353092cb63f6560eed035bb958036a900eb
191,055
py
Python
breeze_resources.py
adamerose/BreezeStyleSheets
a3c6d5bbaaa0f94072342f18b633e210ad1c1940
[ "MIT" ]
1
2021-03-03T06:17:04.000Z
2021-03-03T06:17:04.000Z
breeze_resources.py
adamerose/BreezeStyleSheets
a3c6d5bbaaa0f94072342f18b633e210ad1c1940
[ "MIT" ]
null
null
null
breeze_resources.py
adamerose/BreezeStyleSheets
a3c6d5bbaaa0f94072342f18b633e210ad1c1940
[ "MIT" ]
1
2021-03-03T06:38:15.000Z
2021-03-03T06:38:15.000Z
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.15.1) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x14\x04\ \x00\ \x00\x80\xd6\x78\x9c\xdd\x1d\x6b\x73\xdb\x36\xf2\x7b\x67\xfa\x1f\ \x50\xe7\x4b\xdc\x93\x6c\xc9\xb2\x9d\x98\xb9\x74\x46\xb6\xe5\x58\ \x73\xb6\xe5\x48\x4a\x73\x99\x9b\x4e\x87\x92\x20\x8b\x17\x8a\x54\ \x49\x2a\xb6\x7b\x73\xff\xfd\x16\xe0\x0b\x20\x16\x24\x28\xcb\x6e\ \xaf\x71\xc7\x95\x49\x60\x5f\x58\x2c\x16\x8b\x5d\x68\xff\xc7\xef\ \xbf\x23\x3f\x12\x72\x1a\x50\xfa\x3b\x25\x61\xf4\xe8\xd2\x70\x41\ \x69\xb4\xc7\x9e\xc7\xef\x2c\x7b\x1d\x2d\xfc\xc0\x22\x67\xbe\xeb\ \x78\xe4\x7c\xfd\xdb\x9a\x86\x9e\xff\x98\xbc\xa5\x33\x27\x62\x6f\ \xbb\x2e\x7d\x20\x97\xeb\xf0\x77\xfb\x6e\x91\xbc\x72\x9d\x29\xf5\ \x42\x6a\x91\xeb\xfe\xb8\x41\x42\x4a\xc9\x55\xff\xac\x77\x33\xea\ \xed\x2d\x67\x39\xfc\xf1\xc2\x09\x09\xfc\xe7\x07\xce\x9d\xe3\xd9\ \xae\xfb\x48\x6c\x32\xf7\x83\xaf\xc4\x9f\x93\x8f\xe7\x76\xf0\x75\ \xc4\xc8\x1a\x31\xb2\x1a\xc4\xf6\x66\xac\xf1\xc4\x0e\xe9\x8c\xf8\ \x5e\x42\xf9\xbe\xc8\x06\xeb\x42\xa6\xbe\xeb\x07\x24\x9c\x2e\xe8\ \x92\x36\xc8\x64\x1d\xb1\x5e\x40\xbe\xe7\x93\x7b\x1b\x30\xcc\xe7\ \x8e\xeb\xd8\x11\x00\xb9\x77\xa2\x05\xf9\xc7\x79\x2f\x67\xb9\xb9\ \x8d\x7f\x29\x73\x94\x71\x4f\xae\x62\x51\x90\xd7\xf0\xc7\x6e\x86\ \xe8\xcc\x5f\x3d\x02\xd7\x8b\x88\xbc\x9e\xee\x92\xbf\x1f\xb4\xda\ \x9d\x26\xfc\x3a\xfc\x89\xfc\xbd\x20\xec\x9f\x34\xed\x8f\x58\xfb\ \x63\x68\x2f\x8a\xff\xa7\x0c\xc1\x2d\x0d\x96\x4e\x18\x3a\x20\x28\ \x60\x7f\x41\x03\x3a\x79\x24\x77\x81\xed\x01\xe3\x0d\x32\x07\x71\ \x31\x21\x4f\x17\x76\x70\x07\x52\x8a\x7c\x10\xef\x23\x59\xd1\x20\ \x84\x0e\xfe\x24\xb2\x1d\xcf\xf1\xee\x38\x24\x1b\x24\xba\x7a\x64\ \xad\x23\x36\x5e\xa1\x3f\x8f\xee\xed\x80\xf2\xf1\xb0\xc3\xd0\x9f\ \xc6\xc2\x9c\xf9\xd3\xf5\x92\x7a\x91\x1d\x31\x9c\x20\x63\x1a\x92\ \xd7\xd1\x82\x72\x18\x3b\xa3\xa4\xd7\xce\x2e\x47\x36\xa3\xb6\xcb\ \xc6\x04\xde\x93\xf4\x15\x1f\x0e\x1f\x86\x2b\xa0\x61\x14\x38\x53\ \x06\xa7\x01\x8d\xa6\xee\x7a\x96\xd2\x92\x36\x71\x9d\xa5\x93\x60\ \x62\x20\xb8\x64\x42\x06\x78\x1d\x02\x37\x8c\xde\x06\x59\xfa\x33\ \x67\xce\xfe\x4f\x39\x8b\xab\xf5\xc4\x75\xc2\x45\x83\xc3\x99\x39\ \x0c\x05\xe8\x06\xbc\x08\xd9\x0b\x3e\x46\x5c\xc7\xf6\x99\xf2\x50\ \xd7\x65\x50\x1c\xe0\x81\xf3\x9d\x53\x19\xeb\x61\xe4\x73\x30\x2b\ \x26\xe4\x28\x11\x1b\xc7\x7f\xbf\xf0\x97\x32\x57\x20\xb2\xf9\x3a\ \xf0\x00\x35\x9d\x71\xd6\x7d\x10\x21\xc7\xfa\x6f\x3a\x8d\x52\x48\ \xac\xcb\xdc\x77\x5d\xff\x1e\x58\x05\xd4\x1e\xcc\x2d\xe0\x2e\xb4\ \xb2\x01\x65\xfa\x64\x4f\xfc\x6f\x94\xb3\x17\xeb\x82\xe7\x47\x40\ \x79\x4c\x11\x1b\x9b\x55\x3e\xe8\xc9\xab\x70\x01\xd3\x8a\x4c\x68\ \x22\x47\x20\xc1\xf1\xe2\x51\x15\x38\x0c\x18\x35\x61\x04\xba\xe1\ \xc0\xb0\xac\xfc\x80\xa3\x2e\x72\x9e\xcf\x92\xf1\x65\x8f\x8c\x06\ \x17\xe3\xcf\xdd\x61\x8f\xf4\x47\xe4\x76\x38\xf8\xb9\x7f\xde\x3b\ \x27\x3b\xdd\x11\xfc\xbd\xd3\x20\x9f\xfb\xe3\xcb\xc1\xa7\x31\x81\ \x16\xc3\xee\xcd\xf8\x0b\x19\x5c\x90\xee\xcd\x17\xf2\x8f\xfe\xcd\ \x79\x83\xf4\xfe\x79\x3b\xec\x8d\x46\x1c\xd6\x60\x48\xfa\xd7\xb7\ \x57\xfd\x1e\x3c\xef\xdf\x9c\x5d\x7d\x3a\xef\xdf\x7c\x20\xa7\xd0\ \xf7\x66\x00\x93\xa7\x0f\xb3\x06\x00\x8f\x07\x1c\x69\x02\xae\xdf\ \x1b\x01\x40\xde\xfd\xba\x37\x3c\xbb\x84\x47\xdd\xd3\xfe\x55\x7f\ \xfc\xa5\x41\x2e\xfa\xe3\x1b\x80\x4d\x2e\x00\x70\x97\xdc\x76\x87\ \xe3\xfe\xd9\xa7\xab\xee\x90\xdc\x7e\x1a\xde\x0e\x46\x3d\x20\xe3\ \x1c\x40\xdf\xf4\x6f\x2e\x86\x80\xa9\x77\xdd\xbb\x19\x73\xce\x00\ \x3b\x3c\x27\xbd\x9f\xe1\x01\x19\x5d\x76\xaf\xae\x38\xca\xee\x27\ \xe0\x64\x38\x62\x74\x9e\x0d\x6e\xbf\x0c\xfb\x1f\x2e\xc7\xe4\x72\ \x70\x75\xde\x83\x87\xa7\x3d\xa0\xb0\x7b\x7a\xd5\x8b\xd1\xdd\x7c\ \x89\xe7\xea\x55\xb7\x7f\xdd\x20\xe7\xdd\xeb\xee\x87\x1e\xef\x39\ \x00\x48\x43\xde\x34\xa1\xf2\xf3\x65\x8f\x3f\x02\x9c\x5d\xf8\xef\ \x6c\xdc\x1f\xdc\x30\x19\x9d\x0d\x6e\xc6\x43\xf8\x33\xd6\xd2\xf1\ \x60\x38\xce\xba\x7f\xee\x8f\x7a\x0d\xd2\x1d\xf6\x47\x4c\x40\x17\ \xc3\x01\xa0\x60\x22\x86\x5e\x03\x0e\x08\xfa\xde\xf4\x62\x48\x4c\ \xfc\x8c\x7a\x0e\x25\x1b\x29\x68\xc6\x38\xfa\x34\xea\xe5\x34\x9d\ \xf7\xba\x57\x00\x6f\xc4\x00\x88\xc3\xba\xb7\x5d\x73\x08\x56\xfa\ \xfb\xef\x3e\x8e\x7d\xdf\x1d\x3b\xab\xef\xbf\xfb\x0f\x3c\x83\x7f\ \x13\x7b\xfa\xf5\x2e\xf0\xd7\xde\xac\xc9\x8d\xb6\x45\x26\x2e\x3c\ \x7a\x17\xbf\x4d\x1e\xdd\x2f\x9c\x88\x26\x8f\x56\xf6\x8c\x99\x02\ \x8b\x1c\xad\x1e\xe0\xd1\x7f\x39\xd4\xcf\xce\xec\x8e\x46\x19\xd0\ \xa4\xdb\xab\x4e\xbb\x73\xdc\x39\x7d\xa7\xc3\xf4\xaa\x77\x71\xd1\ \xba\x68\x27\xef\x61\xc2\x53\x6e\x70\x9a\x4a\xcb\x57\x9d\x4e\xf7\ \xf0\xfc\x42\x69\x58\x89\xc7\x75\x56\xc0\x90\x1f\xcc\x68\x90\xbe\ \xe5\x7f\x34\x9d\xa5\x7d\x07\x4b\xa3\xe7\x7b\x54\x7a\x61\x91\xd6\ \xea\x81\x44\x60\xa3\xc3\x15\xcc\x37\x2f\x92\xc4\x01\x66\x0f\xd6\ \x05\xe8\xd7\x2a\x70\x6e\x81\x7c\x96\xd6\x02\x2c\x43\x50\x22\x59\ \x99\x0d\x85\x78\x15\x60\xcc\x29\x9d\x19\xc1\xe4\xdd\x01\xc0\xd9\ \x82\x4e\xbf\x9e\xfa\x0f\x59\x27\xe0\x64\x2a\x8c\x98\xc4\x88\x20\ \x00\x54\x98\x4b\x58\x9b\x1c\x18\x11\x3f\x8a\xfc\xa5\x45\x0e\x72\ \x08\x0c\x68\xf4\x08\x8f\x5a\xb9\x30\x52\xd4\x16\xd8\x76\x7b\xe2\ \x0a\x84\xa7\xc0\x4f\xbb\xa7\x27\xa7\x6f\xb3\x0e\x1f\x80\x97\x15\ \xeb\x60\x39\x60\x6d\xa7\x36\xf8\x32\x59\x97\x04\xb5\x4b\xe7\x91\ \x88\x18\x79\x5c\x40\x9e\xc3\xb2\xd6\xde\x94\x3d\x85\xe5\xb6\xaa\ \x81\x35\x87\xb5\x33\xcc\x05\x2d\xa9\xc9\x3a\x70\x5f\x5b\xfb\x2e\ \xb3\xf7\xfb\xbc\xfd\xc4\x7f\xf8\x35\xeb\xfa\x6b\xca\xed\x5e\xf8\ \xed\x6e\xd7\x8c\x9e\x58\x57\xaa\xa9\x5a\xc1\x42\x1c\xc6\xe4\x23\ \xb2\xc2\xe0\x95\x37\xe3\x5c\x56\x37\x4b\xd0\x16\xc4\x81\xcc\x17\ \x33\x09\x35\x39\x75\xd5\xe2\x49\x9a\xd7\x19\x85\xa4\x8b\x31\xec\ \x5c\x02\x65\x8d\x2a\xc4\x6e\x24\xcd\xed\xca\xb2\x36\x9f\xa5\x0a\ \x21\x35\xda\x40\xdc\xa6\x03\x0a\x9f\x68\xc4\x1c\x22\x0f\xfc\xd3\ \x3a\x78\xa4\x8e\x35\xf1\xd4\xe7\x4a\xea\xbe\x11\x6f\xe5\x6a\x25\ \x37\x15\x15\xc2\x14\xbc\x62\x50\xeb\x72\x55\xc3\x48\xa5\xca\x91\ \xf6\xa8\x52\xa2\x4d\x68\x7b\x8a\xe9\xac\xa2\x4b\x6d\xb9\x4d\xb3\ \x3e\xb4\x67\x8e\x7f\xba\x86\xf5\xd0\x7b\xbe\x15\x56\x41\x65\xbc\ \xa2\x8a\x7d\x74\x0b\x61\x55\x1b\xe3\xb5\x30\x60\x80\xea\x48\xac\ \x62\xed\xaa\x6c\x69\x60\x4b\x31\xc1\x1b\x73\x80\xcd\x7d\x0d\x51\ \xf8\x5a\xf5\x64\x52\x50\x3b\x5f\x4e\x42\x6e\x7b\x2a\xda\x3d\x93\ \xf4\x36\x21\xd9\xd4\x44\x4b\x18\xea\x8f\x8e\x3a\x6d\x9e\xc0\xe0\ \xa6\xea\x5d\xc3\x0a\x99\x4d\xa8\x6b\xea\xad\x4f\xed\xd2\x9d\x86\ \xb4\xb3\xd2\xec\x34\x12\x30\x16\xdf\x6b\x20\xc0\x2c\x71\x1f\x84\ \xf7\x2a\xdb\xa1\x14\xbb\x8b\x1a\xd7\x86\x4d\x56\xe8\xbb\xce\x4c\ \xb1\x5f\x32\x78\x9d\xc6\x62\xfd\x37\xda\x73\x21\x16\xb8\xd9\xce\ \x8c\x78\xb2\xd7\xcd\x5e\xb5\x05\xe3\xcc\x08\x35\xa6\xab\x04\xaf\ \x6c\xf2\x19\x54\xe0\x7d\x2a\x2c\x2e\x69\xb3\x23\xb5\x99\x38\x6e\ \xe2\xbe\x9c\x74\xd8\x2e\x36\xfd\x80\x6d\x9c\xf2\x85\x4a\x25\x5d\ \x1c\x36\xb2\xff\x23\x8b\x05\xd2\xe0\x1b\xe5\xab\x1c\x8b\x90\x05\ \xf9\x0e\x3c\xe9\xcd\x83\x0b\x45\xca\x54\xdd\x28\xd1\x43\x0b\x5a\ \x03\x4a\x69\x03\xb8\xa0\x6c\x4e\x88\x7b\x3f\x51\xb9\xf8\x84\x99\ \xb8\x6b\x8a\xb1\xd7\x56\xd8\x0e\x62\x58\x82\x10\x81\x33\xb0\x01\ \x4d\xfa\x30\x75\xd7\xa1\xf3\x8d\x85\xe7\x92\xb9\x4b\xde\x13\x3e\ \x01\x81\xbb\x87\x38\x2a\x9f\xbf\xe3\x40\x5f\xb3\x68\xfa\xc7\x2e\ \x17\x01\xf7\x40\x18\xf9\x51\x2f\x85\xb4\xcb\xe5\x91\x8a\x22\xb3\ \x08\x12\xb6\xdc\x3e\x6c\xd3\x39\x31\x44\x89\x4c\xdb\xe7\xc6\xbd\ \xad\xad\x9d\x11\x96\x8d\xf8\xc3\xd0\x81\x8e\xe0\xfa\xc1\x0d\x35\ \x3b\xd8\x00\xab\x5f\x54\x91\x0d\xd5\x63\x33\xd5\x30\x5f\x31\x2a\ \x70\xd5\x91\xd9\x53\x91\xd6\x65\xcf\x48\x13\x9e\xa4\x05\x95\x78\ \xb8\xfd\x68\xda\x41\xe0\xdf\x6b\x2c\x73\x05\x02\xf6\xfb\x57\xde\ \x3f\x05\xcf\x3a\xdc\x3b\xb3\x68\x61\x91\xe3\x0c\x42\x6a\xf4\x4e\ \x72\x43\x95\x07\x05\xb5\x9b\x80\xc3\x23\xf6\x63\x10\x68\x8d\x59\ \xea\x4e\x42\x30\xf2\xd3\xa8\x0f\x66\xfa\x67\x87\xe6\x1c\xd9\x2e\ \x6c\x18\xf9\x26\xb8\xb6\x4f\x81\xaf\x25\x9d\x6e\xe7\xa4\x73\x22\ \x4b\x87\xc9\x7a\x1d\xca\xeb\x5e\xc2\x60\xe6\xc9\xa6\x6e\x00\xb6\ \x13\x91\x96\x59\x39\xfc\xf9\x71\x6c\x4f\x8a\xa0\xb2\xcd\x24\xea\ \x26\x67\x0f\x47\x00\x8e\xea\x10\x26\xce\x62\x8c\xe3\x0a\xfc\xc7\ \xde\xcc\x89\xca\xfc\xaf\x8b\x33\xf6\xf3\x4e\x5d\x9a\x65\x51\x70\ \xcb\x61\xc5\xbc\x18\xb8\x48\x5a\x21\x96\xac\xae\xe9\x0e\xd9\xdc\ \x87\xd2\x21\x48\xbd\xa1\xc8\x5f\x61\x2b\xac\xf8\xb8\x18\xdd\x8d\ \x9c\xc8\xcd\xe3\x3f\xe1\x7a\x02\x0e\x4e\x14\xf8\x6e\x33\x3e\x76\ \xb6\x12\x18\xef\x94\xf7\x2b\x3f\xe4\x87\x70\xe0\x4c\xfa\x2b\x32\ \x05\x97\x24\x8b\xe4\xa7\xe4\x24\x2b\xbe\x42\x66\xb2\xe2\xb7\x51\ \x3a\x9b\x6f\x04\x3a\xd3\xe9\x30\x9a\x02\x4a\xb7\x1b\x50\xbb\x68\ \x31\x54\x61\xd4\xf7\x44\x31\x67\x3a\xc6\xc8\x14\x7d\x01\x92\xf8\ \x1d\x98\xb6\x5d\xc5\xff\x69\xef\x1d\x15\x85\x6d\x91\x0e\xe0\x8d\ \x5f\x08\x1f\x11\xda\xc4\xa3\x8c\x57\x07\xdd\x83\x93\x03\xcd\x6c\ \x3c\x44\xbc\xac\x4c\x9d\xb3\x8e\x45\xb2\xad\x85\xed\xcd\x5c\x8a\ \x91\x8f\x80\x39\x6e\x1d\x5d\x1c\xa5\xbe\xf8\x12\xc6\x22\x31\x7f\ \xca\xbc\x90\x89\x52\x90\xc2\x08\x37\xf9\x2e\x0e\x41\x9b\x0a\xa8\ \x95\x8a\x26\xfd\x50\xc7\x44\x2b\x2b\x9a\x60\xab\x05\xcd\xcf\x46\ \x28\x7f\x84\xea\x2e\x87\xac\x36\x50\x94\x5f\x61\x14\x1a\x57\x33\ \x9a\xf2\x69\xc8\x26\x9b\x2f\x25\x5c\x22\x3c\xa9\x8c\xa3\x5c\x32\ \xc0\x9b\x30\x89\x8c\x66\x12\x12\xaa\x6a\x25\xec\x92\x36\x5d\x79\ \x9f\x7b\x34\x2b\xc7\x33\x61\x95\x54\x35\x33\xe2\x35\x1f\xdb\xed\ \xb0\xba\xe9\x90\xae\x57\xb1\xab\x24\x30\x20\x73\x38\xf3\xef\x3d\ \xa5\x09\x1a\x44\x10\x97\x5e\x55\x6f\x56\x4c\x04\x3a\x24\x4c\x8c\ \x85\x06\x95\x28\x84\xfe\x30\x2c\x11\xf8\x96\xa5\x16\x4d\xb2\xa8\ \xa9\x9c\x31\x7b\xad\xd8\x6a\x65\xae\x6e\x64\xaf\x75\xf6\xd8\x84\ \x76\xc5\x1a\xa7\x5a\x51\xd7\x1c\x67\xea\xaa\x60\x15\x57\x2b\xc9\ \x20\x57\x5a\xa9\xf5\xea\x59\x6c\x14\x2c\xfe\x4f\x32\x51\x5b\xe4\ \x90\x4d\x81\x67\xe1\x31\x8e\x56\x3d\x69\xb9\x49\xd9\xcc\x43\xf3\ \xa5\xad\x12\xdb\x64\x3a\xa6\x2f\x3e\x94\x15\x83\x89\x72\xa9\xb6\ \x32\xb2\xc0\xf9\xa8\xfe\xd1\x83\x99\xd9\xe0\x94\x81\x02\x83\x82\ \x09\x2e\xb1\x16\x46\x06\x58\x83\x21\xb3\xbf\xc6\xf0\x3f\x8e\xe9\ \x43\x54\xb5\xb7\xda\x64\x1f\x5a\x0c\x33\xdf\xba\xb6\xe3\x6d\x13\ \x59\xcd\x2d\x42\x4c\xc5\x25\xb5\xa1\x05\xdb\x81\xb3\x08\x11\x8f\ \x17\x95\xd1\x52\x1d\x52\xd6\xee\x34\xcb\xa8\x18\x39\xbf\xd3\x0f\ \x81\x98\x13\xa6\xd5\xee\x10\x9a\xde\x41\x53\xcc\xbb\xd8\x3b\x40\ \xfc\x8b\xf4\x61\x12\x4a\x01\xa1\x7f\x76\x3c\xd0\x3c\x2c\xde\x6b\ \x28\x7d\x24\x19\x2d\xd9\x03\xe6\x5b\x98\xec\x40\x16\x1f\x8d\x99\ \xcd\x33\x41\x95\xb3\x07\x8c\x3c\xe1\xa8\x4a\x4b\xe6\x9b\xb7\xf0\ \x73\x5c\x9f\xcc\xaa\x4d\x64\xc6\x46\x6b\xef\xa0\x18\xfc\xd7\xc7\ \xcb\xf3\x1d\xaf\xa1\x0e\x99\x90\x5a\x3b\xbc\xfe\xf1\x22\xb0\x97\ \xf4\x5f\x73\xf6\x7b\xb4\xb0\x57\xf4\xfd\xce\xc1\xce\x2f\x0d\xc2\ \x4e\x14\xe2\x77\x96\x75\x6b\x7b\xd4\x25\xef\xdf\x93\xd6\x43\xab\ \xd5\xea\xc4\x71\x51\xb5\x5f\xa7\xd8\x0f\x06\xc9\xb0\xeb\x61\xb1\ \xeb\x25\x8b\xde\x64\xfd\x0e\x75\xfd\x8e\x8a\xfd\x7e\x96\xfa\x1d\ \xe9\xfa\x1d\xef\xfc\x22\x75\xe3\xc9\xf3\x33\x99\xd8\x63\xde\x59\ \x9e\x6b\xe9\x24\x2a\x46\x31\xa4\xd1\xac\x88\x19\xe1\xb3\x06\xd1\ \x81\xc9\x74\x32\x9f\x1e\xe0\xe6\x4b\x1c\xc1\x51\x64\xb3\x70\x68\ \x21\xb9\x53\xe7\xad\xa6\x89\x92\xff\xcd\xf2\x4c\xa5\x33\x4a\x9d\ \x8f\xdb\x39\xe9\xbc\xed\xa8\x51\x13\x69\x52\x48\x0c\xcd\x61\x05\ \x6c\xde\x27\xba\x3e\xf1\xdd\x59\x11\x67\x69\x50\x42\x6b\xda\x16\ \x4b\x98\xe7\x11\x40\x98\xd8\x81\x62\xde\xc8\x7b\x30\x65\xc7\x45\ \xfb\x06\x4f\x8f\xf7\x0e\x45\x03\x57\xa4\x40\x5d\xf8\xb4\xf8\xbf\ \x55\xe0\x3f\x4a\x31\x49\xf8\xdb\x28\x76\xd1\x78\xd5\x11\x01\xef\ \x57\x42\xc3\x1b\x4c\x00\x9d\x0a\x12\xea\xc8\x40\x24\x20\xc4\x28\ \xc8\xd0\x49\x44\x88\xc1\xbc\xdb\x75\xb8\x28\xa4\xe7\x18\xa6\x23\ \xff\xc6\xdc\x3d\x30\x67\x6c\x2a\x80\x6a\xbe\x7e\x68\x33\xc3\x7b\ \xd4\x20\x8f\xf1\x07\xf2\x70\x90\x3e\x80\x0f\xed\x06\x09\x79\x28\ \xb1\x95\xea\x67\xf6\x00\x9a\xbe\xa2\x36\x9d\xd0\xe9\xee\xbb\xf2\ \x59\x5e\x98\xb8\x58\x1c\x16\x99\xee\xfa\x78\xb2\xea\x84\x14\xf3\ \x1d\x8a\x42\x42\xb2\x13\x54\x83\x41\x5b\xb4\x4d\x0f\xea\xf1\x32\ \x39\x64\x3f\xa6\xbc\xc4\x51\xd9\xa3\xa2\xf9\xcb\x4e\xde\xd5\x37\ \xca\x4a\x54\x8c\xfb\x2a\x7b\x30\x7d\xc8\x3c\xa3\x55\x91\x8e\x7c\ \x1c\x50\xc8\x90\x4f\x92\xd5\xfc\xe5\xc4\x97\xf2\xad\xf5\x89\xec\ \x85\x74\x84\x67\x38\x05\x40\x74\x43\x08\xb4\xbe\x49\x43\x13\x0a\ \xa3\xca\x91\x5c\x85\xeb\x50\x18\xed\xe3\xee\xf1\xc9\xf1\x89\x22\ \x93\x7c\x67\x95\xc5\xd8\x57\x8e\x27\xbd\x48\x4f\x53\xf2\x27\xa9\ \x5b\x9e\x3f\x91\xbc\x75\x15\x26\x77\xa0\xf3\xee\x01\xa5\xf9\x13\ \xa3\xb3\x23\xd4\x48\x60\x9c\x88\x89\xc1\x82\xf0\x94\x77\x28\xb7\ \x62\x03\x99\x6b\xf1\x8d\xcc\xa6\x84\x50\x95\x02\x86\x33\xe7\x5d\ \x02\x2b\x49\x45\x4d\xac\xa9\x3c\x33\xcc\x04\x21\x18\x56\x69\xf2\ \x76\x34\x53\x54\xf0\xca\xcb\x26\xc6\xa1\xcd\x7e\x14\x74\x44\x7f\ \x58\x59\x75\xec\xb6\xf1\xd9\x8d\xd9\x04\x2e\x88\xc5\x9a\x05\xfe\ \xaa\xc9\x36\xd5\x65\xe7\x5c\x89\x68\x2a\xe2\x1a\x52\x88\xb9\x18\ \x55\x94\x98\x63\x22\x4e\x27\xb7\x1a\x75\xe2\x6f\x13\xc2\x67\x76\ \x00\xac\xd8\x8f\x48\x0b\xbd\x47\x09\xb4\xc4\xf6\x34\x93\xa2\x72\ \xc2\x10\x5b\x68\xb4\x95\x22\xa1\x2c\xe2\x50\x2b\x90\x52\x76\x18\ \x73\xa2\x6c\x39\x8f\x2b\x50\x83\xfe\x36\x74\xaf\xf2\xa2\x0c\xec\ \xad\x69\x56\x2c\x1e\x02\x32\x22\xb8\x60\x37\xd0\xe4\x2e\xd3\x15\ \x42\x55\xdd\xf3\x93\xf3\xb7\xe7\x6f\x36\x8a\x65\xe8\xd7\x90\xa2\ \xa9\x5b\xaf\x9a\x13\xd9\xfd\xaa\x3a\x0a\xd5\x4c\x15\xa9\x6c\x0b\ \x9d\x29\xf1\x71\x70\x36\x59\x70\x7a\xf8\x00\xbe\x30\x45\xc9\xb1\ \x09\x4e\x50\x16\x98\xc3\x16\x8a\x3c\x6a\x27\x66\xb9\xeb\x5b\xf9\ \xf3\xb9\x81\x46\x96\x06\xd3\x37\x51\x4c\xe9\x84\xc7\x2c\x93\x17\ \x0b\xfe\x6e\x86\x3a\x9f\x92\xa8\x6c\x84\x19\x5b\x2a\x43\xd1\x24\ \x18\x49\x71\x1b\x16\xa9\x8c\x0a\x53\x49\x3e\xc1\xbe\x5c\xd9\x13\ \x5a\xdc\x88\x25\x47\xe5\xb1\x0d\x29\x6c\xe2\xd3\x6c\x1a\xbd\x0f\ \x25\x87\xd0\xf6\x7f\x24\xa7\x83\x21\xaf\xcb\xe5\x01\x92\x3c\x1d\ \xc7\x5a\xd9\x1e\x2d\xb3\x67\xd9\x41\x99\xb8\x9b\x94\xbb\x5b\xb0\ \x1c\x19\xa7\xb1\xc4\x69\x1e\x65\xd0\xe2\x95\xab\x46\x5e\x8c\x94\ \x1f\x8c\xc3\x64\x33\xdf\x18\x62\xb2\x53\x29\x05\xc8\xdb\x18\x43\ \x8c\x3d\xae\x22\x40\x31\x0e\xf3\xdb\x0a\xdc\x14\xd8\x91\x3f\x36\ \x67\x81\x7d\x7f\x6a\x87\x49\x35\x6b\xde\x9b\x0d\x09\x0b\x61\xb1\ \x78\x04\x2b\x96\xcf\x8a\xfb\xc9\xe4\x91\xe7\x14\xb3\x91\x45\x16\ \x8b\x8e\x82\x54\x93\x4c\xd5\xd2\x95\xd8\x4a\x7d\xad\xa9\xeb\x87\ \x54\xb1\xdc\xfa\x3c\x4e\xd6\xbc\x76\x5c\x5a\x5e\x0d\xf0\x24\x1d\ \x8c\x20\xf3\x1a\x33\xde\x49\x2a\x5c\x78\x7e\xe2\xf0\xb4\x79\x3d\ \x79\x49\xfb\xe7\x20\x70\x9f\x95\xd0\xdf\x92\x71\xf7\x34\x37\x09\ \x9c\xe0\xc8\x9e\x48\xf3\xb9\xf2\x20\x47\x57\x94\x2d\x78\xb2\x95\ \xfb\xe5\x38\x47\xcd\xdc\x63\x92\x02\x8f\xe5\x5b\x6b\x25\xff\x8a\ \x3b\xcf\xdc\xbf\xd6\xed\x40\x10\xf7\xfa\x40\x9d\x44\xa9\xa4\x2c\ \xd7\x0e\xa3\x06\xf2\xdc\xf7\xdc\xc7\xa6\x2f\x58\xd7\x17\x11\x65\ \x9e\x5e\xf7\x97\x15\xf8\x0f\xd5\x15\x0c\x1a\x36\x24\x4f\xfb\x19\ \x94\x78\xab\x6c\xce\x9d\x20\x8c\xfe\x00\x66\x9f\x6d\xb8\x2a\x2f\ \x62\x08\xee\x26\xf6\xeb\xe3\x76\x83\xb4\xdf\x74\x1a\xe4\xa0\x73\ \xd0\x20\xad\xbd\xf6\x2e\xc2\x82\x49\xcb\x92\x51\xab\x22\x34\x16\ \xfd\x4b\x90\x9b\xbb\x67\xe3\xf1\xe0\x5a\x63\x8f\x0b\x1e\xd1\x8b\ \xd8\x11\xa1\xb6\x6a\x5b\x46\x42\x8e\x4c\x94\xab\x18\x1a\xbe\x40\ \xf7\xbd\xd2\xae\x57\x95\x1a\x6a\x9e\x93\x57\x7f\x66\x0b\xfd\x97\ \x91\xff\x9f\xd4\x5a\x3f\x55\x0a\x5a\x7e\xff\x28\xb3\xfd\x6c\x0c\ \xfd\x5f\xd8\x6f\x85\xd6\x97\x37\xe1\x57\xbd\x8b\xb1\xc6\x80\x4b\ \xdb\xcf\xa7\x1a\x99\x72\xdf\xcd\xcc\xc6\x6c\x6c\x3c\x74\x4b\x7f\ \x3d\xd3\x91\x65\xb4\xea\x6c\x07\x1f\x7a\xcc\x72\xf3\x17\x5b\xb7\ \xdb\x26\x22\xad\x34\xc8\x7f\x21\xc9\xff\x21\x4e\xa7\x91\x83\xbd\ \xb9\x04\xaa\x58\x7d\x69\xeb\xa6\xe5\xb8\x92\xd0\x97\x37\x6d\xf1\ \xd5\x7e\xb8\x6d\x93\x23\x61\x2f\x31\x13\x2b\xd6\xf7\x0a\xa5\x2c\ \x9f\x61\x46\xcb\xa7\xa6\x91\xd1\xfc\x8a\xed\x03\x66\xda\xe2\x37\ \x7f\x66\xdb\xf6\x17\x10\xfc\xe6\x96\xed\xe8\xf0\xe8\xcd\xd1\x33\ \xc9\xff\x29\x02\xa8\xe4\xf4\x4f\x6c\xd8\x8a\x94\xbe\xb0\x65\x4b\ \x68\x21\x71\x7a\x5c\x72\x55\x8c\x50\x51\x6e\x51\xcf\xf8\x86\x18\ \xb5\x9a\x4d\x8f\x82\x8f\x62\x5d\x0c\x6a\x0d\x99\x19\x0f\x75\xae\ \xb9\x29\xa9\xb4\x34\xe2\xa6\x06\xae\x92\x72\xc7\x18\xd5\xb9\x3f\ \xfd\x5a\x4c\x71\x15\x62\xda\x85\x6c\x5a\xf5\x00\xe6\xb0\xd5\xb9\ \xe8\xa4\x59\x44\xbc\xd0\x79\x62\x07\xcd\x38\xb0\xce\x2e\x72\x91\ \xc9\x11\x26\xb1\x18\x6e\xcf\xfa\x79\x7e\xb0\xb4\x5d\xb3\x8e\x45\ \xfa\xe5\x53\x80\x46\xe1\xdd\xdc\xf5\xed\x08\x3f\x4f\xd1\xdd\xfe\ \x22\x3b\x9c\xaa\xc9\x28\x0f\xfd\x9b\xe3\x97\xc7\x8d\x65\xaa\xec\ \x03\x50\xe8\xab\xe7\x54\x84\x66\x70\x18\x23\xc0\x14\x0e\x63\x48\ \xa5\x10\xab\x81\xe6\xe7\x4e\xd5\xd0\x4c\x09\x2d\x1e\x1a\x19\x40\ \x36\x39\xf2\x11\x60\x8b\x27\x3e\x39\xf4\x34\x49\x2c\xce\x50\x0b\ \x23\x39\xdd\xaa\x7e\xc2\x49\x96\x8e\x95\xea\x43\x96\x85\x66\x4d\ \x40\x5f\xa6\x0b\x6b\x61\x87\xcd\xd0\x99\xb8\xb0\x5e\x87\xd6\x0f\ \xf6\xec\xdf\xbe\xe3\x85\x4d\xf9\x42\x2a\xed\xd4\xce\x2f\xcc\x6f\ \x7e\x63\x49\xae\x31\x37\x2d\x85\x1d\x1c\xdb\xe6\xc8\x62\x68\xcd\ \xa5\x1f\x54\xa3\xfc\x81\xe1\x9c\x2e\x1c\x77\x06\x53\x23\xfe\x6b\ \x7b\x14\x50\x6f\x66\xc4\xb3\x06\x3f\x57\x05\x39\x3b\x30\xed\x15\ \xbf\x92\x3b\x8b\x7d\x37\x25\x37\xb6\x8b\x02\xd5\x0c\x06\xd2\x39\ \xee\xf1\xab\xd0\x5a\xcf\xa1\xbf\x4a\x88\xc3\xd9\x44\xf9\x53\xfb\ \x6c\x85\x3b\x06\xd6\x94\xb7\xac\xad\xb8\xe8\xb9\x09\x99\x4c\x25\ \xc4\x59\x98\x3f\xc9\x59\xc1\xaf\xff\x2a\x1c\xc3\x8b\x00\x8b\xae\ \x9a\x8a\x00\x6b\x21\x23\xdc\x9a\xbb\x27\xdd\xa5\xad\xf5\x8f\x51\ \xb6\x92\xab\x5a\x2c\x40\x07\x24\xe8\x6b\x1c\xf4\x35\x24\xa9\x13\ \x8f\x5d\x7a\x01\x24\x9c\x9c\x75\x5b\xdd\x34\x77\x5d\xb8\x67\xa1\ \x6c\x41\x94\x49\x33\xb9\x16\xa3\x2c\x8a\x91\x1b\xd8\xde\x59\x9a\ \x78\x9f\x1d\xc9\x2b\x85\x28\x85\x87\x29\xc5\xcd\xb7\xac\x16\x19\ \x27\xfa\x44\x2f\x4f\x4d\xc1\x86\x5e\x9a\x09\x61\xb5\x84\xa9\x95\ \x26\x36\xd0\xd5\x45\xed\xcf\x2e\xcb\x16\x97\xa6\xb9\x2c\x15\x05\ \x50\x6e\x1a\x2a\x72\x55\xfb\xae\x23\x3d\xaa\xbc\x9e\x59\x83\xaa\ \x32\x35\xfe\xa8\x3d\x3d\x98\x4f\x15\x54\xc8\x8d\x0a\x22\x1a\xa5\ \x20\x18\x1f\x29\xac\x06\xa2\x6c\xf8\xb1\x8b\x1e\x30\xa2\xca\xb1\ \x4a\xe3\x5f\x96\xbb\x94\x6d\x39\x6a\xe5\x8b\x56\xa7\x8f\xe9\x52\ \x6b\xf3\x1b\x04\xf0\x00\x46\x91\xac\x7f\xad\xfc\xd5\x7a\x75\xed\ \xcf\xe8\xfb\x9d\xf6\xce\x2f\x2c\x57\x8b\x05\x73\xf8\xcd\x8c\xfc\ \xde\x2c\xde\xea\x96\x35\x12\x2b\x0d\x0b\xf5\x31\x3c\x85\x87\xe7\ \x79\xd9\x5f\x29\xff\x56\x1e\xd6\x9f\x25\x7b\x71\xf0\xe9\xdd\x76\ \xf9\xcd\x8e\x38\x01\x07\x05\x02\xfa\x1e\xff\x12\x93\x2a\xec\xed\ \xcd\xb1\x5b\xd6\x12\x98\x6c\xaa\x5f\x18\x50\x37\x63\x32\xbf\x08\ \x2a\xcd\x9b\x3b\x48\x88\x0a\x17\xce\x3c\x22\x4e\x44\x6c\x32\x81\ \xdf\x69\xc2\x5b\x5a\x84\x56\xcc\xb1\x64\x75\x69\xe8\x48\x25\xa4\ \xd6\x4f\x79\xc7\x4a\xdf\xcc\xb1\xe6\x4b\x77\x91\x12\x7c\x1b\xb2\ \x99\x76\x17\x6f\x5e\xcb\x71\x09\x57\x4d\x0b\x4f\xc5\x62\x14\x0d\ \x5d\x06\x55\x29\x87\x6f\x26\x6f\xb9\x61\xd2\x50\x25\xbd\xaf\x98\ \x48\x12\xf2\xba\xf7\xa3\xa9\x87\x04\xc7\x9a\x58\x9a\xae\x15\x28\ \x1a\x9b\x06\xc9\x00\xff\x8d\xad\x9f\x7c\x16\xc4\xbd\xe1\x81\xe7\ \x93\x88\x3e\xb0\x81\x66\x93\x95\x7d\x5d\x90\x3f\xe5\xdf\xf3\x14\ \x7f\x07\x91\xa4\x96\x58\x29\x5c\xd9\x7d\xe4\x65\xaa\xca\xbd\x63\ \x23\x79\x28\x65\x64\xba\xb9\xb9\x59\x29\x4c\x2c\x40\xa9\x1a\x26\ \x9e\xa9\x6f\x31\x27\xd7\x78\x04\xef\x02\x67\xc6\x84\xa1\xa9\x6c\ \x33\xd9\xc7\xa6\x38\x99\x36\xe7\xb7\x38\xe8\xae\x8d\x6b\x61\xe4\ \xea\xae\x38\xd6\xae\x94\x9a\x0a\xb5\x22\xc0\xcc\x3f\xb7\xa7\x91\ \xf3\x8d\x3e\x03\xe0\xca\xef\xb9\xe1\x93\xb0\x53\x0e\xbd\xb0\xf1\ \xc0\x4a\xd5\x4c\x04\x34\xb3\x29\x3d\xa9\xe0\x43\x86\x57\x90\x0f\ \xb2\x09\x32\x93\xa0\x01\x66\x1d\x5c\xdd\xde\xca\x5c\xc2\x99\x7f\ \xa6\xc7\xae\xd1\xcc\x8a\x73\x61\xcd\x81\x03\xee\xc4\x20\x6e\xb2\ \x6a\x83\xd2\xaa\xb5\x8d\xae\x3c\xa9\xbe\x7e\x65\x93\xd2\x28\x1d\ \x17\xcc\xda\x36\x6d\x58\x8c\xb3\x52\x9e\x77\x25\x74\x5b\xb9\x3f\ \x1d\x1f\x28\x34\xaa\xdb\x29\xa7\x6e\x66\x67\x19\xa5\x50\x51\x58\ \x58\xae\x38\x0a\x45\xd8\x36\x24\x5c\x90\xea\x86\x3a\x36\xaa\x32\ \x69\x2a\x00\xe3\xe0\xf0\xd0\x32\x06\x2a\x2b\x62\x06\x28\xff\x91\ \x74\x46\x3a\x2f\x43\x6e\xc4\x38\x81\xd9\xcc\xf7\x8e\x1c\x3c\xf7\ \x01\xf9\xa5\xce\xcc\x23\x0d\xfd\x20\x12\x6e\x77\xe6\x07\xd3\x22\ \x76\xa4\xac\xd1\xc8\xb9\x53\x45\x92\x16\x55\x95\xc1\x29\xd6\x51\ \x09\xb6\xfa\xcc\x0f\x3c\x1a\xa4\x2b\x71\xdd\xd9\xa5\x3b\x6a\x34\ \x98\x3b\x82\x33\x61\x5e\xb4\x58\x71\x77\x88\xff\x60\xf4\xf5\x67\ \x08\x0b\xba\x52\xdd\x14\x2c\x1a\x84\xd7\xf4\x19\x45\x76\xb4\x0e\ \x91\x6f\x49\x48\x18\x29\x96\xb2\xb0\x10\x7b\xde\x79\xe5\x3a\x51\ \x94\xef\xbf\x51\x07\x45\x73\x17\x51\xb1\x6f\xf5\x92\x20\x5d\x42\ \x54\xed\xb4\x21\x08\x94\x69\x28\xdd\xf1\xa0\xe9\xa6\x58\x21\xf9\ \x1a\xa2\xc4\x43\x0c\xfc\x3b\xb6\x8c\x6b\x6e\xba\xc5\x2f\x1b\x28\ \xee\xd6\xf5\x01\x28\x74\x37\x2f\xd2\x72\x84\x9a\x78\xd1\xaf\x14\ \x2f\x07\x2e\x16\xa5\x21\xb7\x50\x14\xae\x3d\xd2\x2e\x7b\x2a\xfb\ \x60\xa4\xd6\xde\x57\x43\x29\x20\x91\x12\xc3\xa5\x59\x8c\x68\xe8\ \xaa\x8a\xab\x8b\xfe\x93\x1e\xf1\x51\xe2\x1a\x4c\x8c\xa6\x30\x39\ \xdb\xd6\xcb\xb5\xc1\x62\xb5\xa8\x78\x28\x29\x40\xb2\x90\x82\x61\ \x64\xb3\xc0\xfe\x46\x6b\x73\x0b\xd7\xb2\x26\xb7\x02\xea\x83\x7c\ \x89\x98\x50\xcd\x46\xea\x73\x55\x5a\x4d\x37\xf3\x1b\xd7\xbb\x6a\ \x4a\x6c\x1b\xe8\x2b\xc1\x6d\xd6\x90\x9a\xf7\xd6\x35\x30\xaf\x16\ \x4b\x79\xd2\xd6\xb3\xd5\xe5\x4c\x2c\xd0\x45\x8b\x9b\xcb\xe8\x16\ \x3b\xeb\xda\x08\x95\xbd\xd5\x6c\x69\x12\x04\xe4\x5a\x5d\xad\x1e\ \x63\x85\xe6\x4f\xd1\xe4\xec\xe6\xc7\x27\x29\xb3\x5c\x2c\x8d\x91\ \xbc\x85\xe8\x94\xf1\xc0\x63\x77\x2d\x60\x2f\xf5\x6a\x8d\x41\xd0\ \x37\x31\x57\xed\x9c\xbb\xa7\x2a\xb7\xa6\xfe\x5c\x53\x77\x5e\x4e\ \x7f\x89\x8a\xe3\xe5\xeb\x26\x0c\x6a\xd4\xbc\x78\x9f\x4d\xe9\x49\ \x04\xb8\xcb\x55\x1b\x7c\xed\x2d\x4a\xdb\xbc\x79\xeb\x70\x3a\x99\ \x81\x10\xc5\x9b\xb7\x3a\x1d\xfb\x90\xbe\xdd\x95\x89\x4b\xaf\x38\ \xc4\x49\xab\x74\xae\x36\x27\x70\x42\x67\x73\x3a\x95\x08\x8c\x37\ \x1b\xbb\xf5\xa4\xa7\xb9\x79\xa8\x3a\x62\xfa\xe2\xa4\xff\x0f\xcb\ \xca\x43\x7d\ \x00\x00\x13\xdf\ \x00\ \x00\x80\xe4\x78\x9c\xdd\x1d\x6b\x73\xdb\x36\xf2\x7b\x67\xfa\x1f\ \xd0\xe4\x4b\xd2\x93\x12\xd9\xb2\xe4\x98\xb9\x74\x46\xb6\xe5\x58\ \x73\x7e\x45\x52\x9a\xcb\xdc\xdc\x74\x28\x09\xb2\x78\xa1\x49\x95\ \xa4\x62\xbb\x37\xf7\xdf\x6f\x01\xbe\xf0\x58\x90\x90\x64\x3b\x99\ \x34\x9d\x36\x26\x16\xfb\xc2\x62\xb1\x58\x60\xe1\xd7\xbf\xfe\xfc\ \x13\xf9\x95\x90\xc3\x88\xd2\xbf\xe8\xb1\x1b\x7d\x21\x71\x72\xef\ \xd3\x78\x41\x69\xf2\x8a\xb5\xa5\xed\x8e\xbb\x4a\x16\x61\xe4\x90\ \xa3\xd0\xf7\x02\x72\xbc\xfa\x73\x45\xe3\x20\xbc\xcf\x5a\xe9\xcc\ \x4b\x58\x6b\xcf\xa7\x77\xe4\x74\x15\xff\xe5\x5e\x2f\xb2\x26\xdf\ \x9b\xd2\x20\xa6\x0e\x39\x1f\x8c\x1b\x24\xa6\x94\x9c\x0d\x8e\xfa\ \x17\xa3\xfe\xab\x9b\x59\x89\x7f\xbc\xf0\x62\x02\xff\x86\x91\x77\ \xed\x05\xae\xef\xdf\x13\x97\xcc\x43\x60\x27\x9c\x93\x0f\x8c\xaf\ \x11\x63\x6b\xc4\xd8\x6a\x10\x37\x98\x31\xe0\x89\x1b\xd3\x19\x09\ \x83\x8c\xfb\xd7\x9a\x28\xd3\xd0\x0f\x23\x12\x4f\x17\xf4\x86\x36\ \xc8\x64\x95\xb0\x5e\xc0\x7e\x10\x92\x5b\x17\x28\xcc\xe7\x9e\xef\ \xb9\x09\x20\xb9\xf5\x92\x05\xf9\xc7\x71\xbf\x14\xb9\xf9\x10\xff\ \xe4\xc2\x51\x26\x3d\x39\x4b\x55\x41\x5e\xc0\x0f\x2f\x0b\x42\x47\ \xe1\xf2\x1e\xa4\x5e\x24\xe4\xc5\xf4\x25\xf9\xfb\x6e\x6b\xa7\xdd\ \x84\xff\xec\xfd\x46\xfe\xae\x28\xfb\x37\x03\x7c\x87\xc1\x77\x01\ \x5e\x54\xff\x6f\x05\x81\x2b\x1a\xdd\x78\x71\xec\x81\xa2\x40\xfc\ \x05\x8d\xe8\xe4\x9e\x5c\x47\x6e\x00\x82\x37\xc8\x1c\xd4\xc5\x94\ \x3c\x5d\xb8\xd1\x35\x68\x29\x09\x41\xbd\xf7\x64\x49\xa3\x18\x3a\ \x84\x93\xc4\xf5\x02\x2f\xb8\xe6\x98\x5c\xd0\xe8\xf2\x9e\x41\x27\ \x6c\xbc\xe2\x70\x9e\xdc\xba\x11\xe5\xe3\xe1\xc6\x71\x38\x4d\x95\ \x39\x0b\xa7\xab\x1b\x1a\x24\x6e\xc2\x68\x82\x8e\x69\x4c\x5e\x24\ \x0b\xca\x71\x3c\x1b\x65\xbd\x9e\xbd\xe4\xc4\x66\xd4\xf5\xd9\x98\ \x40\x3b\xc9\x9b\xf8\x70\x84\x30\x5c\x11\x8d\x93\xc8\x9b\x32\x3c\ \x0d\x00\x9a\xfa\xab\x59\xce\x4b\x0e\xe2\x7b\x37\x5e\x46\x89\xa1\ \xe0\x9a\x89\x19\xe2\x55\x0c\xd2\x30\x7e\x1b\xe4\x26\x9c\x79\x73\ \xf6\x7f\xca\x45\x5c\xae\x26\xbe\x17\x2f\x1a\x1c\xcf\xcc\x63\x24\ \xc0\x36\xa0\x21\x66\x0d\x7c\x8c\xb8\x8d\xbd\x66\xc6\x43\x7d\x9f\ \x61\xf1\x40\x06\x2e\x77\xc9\x65\x6a\x87\x49\xc8\xd1\x2c\x99\x92\ \x93\x4c\x6d\x9c\xfe\xed\x22\xbc\x91\xa5\x02\x95\xcd\x57\x51\x00\ \xa4\xe9\x8c\x8b\x1e\x82\x0a\x39\xd5\xff\xd0\x69\x92\x63\x62\x5d\ \xe6\xa1\xef\x87\xb7\x20\x2a\x90\x0e\x60\x6e\x81\x74\xb1\x53\x0c\ \x28\xb3\x27\x77\x12\x7e\xa5\x5c\xbc\xd4\x16\x82\x30\x01\xce\x53\ \x8e\xd8\xd8\x2c\xcb\x41\xcf\x9a\xe2\x05\x4c\x2b\x32\xa1\x99\x1e\ \x81\x05\x2f\x48\x47\x55\x90\x30\x62\xdc\xc4\x09\xd8\x86\x07\xc3\ \xb2\x0c\x23\x4e\x5a\x95\xbc\x9c\x25\xe3\xd3\x3e\x19\x5d\x9e\x8c\ \x3f\xf5\x86\x7d\x32\x18\x91\xab\xe1\xe5\xef\x83\xe3\xfe\x31\x79\ \xd6\x1b\xc1\xcf\xcf\x1a\xe4\xd3\x60\x7c\x7a\xf9\x71\x4c\x00\x62\ \xd8\xbb\x18\x7f\x26\x97\x27\xa4\x77\xf1\x99\xfc\x63\x70\x71\xdc\ \x20\xfd\x7f\x5e\x0d\xfb\xa3\x11\xc7\x75\x39\x24\x83\xf3\xab\xb3\ \x41\x1f\xbe\x0f\x2e\x8e\xce\x3e\x1e\x0f\x2e\xde\x93\x43\xe8\x7b\ \x71\x09\x93\x67\x00\xb3\x06\x10\x8f\x2f\x39\xd1\x0c\xdd\xa0\x3f\ \x02\x84\xbc\xfb\x79\x7f\x78\x74\x0a\x9f\x7a\x87\x83\xb3\xc1\xf8\ \x73\x83\x9c\x0c\xc6\x17\x80\x9b\x9c\x00\xe2\x1e\xb9\xea\x0d\xc7\ \x83\xa3\x8f\x67\xbd\x21\xb9\xfa\x38\xbc\xba\x1c\xf5\x81\x8d\x63\ \x40\x7d\x31\xb8\x38\x19\x02\xa5\xfe\x79\xff\x62\xcc\x25\x03\xea\ \xf0\x9d\xf4\x7f\x87\x0f\x64\x74\xda\x3b\x3b\xe3\x24\x7b\x1f\x41\ \x92\xe1\x88\xf1\x79\x74\x79\xf5\x79\x38\x78\x7f\x3a\x26\xa7\x97\ \x67\xc7\x7d\xf8\x78\xd8\x07\x0e\x7b\x87\x67\xfd\x94\xdc\xc5\xe7\ \x74\xae\x9e\xf5\x06\xe7\x0d\x72\xdc\x3b\xef\xbd\xef\xf3\x9e\x97\ \x80\x69\xc8\x41\x33\x2e\x3f\x9d\xf6\xf9\x27\xa0\xd9\x83\x7f\x8f\ \xc6\x83\xcb\x0b\xa6\xa3\xa3\xcb\x8b\xf1\x10\x7e\x4c\xad\x74\x7c\ \x39\x1c\x17\xdd\x3f\x0d\x46\xfd\x06\xe9\x0d\x07\x23\xa6\xa0\x93\ \xe1\x25\x90\x60\x2a\x86\x5e\x97\x1c\x11\xf4\xbd\xe8\xa7\x98\x98\ \xfa\x19\xf7\x1c\x4b\x31\x52\x00\xc6\x24\xfa\x38\xea\x97\x3c\x1d\ \xf7\x7b\x67\x80\x6f\xc4\x10\x88\xc3\xfa\xea\x61\xdd\x21\x78\xe9\ \x9f\x7f\xfa\x30\x0e\x43\x7f\xec\x2d\x7f\xfe\xe9\xbf\xf0\x0d\xfe\ \x99\x84\xd1\x8c\xc2\x02\xb2\xb3\xbc\x83\x39\xe1\x7b\x33\xf2\x9c\ \xce\xe7\xad\xf9\xce\xdb\xac\xdd\x9d\x7e\xb9\x8e\xc2\x55\x30\x6b\ \x72\xa7\xee\x90\xe7\xed\x9d\x76\xb7\x3d\xc9\xda\x5d\x3f\xa1\x51\ \x00\xde\xa7\x89\x41\x4e\xf6\x5a\x7b\x9d\x0c\x32\xff\x28\xa1\x5f\ \xba\x33\xe6\x58\x1c\xd2\x59\xde\x65\x9f\xc2\xa5\x3b\xf5\x92\x7b\ \x87\xec\xb6\x5a\xf0\xe9\x7f\x9c\xed\x4f\xde\xec\x9a\x26\x05\xd7\ \x28\xae\x3a\x56\xc1\xa3\x50\xee\xd1\x74\x56\x9f\xb7\x67\x2e\xa5\ \x07\x1a\x60\x2d\x1d\xdf\x5b\x3a\x99\x0e\xdf\x8a\x0a\x6d\x7a\x37\ \xee\x35\xac\xbd\x41\x18\xd0\xb7\xb2\xa6\x5b\xa0\xe9\x04\x16\x81\ \x78\x09\x13\x3a\x48\xc8\xc4\x07\x7c\xb9\xec\xab\x04\x16\x1e\xe8\ \xa7\x4a\xee\x78\x09\xbd\x71\x16\xe0\x7a\xa2\x72\xe8\x10\x79\x45\ \x31\x34\xe6\x75\x84\xa9\xa4\x74\x66\x85\x93\x77\x07\x04\x47\x0b\ \x3a\xfd\x72\x18\xde\x15\x9d\x62\x36\x62\xca\x20\xe6\x82\x08\x0a\ \x40\x95\x79\x03\x8b\x9f\x07\x23\x12\x26\x49\x78\x03\x63\x5e\x6d\ \x06\x39\x69\x07\x16\x0f\x77\xe2\x0b\x8c\xe7\xc8\xf7\xbb\xfb\x07\ \xfb\xd3\xa2\xc3\x7b\x90\x65\xc9\x3a\x38\x1e\xb8\xf3\xa9\x0b\xc1\ \x52\xd1\x25\x23\xed\xd3\x79\x92\x13\x56\xa8\x94\x9d\x9c\x55\x30\ \x65\x5f\x61\xe1\xae\x03\x70\xe6\xb0\x0a\xc7\xca\x04\xcb\xed\x61\ \x15\xf9\x2f\x9c\xd7\x33\x88\x91\x5e\x73\xf0\x49\x78\xf7\x47\xd1\ \xf3\x8f\x5c\xaa\x57\xf1\xd7\xeb\x97\x76\xec\xa4\x36\x51\xcf\xd4\ \x12\x56\xf4\x38\xe5\x1e\xd1\x09\x86\xaf\x1a\x8c\x0b\x59\x0f\x96\ \x91\xd5\xdc\x8d\x36\x2f\xac\x14\x54\xaf\x97\x0c\x70\x0d\xed\xaf\ \x8b\xba\x5a\xe1\x9a\x7a\xaa\x80\x6a\xc6\xc4\x6a\x44\xac\xc6\xe3\ \x41\x47\xc3\x5a\x61\xf0\x37\x9a\xb0\x68\x88\x2d\x0f\x6b\x8c\x88\ \xd4\x6f\x4d\x32\xd5\x8a\x97\x41\x2b\x07\x52\x06\xc5\x15\xf7\x68\ \x42\x68\xde\x6d\x4d\x7a\x6b\x38\x92\xdc\x34\xf2\x1e\x75\x26\xb4\ \x01\x6b\xdb\x78\xb7\x3a\xb6\x74\xc8\x07\x74\xbc\x43\x77\xe6\x85\ \x87\x2b\x58\x99\x82\xc7\x5b\xeb\x34\x52\xd6\x6b\x9b\xd8\xc7\xb4\ \x52\xd5\xc1\xd8\x2e\x56\x11\xc3\x53\xa7\x30\x1b\x7a\xc5\xa4\xab\ \x85\xb4\x70\x56\x98\xe6\x6d\x45\xb0\xe4\x1c\x5f\x50\xb6\xe5\x02\ \xf5\xa1\xd5\x1c\xd4\x6a\x4e\x5b\x09\x6a\xe0\x1e\x47\xbf\x9b\x48\ \xa6\x19\xfc\xe6\x74\xeb\x67\xf2\xb6\xde\xc3\x6a\x26\x7c\x38\xa7\ \xc1\xea\xd0\xad\x8e\xd5\xc5\xbd\x89\x21\x56\xcf\xd0\x38\x3c\x5a\ \x47\x90\x39\xe2\x4e\x02\xef\x55\x15\xe3\xab\xdd\x0d\x1b\x42\xc5\ \xef\xc8\xe8\x4d\x66\x84\xf5\xdf\x68\xd7\x82\x78\xce\xe6\x4e\xe1\ \x7c\xb3\x0d\x64\xd1\xb4\x23\x38\x55\xc6\xa8\x35\x5f\x15\x74\x65\ \x57\xcd\xb0\x82\xec\x53\x61\x51\xc8\xc1\x3a\x3a\x98\x38\x6e\xe2\ \x66\x97\xb4\xd9\x3e\x30\xff\x8b\x2c\x66\xba\x23\x29\x17\x18\x9d\ \x75\x71\xd8\xc8\xeb\x5f\x59\xba\x8e\x46\x5f\x29\x5f\x9d\x58\x12\ \x2b\x2a\xf7\xb0\x59\x6f\xbe\xff\x57\x39\xd3\x6d\xa3\xc2\x0e\x1d\ \x80\x06\x92\xd2\x16\x6a\x41\x59\x0e\x4c\xdc\xb6\x89\xc6\xe5\xb3\ \xc6\x89\xbf\xa2\x98\x78\x3b\x9a\xd8\x51\x8a\x4b\x50\x22\x48\x06\ \x1e\xa0\x49\xef\xa6\xfe\x2a\xf6\xbe\xb2\x0c\x5a\x36\x75\xc9\x3b\ \xc2\x27\x20\x48\x77\x97\x26\xce\xcb\x36\x8e\xf4\x05\x4b\x78\x7f\ \xe8\x71\x15\xf0\xc0\x81\xb1\x9f\xf4\x73\x4c\x2f\xb9\x3e\x72\x55\ \x14\x0e\x41\xa2\x56\xba\x87\x07\x8c\x29\x2c\x29\x22\xb3\xf6\x91\ \x49\x3f\xd0\xce\xc9\x8a\xc8\x26\xd2\x61\xd4\xc0\x3e\x70\xdb\xe0\ \x4e\x9a\x9d\x3b\x80\xc3\x57\xcd\x63\x43\xd3\xd8\xc8\x2c\xec\x17\ \x8b\x1a\x52\x6b\x68\x6c\x5b\x9a\x6b\x0a\x67\x65\x05\xdb\x58\x40\ \x2d\x19\xee\x37\x9a\x6e\x14\x85\xb7\x06\x8f\x6c\xc2\xcf\x1d\xd4\ \x6b\xde\xff\x0f\xde\x3f\x47\xcf\x3a\xdc\x7a\xb3\x64\xe1\x90\x6e\ \x81\x21\x77\x76\x07\xa5\x83\x2a\xd3\x69\xc6\xa0\x7d\xaf\xc3\xfe\ \x58\xa4\x28\x53\x91\x7a\x93\x18\x9c\xfb\x34\x19\x80\x7b\xfe\xdd\ \xa3\xa5\x44\xd5\x89\xd6\xca\x58\x02\x5f\x43\xda\xbd\xf6\x41\xfb\ \x40\xd6\x0e\xd3\xf5\x2a\x96\xd7\xbb\x4c\xc0\x22\xac\xcc\x97\x7f\ \x6c\xe7\x20\x2d\xaf\x72\xe2\xf0\xc3\xd8\x9d\xa8\xa8\x8a\xbd\x1f\ \x1a\xb3\x16\x1f\x47\x80\x8e\x9a\x08\x66\x21\x62\x4a\xe3\x0c\xa2\ \xc6\xfe\xcc\x4b\xaa\xe2\xae\xdd\xf6\x6e\x77\x37\x97\x1b\xc9\x3f\ \x67\xaa\xe0\x5e\xc3\x49\x65\xb1\x08\x8d\x8c\x4a\xac\x58\x55\xf3\ \x0d\xad\x7d\xec\x64\x22\x90\x47\x41\x49\xb8\xc4\x56\x56\xf1\xb3\ \x9a\x17\x4d\xbc\xc4\x2f\xb3\x33\xf1\x6a\x02\x81\x4d\x12\x85\x7e\ \x33\x3d\x11\x76\x32\x1c\x6f\xb5\xf6\x65\x18\xf3\xf3\x31\x08\x22\ \xc3\x25\x99\x42\x28\x52\xe4\xc0\x73\x76\xb2\x95\x5e\x63\x33\x5b\ \xe9\x77\x50\x3e\x9b\xfb\x02\x9f\xf9\x74\x18\x4d\x81\xa4\xdf\x8b\ \xa8\xab\x3a\x0c\x5d\x19\xeb\x47\xa0\x58\x10\x9d\x52\x64\x86\xbe\ \x00\x4d\xfc\x05\x42\xbb\xbe\x16\xf7\xec\xbc\xea\xa8\xca\x76\x48\ \x1b\xe8\xa6\x0d\xc2\x5f\x11\xde\xc4\x43\x80\xe7\xbb\xbd\xdd\x83\ \x5d\xc3\x6c\xdc\x43\xa2\xab\xd2\x9c\xf3\x8e\x2a\xdb\xce\xc2\x0d\ \x66\x3e\xc5\xd8\xaf\x8b\xc1\x6f\x60\x2c\x32\xf7\xa7\xcd\x0b\x99\ \x29\x8d\x28\x8c\x70\x93\xef\xdd\x10\xb2\xb9\x82\x72\xcd\x64\xff\ \xaf\xdd\xe0\x95\xfe\x59\x5b\xcc\x04\x47\x2d\x98\x7d\x31\x3c\xe5\ \x27\xd4\x70\x39\x66\x1d\x40\xb3\x7c\x4d\x4a\x00\xae\x97\xb2\x10\ \xd3\x52\x4e\x36\x5b\x1e\x45\x4c\x86\x78\x13\x29\x91\xb1\x2c\xb3\ \x10\x35\x70\xc2\xee\xc8\x66\x60\xbf\xc1\x78\xd6\x8e\x28\x2a\x2b\ \x06\x67\x23\x6b\x39\xb8\xdf\x76\x4c\x57\xcb\x34\x52\x12\xf8\x57\ \x24\x9c\x85\xb7\x81\x06\x83\x26\x0f\xc4\xa5\x57\xb7\x88\x25\x53\ \x81\x91\x0a\xd3\xa3\x02\x51\x4b\x43\xe8\x0f\x03\x93\x40\x6c\x59\ \xe9\xd2\x24\x97\x9a\x6b\x1a\x73\xd8\x9a\xb3\xd6\x66\xeb\x46\x0e\ \xdb\xe4\x90\x6d\x78\xd7\xdc\x71\x6e\x17\xeb\xfa\xe3\xc2\x5e\x35\ \xaa\xe2\x72\x25\xf9\xaa\x3a\x3f\xb5\x5a\x56\x78\x29\xc4\x7e\x75\ \x23\x37\x45\x11\x5b\x39\xa9\x87\x13\x90\xcd\x80\x47\x11\x31\x4d\ \x52\x6d\xb5\xe0\xe4\x52\x56\x3b\xa7\x02\x2a\x73\x4d\x96\x23\xfa\ \xe4\x03\x59\x33\x94\xd5\xab\x8d\x2a\xa4\xe5\x98\x7e\xeb\xa1\x2c\ \x3c\x70\xce\x7f\x83\x18\xdc\x6f\x85\xa3\xb0\x72\xbe\x38\x81\xc2\ \xf3\x5a\xa3\xff\x30\xa6\x77\xc9\x5a\xdb\x2a\xcb\x2d\xa8\x9a\x59\ \xbe\xf2\x5d\x2f\x58\x83\x58\x3d\xb5\x35\xb7\x07\x29\x1b\xa7\xd4\ \x05\x08\xb6\xfb\x66\x99\x21\x9e\x27\xaa\x62\xa6\x3e\x8d\x6c\xdc\ \x65\x56\x71\x31\xf2\xfe\xa2\xef\x23\xed\xaa\x16\x62\xdb\x31\x40\ \x5e\x03\x24\x16\x59\xbc\xda\x45\x62\x8b\xfc\x63\x96\x45\x01\xa5\ \x7f\xf2\x02\x30\x3c\x2c\xc5\x6b\x99\x6d\xb8\x5d\x78\x09\x95\xc5\ \xcd\xb6\x7f\xe5\xee\xa5\x38\x3b\xc5\x07\x63\xe6\xf2\xfb\x99\xda\ \x71\x03\xc6\x9e\x70\x15\xca\x3c\x2e\x6f\xe0\x4f\x77\x7d\x36\xeb\ \xf6\x8f\x8a\x18\x76\x19\xf2\x72\xaf\x6b\x69\x41\x36\x9c\xae\x9d\ \x50\xff\x70\x12\xb9\x37\xf4\x5f\x73\xf6\xdf\xd1\xc2\x5d\xd2\x77\ \xcf\x76\x9f\xfd\xbb\x41\xd8\x19\x42\xda\xe6\x38\x57\x6e\x40\x7d\ \xf2\xee\x1d\x69\xdd\xb5\x5a\xad\x76\x9a\x0d\xd5\xfb\xb5\xd5\x7e\ \x30\x46\x96\x5d\xf7\xd4\xae\xa7\x2c\x6f\x53\xf4\xdb\x33\xf5\xeb\ \xa8\xfd\x7e\x97\xfa\x75\x4c\xfd\xba\xcf\xfe\x2d\x75\xe3\x37\xda\ \x67\x32\xb3\x5d\xde\x59\x9e\x69\xf9\x1c\x52\xf3\x17\xd2\x68\xd6\ \x64\x8b\xf0\x49\x53\x67\x03\x8a\xf3\x12\x47\x70\x94\xb8\x2c\x11\ \xaa\x5c\x88\x34\x85\xa9\xf9\xe5\xc2\xff\x15\x97\x3f\xa5\x53\x49\ \x53\x70\xdb\x3e\x68\xbf\x69\xbf\xd1\x98\x95\xd3\x7b\xa2\x40\x73\ \x58\xfe\x9a\xb7\x99\xad\x4f\x42\x7f\xa6\xd2\xac\x4c\x47\x98\x1c\ \xdb\xe2\x06\x66\x79\x02\x08\x26\x6e\xa4\x39\x37\xf2\x0e\x1c\x59\ \x57\xf5\x6e\xf0\xb5\xfb\x6a\x4f\x74\x6f\x2a\x03\xfa\xb2\x67\x22\ \xff\xb5\x86\x7c\x27\x27\x24\x91\xdf\x41\x89\x8b\x9e\x6b\x0d\x05\ \xf0\x6e\x15\x2c\xec\x63\xe2\xb7\x6b\x38\x58\x43\x03\x22\xfd\x18\ \x63\xa0\xa0\x26\xf1\x20\xa6\xf0\xae\x56\xf1\x42\xb9\x44\x63\x79\ \x7d\xf7\x4f\x16\xe6\x81\x2b\x63\xd3\x00\xcc\xf2\xc5\xdd\x8e\x43\ \x5a\xaf\x3a\x0d\x72\x9f\xfe\x85\xdc\xed\xe6\x1f\xe0\x2f\x3b\x0d\ \x12\xf3\x04\x62\x2b\xbf\x78\x5c\x7c\x00\xd0\xcc\x5c\x5f\xbe\xad\ \x9e\xe1\xca\xa4\xc5\x26\x25\x32\xd5\xcd\x59\x64\x3d\xfc\x50\xef\ \x36\xa8\x4a\x42\xae\x22\xd4\xac\xc0\x96\xb2\xc8\x07\x11\x75\xb2\ \xa4\xb9\xd8\x8e\xea\xfa\x8a\x73\x76\xbd\x45\x5b\x85\xd4\x6c\xaf\ \xb6\xf3\x32\x27\xca\x0b\x5e\x35\xed\xc8\x87\x00\xca\x5a\xa9\x41\ \x6b\x97\x13\x6a\x54\x29\x09\xdf\x94\x92\x05\xaa\x02\xa0\x75\x5f\ \x9c\x67\x47\xe1\xcd\x24\x94\x6e\x45\x9b\xaf\x9b\x2b\xfb\xfb\x47\ \x38\x71\x40\x2c\x52\x48\xea\xee\xe7\x82\x69\x0a\xd3\x0e\xff\xec\ \x16\xaa\xbc\xad\xdb\xeb\x1e\x74\x0f\x30\xc4\x75\x57\xd7\x37\x9f\ \xeb\x60\x29\xee\xde\x5c\x9e\xeb\x7c\xfa\xbf\x34\x2b\xd1\xe6\x9e\ \xbc\xae\x95\x47\x14\xe2\x4d\x0b\xd6\xdb\xae\x24\x44\xaa\xe7\x2d\ \x85\xc8\xad\xb2\xdc\x49\x17\x27\x2a\x4b\x2f\x90\x1a\xf2\xb3\xb3\ \xf2\x4b\xbe\x13\x2b\xbf\x48\x1b\x34\x1d\x27\xdf\x32\x95\xdd\x23\ \x4a\xcb\x2f\x56\x27\x85\xd6\x92\x88\x77\xa7\x55\x2b\x13\xdb\x50\ \x69\x45\x00\x59\x6a\xb1\x45\x16\x53\x22\xa8\x6b\x01\xa3\x59\xca\ \x2e\xa1\x95\xb4\xb2\x96\x87\x52\x14\x21\x2c\xa8\x92\xdf\x6a\x1b\ \x5c\xb3\xb0\x11\xab\x72\x4d\x30\x9b\xe0\x8f\x46\x8e\x98\x8f\xa6\ \xeb\xb2\x01\x1b\x9f\xd4\xd9\xb9\x50\x45\x2d\xce\x2c\x0a\x97\x4d\ \x96\x46\xa9\x3a\xd5\xcc\x54\xf3\x56\x03\x90\x8f\x35\xc5\x13\x05\ \x35\x85\x2c\x09\xc7\x54\x9c\xbb\x57\x3d\xc7\xc8\x5b\x33\xc6\x59\ \x60\x05\x1e\xe2\x1e\x81\x30\xef\x22\x80\x97\x74\x1d\x2d\xb4\xa8\ \x1d\x28\xa5\x0b\x13\x0a\xa5\x69\xa8\xc8\x31\xad\x93\x38\xab\x3a\ \x95\x3a\xd0\x92\x0c\xdd\x1a\xca\x60\xbe\x0d\x53\x53\x79\x33\x1f\ \x6b\xb5\xbc\xb2\x8c\x67\xfc\xac\xf8\x55\xbc\x06\x7a\x81\xcf\x76\ \x85\xde\x3c\x53\x86\x4c\x18\xf3\x1a\xae\x3a\xba\xd5\xb2\x39\x91\ \x83\xee\xba\x63\x6f\xc3\x44\x91\x8a\xdb\xd0\x79\x92\x1e\xfd\x17\ \x53\x05\xe7\x87\x8f\xdf\x13\x73\x94\x9d\x91\xe1\x0c\x15\x79\x58\ \x6c\x99\x28\x93\xb4\x62\x01\x82\x19\x2a\x9c\xcf\xeb\x0d\xb2\xf2\ \xdc\x64\x13\xbb\x94\x4e\xf3\xf4\x25\xd6\x32\xd1\xbf\x19\xe5\x72\ \x3e\xa2\x9a\x11\xa6\x6b\xa5\x06\x45\x7f\x60\xa3\xc3\x87\xf0\x46\ \x55\x4c\x58\xea\x71\x0b\xdf\x72\xe6\x4e\xa8\xba\xf3\xce\x2e\x0b\ \xa4\xfe\x43\x4a\xd9\xbc\xfe\x95\x1c\x5e\x0e\x79\xa1\x33\x4f\x6e\ \x95\x97\xa8\x9c\xa5\x1b\xd0\x2a\xcf\x54\x9c\x6e\x8a\xc9\x00\xb9\ \xbb\x03\xcb\x8a\xf5\xe5\xa3\x6c\x4f\x54\x81\x2d\x5d\x81\xd6\xb8\ \xcd\x24\xdd\xe6\xc6\x71\xb2\x39\x6c\x8d\x31\xdb\x69\x56\x22\xe4\ \x30\xd6\x18\xd3\xc8\x49\x44\x98\xa2\x14\xb3\x68\x7f\x2e\x21\xe0\ \xa0\x51\x72\xdf\x9c\x45\xee\xed\xa1\x1b\x67\xf5\xbb\x65\x7f\x36\ \x28\x2c\x01\xc9\xf2\x49\xec\xfd\x81\xe2\xbd\x04\x32\xb9\xe7\x77\ \xc0\xd9\xd8\x22\x8e\xbf\x2d\xcb\x61\xbe\x75\xd7\x32\x15\x15\x4b\ \x7d\x9d\xa9\x1f\xc6\x54\xf3\xc2\xc6\xab\xb7\x0c\x5a\xb4\xef\xba\ \xba\x03\x8c\x8c\xed\x8c\x4a\xfb\x70\xe0\xb5\x8f\x31\x36\xe6\xcd\ \xbe\xac\x8f\xf7\xca\xc0\x1f\x83\xbf\xd7\xec\xa5\x81\x2b\x32\xee\ \x1d\x96\x13\x9d\xf3\x9b\xb8\x13\x69\x96\xd6\x9e\xac\x99\x4a\xcb\ \x85\x38\xb3\x36\x9f\x90\xde\x17\x5c\xa3\x80\x03\xc9\xa1\x18\x52\ \x0f\xda\x5d\x38\x1e\xda\xf2\xe8\xd7\xb4\x3f\x40\x82\xdf\x5d\x7d\ \x62\xe4\x9a\x72\x7c\x37\x4e\x1a\xc8\xf7\x30\xf0\xef\x9b\xa1\xe0\ \x33\x9f\x44\x95\xe5\x55\xc7\x1f\x56\xe1\xbf\xd4\x57\x91\x18\xc4\ \xe8\xec\x75\xf6\x3b\x87\x8f\x67\xc4\x0f\x2a\xe6\xdc\x8b\xe2\xe4\ \x1b\x08\xfb\x68\xc3\x55\x9b\xce\x8a\xae\x27\xee\x8b\xee\x4e\x83\ \xec\xec\xb7\x1b\x04\xb6\x2d\x0d\xd2\x7a\xb5\x8b\x65\xa4\x6c\x20\ \x2b\x46\xad\x8e\xd1\x54\xf5\x4f\xc1\x6e\x19\x74\x8d\xc7\x97\xe7\ \xa5\x3f\x56\xd8\x53\x22\x9d\x27\xf1\x24\x42\x85\xdb\x43\xb9\x09\ \x39\x73\x50\x6d\x64\x68\x7a\x01\xdd\x99\x4a\xfb\x52\x5d\x6b\xa8\ \x83\xce\x9a\xbe\x67\x1f\xfd\xc3\xe8\xff\x3b\xf5\xd7\xdb\x6a\xc1\ \x28\xef\x8f\xe0\xb8\xd5\xa1\xfb\x9e\x7d\xb7\xc6\xeb\xd3\xbb\xef\ \xb3\xfe\xc9\xd8\x10\x4c\x4b\x1b\xca\x6d\xdd\x4b\x75\xdc\x66\xe7\ \x5d\x36\x76\x1b\x26\xeb\x59\xcf\x69\x14\x17\x8b\x4d\x5e\x83\x0f\ \x3d\xe6\xb3\x79\xc3\x83\x7b\x6c\x1b\x95\xd6\xba\xe2\x1f\x48\xf3\ \xdf\xc4\x6f\x59\x05\xd7\x9b\x6b\xa0\x4e\xd4\xa7\xf6\x6e\x46\x89\ \x6b\x19\x7d\x7a\xd7\x96\xbe\x7e\x88\xfb\x36\x39\xb7\xf5\x14\x33\ \xb1\x66\x65\xdf\x6a\x86\x59\x45\x02\x06\x20\xab\xf9\x95\xfa\x07\ \xcc\xb5\xa5\x2d\xdf\xb3\x6f\xfb\x01\x14\xff\xfd\x7a\xb6\x4d\x15\ \x50\x2b\xe9\x77\xec\xd8\x54\x4e\x9f\xd8\xb3\x65\xbc\x90\xf4\xbe\ \x62\xf6\x52\x8f\x50\xd9\xef\xd0\xc0\xf6\x81\x1e\xbd\xaa\xd0\x4c\ \x81\x0f\xe2\x9a\x04\xf4\x52\x3e\x3b\x09\xd6\x78\x63\xa8\xa2\xe2\ \xd5\x4a\x16\x7b\x52\x15\x45\xa7\x29\xa5\xe3\x70\xfa\x45\xbd\x6c\ \x2c\xe4\xb2\xb1\xab\x88\x92\xc9\xed\xb5\xda\x27\xed\x93\xac\x9d\ \x17\x9b\x4f\xdc\xa8\x99\x26\xd4\xd9\x23\x3a\x12\x37\xc2\xfc\x15\ \xb3\xec\x45\xb7\x20\x8c\x6e\x5c\xdf\xaa\x9f\xca\xbd\x9c\xfa\x6f\ \x28\x6d\x73\x3f\x74\x13\xfc\x64\xc4\xf4\xee\x8e\x1c\x6a\xea\xce\ \xa2\xe6\x40\xc2\x92\x3a\x76\x88\x1b\xcc\xa0\xaf\x59\x4e\x11\x9b\ \xf5\xc1\x30\xc7\x29\x9c\xbf\x90\x5a\x15\xae\x73\x80\x54\x8f\x6d\ \xd3\x73\x22\x0b\xcc\x5b\x9c\xf2\x94\xd8\xf3\x6b\x5b\xe9\x9d\xb1\ \x38\x91\x2f\x40\x6d\x71\x09\x44\x46\xef\x38\x13\xb0\x95\xe9\xc2\ \x59\xb8\x71\x33\xf6\x26\x3e\xac\xd2\xb1\xf3\x8b\x3b\xfb\x4f\xe8\ \x05\x71\x53\x7e\x06\xcc\x24\x47\xf9\x8b\x04\x9a\x5f\xd9\x8d\xc4\ \x54\x94\x96\x25\xb1\x8d\x69\xa5\xc8\x9a\x37\x61\x54\x4f\xf1\x17\ \x46\x72\xba\xf0\xfc\x19\x4c\x8a\xf4\xa7\x07\x63\x80\x06\x33\x2b\ \x89\x0d\xe4\xb9\x15\xc8\x57\xf5\xf2\x5e\x69\x93\xdc\x59\xec\xbb\ \x21\xb7\xa9\x37\x14\x98\x66\x28\xf4\xbe\x69\x87\x3f\x04\x60\xb3\ \x7c\xe1\x32\x63\x0d\x17\x12\x95\x4e\xef\xf3\x10\xb2\x31\xac\x96\ \x92\x15\xa0\xe5\x76\x67\xbd\xa9\x41\x32\x16\x55\xff\x3b\xbd\x77\ \x83\x0d\xac\xdf\x84\x2e\xa2\xb3\xed\x2d\xdb\x84\x3c\x7b\x2f\xcd\ \x80\xbd\xce\x02\x4d\x58\x97\x5e\xf0\x65\x8b\xd9\x60\x42\x9b\xdd\ \x63\xb4\x36\x42\x1b\x56\x99\x75\x04\x89\xbb\xb1\x6d\x9b\x79\xa5\ \x34\xb3\x82\xf2\x44\xc7\xcf\x50\xb3\x11\x11\x5d\x7b\xf9\xa5\x24\ \x8f\xbf\xe5\xa7\xdc\xd1\x10\x11\xaa\x71\xbf\x4e\x00\x83\x90\x09\ \x3e\xd8\xde\x41\x7a\x5a\xde\xb8\xd9\xc2\xc4\xfa\xb9\x78\x81\xc9\ \x01\x82\xc0\x84\xb9\x84\xc9\x5c\x20\x96\xef\x09\xb1\xb7\x6c\xd8\ \x8e\xae\xdb\x71\x3b\xf2\x3b\x81\xd8\x3d\x5a\x6c\xbb\x95\xf3\x66\ \xf3\xdc\x0d\x7e\x33\x59\xe2\xba\xbb\xdb\xed\x74\xf3\xd2\xb7\xe2\ \x7a\x87\x56\x67\xa6\x7c\xcc\x59\x6e\xbe\x61\x6f\x0c\xe0\x4c\x1f\ \x20\x4c\x67\x0a\x35\x54\x64\x99\xd5\x99\x31\xf6\x30\xda\x6c\x9b\ \xb5\x59\x59\x23\xfe\xc8\xba\x6c\x71\x6d\xda\xeb\x52\x33\x00\xe1\ \xf9\x00\x23\x88\xfa\xc8\x98\x2a\xb8\x11\x47\x01\xb0\xee\x3b\x68\ \x39\x1e\xe4\x05\x14\x91\x8c\x56\xc5\x6f\xd8\x7e\x21\x85\x44\x55\ \xe3\x6a\x7a\x99\x45\x65\xaa\x9a\xaa\x34\xb0\x55\x97\xd6\x8a\xed\ \xe9\x5a\x97\x7e\xeb\x6f\x0e\x9a\xee\x47\x97\x4f\x7e\xe0\x99\x2e\ \x95\xad\x7f\x2d\xc3\xe5\x6a\x79\x1e\xce\xe8\xbb\x67\x3b\x59\x99\ \x30\x4b\xfb\xf1\x37\x54\xf9\x4b\x77\x1c\xec\x8a\x41\x89\x15\xc2\ \x4a\x6d\x1b\xbf\xe8\xc5\x6f\xf8\xb9\x5f\x28\xff\x15\x57\xac\x3f\ \xbb\xe6\xc7\xf1\xe7\x2f\x51\x96\x6f\xb0\xe2\x1c\xec\xaa\x1c\x0c\ \x02\xfe\x2b\x81\xea\xc8\xef\x6c\x4e\xde\x71\x6e\x40\xca\xa6\xfe\ \xdb\x31\xe4\x30\x4f\x78\x88\xd9\xf6\x36\xac\xf8\x98\x1b\xfb\x39\ \xbb\x4a\xb9\x8b\x8e\x43\xc6\x46\x55\x4d\xc2\x9a\x2c\x68\x14\xca\ \x05\x56\xa5\x8a\xef\x40\x37\xb3\x53\xf5\xd1\xc3\x92\x96\xf0\x2a\ \xbb\xf0\x55\xac\x0c\x32\xf0\x65\x53\x22\xa4\x7b\x01\x73\x81\x55\ \xcd\x94\x90\x88\xaf\xfb\x34\xa1\x7e\x2e\xd4\x35\xa4\x4f\x4d\x50\ \x60\xc5\xcc\x9c\xb3\x02\xe3\xbf\xb1\x25\x8e\x5b\x73\xda\x1b\x3e\ \x04\x21\x49\xe8\x1d\xab\x32\x66\xb3\x8e\xfd\x12\xad\x70\xca\x7f\ \xfb\x59\xfa\x9b\xb9\xf2\xab\xb4\xfa\x3b\x2e\xd8\xef\x1a\x42\x8b\ \x71\x71\xb3\xe4\x71\xa7\x95\x3e\xb4\xfa\x41\xd3\x1c\xdb\xac\x2e\ \x29\x55\xa0\x54\x9a\x94\xce\xad\x37\x58\x28\x6a\x3d\x82\xd7\x91\ \x37\x63\xca\xb0\x7e\xb1\x40\x4e\x61\x88\x34\x99\x35\x97\x8f\xa8\ \x98\x5e\x6c\x6c\x55\x44\xce\x52\x85\x9e\x14\x31\x63\xa5\x74\x86\ \x97\xc8\x8d\xeb\xa4\xa1\xc4\x50\x65\xa2\x88\xbc\xdd\x69\xe2\x7d\ \xa5\x08\x49\x04\x42\x61\x57\x81\xd8\x9c\x39\x13\x5e\xd3\xbe\xc1\ \x7a\xdb\xf0\x7c\x6f\x7f\xf2\x66\xde\xae\xa6\x8e\x8d\xa6\x55\x59\ \xba\x76\x2e\x83\x2f\xe1\x48\xf4\xa7\xcf\xdb\xbc\xec\x6e\xa3\x57\ \x7a\xea\x9f\xc8\xdd\xa4\xba\xcb\x24\x05\xf3\x50\x4d\xd7\xf7\xae\ \x8b\x6a\x24\x44\x95\x05\xdf\x4e\x19\x4d\xa6\xe7\x2e\x8d\x7a\x38\ \xed\x70\xd2\xee\xc8\xa7\x12\x2b\x8a\x0b\x4b\x5e\xa3\x58\x84\xa8\ \xba\x46\x0a\x11\xd2\x24\x47\xdd\x8d\xa3\x1a\xc4\x38\x3a\x44\x16\ \x03\x2a\xb5\x10\x1e\x79\x95\x07\x33\xb2\xf6\x1e\xed\x14\x0b\x09\ \x5b\xcb\xd2\xc7\xc7\x59\x28\x16\x87\x51\x22\xbc\x42\xce\x0f\xef\ \x45\xca\x48\x51\xa6\x7d\x9c\x23\x22\xca\x8b\xc2\x2a\xd0\xa8\x75\ \x60\x82\xff\x3b\x0a\xa3\x80\x46\xf9\xc2\xb5\xee\xc4\x32\x1d\xc6\ \x5a\x4c\x1b\x61\xed\xb5\x2f\xb9\xac\x79\xeb\x26\xbc\xb3\xfb\x15\ \x77\xc8\x73\x1a\x86\x32\xe3\x1c\x2d\x7a\x5c\x61\xe8\x33\x4a\xdc\ \x64\x15\x23\xbf\xc7\x23\x13\x44\x2d\xde\x61\x43\x54\x74\x4e\x9f\ \x33\x4a\x37\xca\xe9\xab\x4b\xc5\x47\x1e\xe2\xf0\x6f\x56\xef\x35\ \x64\xcc\x2c\x7d\x2f\x49\xca\x8d\x2c\x1a\x1f\x18\x9e\xe2\x52\xfb\ \xd6\xaf\x2d\xd2\x1b\x5c\xf5\x31\x13\x42\x40\x9b\xd0\xd2\x3b\x27\ \x86\x6e\x9a\x43\x93\x9f\xe1\xca\x02\xb4\x28\xbc\x66\x21\x83\xe1\ \x8d\x67\x44\x1a\x64\xdb\x6b\x4e\xd1\xa0\xdb\x62\x91\x97\x0e\xba\ \x5a\x88\x61\x9d\xf8\x2c\xb6\x5a\xd8\x87\xbc\xc4\xa2\x3c\xfb\x65\ \x5c\x41\x75\xf1\xc1\xdd\xad\x82\x2f\x9b\x3c\x15\xbd\xd6\x2a\x2f\ \x25\x24\xd2\xea\xcb\xf4\x20\x76\x05\x8e\xc7\x50\x6c\x5d\xec\x71\ \xe5\x7a\x67\xb1\x04\x56\x3c\xd2\x15\x30\x39\x48\x11\x34\x12\x71\ \xb3\x9f\xd1\x7a\x63\xe5\x5d\xe1\xec\x5d\x4b\x73\x32\x2b\x13\x16\ \xb5\x4f\xa4\xe6\x58\xe7\xd5\xb2\x22\x7f\xe3\x22\x5e\x43\xd9\x70\ \x03\x6d\x12\xe2\x6c\x03\xa7\x65\x6f\x13\x80\xf5\xc9\x6b\x2e\x92\ \xb1\x00\x70\x5d\xc1\xc4\xa2\x63\xb4\x5c\xbb\x8a\x6d\xb1\xb3\x09\ \x46\xa8\x56\xae\x95\xca\x70\xb3\x42\xae\x3f\x36\x1a\x31\x56\x39\ \xbf\x8d\x19\x17\x2f\x97\x6e\x65\xc9\x72\xfd\x37\xc6\xf2\xda\xef\ \x4b\x6c\x3e\xec\xd8\xd3\x11\x58\xa3\xd9\xa6\x31\x0c\x66\x10\x6b\ \xbb\x2e\x85\xdb\xd6\xb2\x0d\x05\xf5\x86\x42\xfa\x6a\xf6\x2b\xec\ \x1b\xaf\xc7\xb7\x90\x0f\xb3\xf1\xff\x03\xff\x51\x67\x3b\ \x00\x00\x02\x15\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x32\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x20\x36\x30\ \x30\x2c\x31\x30\x35\x30\x20\x43\x20\x33\x35\x31\x2e\x34\x37\x32\ \x2c\x31\x30\x35\x30\x20\x31\x35\x30\x2c\x38\x34\x38\x2e\x35\x32\ \x38\x20\x31\x35\x30\x2c\x36\x30\x30\x20\x31\x35\x30\x2c\x33\x35\ \x31\x2e\x34\x37\x32\x20\x33\x35\x31\x2e\x34\x37\x32\x2c\x31\x35\ \x30\x20\x36\x30\x30\x2c\x31\x35\x30\x20\x63\x20\x32\x34\x38\x2e\ \x35\x32\x38\x2c\x30\x20\x34\x35\x30\x2c\x32\x30\x31\x2e\x34\x37\ \x32\x20\x34\x35\x30\x2c\x34\x35\x30\x20\x30\x2c\x32\x34\x38\x2e\ \x35\x32\x38\x20\x2d\x32\x30\x31\x2e\x34\x37\x32\x2c\x34\x35\x30\ \x20\x2d\x34\x35\x30\x2c\x34\x35\x30\x20\x7a\x20\x4d\x20\x38\x38\ \x38\x2e\x34\x36\x32\x2c\x38\x32\x37\x2e\x38\x35\x31\x20\x36\x36\ \x31\x2e\x39\x37\x34\x2c\x36\x30\x31\x2e\x31\x32\x32\x20\x6c\x20\ \x30\x2c\x2d\x32\x2e\x32\x34\x34\x20\x32\x32\x36\x2e\x34\x38\x38\ \x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\x30\x2c\x2d\x36\x30\x2e\ \x36\x31\x31\x20\x2d\x36\x30\x2e\x38\x34\x38\x2c\x30\x20\x51\x20\ \x37\x32\x37\x2e\x33\x33\x39\x2c\x34\x31\x31\x2e\x39\x38\x36\x20\ \x36\x32\x37\x2e\x30\x34\x33\x2c\x35\x31\x32\x2e\x34\x35\x31\x20\ \x36\x31\x33\x2e\x35\x32\x34\x2c\x35\x32\x35\x2e\x33\x35\x38\x20\ \x36\x30\x30\x2c\x35\x33\x38\x2e\x32\x36\x37\x20\x6c\x20\x2d\x32\ \x32\x36\x2e\x34\x38\x37\x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\ \x2d\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x36\x30\x2e\x36\ \x31\x31\x20\x4c\x20\x35\x33\x38\x2e\x30\x32\x36\x2c\x36\x30\x30\ \x20\x33\x31\x31\x2e\x35\x33\x38\x2c\x38\x32\x36\x2e\x37\x32\x39\ \x20\x6c\x20\x30\x2c\x36\x31\x2e\x37\x33\x33\x20\x36\x30\x2e\x38\ \x34\x38\x2c\x30\x20\x71\x20\x33\x34\x2e\x33\x36\x33\x2c\x2d\x33\ \x34\x2e\x37\x39\x32\x20\x36\x38\x2e\x37\x33\x35\x2c\x2d\x36\x39\ \x2e\x35\x39\x20\x4c\x20\x36\x30\x30\x2c\x36\x36\x31\x2e\x37\x33\ \x33\x20\x6c\x20\x32\x32\x36\x2e\x34\x38\x37\x2c\x32\x32\x36\x2e\ \x37\x32\x39\x20\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x2d\ \x36\x30\x2e\x36\x31\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x62\x33\x37\x39\x37\x39\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x02\x2a\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x30\x2e\x39\ \x31\x37\x36\x39\x37\x31\x38\x20\x34\x2e\x35\x2c\x34\x2e\x32\x32\ \x38\x30\x31\x38\x32\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\ \x30\x2e\x39\x31\x36\x32\x37\x36\x34\x38\x20\x63\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\ \x37\x37\x30\x32\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x30\x2e\x31\x35\x37\ \x37\x30\x32\x30\x32\x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\ \x30\x2e\x34\x31\x33\x34\x33\x34\x39\x32\x20\x30\x2c\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x32\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\ \x31\x32\x38\x33\x2c\x33\x2e\x35\x39\x37\x33\x31\x30\x32\x20\x30\ \x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\ \x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\ \x31\x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\ \x4c\x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x31\x2e\x34\x38\ \x37\x34\x31\x33\x34\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\ \x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\x33\x34\x33\ \x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x31\x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x31\x20\x30\x2e\x35\ \x37\x31\x31\x37\x34\x39\x2c\x30\x2e\x30\x30\x31\x34\x32\x20\x7a\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x66\x66\x66\x22\x2f\x3e\x0d\ \x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x93\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x20\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x35\ \x30\x2c\x35\x30\x30\x20\x4c\x20\x35\x30\x30\x2c\x37\x35\x30\x20\ \x4c\x20\x37\x35\x30\x2c\x35\x30\x30\x20\x4c\x20\x35\x30\x30\x2c\ \x32\x35\x30\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ \x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x61\x32\x61\x32\ \x61\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ \x3d\x22\x35\x30\x22\x20\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\ \x0d\x0a\ \x00\x00\x02\x2d\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x39\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x36\x20\x39\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x36\x20\x39\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x6d\x20\x35\x2e\x30\x38\x32\x33\x30\x32\x38\x2c\x31\x2e\x31\ \x38\x39\x34\x35\x39\x33\x20\x2d\x33\x2e\x33\x31\x30\x33\x32\x31\ \x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x33\x2e\x33\x31\x31\ \x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x63\ \x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\x35\x37\x37\ \x31\x32\x35\x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x20\x30\x2c\x30\x2e\x35\x37\x31\x31\x37\ \x34\x39\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\ \x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x34\x31\x33\x34\x33\x34\ \x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x2d\x33\x2e\x35\x39\ \x37\x33\x31\x30\x31\x37\x2c\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\ \x33\x20\x30\x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\ \x35\x37\x37\x30\x31\x39\x31\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x31\x2c\x2d\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\ \x37\x31\x31\x37\x34\x38\x20\x4c\x20\x34\x2e\x35\x31\x32\x35\x38\ \x36\x36\x2c\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x37\x20\x63\x20\ \x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x20\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\ \x2e\x31\x35\x37\x37\x31\x32\x34\x20\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x2c\x30\x20\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x2c\x30\ \x2e\x31\x35\x37\x37\x31\x32\x35\x20\x30\x2e\x31\x35\x36\x32\x38\ \x31\x33\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\x20\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\x34\x39\ \x33\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x66\x66\x66\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x5d\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\ \x36\x38\x22\x20\x78\x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\ \x3d\x22\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\xa1\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x35\x34\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x35\x34\x20\x31\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x35\x34\ \x20\x31\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\ \x65\x63\x74\x20\x69\x64\x3d\x22\x44\x61\x72\x6b\x31\x22\x20\x64\ \x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x44\x61\x72\x6b\x31\x22\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x32\x39\x32\x63\x33\x31\x22\x20\ \x78\x3d\x22\x31\x36\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\ \x74\x68\x3d\x22\x34\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x38\ \x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\ \x22\x4c\x69\x67\x68\x74\x31\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\ \x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x31\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\x20\x78\x3d\x22\x31\x36\ \x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ \x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x44\x61\x72\x6b\ \x32\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x44\x61\ \x72\x6b\x32\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x32\x39\x32\x63\ \x33\x31\x22\x20\x78\x3d\x22\x32\x35\x22\x20\x79\x3d\x22\x31\x22\ \x20\x77\x69\x64\x74\x68\x3d\x22\x34\x22\x20\x68\x65\x69\x67\x68\ \x74\x3d\x22\x38\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\ \x20\x69\x64\x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\x64\x61\x74\ \x61\x2d\x6e\x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\x20\x78\ \x3d\x22\x32\x35\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\ \x68\x3d\x22\x33\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x22\ \x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\ \x44\x61\x72\x6b\x33\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\ \x3d\x22\x44\x61\x72\x6b\x33\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\ \x32\x39\x32\x63\x33\x31\x22\x20\x78\x3d\x22\x33\x34\x22\x20\x79\ \x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x34\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x38\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x4c\x69\x67\x68\x74\x33\x22\ \x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\ \x74\x33\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\x66\x38\x37\x39\ \x35\x22\x20\x78\x3d\x22\x33\x34\x22\x20\x79\x3d\x22\x31\x22\x20\ \x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x68\x65\x69\x67\x68\x74\ \x3d\x22\x37\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x02\x30\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x39\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x36\x20\x39\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x36\x20\x39\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x6d\x20\x35\x2e\x30\x38\x32\x33\x30\x32\x38\x2c\x31\x2e\x31\ \x38\x39\x34\x35\x39\x33\x20\x2d\x33\x2e\x33\x31\x30\x33\x32\x31\ \x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x33\x2e\x33\x31\x31\ \x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x63\ \x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\x35\x37\x37\ \x31\x32\x35\x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x20\x30\x2c\x30\x2e\x35\x37\x31\x31\x37\ \x34\x39\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\ \x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x34\x31\x33\x34\x33\x34\ \x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x2d\x33\x2e\x35\x39\ \x37\x33\x31\x30\x31\x37\x2c\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\ \x33\x20\x30\x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\ \x35\x37\x37\x30\x31\x39\x31\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x31\x2c\x2d\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\ \x37\x31\x31\x37\x34\x38\x20\x4c\x20\x34\x2e\x35\x31\x32\x35\x38\ \x36\x36\x2c\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x37\x20\x63\x20\ \x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x20\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\ \x2e\x31\x35\x37\x37\x31\x32\x34\x20\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x2c\x30\x20\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x2c\x30\ \x2e\x31\x35\x37\x37\x31\x32\x35\x20\x30\x2e\x31\x35\x36\x32\x38\ \x31\x33\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\x20\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\x34\x39\ \x33\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x30\x62\x30\ \x62\x30\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x2d\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x30\x2e\x39\ \x31\x37\x36\x39\x37\x31\x38\x20\x34\x2e\x35\x2c\x34\x2e\x32\x32\ \x38\x30\x31\x38\x32\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\ \x30\x2e\x39\x31\x36\x32\x37\x36\x34\x38\x20\x63\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\ \x37\x37\x30\x32\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x30\x2e\x31\x35\x37\ \x37\x30\x32\x30\x32\x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\ \x30\x2e\x34\x31\x33\x34\x33\x34\x39\x32\x20\x30\x2c\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x32\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\ \x31\x32\x38\x33\x2c\x33\x2e\x35\x39\x37\x33\x31\x30\x32\x20\x30\ \x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\ \x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\ \x31\x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\ \x4c\x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x31\x2e\x34\x38\ \x37\x34\x31\x33\x34\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\ \x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\x33\x34\x33\ \x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x31\x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x31\x20\x30\x2e\x35\ \x37\x31\x31\x37\x34\x39\x2c\x30\x2e\x30\x30\x31\x34\x32\x20\x7a\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x30\x62\x30\x62\x30\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x25\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x35\x2e\x30\ \x38\x33\x33\x30\x32\x38\x20\x34\x2e\x35\x2c\x31\x2e\x37\x37\x32\ \x39\x38\x31\x38\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\x35\ \x2e\x30\x38\x34\x37\x32\x33\x35\x20\x63\x20\x30\x2e\x31\x35\x37\ \x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\ \x33\x34\x33\x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\x33\x2c\ \x2d\x33\x2e\x35\x39\x37\x33\x31\x30\x31\x39\x20\x30\x2c\x30\x20\ \x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\ \x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\x4c\ \x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x34\x2e\x35\x31\x33\ \x35\x38\x36\x36\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\ \x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\x31\x35\ \x37\x37\x31\x32\x34\x2c\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x20\ \x30\x2c\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x20\x30\x2e\x31\x35\ \x37\x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x20\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x36\x32\ \x38\x31\x33\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x64\x61\x65\x65\x39\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\x59\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x35\x38\x64\x33\x66\x66\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\ \x20\x78\x3d\x22\x36\x35\x22\x20\x79\x3d\x22\x32\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x32\x38\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x00\x61\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x39\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x66\x66\x66\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x20\x64\x3d\x22\x4d\x31\x2c\x38\x56\x31\x4c\x35\x2c\x34\ \x2e\x35\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x01\x08\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x63\x38\x63\x39\x63\x61\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x2f\x3e\x0d\x0a\x3c\ \x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x4d\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x36\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x66\x66\x66\x22\x20\x64\ \x3d\x22\x4d\x31\x2c\x31\x48\x38\x4c\x34\x2e\x35\x2c\x35\x5a\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x32\x38\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\ \x20\x78\x3d\x22\x33\x36\x22\x20\x79\x3d\x22\x32\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x35\x37\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x02\x15\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x32\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x20\x36\x30\ \x30\x2c\x31\x30\x35\x30\x20\x43\x20\x33\x35\x31\x2e\x34\x37\x32\ \x2c\x31\x30\x35\x30\x20\x31\x35\x30\x2c\x38\x34\x38\x2e\x35\x32\ \x38\x20\x31\x35\x30\x2c\x36\x30\x30\x20\x31\x35\x30\x2c\x33\x35\ \x31\x2e\x34\x37\x32\x20\x33\x35\x31\x2e\x34\x37\x32\x2c\x31\x35\ \x30\x20\x36\x30\x30\x2c\x31\x35\x30\x20\x63\x20\x32\x34\x38\x2e\ \x35\x32\x38\x2c\x30\x20\x34\x35\x30\x2c\x32\x30\x31\x2e\x34\x37\ \x32\x20\x34\x35\x30\x2c\x34\x35\x30\x20\x30\x2c\x32\x34\x38\x2e\ \x35\x32\x38\x20\x2d\x32\x30\x31\x2e\x34\x37\x32\x2c\x34\x35\x30\ \x20\x2d\x34\x35\x30\x2c\x34\x35\x30\x20\x7a\x20\x4d\x20\x38\x38\ \x38\x2e\x34\x36\x32\x2c\x38\x32\x37\x2e\x38\x35\x31\x20\x36\x36\ \x31\x2e\x39\x37\x34\x2c\x36\x30\x31\x2e\x31\x32\x32\x20\x6c\x20\ \x30\x2c\x2d\x32\x2e\x32\x34\x34\x20\x32\x32\x36\x2e\x34\x38\x38\ \x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\x30\x2c\x2d\x36\x30\x2e\ \x36\x31\x31\x20\x2d\x36\x30\x2e\x38\x34\x38\x2c\x30\x20\x51\x20\ \x37\x32\x37\x2e\x33\x33\x39\x2c\x34\x31\x31\x2e\x39\x38\x36\x20\ \x36\x32\x37\x2e\x30\x34\x33\x2c\x35\x31\x32\x2e\x34\x35\x31\x20\ \x36\x31\x33\x2e\x35\x32\x34\x2c\x35\x32\x35\x2e\x33\x35\x38\x20\ \x36\x30\x30\x2c\x35\x33\x38\x2e\x32\x36\x37\x20\x6c\x20\x2d\x32\ \x32\x36\x2e\x34\x38\x37\x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\ \x2d\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x36\x30\x2e\x36\ \x31\x31\x20\x4c\x20\x35\x33\x38\x2e\x30\x32\x36\x2c\x36\x30\x30\ \x20\x33\x31\x31\x2e\x35\x33\x38\x2c\x38\x32\x36\x2e\x37\x32\x39\ \x20\x6c\x20\x30\x2c\x36\x31\x2e\x37\x33\x33\x20\x36\x30\x2e\x38\ \x34\x38\x2c\x30\x20\x71\x20\x33\x34\x2e\x33\x36\x33\x2c\x2d\x33\ \x34\x2e\x37\x39\x32\x20\x36\x38\x2e\x37\x33\x35\x2c\x2d\x36\x39\ \x2e\x35\x39\x20\x4c\x20\x36\x30\x30\x2c\x36\x36\x31\x2e\x37\x33\ \x33\x20\x6c\x20\x32\x32\x36\x2e\x34\x38\x37\x2c\x32\x32\x36\x2e\ \x37\x32\x39\x20\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x2d\ \x36\x30\x2e\x36\x31\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x36\x32\x36\x35\x36\x38\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\x4f\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x63\x38\x63\x39\x63\x61\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x7a\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x45\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x33\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x70\x78\x22\x20\x76\x69\ \x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x36\x33\x20\x37\x22\ \x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ \x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x36\x33\x20\x37\ \x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\ \x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\ \x20\x69\x64\x3d\x22\x44\x61\x72\x6b\x31\x22\x20\x64\x61\x74\x61\ \x2d\x6e\x61\x6d\x65\x3d\x22\x44\x61\x72\x6b\x31\x22\x20\x66\x69\ \x6c\x6c\x3d\x22\x23\x32\x39\x32\x63\x33\x31\x22\x20\x78\x3d\x22\ \x32\x35\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\ \x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x44\x61\ \x72\x6b\x32\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\ \x44\x61\x72\x6b\x32\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x32\x39\ \x32\x63\x33\x31\x22\x20\x78\x3d\x22\x33\x38\x22\x20\x79\x3d\x22\ \x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\ \x63\x74\x20\x69\x64\x3d\x22\x4c\x69\x67\x68\x74\x31\x22\x20\x64\ \x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x31\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\ \x20\x78\x3d\x22\x32\x33\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\ \x64\x74\x68\x3d\x22\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ \x35\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\ \x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\x64\x61\x74\x61\x2d\x6e\ \x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\x20\x78\x3d\x22\x33\ \x30\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\ \x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\x0d\ \x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x4c\x69\x67\ \x68\x74\x33\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\ \x4c\x69\x67\x68\x74\x33\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\ \x66\x38\x37\x39\x35\x22\x20\x78\x3d\x22\x33\x36\x22\x20\x79\x3d\ \x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x00\xbf\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x37\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x33\x70\x78\x22\x20\x76\x69\ \x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x37\x20\x36\x33\x22\ \x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ \x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x37\x20\x36\x33\ \x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\ \x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x35\x66\x35\x66\x35\x66\x22\x20\ \x78\x3d\x22\x32\x22\x20\x79\x3d\x22\x31\x33\x22\x20\x77\x69\x64\ \x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\ \x37\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xf7\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\ \x62\x30\x62\x30\x62\x30\x22\x20\x64\x3d\x22\x4d\x32\x32\x2e\x31\ \x2c\x31\x30\x32\x32\x2e\x31\x4c\x2d\x32\x32\x2e\x31\x2c\x39\x37\ \x37\x2e\x39\x6c\x31\x30\x30\x30\x2d\x31\x30\x30\x30\x4c\x31\x30\ \x32\x32\x2e\x31\x2c\x32\x32\x2e\x31\x5a\x6d\x32\x32\x30\x2c\x33\ \x30\x4c\x31\x39\x37\x2e\x39\x2c\x31\x30\x30\x37\x2e\x39\x6c\x31\ \x30\x30\x30\x2d\x31\x30\x30\x30\x4c\x31\x32\x34\x32\x2e\x31\x2c\ \x35\x32\x2e\x31\x5a\x6d\x32\x35\x30\x2c\x30\x4c\x34\x34\x37\x2e\ \x39\x2c\x31\x30\x30\x37\x2e\x39\x6c\x31\x30\x30\x30\x2d\x31\x30\ \x30\x30\x4c\x31\x34\x39\x32\x2e\x31\x2c\x35\x32\x2e\x31\x5a\x6d\ \x32\x35\x30\x2c\x30\x4c\x36\x39\x37\x2e\x39\x2c\x31\x30\x30\x37\ \x2e\x39\x6c\x31\x30\x33\x30\x2d\x31\x30\x33\x30\x4c\x31\x37\x37\ \x32\x2e\x31\x2c\x32\x32\x2e\x31\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\ \x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\ \x20\x78\x3d\x22\x36\x35\x22\x20\x79\x3d\x22\x32\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x32\x38\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x02\x25\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x35\x2e\x30\ \x38\x33\x33\x30\x32\x38\x20\x34\x2e\x35\x2c\x31\x2e\x37\x37\x32\ \x39\x38\x31\x38\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\x35\ \x2e\x30\x38\x34\x37\x32\x33\x35\x20\x63\x20\x30\x2e\x31\x35\x37\ \x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\ \x33\x34\x33\x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\x33\x2c\ \x2d\x33\x2e\x35\x39\x37\x33\x31\x30\x31\x39\x20\x30\x2c\x30\x20\ \x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\ \x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\x4c\ \x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x34\x2e\x35\x31\x33\ \x35\x38\x36\x36\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\ \x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\x31\x35\ \x37\x37\x31\x32\x34\x2c\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x20\ \x30\x2c\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x20\x30\x2e\x31\x35\ \x37\x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x20\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x36\x32\ \x38\x31\x33\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x62\x30\x62\x30\x62\x30\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\xf3\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x35\x38\x64\x33\x66\x66\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x37\x2e\x31\ \x20\x68\x2d\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x35\x38\x64\x33\x66\x66\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\x2c\x31\ \x33\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x68\x30\x2e\x39\x20\x76\ \x37\x2e\x31\x20\x68\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x20\x66\x69\x6c\x6c\x2d\ \x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\ \x2c\x35\x20\x4c\x20\x35\x2c\x31\x33\x20\x76\x2d\x38\x20\x68\x38\ \x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x35\x38\x64\x33\x66\ \x66\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ \x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\ \x0d\x0a\ \x00\x00\x01\xcf\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x39\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x20\x64\x3d\x22\x6d\x20\x30\x2e\x39\x31\x36\x36\x39\x37\ \x32\x2c\x31\x2e\x31\x38\x39\x34\x35\x39\x33\x20\x33\x2e\x33\x31\ \x30\x33\x32\x31\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x2d\ \x33\x2e\x33\x31\x31\x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\ \x34\x30\x38\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\ \x30\x2e\x31\x35\x37\x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\x37\ \x37\x30\x32\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\ \x30\x2e\x35\x37\x31\x31\x37\x34\x39\x20\x30\x2e\x31\x35\x37\x37\ \x30\x32\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x30\x2e\x34\ \x31\x33\x34\x33\x34\x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\ \x20\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x33\ \x2e\x35\x39\x37\x33\x31\x30\x32\x2c\x2d\x33\x2e\x35\x39\x36\x31\ \x32\x38\x33\x20\x30\x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x30\x2e\ \x31\x35\x37\x37\x30\x31\x39\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x2c\x2d\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\ \x31\x37\x34\x38\x20\x4c\x20\x31\x2e\x34\x38\x36\x34\x31\x33\x34\ \x2c\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x37\x20\x63\x20\x2d\x30\ \x2e\x31\x35\x37\x37\x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x2d\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\ \x2e\x31\x35\x37\x37\x31\x32\x34\x20\x2d\x30\x2e\x35\x37\x31\x31\ \x33\x36\x39\x2c\x30\x20\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\ \x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\ \x20\x30\x2e\x30\x30\x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\ \x34\x39\x33\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x66\x66\ \x66\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x51\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x61\x66\x61\x66\ \x61\x66\x22\x20\x64\x3d\x22\x4d\x35\x2c\x31\x32\x56\x36\x4c\x39\ \x2c\x39\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x01\x01\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x36\x20\x36\ \x34\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x36\ \x20\x36\x34\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\ \x65\x63\x74\x20\x66\x69\x6c\x6c\x3d\x22\x23\x35\x66\x35\x66\x35\ \x66\x22\x20\x78\x3d\x22\x32\x22\x20\x79\x3d\x22\x31\x22\x20\x77\ \x69\x64\x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\ \x22\x36\x32\x2e\x35\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\ \x74\x20\x66\x69\x6c\x6c\x3d\x22\x23\x35\x66\x35\x66\x35\x66\x22\ \x20\x78\x3d\x22\x39\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\ \x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\ \x32\x2e\x35\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x01\xd2\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x39\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x20\x64\x3d\x22\x6d\x20\x30\x2e\x39\x31\x36\x36\x39\x37\ \x32\x2c\x31\x2e\x31\x38\x39\x34\x35\x39\x33\x20\x33\x2e\x33\x31\ \x30\x33\x32\x31\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x2d\ \x33\x2e\x33\x31\x31\x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\ \x34\x30\x38\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\ \x30\x2e\x31\x35\x37\x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\x37\ \x37\x30\x32\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\ \x30\x2e\x35\x37\x31\x31\x37\x34\x39\x20\x30\x2e\x31\x35\x37\x37\ \x30\x32\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x30\x2e\x34\ \x31\x33\x34\x33\x34\x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\ \x20\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x33\ \x2e\x35\x39\x37\x33\x31\x30\x32\x2c\x2d\x33\x2e\x35\x39\x36\x31\ \x32\x38\x33\x20\x30\x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x30\x2e\ \x31\x35\x37\x37\x30\x31\x39\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x2c\x2d\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\ \x31\x37\x34\x38\x20\x4c\x20\x31\x2e\x34\x38\x36\x34\x31\x33\x34\ \x2c\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x37\x20\x63\x20\x2d\x30\ \x2e\x31\x35\x37\x37\x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x2d\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\ \x2e\x31\x35\x37\x37\x31\x32\x34\x20\x2d\x30\x2e\x35\x37\x31\x31\ \x33\x36\x39\x2c\x30\x20\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\ \x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\ \x20\x30\x2e\x30\x30\x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\ \x34\x39\x33\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x30\ \x62\x30\x62\x30\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\ \x0a\ \x00\x00\x01\xb0\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x35\x38\x64\x33\x66\x66\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x2c\x31\x30\ \x61\x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x31\x32\x2c\x30\x61\ \x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x32\x2c\x30\x22\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x20\ \x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ \x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x2d\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x30\x2e\x39\ \x31\x37\x36\x39\x37\x31\x38\x20\x34\x2e\x35\x2c\x34\x2e\x32\x32\ \x38\x30\x31\x38\x32\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\ \x30\x2e\x39\x31\x36\x32\x37\x36\x34\x38\x20\x63\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\ \x37\x37\x30\x32\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x30\x2e\x31\x35\x37\ \x37\x30\x32\x30\x32\x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\ \x30\x2e\x34\x31\x33\x34\x33\x34\x39\x32\x20\x30\x2c\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x32\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\ \x31\x32\x38\x33\x2c\x33\x2e\x35\x39\x37\x33\x31\x30\x32\x20\x30\ \x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\ \x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\ \x31\x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\ \x4c\x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x31\x2e\x34\x38\ \x37\x34\x31\x33\x34\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\ \x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\x33\x34\x33\ \x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x31\x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x31\x20\x30\x2e\x35\ \x37\x31\x31\x37\x34\x39\x2c\x30\x2e\x30\x30\x31\x34\x32\x20\x7a\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\x5c\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x20\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x69\x64\x3d\x22\x42\x6f\ \x74\x74\x6f\x6d\x43\x69\x72\x63\x6c\x65\x22\x20\x64\x3d\x22\x4d\ \x31\x30\x30\x2c\x35\x30\x30\x20\x61\x32\x35\x30\x2c\x32\x35\x30\ \x2c\x20\x30\x2c\x20\x31\x2c\x30\x2c\x20\x38\x30\x30\x2c\x30\x20\ \x4d\x37\x37\x35\x2c\x35\x30\x30\x20\x4c\x35\x30\x30\x2c\x37\x37\ \x35\x20\x4c\x32\x32\x35\x2c\x35\x30\x30\x20\x7a\x22\x20\x66\x69\ \x6c\x6c\x3d\x22\x23\x61\x32\x61\x32\x61\x32\x22\x20\x2f\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x69\x64\x3d\x22\x54\x6f\x70\ \x43\x69\x72\x63\x6c\x65\x22\x20\x64\x3d\x22\x4d\x39\x30\x30\x2c\ \x35\x30\x30\x20\x61\x32\x35\x30\x2c\x32\x35\x30\x2c\x20\x30\x2c\ \x20\x31\x2c\x30\x2c\x20\x2d\x38\x30\x30\x2c\x30\x20\x4d\x32\x32\ \x35\x2c\x35\x30\x30\x20\x4c\x35\x30\x30\x2c\x32\x32\x35\x20\x4c\ \x37\x37\x35\x2c\x35\x30\x30\x20\x20\x7a\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x61\x32\x61\x32\x61\x32\x22\x20\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x69\x64\x3d\x22\x49\x6e\x73\x69\x64\ \x65\x22\x20\x64\x3d\x22\x4d\x32\x37\x35\x2c\x35\x30\x30\x20\x4c\ \x20\x35\x30\x30\x2c\x37\x32\x35\x20\x4c\x20\x37\x32\x35\x2c\x35\ \x30\x30\x20\x4c\x20\x35\x30\x30\x2c\x32\x37\x35\x20\x7a\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x61\x32\x61\x32\x61\x32\x22\x20\x2f\ \x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\xf3\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x63\x38\x63\x39\x63\x61\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x37\x2e\x31\ \x20\x68\x2d\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x63\x38\x63\x39\x63\x61\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\x2c\x31\ \x33\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x68\x30\x2e\x39\x20\x76\ \x37\x2e\x31\x20\x68\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x20\x66\x69\x6c\x6c\x2d\ \x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\ \x2c\x35\x20\x4c\x20\x35\x2c\x31\x33\x20\x76\x2d\x38\x20\x68\x38\ \x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x38\x63\x39\x63\ \x61\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ \x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\ \x0d\x0a\ \x00\x00\x02\x22\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x35\x2e\x30\ \x38\x33\x33\x30\x32\x38\x20\x34\x2e\x35\x2c\x31\x2e\x37\x37\x32\ \x39\x38\x31\x38\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\x35\ \x2e\x30\x38\x34\x37\x32\x33\x35\x20\x63\x20\x30\x2e\x31\x35\x37\ \x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\ \x33\x34\x33\x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\x33\x2c\ \x2d\x33\x2e\x35\x39\x37\x33\x31\x30\x31\x39\x20\x30\x2c\x30\x20\ \x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\ \x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\x4c\ \x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x34\x2e\x35\x31\x33\ \x35\x38\x36\x36\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\ \x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\x31\x35\ \x37\x37\x31\x32\x34\x2c\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x20\ \x30\x2c\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x20\x30\x2e\x31\x35\ \x37\x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x20\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x36\x32\ \x38\x31\x33\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x66\x66\x66\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\ \x0a\ \x00\x00\x00\x55\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x32\x22\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x61\x66\x61\x66\ \x61\x66\x22\x20\x64\x3d\x22\x4d\x35\x2e\x35\x2c\x33\x48\x31\x32\ \x2e\x35\x4c\x39\x2c\x39\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x02\x15\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x32\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x20\x36\x30\ \x30\x2c\x31\x30\x35\x30\x20\x43\x20\x33\x35\x31\x2e\x34\x37\x32\ \x2c\x31\x30\x35\x30\x20\x31\x35\x30\x2c\x38\x34\x38\x2e\x35\x32\ \x38\x20\x31\x35\x30\x2c\x36\x30\x30\x20\x31\x35\x30\x2c\x33\x35\ \x31\x2e\x34\x37\x32\x20\x33\x35\x31\x2e\x34\x37\x32\x2c\x31\x35\ \x30\x20\x36\x30\x30\x2c\x31\x35\x30\x20\x63\x20\x32\x34\x38\x2e\ \x35\x32\x38\x2c\x30\x20\x34\x35\x30\x2c\x32\x30\x31\x2e\x34\x37\ \x32\x20\x34\x35\x30\x2c\x34\x35\x30\x20\x30\x2c\x32\x34\x38\x2e\ \x35\x32\x38\x20\x2d\x32\x30\x31\x2e\x34\x37\x32\x2c\x34\x35\x30\ \x20\x2d\x34\x35\x30\x2c\x34\x35\x30\x20\x7a\x20\x4d\x20\x38\x38\ \x38\x2e\x34\x36\x32\x2c\x38\x32\x37\x2e\x38\x35\x31\x20\x36\x36\ \x31\x2e\x39\x37\x34\x2c\x36\x30\x31\x2e\x31\x32\x32\x20\x6c\x20\ \x30\x2c\x2d\x32\x2e\x32\x34\x34\x20\x32\x32\x36\x2e\x34\x38\x38\ \x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\x30\x2c\x2d\x36\x30\x2e\ \x36\x31\x31\x20\x2d\x36\x30\x2e\x38\x34\x38\x2c\x30\x20\x51\x20\ \x37\x32\x37\x2e\x33\x33\x39\x2c\x34\x31\x31\x2e\x39\x38\x36\x20\ \x36\x32\x37\x2e\x30\x34\x33\x2c\x35\x31\x32\x2e\x34\x35\x31\x20\ \x36\x31\x33\x2e\x35\x32\x34\x2c\x35\x32\x35\x2e\x33\x35\x38\x20\ \x36\x30\x30\x2c\x35\x33\x38\x2e\x32\x36\x37\x20\x6c\x20\x2d\x32\ \x32\x36\x2e\x34\x38\x37\x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\ \x2d\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x36\x30\x2e\x36\ \x31\x31\x20\x4c\x20\x35\x33\x38\x2e\x30\x32\x36\x2c\x36\x30\x30\ \x20\x33\x31\x31\x2e\x35\x33\x38\x2c\x38\x32\x36\x2e\x37\x32\x39\ \x20\x6c\x20\x30\x2c\x36\x31\x2e\x37\x33\x33\x20\x36\x30\x2e\x38\ \x34\x38\x2c\x30\x20\x71\x20\x33\x34\x2e\x33\x36\x33\x2c\x2d\x33\ \x34\x2e\x37\x39\x32\x20\x36\x38\x2e\x37\x33\x35\x2c\x2d\x36\x39\ \x2e\x35\x39\x20\x4c\x20\x36\x30\x30\x2c\x36\x36\x31\x2e\x37\x33\ \x33\x20\x6c\x20\x32\x32\x36\x2e\x34\x38\x37\x2c\x32\x32\x36\x2e\ \x37\x32\x39\x20\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x2d\ \x36\x30\x2e\x36\x31\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x62\x33\x33\x65\x33\x65\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\x08\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x35\x38\x64\x33\x66\x66\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x2f\x3e\x0d\x0a\x3c\ \x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\x59\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x63\x38\x63\x39\x63\x61\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x36\x32\x36\x35\x36\x38\x22\ \x20\x78\x3d\x22\x33\x36\x22\x20\x79\x3d\x22\x33\x30\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x34\x34\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x00\x1f\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x36\x34\x22\x2f\x3e\x0d\x0a\ \x00\x00\x01\xb0\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x63\x38\x63\x39\x63\x61\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x2c\x31\x30\ \x61\x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x31\x32\x2c\x30\x61\ \x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x32\x2c\x30\x22\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x38\x63\x39\x63\x61\x22\x20\ \x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ \x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\x4f\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x35\x38\x64\x33\x66\x66\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x7a\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x35\x38\x64\x33\x66\x66\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x15\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x32\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x20\x36\x30\ \x30\x2c\x31\x30\x35\x30\x20\x43\x20\x33\x35\x31\x2e\x34\x37\x32\ \x2c\x31\x30\x35\x30\x20\x31\x35\x30\x2c\x38\x34\x38\x2e\x35\x32\ \x38\x20\x31\x35\x30\x2c\x36\x30\x30\x20\x31\x35\x30\x2c\x33\x35\ \x31\x2e\x34\x37\x32\x20\x33\x35\x31\x2e\x34\x37\x32\x2c\x31\x35\ \x30\x20\x36\x30\x30\x2c\x31\x35\x30\x20\x63\x20\x32\x34\x38\x2e\ \x35\x32\x38\x2c\x30\x20\x34\x35\x30\x2c\x32\x30\x31\x2e\x34\x37\ \x32\x20\x34\x35\x30\x2c\x34\x35\x30\x20\x30\x2c\x32\x34\x38\x2e\ \x35\x32\x38\x20\x2d\x32\x30\x31\x2e\x34\x37\x32\x2c\x34\x35\x30\ \x20\x2d\x34\x35\x30\x2c\x34\x35\x30\x20\x7a\x20\x4d\x20\x38\x38\ \x38\x2e\x34\x36\x32\x2c\x38\x32\x37\x2e\x38\x35\x31\x20\x36\x36\ \x31\x2e\x39\x37\x34\x2c\x36\x30\x31\x2e\x31\x32\x32\x20\x6c\x20\ \x30\x2c\x2d\x32\x2e\x32\x34\x34\x20\x32\x32\x36\x2e\x34\x38\x38\ \x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\x30\x2c\x2d\x36\x30\x2e\ \x36\x31\x31\x20\x2d\x36\x30\x2e\x38\x34\x38\x2c\x30\x20\x51\x20\ \x37\x32\x37\x2e\x33\x33\x39\x2c\x34\x31\x31\x2e\x39\x38\x36\x20\ \x36\x32\x37\x2e\x30\x34\x33\x2c\x35\x31\x32\x2e\x34\x35\x31\x20\ \x36\x31\x33\x2e\x35\x32\x34\x2c\x35\x32\x35\x2e\x33\x35\x38\x20\ \x36\x30\x30\x2c\x35\x33\x38\x2e\x32\x36\x37\x20\x6c\x20\x2d\x32\ \x32\x36\x2e\x34\x38\x37\x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\ \x2d\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x36\x30\x2e\x36\ \x31\x31\x20\x4c\x20\x35\x33\x38\x2e\x30\x32\x36\x2c\x36\x30\x30\ \x20\x33\x31\x31\x2e\x35\x33\x38\x2c\x38\x32\x36\x2e\x37\x32\x39\ \x20\x6c\x20\x30\x2c\x36\x31\x2e\x37\x33\x33\x20\x36\x30\x2e\x38\ \x34\x38\x2c\x30\x20\x71\x20\x33\x34\x2e\x33\x36\x33\x2c\x2d\x33\ \x34\x2e\x37\x39\x32\x20\x36\x38\x2e\x37\x33\x35\x2c\x2d\x36\x39\ \x2e\x35\x39\x20\x4c\x20\x36\x30\x30\x2c\x36\x36\x31\x2e\x37\x33\ \x33\x20\x6c\x20\x32\x32\x36\x2e\x34\x38\x37\x2c\x32\x32\x36\x2e\ \x37\x32\x39\x20\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x2d\ \x36\x30\x2e\x36\x31\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x64\x63\x37\x36\x37\x36\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x02\x2d\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x30\x2e\x39\ \x31\x37\x36\x39\x37\x31\x38\x20\x34\x2e\x35\x2c\x34\x2e\x32\x32\ \x38\x30\x31\x38\x32\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\ \x30\x2e\x39\x31\x36\x32\x37\x36\x34\x38\x20\x63\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\ \x37\x37\x30\x32\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x30\x2e\x31\x35\x37\ \x37\x30\x32\x30\x32\x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\ \x30\x2e\x34\x31\x33\x34\x33\x34\x39\x32\x20\x30\x2c\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x32\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\ \x31\x32\x38\x33\x2c\x33\x2e\x35\x39\x37\x33\x31\x30\x32\x20\x30\ \x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\ \x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\ \x31\x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\ \x4c\x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x31\x2e\x34\x38\ \x37\x34\x31\x33\x34\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\ \x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\x33\x34\x33\ \x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x31\x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x31\x20\x30\x2e\x35\ \x37\x31\x31\x37\x34\x39\x2c\x30\x2e\x30\x30\x31\x34\x32\x20\x7a\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x93\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x20\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x35\ \x30\x2c\x35\x30\x30\x20\x4c\x20\x35\x30\x30\x2c\x37\x35\x30\x20\ \x4c\x20\x37\x35\x30\x2c\x35\x30\x30\x20\x4c\x20\x35\x30\x30\x2c\ \x32\x35\x30\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ \x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x61\x32\x61\x32\ \x61\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ \x3d\x22\x35\x30\x22\x20\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\ \x0d\x0a\ \x00\x00\x02\x30\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x39\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x36\x20\x39\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x36\x20\x39\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x6d\x20\x35\x2e\x30\x38\x32\x33\x30\x32\x38\x2c\x31\x2e\x31\ \x38\x39\x34\x35\x39\x33\x20\x2d\x33\x2e\x33\x31\x30\x33\x32\x31\ \x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x33\x2e\x33\x31\x31\ \x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x63\ \x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\x35\x37\x37\ \x31\x32\x35\x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x20\x30\x2c\x30\x2e\x35\x37\x31\x31\x37\ \x34\x39\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\ \x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x34\x31\x33\x34\x33\x34\ \x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x2d\x33\x2e\x35\x39\ \x37\x33\x31\x30\x31\x37\x2c\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\ \x33\x20\x30\x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\ \x35\x37\x37\x30\x31\x39\x31\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x31\x2c\x2d\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\ \x37\x31\x31\x37\x34\x38\x20\x4c\x20\x34\x2e\x35\x31\x32\x35\x38\ \x36\x36\x2c\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x37\x20\x63\x20\ \x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x20\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\ \x2e\x31\x35\x37\x37\x31\x32\x34\x20\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x2c\x30\x20\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x2c\x30\ \x2e\x31\x35\x37\x37\x31\x32\x35\x20\x30\x2e\x31\x35\x36\x32\x38\ \x31\x33\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\x20\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\x34\x39\ \x33\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\ \x33\x42\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x5d\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\ \x63\x32\x22\x20\x78\x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\ \x3d\x22\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\xa1\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x35\x34\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x35\x34\x20\x31\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x35\x34\ \x20\x31\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\ \x65\x63\x74\x20\x69\x64\x3d\x22\x44\x61\x72\x6b\x31\x22\x20\x64\ \x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x44\x61\x72\x6b\x31\x22\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x32\x39\x32\x63\x33\x31\x22\x20\ \x78\x3d\x22\x31\x36\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\ \x74\x68\x3d\x22\x34\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x38\ \x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\ \x22\x4c\x69\x67\x68\x74\x31\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\ \x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x31\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\x20\x78\x3d\x22\x31\x36\ \x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ \x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x44\x61\x72\x6b\ \x32\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x44\x61\ \x72\x6b\x32\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x32\x39\x32\x63\ \x33\x31\x22\x20\x78\x3d\x22\x32\x35\x22\x20\x79\x3d\x22\x31\x22\ \x20\x77\x69\x64\x74\x68\x3d\x22\x34\x22\x20\x68\x65\x69\x67\x68\ \x74\x3d\x22\x38\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\ \x20\x69\x64\x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\x64\x61\x74\ \x61\x2d\x6e\x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\x20\x78\ \x3d\x22\x32\x35\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\ \x68\x3d\x22\x33\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x22\ \x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\ \x44\x61\x72\x6b\x33\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\ \x3d\x22\x44\x61\x72\x6b\x33\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\ \x32\x39\x32\x63\x33\x31\x22\x20\x78\x3d\x22\x33\x34\x22\x20\x79\ \x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x34\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x38\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x4c\x69\x67\x68\x74\x33\x22\ \x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\ \x74\x33\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\x66\x38\x37\x39\ \x35\x22\x20\x78\x3d\x22\x33\x34\x22\x20\x79\x3d\x22\x31\x22\x20\ \x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x68\x65\x69\x67\x68\x74\ \x3d\x22\x37\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x02\x30\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x39\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x36\x20\x39\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x36\x20\x39\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x6d\x20\x35\x2e\x30\x38\x32\x33\x30\x32\x38\x2c\x31\x2e\x31\ \x38\x39\x34\x35\x39\x33\x20\x2d\x33\x2e\x33\x31\x30\x33\x32\x31\ \x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x33\x2e\x33\x31\x31\ \x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x63\ \x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\x35\x37\x37\ \x31\x32\x35\x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x20\x30\x2c\x30\x2e\x35\x37\x31\x31\x37\ \x34\x39\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\ \x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x34\x31\x33\x34\x33\x34\ \x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x2d\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x2d\x33\x2e\x35\x39\ \x37\x33\x31\x30\x31\x37\x2c\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\ \x33\x20\x30\x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\ \x35\x37\x37\x30\x31\x39\x31\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x31\x2c\x2d\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\ \x37\x31\x31\x37\x34\x38\x20\x4c\x20\x34\x2e\x35\x31\x32\x35\x38\ \x36\x36\x2c\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x37\x20\x63\x20\ \x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x20\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\ \x2e\x31\x35\x37\x37\x31\x32\x34\x20\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x2c\x30\x20\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x2c\x30\ \x2e\x31\x35\x37\x37\x31\x32\x35\x20\x30\x2e\x31\x35\x36\x32\x38\ \x31\x33\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\x20\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\x34\x39\ \x33\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x30\x62\x30\ \x62\x30\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\xb0\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x35\x31\x63\x32\x66\x63\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x2c\x31\x30\ \x61\x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x31\x32\x2c\x30\x61\ \x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x32\x2c\x30\x22\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x20\ \x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ \x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x2d\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x30\x2e\x39\ \x31\x37\x36\x39\x37\x31\x38\x20\x34\x2e\x35\x2c\x34\x2e\x32\x32\ \x38\x30\x31\x38\x32\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\ \x30\x2e\x39\x31\x36\x32\x37\x36\x34\x38\x20\x63\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\ \x37\x37\x30\x32\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x30\x2e\x31\x35\x37\ \x37\x30\x32\x30\x32\x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\ \x30\x2e\x34\x31\x33\x34\x33\x34\x39\x32\x20\x30\x2c\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x32\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\ \x31\x32\x38\x33\x2c\x33\x2e\x35\x39\x37\x33\x31\x30\x32\x20\x30\ \x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\ \x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\ \x31\x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\ \x4c\x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x31\x2e\x34\x38\ \x37\x34\x31\x33\x34\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\ \x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\x33\x34\x33\ \x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x31\x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x31\x20\x30\x2e\x35\ \x37\x31\x31\x37\x34\x39\x2c\x30\x2e\x30\x30\x31\x34\x32\x20\x7a\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x30\x62\x30\x62\x30\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x25\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x35\x2e\x30\ \x38\x33\x33\x30\x32\x38\x20\x34\x2e\x35\x2c\x31\x2e\x37\x37\x32\ \x39\x38\x31\x38\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\x35\ \x2e\x30\x38\x34\x37\x32\x33\x35\x20\x63\x20\x30\x2e\x31\x35\x37\ \x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\ \x33\x34\x33\x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\x33\x2c\ \x2d\x33\x2e\x35\x39\x37\x33\x31\x30\x31\x39\x20\x30\x2c\x30\x20\ \x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\ \x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\x4c\ \x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x34\x2e\x35\x31\x33\ \x35\x38\x36\x36\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\ \x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\x31\x35\ \x37\x37\x31\x32\x34\x2c\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x20\ \x30\x2c\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x20\x30\x2e\x31\x35\ \x37\x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x20\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x36\x32\ \x38\x31\x33\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x64\x61\x65\x65\x39\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\x08\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x35\x31\x63\x32\x66\x63\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x2f\x3e\x0d\x0a\x3c\ \x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\ \x20\x78\x3d\x22\x36\x35\x22\x20\x79\x3d\x22\x32\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x32\x38\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x00\x61\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x39\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x30\x30\x30\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x20\x64\x3d\x22\x4d\x31\x2c\x38\x56\x31\x4c\x35\x2c\x34\ \x2e\x35\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x01\x08\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x33\x31\x33\x36\x33\x42\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x2f\x3e\x0d\x0a\x3c\ \x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x4d\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x36\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x30\x30\x30\x22\x20\x64\ \x3d\x22\x4d\x31\x2c\x31\x48\x38\x4c\x34\x2e\x35\x2c\x35\x5a\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\x4f\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x35\x31\x63\x32\x66\x63\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x7a\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x32\x38\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\ \x20\x78\x3d\x22\x33\x36\x22\x20\x79\x3d\x22\x32\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x35\x37\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x02\x15\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x32\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x20\x36\x30\ \x30\x2c\x31\x30\x35\x30\x20\x43\x20\x33\x35\x31\x2e\x34\x37\x32\ \x2c\x31\x30\x35\x30\x20\x31\x35\x30\x2c\x38\x34\x38\x2e\x35\x32\ \x38\x20\x31\x35\x30\x2c\x36\x30\x30\x20\x31\x35\x30\x2c\x33\x35\ \x31\x2e\x34\x37\x32\x20\x33\x35\x31\x2e\x34\x37\x32\x2c\x31\x35\ \x30\x20\x36\x30\x30\x2c\x31\x35\x30\x20\x63\x20\x32\x34\x38\x2e\ \x35\x32\x38\x2c\x30\x20\x34\x35\x30\x2c\x32\x30\x31\x2e\x34\x37\ \x32\x20\x34\x35\x30\x2c\x34\x35\x30\x20\x30\x2c\x32\x34\x38\x2e\ \x35\x32\x38\x20\x2d\x32\x30\x31\x2e\x34\x37\x32\x2c\x34\x35\x30\ \x20\x2d\x34\x35\x30\x2c\x34\x35\x30\x20\x7a\x20\x4d\x20\x38\x38\ \x38\x2e\x34\x36\x32\x2c\x38\x32\x37\x2e\x38\x35\x31\x20\x36\x36\ \x31\x2e\x39\x37\x34\x2c\x36\x30\x31\x2e\x31\x32\x32\x20\x6c\x20\ \x30\x2c\x2d\x32\x2e\x32\x34\x34\x20\x32\x32\x36\x2e\x34\x38\x38\ \x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\x30\x2c\x2d\x36\x30\x2e\ \x36\x31\x31\x20\x2d\x36\x30\x2e\x38\x34\x38\x2c\x30\x20\x51\x20\ \x37\x32\x37\x2e\x33\x33\x39\x2c\x34\x31\x31\x2e\x39\x38\x36\x20\ \x36\x32\x37\x2e\x30\x34\x33\x2c\x35\x31\x32\x2e\x34\x35\x31\x20\ \x36\x31\x33\x2e\x35\x32\x34\x2c\x35\x32\x35\x2e\x33\x35\x38\x20\ \x36\x30\x30\x2c\x35\x33\x38\x2e\x32\x36\x37\x20\x6c\x20\x2d\x32\ \x32\x36\x2e\x34\x38\x37\x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\ \x2d\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x36\x30\x2e\x36\ \x31\x31\x20\x4c\x20\x35\x33\x38\x2e\x30\x32\x36\x2c\x36\x30\x30\ \x20\x33\x31\x31\x2e\x35\x33\x38\x2c\x38\x32\x36\x2e\x37\x32\x39\ \x20\x6c\x20\x30\x2c\x36\x31\x2e\x37\x33\x33\x20\x36\x30\x2e\x38\ \x34\x38\x2c\x30\x20\x71\x20\x33\x34\x2e\x33\x36\x33\x2c\x2d\x33\ \x34\x2e\x37\x39\x32\x20\x36\x38\x2e\x37\x33\x35\x2c\x2d\x36\x39\ \x2e\x35\x39\x20\x4c\x20\x36\x30\x30\x2c\x36\x36\x31\x2e\x37\x33\ \x33\x20\x6c\x20\x32\x32\x36\x2e\x34\x38\x37\x2c\x32\x32\x36\x2e\ \x37\x32\x39\x20\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x2d\ \x36\x30\x2e\x36\x31\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x36\x32\x36\x35\x36\x38\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\x4f\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x33\x31\x33\x36\x33\x42\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x7a\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x45\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x33\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x70\x78\x22\x20\x76\x69\ \x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x36\x33\x20\x37\x22\ \x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ \x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x36\x33\x20\x37\ \x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\ \x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\ \x20\x69\x64\x3d\x22\x44\x61\x72\x6b\x31\x22\x20\x64\x61\x74\x61\ \x2d\x6e\x61\x6d\x65\x3d\x22\x44\x61\x72\x6b\x31\x22\x20\x66\x69\ \x6c\x6c\x3d\x22\x23\x32\x39\x32\x63\x33\x31\x22\x20\x78\x3d\x22\ \x32\x35\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\ \x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x44\x61\ \x72\x6b\x32\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\ \x44\x61\x72\x6b\x32\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x32\x39\ \x32\x63\x33\x31\x22\x20\x78\x3d\x22\x33\x38\x22\x20\x79\x3d\x22\ \x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\ \x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\ \x63\x74\x20\x69\x64\x3d\x22\x4c\x69\x67\x68\x74\x31\x22\x20\x64\ \x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x31\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\ \x20\x78\x3d\x22\x32\x33\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\ \x64\x74\x68\x3d\x22\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ \x35\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\ \x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\x64\x61\x74\x61\x2d\x6e\ \x61\x6d\x65\x3d\x22\x4c\x69\x67\x68\x74\x32\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x37\x66\x38\x37\x39\x35\x22\x20\x78\x3d\x22\x33\ \x30\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\ \x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\x0d\ \x0a\x20\x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x4c\x69\x67\ \x68\x74\x33\x22\x20\x64\x61\x74\x61\x2d\x6e\x61\x6d\x65\x3d\x22\ \x4c\x69\x67\x68\x74\x33\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\ \x66\x38\x37\x39\x35\x22\x20\x78\x3d\x22\x33\x36\x22\x20\x79\x3d\ \x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x35\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x00\xbf\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x37\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x33\x70\x78\x22\x20\x76\x69\ \x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x37\x20\x36\x33\x22\ \x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ \x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x37\x20\x36\x33\ \x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\ \x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\x74\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\x36\x37\x39\x37\x63\x22\x20\ \x78\x3d\x22\x32\x22\x20\x79\x3d\x22\x31\x33\x22\x20\x77\x69\x64\ \x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\ \x37\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xf7\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\ \x62\x30\x62\x30\x62\x30\x22\x20\x64\x3d\x22\x4d\x32\x32\x2e\x31\ \x2c\x31\x30\x32\x32\x2e\x31\x4c\x2d\x32\x32\x2e\x31\x2c\x39\x37\ \x37\x2e\x39\x6c\x31\x30\x30\x30\x2d\x31\x30\x30\x30\x4c\x31\x30\ \x32\x32\x2e\x31\x2c\x32\x32\x2e\x31\x5a\x6d\x32\x32\x30\x2c\x33\ \x30\x4c\x31\x39\x37\x2e\x39\x2c\x31\x30\x30\x37\x2e\x39\x6c\x31\ \x30\x30\x30\x2d\x31\x30\x30\x30\x4c\x31\x32\x34\x32\x2e\x31\x2c\ \x35\x32\x2e\x31\x5a\x6d\x32\x35\x30\x2c\x30\x4c\x34\x34\x37\x2e\ \x39\x2c\x31\x30\x30\x37\x2e\x39\x6c\x31\x30\x30\x30\x2d\x31\x30\ \x30\x30\x4c\x31\x34\x39\x32\x2e\x31\x2c\x35\x32\x2e\x31\x5a\x6d\ \x32\x35\x30\x2c\x30\x4c\x36\x39\x37\x2e\x39\x2c\x31\x30\x30\x37\ \x2e\x39\x6c\x31\x30\x33\x30\x2d\x31\x30\x33\x30\x4c\x31\x37\x37\ \x32\x2e\x31\x2c\x32\x32\x2e\x31\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\ \x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\x59\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x35\x31\x63\x32\x66\x63\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\xf3\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x35\x31\x63\x32\x66\x63\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x37\x2e\x31\ \x20\x68\x2d\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x35\x31\x63\x32\x66\x63\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\x2c\x31\ \x33\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x68\x30\x2e\x39\x20\x76\ \x37\x2e\x31\x20\x68\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x35\x31\x63\x32\x66\x63\x22\x20\x66\x69\x6c\x6c\x2d\ \x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\ \x2c\x35\x20\x4c\x20\x35\x2c\x31\x33\x20\x76\x2d\x38\x20\x68\x38\ \x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x35\x31\x63\x32\x66\ \x63\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ \x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\ \x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\ \x20\x78\x3d\x22\x36\x35\x22\x20\x79\x3d\x22\x32\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x32\x38\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x02\x25\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x35\x2e\x30\ \x38\x33\x33\x30\x32\x38\x20\x34\x2e\x35\x2c\x31\x2e\x37\x37\x32\ \x39\x38\x31\x38\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\x35\ \x2e\x30\x38\x34\x37\x32\x33\x35\x20\x63\x20\x30\x2e\x31\x35\x37\ \x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\ \x33\x34\x33\x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\x33\x2c\ \x2d\x33\x2e\x35\x39\x37\x33\x31\x30\x31\x39\x20\x30\x2c\x30\x20\ \x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\ \x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\x4c\ \x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x34\x2e\x35\x31\x33\ \x35\x38\x36\x36\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\ \x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\x31\x35\ \x37\x37\x31\x32\x34\x2c\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x20\ \x30\x2c\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x20\x30\x2e\x31\x35\ \x37\x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x20\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x36\x32\ \x38\x31\x33\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x62\x30\x62\x30\x62\x30\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\xf3\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x33\x64\x61\x65\x65\x39\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x37\x2e\x31\ \x20\x68\x2d\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x64\x61\x65\x65\x39\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\x2c\x31\ \x33\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x68\x30\x2e\x39\x20\x76\ \x37\x2e\x31\x20\x68\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\x20\x66\x69\x6c\x6c\x2d\ \x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\ \x2c\x35\x20\x4c\x20\x35\x2c\x31\x33\x20\x76\x2d\x38\x20\x68\x38\ \x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x64\x61\x65\x65\ \x39\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ \x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\ \x0d\x0a\ \x00\x00\x02\x2d\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x39\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x36\x20\x39\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x36\x20\x39\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x6d\x20\x30\x2e\x39\x31\x36\x36\x39\x37\x32\x2c\x31\x2e\x31\ \x38\x39\x34\x35\x39\x33\x20\x33\x2e\x33\x31\x30\x33\x32\x31\x2c\ \x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x2d\x33\x2e\x33\x31\x31\ \x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x63\ \x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\x31\x35\x37\ \x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\ \x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x30\x2e\x35\x37\x31\ \x31\x37\x34\x39\x20\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\x30\x2e\ \x31\x35\x37\x37\x31\x32\x33\x20\x30\x2e\x34\x31\x33\x34\x33\x34\ \x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x30\x2e\x35\x37\ \x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x33\x2e\x35\x39\x37\x33\ \x31\x30\x32\x2c\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\x33\x20\x30\ \x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x30\x2e\x31\x35\x37\x37\x30\ \x31\x39\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x20\x30\x2e\ \x31\x35\x37\x37\x30\x31\x39\x2c\x2d\x30\x2e\x34\x31\x33\x34\x36\ \x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x20\ \x4c\x20\x31\x2e\x34\x38\x36\x34\x31\x33\x34\x2c\x30\x2e\x36\x31\ \x38\x32\x38\x34\x33\x37\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\ \x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x20\x2d\x30\ \x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x20\x2d\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x2c\x30\ \x20\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x2c\x30\x2e\x31\x35\ \x37\x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\ \x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\x20\x30\x2e\x30\x30\ \x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x33\x20\x7a\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\x51\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x34\x62\x34\x62\ \x34\x62\x22\x20\x64\x3d\x22\x4d\x35\x2c\x31\x32\x56\x36\x4c\x39\ \x2c\x39\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x01\x03\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x36\x20\x36\ \x34\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x36\ \x20\x36\x34\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x72\ \x65\x63\x74\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\x36\x37\x39\x37\ \x63\x22\x20\x78\x3d\x22\x32\x22\x20\x79\x3d\x22\x31\x22\x20\x77\ \x69\x64\x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\ \x22\x36\x32\x2e\x35\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x72\x65\x63\ \x74\x20\x66\x69\x6c\x6c\x3d\x22\x23\x37\x36\x37\x39\x37\x63\x22\ \x20\x78\x3d\x22\x39\x22\x20\x79\x3d\x22\x31\x22\x20\x77\x69\x64\ \x74\x68\x3d\x22\x31\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\ \x32\x2e\x35\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x0d\x0a\ \x00\x00\x01\xd2\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x22\x20\x68\x65\ \x69\x67\x68\x74\x3d\x22\x39\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\ \x74\x68\x20\x64\x3d\x22\x6d\x20\x30\x2e\x39\x31\x36\x36\x39\x37\ \x32\x2c\x31\x2e\x31\x38\x39\x34\x35\x39\x33\x20\x33\x2e\x33\x31\ \x30\x33\x32\x31\x2c\x33\x2e\x33\x31\x30\x35\x34\x30\x38\x20\x2d\ \x33\x2e\x33\x31\x31\x37\x34\x31\x37\x2c\x33\x2e\x33\x31\x30\x35\ \x34\x30\x38\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x2c\ \x30\x2e\x31\x35\x37\x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\x37\ \x37\x30\x32\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\ \x30\x2e\x35\x37\x31\x31\x37\x34\x39\x20\x30\x2e\x31\x35\x37\x37\ \x30\x32\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\x20\x30\x2e\x34\ \x31\x33\x34\x33\x34\x39\x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x33\ \x20\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x2c\x30\x20\x6c\x20\x33\ \x2e\x35\x39\x37\x33\x31\x30\x32\x2c\x2d\x33\x2e\x35\x39\x36\x31\ \x32\x38\x33\x20\x30\x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x30\x2e\ \x31\x35\x37\x37\x30\x31\x39\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x2c\x2d\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\ \x31\x37\x34\x38\x20\x4c\x20\x31\x2e\x34\x38\x36\x34\x31\x33\x34\ \x2c\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x37\x20\x63\x20\x2d\x30\ \x2e\x31\x35\x37\x37\x30\x32\x2c\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x20\x2d\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x2c\x2d\x30\ \x2e\x31\x35\x37\x37\x31\x32\x34\x20\x2d\x30\x2e\x35\x37\x31\x31\ \x33\x36\x39\x2c\x30\x20\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\ \x2c\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x20\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x2c\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x33\ \x20\x30\x2e\x30\x30\x31\x34\x32\x2c\x30\x2e\x35\x37\x31\x31\x37\ \x34\x39\x33\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x30\ \x62\x30\x62\x30\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\ \x0a\ \x00\x00\x01\xb0\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x64\x61\x65\x65\x39\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x2c\x31\x30\ \x61\x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x31\x32\x2c\x30\x61\ \x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x32\x2c\x30\x22\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\x20\ \x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ \x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x02\x2d\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x30\x2e\x39\ \x31\x37\x36\x39\x37\x31\x38\x20\x34\x2e\x35\x2c\x34\x2e\x32\x32\ \x38\x30\x31\x38\x32\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\ \x30\x2e\x39\x31\x36\x32\x37\x36\x34\x38\x20\x63\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\ \x37\x37\x30\x32\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x30\x2e\x31\x35\x37\ \x37\x30\x32\x30\x32\x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\ \x30\x2e\x34\x31\x33\x34\x33\x34\x39\x32\x20\x30\x2c\x30\x2e\x35\ \x37\x31\x31\x33\x36\x39\x32\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\ \x31\x32\x38\x33\x2c\x33\x2e\x35\x39\x37\x33\x31\x30\x32\x20\x30\ \x2c\x30\x20\x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\ \x31\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\ \x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\ \x31\x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\ \x4c\x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x31\x2e\x34\x38\ \x37\x34\x31\x33\x34\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\ \x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\ \x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\x33\x34\x33\ \x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x35\x2c\x2d\x30\x2e\x31\x35\ \x36\x32\x38\x31\x33\x31\x20\x30\x2e\x34\x31\x33\x34\x36\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x31\x20\x30\x2e\x35\ \x37\x31\x31\x37\x34\x39\x2c\x30\x2e\x30\x30\x31\x34\x32\x20\x7a\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\ \x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\x5c\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x30\x30\x22\x20\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x69\x64\x3d\x22\x42\x6f\ \x74\x74\x6f\x6d\x43\x69\x72\x63\x6c\x65\x22\x20\x64\x3d\x22\x4d\ \x31\x30\x30\x2c\x35\x30\x30\x20\x61\x32\x35\x30\x2c\x32\x35\x30\ \x2c\x20\x30\x2c\x20\x31\x2c\x30\x2c\x20\x38\x30\x30\x2c\x30\x20\ \x4d\x37\x37\x35\x2c\x35\x30\x30\x20\x4c\x35\x30\x30\x2c\x37\x37\ \x35\x20\x4c\x32\x32\x35\x2c\x35\x30\x30\x20\x7a\x22\x20\x66\x69\ \x6c\x6c\x3d\x22\x23\x61\x32\x61\x32\x61\x32\x22\x20\x2f\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x69\x64\x3d\x22\x54\x6f\x70\ \x43\x69\x72\x63\x6c\x65\x22\x20\x64\x3d\x22\x4d\x39\x30\x30\x2c\ \x35\x30\x30\x20\x61\x32\x35\x30\x2c\x32\x35\x30\x2c\x20\x30\x2c\ \x20\x31\x2c\x30\x2c\x20\x2d\x38\x30\x30\x2c\x30\x20\x4d\x32\x32\ \x35\x2c\x35\x30\x30\x20\x4c\x35\x30\x30\x2c\x32\x32\x35\x20\x4c\ \x37\x37\x35\x2c\x35\x30\x30\x20\x20\x7a\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x61\x32\x61\x32\x61\x32\x22\x20\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x69\x64\x3d\x22\x49\x6e\x73\x69\x64\ \x65\x22\x20\x64\x3d\x22\x4d\x32\x37\x35\x2c\x35\x30\x30\x20\x4c\ \x20\x35\x30\x30\x2c\x37\x32\x35\x20\x4c\x20\x37\x32\x35\x2c\x35\ \x30\x30\x20\x4c\x20\x35\x30\x30\x2c\x32\x37\x35\x20\x7a\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x61\x32\x61\x32\x61\x32\x22\x20\x2f\ \x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\xf3\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x33\x31\x33\x36\x33\x42\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x37\x2e\x31\ \x20\x68\x2d\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x31\x33\x36\x33\x42\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\x2c\x31\ \x33\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x68\x30\x2e\x39\x20\x76\ \x37\x2e\x31\x20\x68\x37\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\ \x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x20\x66\x69\x6c\x6c\x2d\ \x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\ \x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x33\ \x2c\x35\x20\x4c\x20\x35\x2c\x31\x33\x20\x76\x2d\x38\x20\x68\x38\ \x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\x33\ \x42\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ \x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\ \x0d\x0a\ \x00\x00\x02\x25\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x70\x78\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x36\x70\x78\x22\x20\x76\x69\x65\ \x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x39\x20\x36\x22\x20\x65\ \x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ \x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x39\x20\x36\x22\x20\x78\ \x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ \x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x20\x31\x2e\x31\x38\x39\x34\x35\x39\x32\x2c\x35\x2e\x30\ \x38\x33\x33\x30\x32\x38\x20\x34\x2e\x35\x2c\x31\x2e\x37\x37\x32\ \x39\x38\x31\x38\x20\x37\x2e\x38\x31\x30\x35\x34\x30\x38\x2c\x35\ \x2e\x30\x38\x34\x37\x32\x33\x35\x20\x63\x20\x30\x2e\x31\x35\x37\ \x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x30\x2e\ \x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x30\x20\x30\x2e\x31\ \x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x32\ \x20\x30\x2e\x31\x35\x37\x37\x31\x32\x34\x2c\x2d\x30\x2e\x34\x31\ \x33\x34\x33\x34\x39\x20\x30\x2c\x2d\x30\x2e\x35\x37\x31\x31\x33\ \x36\x39\x20\x6c\x20\x2d\x33\x2e\x35\x39\x36\x31\x32\x38\x33\x2c\ \x2d\x33\x2e\x35\x39\x37\x33\x31\x30\x31\x39\x20\x30\x2c\x30\x20\ \x30\x2c\x30\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\x34\ \x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\x39\x20\x2d\x30\x2e\x34\ \x31\x33\x34\x36\x32\x34\x2c\x2d\x30\x2e\x31\x35\x37\x37\x30\x31\ \x39\x20\x2d\x30\x2e\x35\x37\x31\x31\x37\x34\x38\x2c\x30\x20\x4c\ \x20\x30\x2e\x36\x31\x38\x32\x38\x34\x33\x2c\x34\x2e\x35\x31\x33\ \x35\x38\x36\x36\x20\x63\x20\x2d\x30\x2e\x31\x35\x37\x37\x31\x32\ \x34\x2c\x30\x2e\x31\x35\x37\x37\x30\x32\x20\x2d\x30\x2e\x31\x35\ \x37\x37\x31\x32\x34\x2c\x30\x2e\x34\x31\x33\x34\x33\x34\x39\x20\ \x30\x2c\x30\x2e\x35\x37\x31\x31\x33\x36\x39\x20\x30\x2e\x31\x35\ \x37\x37\x31\x32\x35\x2c\x30\x2e\x31\x35\x36\x32\x38\x31\x33\x20\ \x30\x2e\x34\x31\x33\x34\x36\x32\x34\x2c\x30\x2e\x31\x35\x36\x32\ \x38\x31\x33\x20\x30\x2e\x35\x37\x31\x31\x37\x34\x39\x2c\x2d\x30\ \x2e\x30\x30\x31\x34\x32\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x31\x33\x36\x33\x42\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x00\x55\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x32\x22\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x3d\x22\x23\x34\x62\x34\x62\ \x34\x62\x22\x20\x64\x3d\x22\x4d\x35\x2e\x35\x2c\x33\x48\x31\x32\ \x2e\x35\x4c\x39\x2c\x39\x5a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x02\x15\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x30\x30\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x32\x30\x30\x22\x3e\x0d\ \x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x20\x36\x30\ \x30\x2c\x31\x30\x35\x30\x20\x43\x20\x33\x35\x31\x2e\x34\x37\x32\ \x2c\x31\x30\x35\x30\x20\x31\x35\x30\x2c\x38\x34\x38\x2e\x35\x32\ \x38\x20\x31\x35\x30\x2c\x36\x30\x30\x20\x31\x35\x30\x2c\x33\x35\ \x31\x2e\x34\x37\x32\x20\x33\x35\x31\x2e\x34\x37\x32\x2c\x31\x35\ \x30\x20\x36\x30\x30\x2c\x31\x35\x30\x20\x63\x20\x32\x34\x38\x2e\ \x35\x32\x38\x2c\x30\x20\x34\x35\x30\x2c\x32\x30\x31\x2e\x34\x37\ \x32\x20\x34\x35\x30\x2c\x34\x35\x30\x20\x30\x2c\x32\x34\x38\x2e\ \x35\x32\x38\x20\x2d\x32\x30\x31\x2e\x34\x37\x32\x2c\x34\x35\x30\ \x20\x2d\x34\x35\x30\x2c\x34\x35\x30\x20\x7a\x20\x4d\x20\x38\x38\ \x38\x2e\x34\x36\x32\x2c\x38\x32\x37\x2e\x38\x35\x31\x20\x36\x36\ \x31\x2e\x39\x37\x34\x2c\x36\x30\x31\x2e\x31\x32\x32\x20\x6c\x20\ \x30\x2c\x2d\x32\x2e\x32\x34\x34\x20\x32\x32\x36\x2e\x34\x38\x38\ \x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\x30\x2c\x2d\x36\x30\x2e\ \x36\x31\x31\x20\x2d\x36\x30\x2e\x38\x34\x38\x2c\x30\x20\x51\x20\ \x37\x32\x37\x2e\x33\x33\x39\x2c\x34\x31\x31\x2e\x39\x38\x36\x20\ \x36\x32\x37\x2e\x30\x34\x33\x2c\x35\x31\x32\x2e\x34\x35\x31\x20\ \x36\x31\x33\x2e\x35\x32\x34\x2c\x35\x32\x35\x2e\x33\x35\x38\x20\ \x36\x30\x30\x2c\x35\x33\x38\x2e\x32\x36\x37\x20\x6c\x20\x2d\x32\ \x32\x36\x2e\x34\x38\x37\x2c\x2d\x32\x32\x36\x2e\x37\x32\x39\x20\ \x2d\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x36\x30\x2e\x36\ \x31\x31\x20\x4c\x20\x35\x33\x38\x2e\x30\x32\x36\x2c\x36\x30\x30\ \x20\x33\x31\x31\x2e\x35\x33\x38\x2c\x38\x32\x36\x2e\x37\x32\x39\ \x20\x6c\x20\x30\x2c\x36\x31\x2e\x37\x33\x33\x20\x36\x30\x2e\x38\ \x34\x38\x2c\x30\x20\x71\x20\x33\x34\x2e\x33\x36\x33\x2c\x2d\x33\ \x34\x2e\x37\x39\x32\x20\x36\x38\x2e\x37\x33\x35\x2c\x2d\x36\x39\ \x2e\x35\x39\x20\x4c\x20\x36\x30\x30\x2c\x36\x36\x31\x2e\x37\x33\ \x33\x20\x6c\x20\x32\x32\x36\x2e\x34\x38\x37\x2c\x32\x32\x36\x2e\ \x37\x32\x39\x20\x36\x31\x2e\x39\x37\x35\x2c\x30\x20\x30\x2c\x2d\ \x36\x30\x2e\x36\x31\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x62\x33\x33\x65\x33\x65\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\ \x67\x3e\x0d\x0a\ \x00\x00\x01\x59\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x31\x33\x36\x33\x42\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x00\xb1\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x31\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x3e\x0d\x0a\x20\x20\x3c\ \x72\x65\x63\x74\x20\x69\x64\x3d\x22\x56\x4c\x69\x6e\x65\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\x20\x78\ \x3d\x22\x33\x36\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x20\ \x68\x65\x69\x67\x68\x74\x3d\x22\x35\x38\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x72\x65\x63\x74\x20\x69\x64\x3d\x22\x48\x4c\x69\x6e\x65\ \x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x63\x62\x66\x63\x32\x22\ \x20\x78\x3d\x22\x33\x36\x22\x20\x79\x3d\x22\x33\x30\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x31\x22\x20\x77\x69\x64\x74\x68\x3d\ \x22\x34\x34\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \ \x00\x00\x00\x1f\ \x3c\ \x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x22\x20\x68\ \x65\x69\x67\x68\x74\x3d\x22\x36\x34\x22\x2f\x3e\x0d\x0a\ \x00\x00\x01\xb0\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x30\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x32\x30\x20\x32\ \x30\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x32\x30\ \x20\x32\x30\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\ \x20\x30\x20\x31\x2c\x30\x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\ \x39\x20\x61\x38\x2e\x31\x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x31\ \x20\x2d\x31\x36\x2e\x32\x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\ \x22\x4d\x31\x2c\x31\x30\x61\x39\x2c\x39\x20\x30\x20\x31\x2c\x31\ \x20\x31\x38\x2c\x30\x20\x68\x2d\x30\x2e\x39\x20\x61\x38\x2e\x31\ \x2c\x38\x2e\x31\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x36\x2e\x32\ \x2c\x30\x20\x68\x2d\x30\x2e\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ \x23\x33\x31\x33\x36\x33\x42\x22\x20\x66\x69\x6c\x6c\x2d\x72\x75\ \x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x2f\x3e\x0d\x0a\ \x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x2c\x31\x30\ \x61\x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x31\x32\x2c\x30\x61\ \x36\x2c\x36\x20\x30\x20\x31\x2c\x30\x20\x2d\x31\x32\x2c\x30\x22\ \x20\x66\x69\x6c\x6c\x3d\x22\x23\x33\x31\x33\x36\x33\x42\x22\x20\ \x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ \x64\x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ \x00\x00\x01\x4f\ \x3c\ \x73\x76\x67\x20\x78\x3d\x22\x30\x70\x78\x22\x20\x79\x3d\x22\x30\ \x70\x78\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x70\x78\x22\ \x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x38\x70\x78\x22\x20\x76\ \x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x31\x38\x20\x31\ \x38\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ \x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\x30\x20\x31\x38\ \x20\x31\x38\x22\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ \x70\x72\x65\x73\x65\x72\x76\x65\x22\x3e\x0d\x0a\x20\x20\x3c\x70\ \x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x2c\x32\x20\x68\x31\x34\x20\ \x76\x31\x34\x20\x68\x2d\x30\x2e\x39\x20\x76\x2d\x31\x33\x2e\x31\ \x20\x68\x2d\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\x6c\x3d\ \x22\x23\x33\x64\x61\x65\x65\x39\x22\x2f\x3e\x0d\x0a\x20\x20\x3c\ \x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x36\x2c\x31\x36\x20\x68\ \x2d\x31\x34\x20\x76\x2d\x31\x34\x20\x68\x30\x2e\x39\x20\x76\x31\ \x33\x2e\x31\x20\x68\x31\x33\x2e\x31\x20\x7a\x22\x20\x66\x69\x6c\ \x6c\x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\x2f\x3e\x0d\x0a\x20\ \x20\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x2c\x35\x20\x68\ \x38\x20\x76\x38\x20\x68\x2d\x38\x20\x76\x2d\x38\x20\x7a\x22\x20\ \x66\x69\x6c\x6c\x3d\x22\x23\x33\x64\x61\x65\x65\x39\x22\x20\x66\ \x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ \x64\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\x0d\x0a\ " qt_resource_name = b"\ \x00\x09\ \x0d\xf7\xbd\x43\ \x00\x6c\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x2e\x00\x71\x00\x73\x00\x73\ \x00\x05\ \x00\x72\xfd\xf4\ \x00\x6c\ \x00\x69\x00\x67\x00\x68\x00\x74\ \x00\x04\ \x00\x06\xa8\x8b\ \x00\x64\ \x00\x61\x00\x72\x00\x6b\ \x00\x08\ \x08\x8e\x55\xe3\ \x00\x64\ \x00\x61\x00\x72\x00\x6b\x00\x2e\x00\x71\x00\x73\x00\x73\ \x00\x0f\ \x01\xf4\x8c\xc7\ \x00\x63\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2d\x00\x68\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0e\ \x04\xa2\xf1\x27\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0a\ \x05\x95\xd3\xa7\ \x00\x75\ \x00\x6e\x00\x64\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0e\ \x0e\xde\xf7\x47\ \x00\x6c\ \x00\x65\x00\x66\x00\x74\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x14\ \x0b\xc5\xda\x47\ \x00\x73\ \x00\x74\x00\x79\x00\x6c\x00\x65\x00\x73\x00\x68\x00\x65\x00\x65\x00\x74\x00\x2d\x00\x76\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\ \x00\x73\x00\x76\x00\x67\ \x00\x10\ \x01\x0f\x47\x27\ \x00\x76\ \x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x17\ \x0c\x65\xc3\x87\ \x00\x6c\ \x00\x65\x00\x66\x00\x74\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\ \x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x17\ \x0c\xab\x5c\x87\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\ \x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x12\ \x01\x08\x46\x47\ \x00\x75\ \x00\x70\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x68\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\ \x00\x67\ \x00\x13\ \x08\xc8\x9b\x67\ \x00\x72\ \x00\x61\x00\x64\x00\x69\x00\x6f\x00\x5f\x00\x75\x00\x6e\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2e\x00\x73\ \x00\x76\x00\x67\ \x00\x1e\ \x03\xc6\x81\x67\ \x00\x73\ \x00\x74\x00\x79\x00\x6c\x00\x65\x00\x73\x00\x68\x00\x65\x00\x65\x00\x74\x00\x2d\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\ \x00\x2d\x00\x65\x00\x6e\x00\x64\x00\x2d\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x14\ \x06\x5e\x21\x87\ \x00\x62\ \x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x2d\x00\x6f\x00\x6e\x00\x2e\ \x00\x73\x00\x76\x00\x67\ \x00\x1f\ \x0a\xae\x2a\xc7\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x75\x00\x6e\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ \x00\x64\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x12\ \x07\x8f\x90\xa7\ \x00\x62\ \x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2d\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\ \x00\x67\ \x00\x19\ \x08\x3e\xc1\x87\ \x00\x73\ \x00\x74\x00\x79\x00\x6c\x00\x65\x00\x73\x00\x68\x00\x65\x00\x65\x00\x74\x00\x2d\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\ \x00\x2d\x00\x65\x00\x6e\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x09\ \x06\x98\x8e\xa7\ \x00\x63\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x1d\ \x09\x07\x8c\x87\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x5f\ \x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x12\ \x04\x89\x85\xc7\ \x00\x76\ \x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x73\x00\x2e\x00\x73\x00\x76\ \x00\x67\ \x00\x11\ \x08\x0c\x67\x27\ \x00\x68\ \x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \ \x00\x0c\ \x06\x41\x4d\x07\ \x00\x73\ \x00\x69\x00\x7a\x00\x65\x00\x67\x00\x72\x00\x69\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x20\ \x0e\x63\xf6\x07\ \x00\x73\ \x00\x74\x00\x79\x00\x6c\x00\x65\x00\x73\x00\x68\x00\x65\x00\x65\x00\x74\x00\x2d\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\ \x00\x2d\x00\x65\x00\x6e\x00\x64\x00\x2d\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x15\ \x0f\xf3\xcd\x87\ \x00\x75\ \x00\x70\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\ \x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x1a\ \x01\x87\xa3\xe7\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\ \x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0f\ \x02\x9f\x08\x07\ \x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x11\ \x0b\xda\x3d\x27\ \x00\x62\ \x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \ \x00\x10\ \x01\x08\xc7\x27\ \x00\x68\ \x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x18\ \x03\x8e\xd3\xe7\ \x00\x72\ \x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\ \x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x11\ \x0a\xe5\x61\x87\ \x00\x72\ \x00\x61\x00\x64\x00\x69\x00\x6f\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \ \x00\x14\ \x05\x80\x73\xc7\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x68\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\ \x00\x73\x00\x76\x00\x67\ \x00\x10\ \x07\xee\x36\xc7\ \x00\x75\ \x00\x6e\x00\x64\x00\x6f\x00\x63\x00\x6b\x00\x2d\x00\x68\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x23\ \x06\xf2\x17\xc7\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\ \x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x73\ \x00\x76\x00\x67\ \x00\x0c\ \x06\xe6\xeb\xe7\ \x00\x75\ \x00\x70\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0f\ \x06\x53\x28\x27\ \x00\x62\ \x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x11\ \x08\x90\x99\xe7\ \x00\x63\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2d\x00\x70\x00\x72\x00\x65\x00\x73\x00\x73\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \ \x00\x16\ \x01\x75\xc1\x07\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x75\x00\x6e\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ \x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x1c\ \x01\xe0\x47\x87\ \x00\x72\ \x00\x61\x00\x64\x00\x69\x00\x6f\x00\x5f\x00\x75\x00\x6e\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x5f\x00\x64\ \x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x1a\ \x01\x21\xe6\xc7\ \x00\x73\ \x00\x74\x00\x79\x00\x6c\x00\x65\x00\x73\x00\x68\x00\x65\x00\x65\x00\x74\x00\x2d\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x68\ \x00\x2d\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0f\ \x0c\xe2\x65\xe7\ \x00\x74\ \x00\x72\x00\x61\x00\x6e\x00\x73\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x1a\ \x0e\xbc\xce\xe7\ \x00\x72\ \x00\x61\x00\x64\x00\x69\x00\x6f\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x5f\x00\x64\x00\x69\x00\x73\ \x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x14\ \x07\xec\xdc\x47\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2e\ \x00\x73\x00\x76\x00\x67\ \x00\x17\ \x09\x0f\x52\xa7\ \x00\x72\ \x00\x61\x00\x64\x00\x69\x00\x6f\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2d\x00\x68\x00\x6f\x00\x76\ \x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x1c\ \x0e\x2e\x13\x87\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x75\x00\x6e\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ \x00\x64\x00\x2d\x00\x68\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x1a\ \x03\x1c\x29\x07\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2d\ \x00\x68\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x19\ \x0d\x54\xa7\x67\ \x00\x72\ \x00\x61\x00\x64\x00\x69\x00\x6f\x00\x5f\x00\x75\x00\x6e\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2d\x00\x68\ \x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x20\ \x0f\xca\xd6\x47\ \x00\x63\ \x00\x68\x00\x65\x00\x63\x00\x6b\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\ \x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x2d\x00\x68\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x01\ \x00\x00\x00\x28\x00\x02\x00\x00\x00\x28\x00\x00\x00\x30\ \x00\x00\x00\x18\x00\x02\x00\x00\x00\x2b\x00\x00\x00\x05\ \x00\x00\x00\x36\x00\x01\x00\x00\x00\x01\x00\x00\x14\x08\ \x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x70\xb2\ \x00\x00\x04\xba\x00\x00\x00\x00\x00\x01\x00\x00\x8a\x88\ \x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x67\xf4\ \x00\x00\x06\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x9a\x99\ \x00\x00\x04\x34\x00\x00\x00\x00\x00\x01\x00\x00\x86\x0b\ \x00\x00\x06\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x99\x3c\ \x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x60\x7e\ \x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x88\x02\ \x00\x00\x07\xf0\x00\x00\x00\x00\x00\x01\x00\x00\x76\x5e\ \x00\x00\x04\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x8b\x8f\ \x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x73\xe7\ \x00\x00\x03\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x7b\xd2\ \x00\x00\x00\x70\x00\x00\x00\x00\x00\x01\x00\x00\x62\x97\ \x00\x00\x05\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x8f\x19\ \x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x64\xc8\ \x00\x00\x03\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x7e\xde\ \x00\x00\x05\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x96\xca\ \x00\x00\x02\x22\x00\x00\x00\x00\x00\x01\x00\x00\x74\x9c\ \x00\x00\x02\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x78\x66\ \x00\x00\x05\xde\x00\x00\x00\x00\x00\x01\x00\x00\x94\xa1\ \x00\x00\x05\x92\x00\x00\x00\x00\x00\x01\x00\x00\x92\xaa\ \x00\x00\x02\x94\x00\x00\x00\x00\x00\x01\x00\x00\x76\x0d\ \x00\x00\x07\x50\x00\x00\x00\x00\x00\x01\x00\x00\x9d\x25\ \x00\x00\x05\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x91\x4a\ \x00\x00\x03\x78\x00\x00\x00\x00\x00\x01\x00\x00\x7e\x1b\ \x00\x00\x02\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x77\xb1\ \x00\x00\x06\x20\x00\x00\x00\x00\x00\x01\x00\x00\x97\x23\ \x00\x00\x03\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x7a\x7f\ \x00\x00\x07\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x6c\xcd\ \x00\x00\x02\x50\x00\x00\x00\x00\x00\x01\x00\x00\x75\x01\ \x00\x00\x05\x16\x00\x00\x00\x00\x00\x01\x00\x00\x8d\x65\ \x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x67\x93\ \x00\x00\x04\x92\x00\x00\x00\x00\x00\x01\x00\x00\x8a\x33\ \x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\x6a\x99\ \x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x6e\x81\ \x00\x00\x06\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x9b\x4e\ \x00\x00\x08\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x7f\xd9\ \x00\x00\x07\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x72\xdb\ \x00\x00\x03\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x83\x2d\ \x00\x00\x07\x16\x00\x00\x00\x00\x00\x01\x00\x00\x9b\x71\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x65\x5f\ \x00\x00\x08\x62\x00\x00\x00\x00\x00\x01\x00\x00\x81\x36\ \x00\x00\x04\x04\x00\x00\x00\x00\x00\x01\x00\x00\x83\xe2\ \x00\x00\x01\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x36\x65\ \x00\x00\x04\xba\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x87\ \x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x2f\x5b\ \x00\x00\x06\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x5c\x9f\ \x00\x00\x06\x48\x00\x00\x00\x00\x00\x01\x00\x00\x5a\x36\ \x00\x00\x04\x34\x00\x00\x00\x00\x00\x01\x00\x00\x47\x68\ \x00\x00\x06\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x5b\x42\ \x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x27\xeb\ \x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x49\x5f\ \x00\x00\x04\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x4c\x8c\ \x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x39\xeb\ \x00\x00\x03\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x40\x83\ \x00\x00\x00\x70\x00\x00\x00\x00\x00\x01\x00\x00\x2a\x04\ \x00\x00\x05\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x50\x16\ \x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x2c\x32\ \x00\x00\x03\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x43\x8f\ \x00\x00\x05\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x57\xc4\ \x00\x00\x02\x22\x00\x00\x00\x00\x00\x01\x00\x00\x3a\xa0\ \x00\x00\x02\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x3d\x17\ \x00\x00\x05\xde\x00\x00\x00\x00\x00\x01\x00\x00\x55\x9e\ \x00\x00\x05\x92\x00\x00\x00\x00\x00\x01\x00\x00\x53\xa7\ \x00\x00\x02\x94\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x11\ \x00\x00\x07\x50\x00\x00\x00\x00\x00\x01\x00\x00\x5f\x2b\ \x00\x00\x05\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x52\x47\ \x00\x00\x03\x78\x00\x00\x00\x00\x00\x01\x00\x00\x42\xcc\ \x00\x00\x02\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x62\ \x00\x00\x06\x20\x00\x00\x00\x00\x00\x01\x00\x00\x58\x1d\ \x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x38\x8e\ \x00\x00\x03\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x30\ \x00\x00\x02\x50\x00\x00\x00\x00\x00\x01\x00\x00\x3b\x05\ \x00\x00\x05\x16\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x62\ \x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x2e\xfa\ \x00\x00\x04\x92\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x32\ \x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\x32\x00\ \x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x34\x34\ \x00\x00\x06\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x54\ \x00\x00\x03\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x44\x8a\ \x00\x00\x07\x16\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x77\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x2c\xc9\ \x00\x00\x04\x04\x00\x00\x00\x00\x00\x01\x00\x00\x45\x3f\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x28\x00\x02\x00\x00\x00\x28\x00\x00\x00\x30\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x18\x00\x02\x00\x00\x00\x2b\x00\x00\x00\x05\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x36\x00\x01\x00\x00\x00\x01\x00\x00\x14\x08\ \x00\x00\x01\x75\x6d\x79\x5d\x57\ \x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x75\x6d\x79\x60\x85\ \x00\x00\x01\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x70\xb2\ \x00\x00\x01\x75\x6d\x78\x6a\xbe\ \x00\x00\x04\xba\x00\x00\x00\x00\x00\x01\x00\x00\x8a\x88\ \x00\x00\x01\x75\x6d\x78\x6a\xb6\ \x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x67\xf4\ \x00\x00\x01\x75\x6d\x78\x6a\xbf\ \x00\x00\x06\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x9a\x99\ \x00\x00\x01\x75\x6d\x78\x6a\xbc\ \x00\x00\x04\x34\x00\x00\x00\x00\x00\x01\x00\x00\x86\x0b\ \x00\x00\x01\x75\x6d\x78\x6a\xb2\ \x00\x00\x06\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x99\x3c\ \x00\x00\x01\x75\x6d\x78\x6a\xb9\ \x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x60\x7e\ \x00\x00\x01\x75\x6d\x78\x6a\xb3\ \x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x88\x02\ \x00\x00\x01\x75\x6d\x78\x6a\xba\ \x00\x00\x07\xf0\x00\x00\x00\x00\x00\x01\x00\x00\x76\x5e\ \x00\x00\x01\x75\x6d\x78\x6a\xb0\ \x00\x00\x04\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x8b\x8f\ \x00\x00\x01\x75\x6d\x78\x6a\xba\ \x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x73\xe7\ \x00\x00\x01\x75\x6d\x78\x6a\xbb\ \x00\x00\x03\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x7b\xd2\ \x00\x00\x01\x75\x6d\x78\x6a\xbf\ \x00\x00\x00\x70\x00\x00\x00\x00\x00\x01\x00\x00\x62\x97\ \x00\x00\x01\x75\x6d\x78\x6a\xb5\ \x00\x00\x05\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x8f\x19\ \x00\x00\x01\x75\x6d\x78\x6a\xb4\ \x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x64\xc8\ \x00\x00\x01\x75\x6d\x78\x6a\xbe\ \x00\x00\x03\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x7e\xde\ \x00\x00\x01\x75\x6d\x78\x6a\xba\ \x00\x00\x05\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x96\xca\ \x00\x00\x01\x75\x6d\x78\x6a\xb0\ \x00\x00\x02\x22\x00\x00\x00\x00\x00\x01\x00\x00\x74\x9c\ \x00\x00\x01\x75\x6d\x78\x6a\xae\ \x00\x00\x02\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x78\x66\ \x00\x00\x01\x75\x6d\x78\x6a\xb4\ \x00\x00\x05\xde\x00\x00\x00\x00\x00\x01\x00\x00\x94\xa1\ \x00\x00\x01\x75\x6d\x78\x6a\xbe\ \x00\x00\x05\x92\x00\x00\x00\x00\x00\x01\x00\x00\x92\xaa\ \x00\x00\x01\x75\x6d\x78\x6a\xb2\ \x00\x00\x02\x94\x00\x00\x00\x00\x00\x01\x00\x00\x76\x0d\ \x00\x00\x01\x75\x6d\x78\x6a\xaf\ \x00\x00\x07\x50\x00\x00\x00\x00\x00\x01\x00\x00\x9d\x25\ \x00\x00\x01\x75\x6d\x78\x6a\xb0\ \x00\x00\x05\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x91\x4a\ \x00\x00\x01\x75\x6d\x78\x6a\xbd\ \x00\x00\x03\x78\x00\x00\x00\x00\x00\x01\x00\x00\x7e\x1b\ \x00\x00\x01\x75\x6d\x78\x6a\xb6\ \x00\x00\x02\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x77\xb1\ \x00\x00\x01\x75\x6d\x78\x6a\xbc\ \x00\x00\x06\x20\x00\x00\x00\x00\x00\x01\x00\x00\x97\x23\ \x00\x00\x01\x75\x6d\x78\x6a\xb4\ \x00\x00\x03\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x7a\x7f\ \x00\x00\x01\x75\x6d\x78\x6a\xb1\ \x00\x00\x07\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x6c\xcd\ \x00\x00\x01\x75\x6d\x78\x6a\xb7\ \x00\x00\x02\x50\x00\x00\x00\x00\x00\x01\x00\x00\x75\x01\ \x00\x00\x01\x75\x6d\x78\x6a\xb3\ \x00\x00\x05\x16\x00\x00\x00\x00\x00\x01\x00\x00\x8d\x65\ \x00\x00\x01\x75\x6d\x78\x6a\xb7\ \x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x67\x93\ \x00\x00\x01\x75\x6d\x78\x6a\xbd\ \x00\x00\x04\x92\x00\x00\x00\x00\x00\x01\x00\x00\x8a\x33\ \x00\x00\x01\x75\x6d\x78\x6a\xaf\ \x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\x6a\x99\ \x00\x00\x01\x75\x6d\x78\x6a\xb7\ \x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x6e\x81\ \x00\x00\x01\x75\x6d\x78\x6a\xb5\ \x00\x00\x06\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x9b\x4e\ \x00\x00\x01\x75\x6d\x78\x6a\xbd\ \x00\x00\x08\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x7f\xd9\ \x00\x00\x01\x75\x6d\x78\x6a\xb9\ \x00\x00\x07\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x72\xdb\ \x00\x00\x01\x75\x6d\x78\x6a\xb2\ \x00\x00\x03\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x83\x2d\ \x00\x00\x01\x75\x6d\x78\x6a\xbb\ \x00\x00\x07\x16\x00\x00\x00\x00\x00\x01\x00\x00\x9b\x71\ \x00\x00\x01\x75\x6d\x78\x6a\xb8\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x65\x5f\ \x00\x00\x01\x75\x6d\x78\x6a\xb6\ \x00\x00\x08\x62\x00\x00\x00\x00\x00\x01\x00\x00\x81\x36\ \x00\x00\x01\x75\x6d\x78\x6a\xb1\ \x00\x00\x04\x04\x00\x00\x00\x00\x00\x01\x00\x00\x83\xe2\ \x00\x00\x01\x75\x6d\x78\x6a\xbf\ \x00\x00\x01\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x36\x65\ \x00\x00\x01\x75\x6d\x78\x6a\xab\ \x00\x00\x04\xba\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x87\ \x00\x00\x01\x75\x6d\x78\x6a\xa3\ \x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x2f\x5b\ \x00\x00\x01\x75\x6d\x78\x6a\xac\ \x00\x00\x06\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x5c\x9f\ \x00\x00\x01\x75\x6d\x78\x6a\xa9\ \x00\x00\x06\x48\x00\x00\x00\x00\x00\x01\x00\x00\x5a\x36\ \x00\x00\x01\x75\x6d\x78\x6a\xa0\ \x00\x00\x04\x34\x00\x00\x00\x00\x00\x01\x00\x00\x47\x68\ \x00\x00\x01\x75\x6d\x78\x6a\xa0\ \x00\x00\x06\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x5b\x42\ \x00\x00\x01\x75\x6d\x78\x6a\xa6\ \x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x27\xeb\ \x00\x00\x01\x75\x6d\x78\x6a\xa1\ \x00\x00\x04\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x49\x5f\ \x00\x00\x01\x75\x6d\x78\x6a\xa6\ \x00\x00\x04\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x4c\x8c\ \x00\x00\x01\x75\x6d\x78\x6a\xa7\ \x00\x00\x01\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x39\xeb\ \x00\x00\x01\x75\x6d\x78\x6a\xa8\ \x00\x00\x03\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x40\x83\ \x00\x00\x01\x75\x6d\x78\x6a\xac\ \x00\x00\x00\x70\x00\x00\x00\x00\x00\x01\x00\x00\x2a\x04\ \x00\x00\x01\x75\x6d\x78\x6a\xa3\ \x00\x00\x05\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x50\x16\ \x00\x00\x01\x75\x6d\x78\x6a\xa2\ \x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x2c\x32\ \x00\x00\x01\x75\x6d\x78\x6a\xaa\ \x00\x00\x03\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x43\x8f\ \x00\x00\x01\x75\x6d\x78\x6a\xa7\ \x00\x00\x05\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x57\xc4\ \x00\x00\x01\x75\x6d\x78\x6a\x9f\ \x00\x00\x02\x22\x00\x00\x00\x00\x00\x01\x00\x00\x3a\xa0\ \x00\x00\x01\x75\x6d\x78\x6a\x9d\ \x00\x00\x02\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x3d\x17\ \x00\x00\x01\x75\x6d\x78\x6a\xa2\ \x00\x00\x05\xde\x00\x00\x00\x00\x00\x01\x00\x00\x55\x9e\ \x00\x00\x01\x75\x6d\x78\x6a\xab\ \x00\x00\x05\x92\x00\x00\x00\x00\x00\x01\x00\x00\x53\xa7\ \x00\x00\x01\x75\x6d\x78\x6a\xa0\ \x00\x00\x02\x94\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x11\ \x00\x00\x01\x75\x6d\x78\x6a\x9e\ \x00\x00\x07\x50\x00\x00\x00\x00\x00\x01\x00\x00\x5f\x2b\ \x00\x00\x01\x75\x6d\x78\x6a\x9f\ \x00\x00\x05\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x52\x47\ \x00\x00\x01\x75\x6d\x78\x6a\xaa\ \x00\x00\x03\x78\x00\x00\x00\x00\x00\x01\x00\x00\x42\xcc\ \x00\x00\x01\x75\x6d\x78\x6a\xa4\ \x00\x00\x02\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x62\ \x00\x00\x01\x75\x6d\x78\x6a\xa9\ \x00\x00\x06\x20\x00\x00\x00\x00\x00\x01\x00\x00\x58\x1d\ \x00\x00\x01\x75\x6d\x78\x6a\xa1\ \x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x38\x8e\ \x00\x00\x01\x75\x6d\x78\x6a\xa6\ \x00\x00\x03\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x30\ \x00\x00\x01\x75\x6d\x78\x6a\x9f\ \x00\x00\x02\x50\x00\x00\x00\x00\x00\x01\x00\x00\x3b\x05\ \x00\x00\x01\x75\x6d\x78\x6a\xa1\ \x00\x00\x05\x16\x00\x00\x00\x00\x00\x01\x00\x00\x4e\x62\ \x00\x00\x01\x75\x6d\x78\x6a\xa5\ \x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x2e\xfa\ \x00\x00\x01\x75\x6d\x78\x6a\xa9\ \x00\x00\x04\x92\x00\x00\x00\x00\x00\x01\x00\x00\x4b\x32\ \x00\x00\x01\x75\x6d\x78\x6a\x9e\ \x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\x32\x00\ \x00\x00\x01\x75\x6d\x78\x6a\xa4\ \x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x34\x34\ \x00\x00\x01\x75\x6d\x78\x6a\xa3\ \x00\x00\x06\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x54\ \x00\x00\x01\x75\x6d\x78\x6a\xaa\ \x00\x00\x03\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x44\x8a\ \x00\x00\x01\x75\x6d\x78\x6a\xa8\ \x00\x00\x07\x16\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x77\ \x00\x00\x01\x75\x6d\x78\x6a\xa5\ \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x2c\xc9\ \x00\x00\x01\x75\x6d\x78\x6a\xa4\ \x00\x00\x04\x04\x00\x00\x00\x00\x00\x01\x00\x00\x45\x3f\ \x00\x00\x01\x75\x6d\x78\x6a\xac\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] if qt_version < [5, 8, 0]: rcc_version = 1 qt_resource_struct = qt_resource_struct_v1 else: rcc_version = 2 qt_resource_struct = qt_resource_struct_v2 def qInitResources(): QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()
58.641805
129
0.724692
453002bd598dabb04300643965c9dc9b46fccd66
335
py
Python
generators/nav_generator.py
tulku/traffic_editor
a0f6968ebc6a03968d2af7a09aa8471b74e51b48
[ "Apache-2.0" ]
null
null
null
generators/nav_generator.py
tulku/traffic_editor
a0f6968ebc6a03968d2af7a09aa8471b74e51b48
[ "Apache-2.0" ]
null
null
null
generators/nav_generator.py
tulku/traffic_editor
a0f6968ebc6a03968d2af7a09aa8471b74e51b48
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env python3 import sys import generator if __name__ == '__main__': if len(sys.argv) != 3: print('usage: nav_generator INPUT.yaml OUTPUT_PREFIX') sys.exit(1) input_filename = sys.argv[1] output_prefix = sys.argv[2] g = generator.Generator() g.generate_nav(input_filename, output_prefix)
23.928571
62
0.674627
edcad596cdef9464b3fa753f308a471a6e39baf6
4,359
py
Python
prioritized_memory.py
djmax008/GEIRINA_baseline
3b847bd217bc9784c846cd2aa0700f8e1b08f7f9
[ "MIT" ]
5
2020-06-17T03:00:41.000Z
2022-03-09T07:32:14.000Z
prioritized_memory.py
djmax008/GEIRINA_baseline
3b847bd217bc9784c846cd2aa0700f8e1b08f7f9
[ "MIT" ]
2
2020-05-15T17:12:50.000Z
2020-06-18T10:06:06.000Z
prioritized_memory.py
djmax008/GEIRINA_baseline
3b847bd217bc9784c846cd2aa0700f8e1b08f7f9
[ "MIT" ]
3
2021-02-04T10:29:46.000Z
2022-03-09T07:32:17.000Z
""" https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow/blob/master/contents/5.2_Prioritized_Replay_DQN/RL_brain.py """ import numpy as np class SumTree(object): """ This SumTree code is a modified version and the original code is from: https://github.com/jaara/AI-blog/blob/master/SumTree.py Story data with its priority in the tree. """ data_pointer = 0 def __init__(self, capacity): self.capacity = capacity # for all priority values self.tree = np.zeros(2 * capacity - 1) # [--------------Parent nodes-------------][-------leaves to recode priority-------] # size: capacity - 1 size: capacity self.data = np.zeros(capacity, dtype=object) # for all transitions # [--------------data frame-------------] # size: capacity def add(self, p, data): tree_idx = self.data_pointer + self.capacity - 1 self.data[self.data_pointer] = data # update data_frame self.update(tree_idx, p) # update tree_frame self.data_pointer += 1 if self.data_pointer >= self.capacity: # replace when exceed the capacity self.data_pointer = 0 def update(self, tree_idx, p): change = p - self.tree[tree_idx] self.tree[tree_idx] = p # then propagate the change through tree while tree_idx != 0: # this method is faster than the recursive loop in the reference code tree_idx = (tree_idx - 1) // 2 self.tree[tree_idx] += change def get_leaf(self, v): """ Tree structure and array storage: Array type for storing: [0,1,2,3,4,5,6] """ parent_idx = 0 while True: # the while loop is faster than the method in the reference code cl_idx = 2 * parent_idx + 1 # this leaf's left and right kids cr_idx = cl_idx + 1 if cl_idx >= len(self.tree): # reach bottom, end search leaf_idx = parent_idx break else: # downward search, always search for a higher priority node if v <= self.tree[cl_idx]: parent_idx = cl_idx else: v -= self.tree[cl_idx] parent_idx = cr_idx data_idx = leaf_idx - self.capacity + 1 return leaf_idx, self.tree[leaf_idx], self.data[data_idx] @property def total_p(self): return self.tree[0] # the root class Memory(object): # stored as ( s, a, r, s_ ) in SumTree """ This Memory class is modified based on the original code from: https://github.com/jaara/AI-blog/blob/master/Seaquest-DDQN-PER.py """ epsilon = 0.01 # small amount to avoid zero priority beta_increment_per_sampling = 0.001 abs_err_upper = 1. # clipped abs error def __init__(self, capacity, alpha=0.6, beta=0.4): self.capacity = capacity self.tree = SumTree(capacity) self.alpha = alpha self.beta = beta def store(self, transition): max_p = np.max(self.tree.tree[-self.tree.capacity:]) if max_p == 0: max_p = self.abs_err_upper self.tree.add(max_p, transition) # set the max p for new p def sample(self, n): b_idx, b_memory, ISWeights = np.empty((n,), dtype=np.int32), [], [] pri_seg = self.tree.total_p / n # priority segment self.beta = np.min( [1., self.beta + self.beta_increment_per_sampling]) # max = 1 # for later calculate ISweight # min_prob = np.min(self.tree.tree[-self.tree.capacity:]) / self.tree.total_p for i in range(n): a, b = pri_seg * i, pri_seg * (i + 1) try: v = np.random.uniform(a, b) except:v = np.random.uniform(b, a) idx, p, data = self.tree.get_leaf(v) prob = p / self.tree.total_p ISWeights.append(np.power(self.capacity * prob, -self.beta)) b_idx[i] = idx b_memory.append(data) max_weight = max(ISWeights) ISWeights = [x / max_weight for x in ISWeights] return b_idx, b_memory, ISWeights def batch_update(self, tree_idx, abs_errors): abs_errors += self.epsilon # convert to abs and avoid 0 clipped_errors = np.minimum(abs_errors, self.abs_err_upper) ps = np.power(clipped_errors, self.alpha) for ti, p in zip(tree_idx, ps): self.tree.update(ti, p) if __name__ == "__main__": exp = Memory(32) for i in range(10): exp.store(np.array([[1, 2], 2, 3, [2, 3], 5])) b_idx, b_memory, ISWeights = exp.sample(2) print(b_idx, b_memory, ISWeights)
34.322835
128
0.630649
ba445366ad0c87bc5e4bf535c7ef710511a50f1e
653
py
Python
contact/migrations/0002_auto_20201009_0814.py
HarshilShrivastava/TrueCaller-Backend
8303fbd1ac6ddc79a50803da6b682deb5b9dddfe
[ "MIT" ]
null
null
null
contact/migrations/0002_auto_20201009_0814.py
HarshilShrivastava/TrueCaller-Backend
8303fbd1ac6ddc79a50803da6b682deb5b9dddfe
[ "MIT" ]
null
null
null
contact/migrations/0002_auto_20201009_0814.py
HarshilShrivastava/TrueCaller-Backend
8303fbd1ac6ddc79a50803da6b682deb5b9dddfe
[ "MIT" ]
null
null
null
# Generated by Django 3.1.2 on 2020-10-09 08:14 from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('contact', '0001_initial'), ] operations = [ migrations.RemoveField( model_name='contact', name='In_List', ), migrations.AddField( model_name='contact', name='In_List', field=models.ManyToManyField(blank=True, related_name='from_person_contact_list', to=settings.AUTH_USER_MODEL), ), ]
26.12
123
0.633997
9fce833a0cdc18c7166875ba42f3c88641abecf2
3,714
py
Python
docker/docker_run.py
H-HChen/OMG-Planner
7a53c303e229d91c3af13459df7c526fc2d0f492
[ "MIT" ]
52
2020-10-07T01:53:31.000Z
2022-03-04T20:43:37.000Z
docker/docker_run.py
H-HChen/OMG-Planner
7a53c303e229d91c3af13459df7c526fc2d0f492
[ "MIT" ]
14
2020-11-08T09:28:17.000Z
2021-11-12T01:17:27.000Z
docker/docker_run.py
H-HChen/OMG-Planner
7a53c303e229d91c3af13459df7c526fc2d0f492
[ "MIT" ]
12
2020-10-07T02:10:04.000Z
2022-03-10T15:38:04.000Z
#!/usr/bin/env python from __future__ import print_function ######### # Credit: https://github.com/RobotLocomotion/pytorch-dense-correspondence/blob/master/docker/docker_run.py ######### import argparse import os import socket import getpass import yaml if __name__=="__main__": user_name = getpass.getuser() default_image_name = user_name + '-omg' parser = argparse.ArgumentParser() parser.add_argument("-i", "--image", type=str, help="(required) name of the image that this container is derived from", default=default_image_name) parser.add_argument("-c", "--container", type=str, default="omg", help="(optional) name of the container") parser.add_argument("-d", "--data", type=str, default="data/", help="(optional) external data directory") parser.add_argument("-hl", "--headless", action='store_true', help="(optional) run in headless mode") parser.add_argument("-r", "--root", action='store_true', help="(optional) login as root instead of user") parser.add_argument("-g", "--gpus", type=str, default="all", help="(optional) gpus for nvidia docker") parser.add_argument("-dr", "--dry_run", action='store_true', help="(optional) perform a dry_run, print the command that would have been executed but don't execute it.") parser.add_argument("-p", "--passthrough", type=str, default="", help="(optional) extra string that will be tacked onto the docker run command, allows you to pass extra options. Make sure to put this in quotes and leave a space before the first character") args = parser.parse_args() print("running docker container derived from image %s" %args.image) source_dir = os.getcwd() image_name = args.image home_directory = '/home/' + user_name cmd = "xhost +local:root \n" if not args.headless else "" cmd += "docker run " if args.container: cmd += " --name %(container_name)s " % {'container_name': args.container} # gpus cmd += " --gpus %s" % (args.gpus) # display if args.headless: cmd += " -v /usr/bin/nvidia-xconfig:/usr/bin/nvidia-xconfig " else: cmd += " -e DISPLAY -e QT_X11_NO_MITSHM=1 -v /tmp/.X11-unix:/tmp/.X11-unix:rw " # enable graphics # bindings cmd += " -v %(source_dir)s:%(home_directory)s/omg " \ % {'source_dir': source_dir, 'home_directory': home_directory} # mount source cmd += " -v ~/.ssh:%(home_directory)s/.ssh " % {'home_directory': home_directory} # mount ssh keys cmd += " -v ~/.torch:%(home_directory)s/.torch " % {'home_directory': home_directory} # mount torch folder cmd += " --user %s " % ("root" if args.root else user_name) # login # custom data path cmd += " -v %s:/data " %(os.path.join(source_dir, args.data)) # expose UDP ports cmd += " -p 8888:8888 " cmd += " --ipc=host " # share host machine network cmd += " --network=host " cmd += " " + args.passthrough + " " cmd += " --privileged" cmd += " --rm " # remove the image when you exit cmd += "-it " cmd += args.image cmd_endxhost = "xhost -local:root" print("command = \n \n", cmd, "\n", cmd_endxhost) print("") # build the docker image if not args.dry_run: print("executing shell command") code = os.system(cmd) print("Executed with code ", code) if not args.headless: os.system(cmd_endxhost) # Squash return code to 0/1, as # Docker's very large return codes # were tricking Jenkins' failure # detection exit(code != 0) else: print("dry run, not executing command") exit(0)
36.772277
260
0.62224
25f24da6cf7c7cf452ca769829f8ed311de3326c
2,039
py
Python
src/egyptian_data_generator/national_identification_number.py
mahmoudahmedd/Egyptian-Data-Generator
d7bea688a7c7f8604908f302917267d795aa40a2
[ "MIT" ]
9
2020-11-25T10:45:32.000Z
2020-11-29T12:42:09.000Z
src/egyptian_data_generator/national_identification_number.py
mahmoudahmedd/Egyptian-Data-Generator
d7bea688a7c7f8604908f302917267d795aa40a2
[ "MIT" ]
null
null
null
src/egyptian_data_generator/national_identification_number.py
mahmoudahmedd/Egyptian-Data-Generator
d7bea688a7c7f8604908f302917267d795aa40a2
[ "MIT" ]
null
null
null
import random from egyptian_data_generator.helpers import Helpers from egyptian_data_generator.date import Date class NationalID: def generate(self, _dateOfBirth = None, _governorate = None, _gender = None): governorates = { "Alexandria": "02", "Aswan": "28", "Asyut": "25", "Beheira": "18", "Beni Suef": "22", "Cairo": "01", "Dakahlia": "12", "Damietta": "11", "Faiyum": "23", "Gharbia": "16", "Giza": "21", "Ismailia": "19", "Kafr El Sheikh": "15", "Luxor": "29", "Marsa Matruh": "33", "Menofia": "17", "Minya": "24", "New Valley": "32", "North Sinai": "34", "Port Said": "03", "Qalyubia": "14", "Qena": "27", "Red Sea": "31", "Sharqia": "13", "Sohag": "26", "South Sinai": "35", "Suez": "04", "outside": "88" } if _dateOfBirth is None: _dateOfBirth = Date.between() yy = _dateOfBirth.split("-")[0] mm = _dateOfBirth.split("-")[1] dd = _dateOfBirth.split("-")[2] birthCentury = str(int(yy[0]) + 1) if _governorate is not None: govCode = governorates[_governorate] else: govCode = Helpers.oneChoice(list(governorates.values())) if _gender is not None: if(_gender == "female"): genderCode = str(random.randrange(0,10,2)) else: genderCode = str(random.randrange(1,10,2)) else: genderCode = str(random.randrange(0,10)) return birthCentury + yy[2:] + mm + dd + govCode + str(random.randrange(100, 1000)) + genderCode + str(random.randrange(1, 10))
30.432836
136
0.437469
e90bd38312becb970ad9685d99dc6a85ca4b83d1
582
py
Python
corehq/ex-submodules/dimagi/utils/modules.py
dimagilg/commcare-hq
ea1786238eae556bb7f1cbd8d2460171af1b619c
[ "BSD-3-Clause" ]
471
2015-01-10T02:55:01.000Z
2022-03-29T18:07:18.000Z
corehq/ex-submodules/dimagi/utils/modules.py
dimagilg/commcare-hq
ea1786238eae556bb7f1cbd8d2460171af1b619c
[ "BSD-3-Clause" ]
14,354
2015-01-01T07:38:23.000Z
2022-03-31T20:55:14.000Z
corehq/ex-submodules/dimagi/utils/modules.py
dimagilg/commcare-hq
ea1786238eae556bb7f1cbd8d2460171af1b619c
[ "BSD-3-Clause" ]
175
2015-01-06T07:16:47.000Z
2022-03-29T13:27:01.000Z
#!/usr/bin/env python # vim: ai ts=4 sts=4 et sw=4 import importlib def to_function(function_path, failhard=False): """ Convert a string like foo.bar.baz into a function (assumes that baz is a function defined in foo/bar.py). """ try: # TODO: make this less brittle if imports or args don't line up module, func = function_path.rsplit(".", 1) module = importlib.import_module(module) actual_func = getattr(module, func) return actual_func except (AttributeError, ImportError): if failhard: raise
29.1
71
0.64433
8044760e5646771a3ea915d7ac9b6cb303c4c1d2
408
py
Python
lists/migrations/0011_family_family_gifts.py
olegesan/christmas_list_webapp
d705fdedef651f3f5bf7a4f5d58034df0aab572f
[ "MIT" ]
null
null
null
lists/migrations/0011_family_family_gifts.py
olegesan/christmas_list_webapp
d705fdedef651f3f5bf7a4f5d58034df0aab572f
[ "MIT" ]
3
2021-04-08T20:55:20.000Z
2022-02-10T09:55:03.000Z
lists/migrations/0011_family_family_gifts.py
olegesan/christmas_list_webapp
d705fdedef651f3f5bf7a4f5d58034df0aab572f
[ "MIT" ]
null
null
null
# Generated by Django 2.2.7 on 2019-12-06 23:13 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('lists', '0010_auto_20191206_2307'), ] operations = [ migrations.AddField( model_name='family', name='family_gifts', field=models.ManyToManyField(blank=True, to='lists.Gift'), ), ]
21.473684
70
0.605392
902a873e5099bcb84ff3417bc3f31f74d83c663d
1,183
py
Python
create_data.py
vardhman1996/language_model
b81b8be6e2bf79b3d823e20bb9d20a1d9c4305d2
[ "MIT" ]
null
null
null
create_data.py
vardhman1996/language_model
b81b8be6e2bf79b3d823e20bb9d20a1d9c4305d2
[ "MIT" ]
1
2018-05-24T05:37:36.000Z
2018-05-24T05:37:36.000Z
create_data.py
vardhman1996/language_model
b81b8be6e2bf79b3d823e20bb9d20a1d9c4305d2
[ "MIT" ]
null
null
null
''' Vikram Sringari CSE517 This file parses the raw data file. Then it produces sequences of length 5 for the LSTM ''' import random import io #reads parsed data file in #takes filename parameter def read_file(ifile): file = io.open(ifile, 'r', encoding='utf-8') # reads text text = file.read() file.close() return text # saves parsed file with all sequences def save_file(lines, ifile): text = '\n'.join(lines) file = io.open(ifile, 'w', encoding='utf-8') file.write(u'\ufeff') file.write(text) file.close() #parses file to produce sequences of five def main(): text = read_file('x_train.txt') # cleans data conects = text.split() text = ' '.join(conects) # turns in sequences of 5 charcters per line length = 5 seqs = list() for i in range(length, len(text)): # select sequence of tokens seq = text[i-length:i+1] # store seqs.append(seq) #print('Total Sequences: %d' % len(seqs)) #random.shuffle(seqs) #randomizes all data and selects portion seqs = seqs[(len(seqs)-1)/3000:10000+(len(seqs)-1)/3000] # saves to file output_file = 'sequences.txt' save_file(seqs, output_file) if __name__ == "__main__": main()
22.320755
64
0.676247
3282cbfe1838989a34c65ac08d76336245c059fe
4,165
py
Python
noggin/utility/pagination.py
josselineperdomo/noggin
7f84343bd79f0871dcda2667f5b92256aee9cde9
[ "MIT" ]
null
null
null
noggin/utility/pagination.py
josselineperdomo/noggin
7f84343bd79f0871dcda2667f5b92256aee9cde9
[ "MIT" ]
null
null
null
noggin/utility/pagination.py
josselineperdomo/noggin
7f84343bd79f0871dcda2667f5b92256aee9cde9
[ "MIT" ]
null
null
null
import math from flask import current_app, request class PagedResult: def __init__(self, items=None, total=None, page_size=None, page_number=None): self.items = items or [] self.total = total or len(self.items) self.page_size = page_size self.page_number = page_number @property def total_pages(self): if self.page_size == 0: return 1 return math.ceil(self.total / self.page_size) @property def has_previous_page(self): return self.page_number > 1 @property def has_next_page(self): return self.page_number < self.total_pages def truncated_pages_list(self, margin=4): num_pages = (2 * margin) + 1 if self.page_number <= margin + 1: # Current `self.page_number` is close to the beginning of `self.total_pages` min_page = 1 max_page = min(self.total_pages, num_pages) elif (self.total_pages - self.page_number) >= margin: min_page = max(self.page_number - margin, 1) max_page = min(self.page_number + margin, self.total_pages) else: # Current `self.page_number` is close to the end of `self.total_pages` max_page = min(self.total_pages, self.page_number + margin) min_page = max(max_page - (num_pages - 1), 1) therange = list(range(min_page, max_page + 1)) if max_page != self.total_pages: therange = therange + [None, self.total_pages] if min_page != 1: therange = [1, None] + therange return therange def page_url(self, page_number): if page_number < 1 or page_number > self.total_pages: return None qs = dict(request.args) qs.update({"page_size": self.page_size, "page_number": page_number}) qs = "&".join(f"{k}={v}" for k, v in qs.items()) return f"{request.script_root}{request.path}?{qs}" def __repr__(self): return f"<PagedResult items=[{len(self.items)} items] page={self.page_number}>" def __eq__(self, other): if not isinstance(other, self.__class__): raise ValueError("Unsupported operation") return all( [ getattr(self, attr) == getattr(other, attr) for attr in ["items", "total", "page_size", "page_number"] ] ) def paginated_find(ipa, representation, *args, **kwargs): kwargs.setdefault("o_sizelimit", 0) pkey_name = representation.get_ipa_pkey() object_name = representation.ipa_object find_method = getattr(ipa, f"{object_name}_find") # Get parameters from the query string try: page_number = int(request.args.get('page_number')) except (TypeError, ValueError): page_number = 1 try: page_size = int(request.args.get('page_size')) except (TypeError, ValueError): page_size = current_app.config["PAGE_SIZE"] # If we don't want pagination, take a shortcut if page_size == 0: results = find_method(*args, **kwargs, all=True)["result"] return PagedResult( items=[representation(result) for result in results], page_size=page_size, page_number=page_number, ) # Get all primary keys regardless of paging pkeys = find_method(pkey_only=True, *args, **kwargs)["result"] total = len(pkeys) # Find out which items we need for this page first = (page_number - 1) * page_size last = first + page_size pkeys_page = [item[pkey_name][0] for item in pkeys[first:last]] if pkeys_page: # Batch-request the items in the page batch_methods = [ { "method": f"{object_name}_show", "params": [args, {pkey_name: pkey, 'all': True}], } for pkey in pkeys_page ] items = [ representation(result['result']) for result in ipa.batch(a_methods=batch_methods)['results'] ] else: items = [] return PagedResult( items=items, page_size=page_size, page_number=page_number, total=total, )
34.421488
88
0.605282
a032e0a5d6e9032197568f8677130eb46e931649
17,180
py
Python
cinder/volume/drivers/hpe/hpe_3par_fc.py
SaumyaRackspace/cinder
08cfa44d353f84019cab529ca6f13362ba2808ea
[ "Apache-2.0" ]
null
null
null
cinder/volume/drivers/hpe/hpe_3par_fc.py
SaumyaRackspace/cinder
08cfa44d353f84019cab529ca6f13362ba2808ea
[ "Apache-2.0" ]
null
null
null
cinder/volume/drivers/hpe/hpe_3par_fc.py
SaumyaRackspace/cinder
08cfa44d353f84019cab529ca6f13362ba2808ea
[ "Apache-2.0" ]
null
null
null
# (c) Copyright 2013-2015 Hewlett Packard Enterprise Development LP # All Rights Reserved. # # Copyright 2012 OpenStack Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # """ Volume driver for HPE 3PAR Storage array. This driver requires 3.1.3 or later firmware on the 3PAR array, using the 4.x version of the hpe3parclient. You will need to install the python hpe3parclient. sudo pip install --upgrade "hpe3parclient>=4.0" Set the following in the cinder.conf file to enable the 3PAR Fibre Channel Driver along with the required flags: volume_driver=cinder.volume.drivers.hpe.hpe_3par_fc.HPE3PARFCDriver """ try: from hpe3parclient import exceptions as hpeexceptions except ImportError: hpeexceptions = None from oslo_log import log as logging from oslo_utils.excutils import save_and_reraise_exception from cinder import interface from cinder import utils from cinder.volume.drivers.hpe import hpe_3par_base as hpebasedriver from cinder.zonemanager import utils as fczm_utils LOG = logging.getLogger(__name__) # EXISTENT_PATH error code returned from hpe3parclient EXISTENT_PATH = 73 @interface.volumedriver class HPE3PARFCDriver(hpebasedriver.HPE3PARDriverBase): """OpenStack Fibre Channel driver to enable 3PAR storage array. Version history: .. code-block:: none 1.0 - Initial driver 1.1 - QoS, extend volume, multiple iscsi ports, remove domain, session changes, faster clone, requires 3.1.2 MU2 firmware, copy volume <--> Image. 1.2.0 - Updated the use of the hp3parclient to 2.0.0 and refactored the drivers to use the new APIs. 1.2.1 - Synchronized extend_volume method. 1.2.2 - Added try/finally around client login/logout. 1.2.3 - Added ability to add WWNs to host. 1.2.4 - Added metadata during attach/detach bug #1258033. 1.3.0 - Removed all SSH code. We rely on the hp3parclient now. 2.0.0 - Update hp3parclient API uses 3.0.x 2.0.2 - Add back-end assisted volume migrate 2.0.3 - Added initiator-target map for FC Zone Manager 2.0.4 - Added support for managing/unmanaging of volumes 2.0.5 - Only remove FC Zone on last volume detach 2.0.6 - Added support for volume retype 2.0.7 - Only one FC port is used when a single FC path is present. bug #1360001 2.0.8 - Fixing missing login/logout around attach/detach bug #1367429 2.0.9 - Add support for pools with model update 2.0.10 - Migrate without losing type settings bug #1356608 2.0.11 - Removing locks bug #1381190 2.0.12 - Fix queryHost call to specify wwns bug #1398206 2.0.13 - Fix missing host name during attach bug #1398206 2.0.14 - Removed usage of host name cache #1398914 2.0.15 - Added support for updated detach_volume attachment. 2.0.16 - Added encrypted property to initialize_connection #1439917 2.0.17 - Improved VLUN creation and deletion logic. #1469816 2.0.18 - Changed initialize_connection to use getHostVLUNs. #1475064 2.0.19 - Adds consistency group support 2.0.20 - Update driver to use ABC metaclasses 2.0.21 - Added update_migrated_volume. bug # 1492023 3.0.0 - Rebranded HP to HPE. 3.0.1 - Remove db access for consistency groups 3.0.2 - Adds v2 managed replication support 3.0.3 - Adds v2 unmanaged replication support 3.0.4 - Adding manage/unmanage snapshot support 3.0.5 - Optimize array ID retrieval 3.0.6 - Update replication to version 2.1 3.0.7 - Remove metadata that tracks the instance ID. bug #1572665 3.0.8 - NSP feature, creating FC Vlun as match set instead of host sees. bug #1577993 3.0.9 - Handling HTTP conflict 409, host WWN/iSCSI name already used by another host, while creating 3PAR FC Host. bug #1597454 3.0.10 - Added Entry point tracing 3.0.11 - Handle manage and unmanage hosts present. bug #1648067 3.0.12 - Adds consistency group capability in generic volume groups. 4.0.0 - Adds base class. 4.0.1 - Added check to remove FC zones. bug #1730720 4.0.2 - Create one vlun in single path configuration. bug #1727176 4.0.3 - Create FC vlun as host sees. bug #1734505 4.0.4 - Handle force detach case. bug #1686745 """ VERSION = "4.0.4" # The name of the CI wiki page. CI_WIKI_NAME = "HPE_Storage_CI" def __init__(self, *args, **kwargs): super(HPE3PARFCDriver, self).__init__(*args, **kwargs) self.lookup_service = fczm_utils.create_lookup_service() self.protocol = 'FC' @utils.trace @fczm_utils.add_fc_zone def initialize_connection(self, volume, connector): """Assigns the volume to a server. Assign any created volume to a compute node/host so that it can be used from that host. The driver returns a driver_volume_type of 'fibre_channel'. The target_wwn can be a single entry or a list of wwns that correspond to the list of remote wwn(s) that will export the volume. Example return values: { 'driver_volume_type': 'fibre_channel' 'data': { 'encrypted': False, 'target_discovered': True, 'target_lun': 1, 'target_wwn': '1234567890123', } } or { 'driver_volume_type': 'fibre_channel' 'data': { 'encrypted': False, 'target_discovered': True, 'target_lun': 1, 'target_wwn': ['1234567890123', '0987654321321'], } } Steps to export a volume on 3PAR * Create a host on the 3par with the target wwn * Create a VLUN for that HOST with the volume we want to export. """ common = self._login() try: # we have to make sure we have a host host = self._create_host(common, volume, connector) target_wwns, init_targ_map, numPaths = \ self._build_initiator_target_map(common, connector) if not connector.get('multipath'): target_wwns = target_wwns[:1] initiator = connector.get('wwpns')[0] init_targ_map[initiator] = init_targ_map[initiator][:1] # check if a VLUN already exists for this host existing_vlun = common.find_existing_vlun(volume, host) vlun = None if existing_vlun is None: # now that we have a host, create the VLUN if self.lookup_service is not None and numPaths == 1: nsp = None active_fc_port_list = common.get_active_fc_target_ports() for port in active_fc_port_list: if port['portWWN'].lower() == target_wwns[0].lower(): nsp = port['nsp'] break vlun = common.create_vlun(volume, host, nsp) else: vlun = common.create_vlun(volume, host) else: vlun = existing_vlun info = {'driver_volume_type': 'fibre_channel', 'data': {'target_lun': vlun['lun'], 'target_discovered': True, 'target_wwn': target_wwns, 'initiator_target_map': init_targ_map}} encryption_key_id = volume.get('encryption_key_id', None) info['data']['encrypted'] = encryption_key_id is not None return info finally: self._logout(common) @utils.trace @fczm_utils.remove_fc_zone def terminate_connection(self, volume, connector, **kwargs): """Driver entry point to unattach a volume from an instance.""" common = self._login() try: is_force_detach = connector is None if is_force_detach: common.terminate_connection(volume, None, None) # TODO(sonivi): remove zones, if not required # for now, do not remove zones zone_remove = False else: hostname = common._safe_hostname(connector['host']) common.terminate_connection(volume, hostname, wwn=connector['wwpns']) zone_remove = True try: vluns = common.client.getHostVLUNs(hostname) except hpeexceptions.HTTPNotFound: # No more exports for this host. pass else: # Vlun exists, so check for wwpn entry. for wwpn in connector.get('wwpns'): for vlun in vluns: if (vlun.get('active') and vlun.get('remoteName') == wwpn.upper()): zone_remove = False break info = {'driver_volume_type': 'fibre_channel', 'data': {}} if zone_remove: LOG.info("Need to remove FC Zone, building initiator " "target map") target_wwns, init_targ_map, _numPaths = \ self._build_initiator_target_map(common, connector) info['data'] = {'target_wwn': target_wwns, 'initiator_target_map': init_targ_map} return info finally: self._logout(common) def _build_initiator_target_map(self, common, connector): """Build the target_wwns and the initiator target map.""" fc_ports = common.get_active_fc_target_ports() all_target_wwns = [] target_wwns = [] init_targ_map = {} numPaths = 0 for port in fc_ports: all_target_wwns.append(port['portWWN']) if self.lookup_service is not None: # use FC san lookup to determine which NSPs to use # for the new VLUN. dev_map = self.lookup_service.get_device_mapping_from_network( connector['wwpns'], all_target_wwns) for fabric_name in dev_map: fabric = dev_map[fabric_name] target_wwns += fabric['target_port_wwn_list'] for initiator in fabric['initiator_port_wwn_list']: if initiator not in init_targ_map: init_targ_map[initiator] = [] init_targ_map[initiator] += fabric['target_port_wwn_list'] init_targ_map[initiator] = list(set( init_targ_map[initiator])) for _target in init_targ_map[initiator]: numPaths += 1 target_wwns = list(set(target_wwns)) else: initiator_wwns = connector['wwpns'] target_wwns = all_target_wwns for initiator in initiator_wwns: init_targ_map[initiator] = target_wwns return target_wwns, init_targ_map, numPaths def _create_3par_fibrechan_host(self, common, hostname, wwns, domain, persona_id): """Create a 3PAR host. Create a 3PAR host, if there is already a host on the 3par using the same wwn but with a different hostname, return the hostname used by 3PAR. """ # first search for an existing host host_found = None hosts = common.client.queryHost(wwns=wwns) if hosts and hosts['members'] and 'name' in hosts['members'][0]: host_found = hosts['members'][0]['name'] if host_found is not None: return host_found else: persona_id = int(persona_id) try: common.client.createHost(hostname, FCWwns=wwns, optional={'domain': domain, 'persona': persona_id}) except hpeexceptions.HTTPConflict as path_conflict: msg = "Create FC host caught HTTP conflict code: %s" LOG.exception(msg, path_conflict.get_code()) with save_and_reraise_exception(reraise=False) as ctxt: if path_conflict.get_code() is EXISTENT_PATH: # Handle exception : EXISTENT_PATH - host WWN/iSCSI # name already used by another host hosts = common.client.queryHost(wwns=wwns) if hosts and hosts['members'] and ( 'name' in hosts['members'][0]): hostname = hosts['members'][0]['name'] else: # re rasise last caught exception ctxt.reraise = True else: # re rasise last caught exception # for other HTTP conflict ctxt.reraise = True return hostname def _modify_3par_fibrechan_host(self, common, hostname, wwn): mod_request = {'pathOperation': common.client.HOST_EDIT_ADD, 'FCWWNs': wwn} try: common.client.modifyHost(hostname, mod_request) except hpeexceptions.HTTPConflict as path_conflict: msg = ("Modify FC Host %(hostname)s caught " "HTTP conflict code: %(code)s") LOG.exception(msg, {'hostname': hostname, 'code': path_conflict.get_code()}) def _create_host(self, common, volume, connector): """Creates or modifies existing 3PAR host.""" host = None hostname = common._safe_hostname(connector['host']) cpg = common.get_cpg(volume, allowSnap=True) domain = common.get_domain(cpg) if not connector.get('multipath'): connector['wwpns'] = connector['wwpns'][:1] try: host = common._get_3par_host(hostname) # Check whether host with wwn of initiator present on 3par hosts = common.client.queryHost(wwns=connector['wwpns']) host, hostname = common._get_prioritized_host_on_3par(host, hosts, hostname) except hpeexceptions.HTTPNotFound: # get persona from the volume type extra specs persona_id = common.get_persona_type(volume) # host doesn't exist, we have to create it hostname = self._create_3par_fibrechan_host(common, hostname, connector['wwpns'], domain, persona_id) host = common._get_3par_host(hostname) return host else: return self._add_new_wwn_to_host(common, host, connector['wwpns']) def _add_new_wwn_to_host(self, common, host, wwns): """Add wwns to a host if one or more don't exist. Identify if argument wwns contains any world wide names not configured in the 3PAR host path. If any are found, add them to the 3PAR host. """ # get the currently configured wwns # from the host's FC paths host_wwns = [] if 'FCPaths' in host: for path in host['FCPaths']: wwn = path.get('wwn', None) if wwn is not None: host_wwns.append(wwn.lower()) # lower case all wwns in the compare list compare_wwns = [x.lower() for x in wwns] # calculate wwns in compare list, but not in host_wwns list new_wwns = list(set(compare_wwns).difference(host_wwns)) # if any wwns found that were not in host list, # add them to the host if (len(new_wwns) > 0): self._modify_3par_fibrechan_host(common, host['name'], new_wwns) host = common._get_3par_host(host['name']) return host
42.107843
78
0.569208
fbf0238a8d6e19a84443172a103db28069dfa8e8
3,388
py
Python
test-framework/test-suites/integration/tests/wizard/test_boss_config_snack.py
anooprajendra/stacki
5e3f51c928ff5367a7441f07bf28f0121e7abdff
[ "BSD-3-Clause" ]
123
2015-05-12T23:36:45.000Z
2017-07-05T23:26:57.000Z
test-framework/test-suites/integration/tests/wizard/test_boss_config_snack.py
anooprajendra/stacki
5e3f51c928ff5367a7441f07bf28f0121e7abdff
[ "BSD-3-Clause" ]
177
2015-06-05T19:17:47.000Z
2017-07-07T17:57:24.000Z
test-framework/test-suites/integration/tests/wizard/test_boss_config_snack.py
anooprajendra/stacki
5e3f51c928ff5367a7441f07bf28f0121e7abdff
[ "BSD-3-Clause" ]
32
2015-06-07T02:25:03.000Z
2017-06-23T07:35:35.000Z
import glob import os import re import subprocess import time import xml.etree.ElementTree as ET import pexpect import pytest class TestBossConfigSnack: DOWN_KEY = "\033[B" @pytest.fixture def mount_cdrom(self): # StackiOS test pipeline doesn't have a stacki ISO, so we skip the test if not glob.glob("/export/isos/stacki-*.iso"): pytest.skip("No stacki ISO available") subprocess.run("mount /export/isos/stacki-*.iso /mnt/cdrom", shell=True, check=True) yield subprocess.run("umount /mnt/cdrom", shell=True, check=True) @pytest.fixture def no_site_attrs(self): if os.path.exists("/tmp/site.attrs"): os.rename("/tmp/site.attrs", "/tmp/site.attrs.bak") yield if os.path.exists("/tmp/site.attrs.bak"): os.rename("/tmp/site.attrs.bak", "/tmp/site.attrs") @pytest.fixture def no_rolls_xml(self): if os.path.exists("/tmp/rolls.xml"): os.rename("/tmp/rolls.xml", "/tmp/rolls.xml.bak") yield if os.path.exists("/tmp/rolls.xml.bak"): os.rename("/tmp/rolls.xml.bak", "/tmp/rolls.xml") def test_minimal(self, host, host_os, mount_cdrom, no_site_attrs, no_rolls_xml, test_file): # Launch the wizard and walk through it env = os.environ.copy() env["TERM"] = "linux" wizard = pexpect.spawn( "/opt/stack/bin/boss_config_snack.py --no-partition --no-net-reconfig", env=env ) # Set the timezone to Denver wizard.expect("Cluster Timezone") wizard.send(self.DOWN_KEY+"\t\r") # Fill out the network info wizard.expect("Network") wizard.send("test.example.com\t") wizard.send(self.DOWN_KEY+"\t") wizard.send("192.0.2.2\t") wizard.send("255.255.255.0\t") wizard.send("192.0.2.1\t") wizard.send("1.1.1.1\t\r") # Fill out the password wizard.expect("Password:") wizard.send("test\t") wizard.send("test\t\r") # Select the default pallet wizard.expect("Pallets to Install") wizard.send("\t\r") # Select Finish wizard.expect("Summary") wizard.send("\t\r") # Wait for the wizard to finish wizard.expect(pexpect.EOF, timeout=2) # Read the site.attrs created with open("/tmp/site.attrs") as f: site_attrs_generated = f.read() # Make sure the mac address is a valid format, then remove it site_attrs_generated, cnt = re.subn( r"Kickstart_PrivateEthernet:[0-9a-fA-F:]{17}", "Kickstart_PrivateEthernet:", site_attrs_generated ) assert cnt == 1 # Make sure the password is a valid format, then remove it site_attrs_generated, cnt = re.subn( r"Kickstart_PrivateRootPassword:\$6\$[a-zA-Z0-9./]+\$[a-zA-Z0-9./]+", "Kickstart_PrivateRootPassword:", site_attrs_generated ) assert cnt == 1 # Get the expected site.attrs with open(test_file(f"wizard/boss_config_snack_minimal_site.attrs")) as f: site_attrs_expected = f.read() assert site_attrs_generated == site_attrs_expected # Read the rolls.xml created correctly tree = ET.parse("/tmp/rolls.xml") root = tree.getroot() assert len(root) == 1 roll = root[0] assert roll.text == None assert set(roll.attrib.keys()) == {'arch', 'release', 'diskid', 'name', 'url', 'version'} assert roll.attrib['arch'] == "x86_64" assert roll.attrib['diskid'] == "" assert roll.attrib['name'] == "stacki" assert roll.attrib['url'] == "http://127.0.0.1/mnt/cdrom/" # punt on actually checking release and version assert roll.attrib['release'] != "" assert roll.attrib['version'] != ""
27.104
92
0.684475
b95539ace767287c50f2c1b3c35d20cb9fd4b3e8
8,791
py
Python
bash_kernel/kernel.py
amn41/bash_plus_kernel
185d970696a99f1d593d1cc0408c2bd724beb872
[ "BSD-3-Clause" ]
null
null
null
bash_kernel/kernel.py
amn41/bash_plus_kernel
185d970696a99f1d593d1cc0408c2bd724beb872
[ "BSD-3-Clause" ]
null
null
null
bash_kernel/kernel.py
amn41/bash_plus_kernel
185d970696a99f1d593d1cc0408c2bd724beb872
[ "BSD-3-Clause" ]
null
null
null
from ipykernel.kernelbase import Kernel from pexpect import replwrap, EOF import pexpect from subprocess import check_output import os.path import re import signal __version__ = '0.7.1' version_pat = re.compile(r'version (\d+(\.\d+)+)') from .images import ( extract_image_filenames, display_data_for_image, image_setup_cmd ) from .widget import ( should_display_button, display_data_for_button ) class IREPLWrapper(replwrap.REPLWrapper): """A subclass of REPLWrapper that gives incremental output specifically for bash_kernel. The parameters are the same as for REPLWrapper, except for one extra parameter: :param line_output_callback: a callback method to receive each batch of incremental output. It takes one string parameter. """ def __init__(self, cmd_or_spawn, orig_prompt, prompt_change, extra_init_cmd=None, line_output_callback=None): self.line_output_callback = line_output_callback replwrap.REPLWrapper.__init__(self, cmd_or_spawn, orig_prompt, prompt_change, extra_init_cmd=extra_init_cmd) def _expect_prompt(self, timeout=-1): if timeout == None: # "None" means we are executing code from a Jupyter cell by way of the run_command # in the do_execute() code below, so do incremental output. while True: pos = self.child.expect_exact([self.prompt, self.continuation_prompt, u'\r\n'], timeout=None) if pos == 2: # End of line received self.line_output_callback(self.child.before + '\n') else: if len(self.child.before) != 0: # prompt received, but partial line precedes it self.line_output_callback(self.child.before) break else: # Otherwise, use existing non-incremental code pos = replwrap.REPLWrapper._expect_prompt(self, timeout=timeout) # Prompt received, so return normally return pos class BashKernel(Kernel): implementation = 'bash_kernel' implementation_version = __version__ @property def language_version(self): m = version_pat.search(self.banner) return m.group(1) _banner = None @property def banner(self): if self._banner is None: self._banner = check_output(['bash', '--version']).decode('utf-8') return self._banner language_info = {'name': 'bash', 'codemirror_mode': 'shell', 'mimetype': 'text/x-sh', 'file_extension': '.sh'} def __init__(self, **kwargs): Kernel.__init__(self, **kwargs) self._start_bash() def _start_bash(self): # Signal handlers are inherited by forked processes, and we can't easily # reset it from the subprocess. Since kernelapp ignores SIGINT except in # message handlers, we need to temporarily reset the SIGINT handler here # so that bash and its children are interruptible. sig = signal.signal(signal.SIGINT, signal.SIG_DFL) try: # Note: the next few lines mirror functionality in the # bash() function of pexpect/replwrap.py. Look at the # source code there for comments and context for # understanding the code here. bashrc = os.path.join(os.path.dirname(pexpect.__file__), 'bashrc.sh') child = pexpect.spawn("bash", ['--rcfile', bashrc], echo=False, encoding='utf-8', codec_errors='replace') ps1 = replwrap.PEXPECT_PROMPT[:5] + u'\[\]' + replwrap.PEXPECT_PROMPT[5:] ps2 = replwrap.PEXPECT_CONTINUATION_PROMPT[:5] + u'\[\]' + replwrap.PEXPECT_CONTINUATION_PROMPT[5:] prompt_change = u"PS1='{0}' PS2='{1}' PROMPT_COMMAND=''".format(ps1, ps2) # Using IREPLWrapper to get incremental output self.bashwrapper = IREPLWrapper(child, u'\$', prompt_change, extra_init_cmd="export PAGER=cat", line_output_callback=self.process_output) finally: signal.signal(signal.SIGINT, sig) # Register Bash function to write image data to temporary file self.bashwrapper.run_command(image_setup_cmd) def process_output(self, output): if not self.silent: image_filenames, output = extract_image_filenames(output) # Send standard output stream_content = {'name': 'stdout', 'text': output} self.send_response(self.iopub_socket, 'stream', stream_content) # send html if should_display_button(output): try: url = output.split("button")[1].strip() data = display_data_for_button(url) self.send_response(self.iopub_socket, 'display_data', data) except ValueError as e: message = {'name': 'stdout', 'text': str(e)} # Send images, if any for filename in image_filenames: try: data = display_data_for_image(filename) except ValueError as e: message = {'name': 'stdout', 'text': str(e)} self.send_response(self.iopub_socket, 'stream', message) else: self.send_response(self.iopub_socket, 'display_data', data) def do_execute(self, code, silent, store_history=True, user_expressions=None, allow_stdin=False): self.silent = silent if not code.strip(): return {'status': 'ok', 'execution_count': self.execution_count, 'payload': [], 'user_expressions': {}} interrupted = False try: # Note: timeout=None tells IREPLWrapper to do incremental # output. Also note that the return value from # run_command is not needed, because the output was # already sent by IREPLWrapper. self.bashwrapper.run_command(code.rstrip(), timeout=None) except KeyboardInterrupt: self.bashwrapper.child.sendintr() interrupted = True self.bashwrapper._expect_prompt() output = self.bashwrapper.child.before self.process_output(output) except EOF: output = self.bashwrapper.child.before + 'Restarting Bash' self._start_bash() self.process_output(output) if interrupted: return {'status': 'abort', 'execution_count': self.execution_count} try: exitcode = int(self.bashwrapper.run_command('echo $?').rstrip()) except Exception: exitcode = 1 if exitcode: error_content = {'execution_count': self.execution_count, 'ename': '', 'evalue': str(exitcode), 'traceback': []} self.send_response(self.iopub_socket, 'error', error_content) error_content['status'] = 'error' return error_content else: return {'status': 'ok', 'execution_count': self.execution_count, 'payload': [], 'user_expressions': {}} def do_complete(self, code, cursor_pos): code = code[:cursor_pos] default = {'matches': [], 'cursor_start': 0, 'cursor_end': cursor_pos, 'metadata': dict(), 'status': 'ok'} if not code or code[-1] == ' ': return default tokens = code.replace(';', ' ').split() if not tokens: return default matches = [] token = tokens[-1] start = cursor_pos - len(token) if token[0] == '$': # complete variables cmd = 'compgen -A arrayvar -A export -A variable %s' % token[1:] # strip leading $ output = self.bashwrapper.run_command(cmd).rstrip() completions = set(output.split()) # append matches including leading $ matches.extend(['$'+c for c in completions]) else: # complete functions and builtins cmd = 'compgen -cdfa %s' % token output = self.bashwrapper.run_command(cmd).rstrip() matches.extend(output.split()) if not matches: return default matches = [m for m in matches if m.startswith(token)] return {'matches': sorted(matches), 'cursor_start': start, 'cursor_end': cursor_pos, 'metadata': dict(), 'status': 'ok'}
39.245536
111
0.580935
b633e490197b4180c8ecbe8d9194a02878e19dd7
988,786
py
Python
src/output/solLexer.py
ZhouBoXiao/SolidityObfuscator
5a1e374fed2718a5e749e99ac7740b714636aa51
[ "Apache-2.0" ]
2
2020-04-25T08:03:26.000Z
2020-09-09T11:16:06.000Z
src/output/solLexer.py
ZhouBoXiao/SolidityObfuscator
5a1e374fed2718a5e749e99ac7740b714636aa51
[ "Apache-2.0" ]
1
2020-10-30T07:42:55.000Z
2020-10-30T09:40:31.000Z
src/output/solLexer.py
ZhouBoXiao/SolidityObfuscator
5a1e374fed2718a5e749e99ac7740b714636aa51
[ "Apache-2.0" ]
1
2020-10-30T02:57:56.000Z
2020-10-30T02:57:56.000Z
# $ANTLR 3.1.1 D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g 2019-04-10 21:57:13 import sys from antlr3 import * from antlr3.compat import set, frozenset # for convenience in actions HIDDEN = BaseRecognizer.HIDDEN # token types T__144=144 Delete=61 T__143=143 Each=12 T__146=146 T__145=145 Or=39 String=21 TTYPEOF=107 Throw=33 InternalKeyword=86 EQUSING=98 BAnd=47 HexDigit=127 VarDeclaration=17 HexIntegerLiteral=129 Expr=18 TTHIS=108 T__166=166 T__165=165 T__168=168 UnicodeEscapeSequence=123 T__167=167 T__162=162 NumericLiteral=109 T__161=161 T__164=164 DecimalDigit=82 T__163=163 CaseClause=27 T__160=160 COMPSIGNOIN=99 DecimalLiteral=128 PLUSMINUS=102 SHIFTSIG=101 T__159=159 T__158=158 BreakKeyword=111 FinallyClause=63 T__155=155 T__154=154 PropertyName=38 T__157=157 T__156=156 T__151=151 T__150=150 T__153=153 T__152=152 VersionLiteral=81 TIN=100 PropertySet=72 Regexchar=8 Yield=67 T__148=148 T__147=147 T__149=149 TFALSE=116 ListVarDeclaration=19 Regexpid=9 Typeof=65 Label=37 Index=44 LineComment=141 Identifier=80 This=5 List=23 Program=16 RegularExpressionFirstChar=135 BXor=48 For=30 ContinueKeyword=112 SingleEscapeCharacter=124 RBRACK=76 UnicodeLetter=133 T__206=206 MULSIG=103 T__203=203 T__202=202 T__205=205 T__204=204 CaseBlock=35 VariableDeclarationList=57 DoWhile=28 Continue=31 With=36 AnonymousKeyword=110 Number=26 ExponentPart=130 NaN=54 EOF=-1 Return=25 ObjectLiteral=66 Ternary=43 Ufixed=96 EscapeSequence=120 ExternalKeyword=84 Integer=22 RegEx=6 ExpressionStatement=56 Statements=20 SingleStringCharacter=119 EscapeCharacter=126 Address=74 Var=11 NonEscapeCharacter=125 Break=29 EmptyStatement=55 Assignment=24 MemberExpr=49 Bool=75 TNULL=114 FunctionExpr=60 TTRUE=115 ViewKeyword=90 Listarguments=10 CatchClause=62 Lfalse=53 TVOID=106 Suffix=50 Switch=32 StringLiteral=83 Byte=94 CharacterEscapeSequence=121 If=7 T__201=201 T__200=200 PrivateKeyword=87 IdentifierPart=132 RSBRACK=78 Uint=93 ListCreation=70 Property=41 PublicKeyword=85 Fixed=95 Functioncall=4 VariableStatement=58 PropertyGet=71 TDELETE=105 DebuggerStatement=73 T__188=188 T__187=187 DefaultBlock=34 New=42 NEW=97 Null=51 T__189=189 T__184=184 RegularExpressionLiteral=117 T__183=183 T__186=186 T__185=185 T__180=180 LT=79 T__182=182 T__181=181 INCDEC=104 Try=45 Void=64 T__177=177 ForIn=69 T__176=176 T__179=179 T__178=178 T__173=173 T__172=172 T__175=175 T__174=174 T__171=171 RegularExpressionBody=134 T__170=170 RPAREN=77 HexEscapeSequence=122 UnaryExpr=59 PayableKeyword=91 And=40 PureKeyword=88 UnicodeConnectorPunctuation=138 T__169=169 Ltrue=52 UnicodeDigit=137 BOr=46 ConstantKeyword=89 Int=92 Function=14 IdentifierStart=131 T__199=199 T__198=198 Comment=140 IndexedKeyword=113 Ident=13 T__195=195 T__194=194 T__197=197 T__196=196 T__191=191 T__190=190 T__193=193 T__192=192 While=15 WhiteSpace=142 UnicodeCombiningMark=139 DoubleStringCharacter=118 RegularExpressionChar=136 Let=68 class solLexer(Lexer): grammarFileName = "D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g" antlr_version = version_str_to_tuple("3.1.1") antlr_version_str = "3.1.1" def __init__(self, input=None, state=None): if state is None: state = RecognizerSharedState() Lexer.__init__(self, input, state) self.dfa8 = self.DFA8( self, 8, eot = self.DFA8_eot, eof = self.DFA8_eof, min = self.DFA8_min, max = self.DFA8_max, accept = self.DFA8_accept, special = self.DFA8_special, transition = self.DFA8_transition ) self.dfa9 = self.DFA9( self, 9, eot = self.DFA9_eot, eof = self.DFA9_eof, min = self.DFA9_min, max = self.DFA9_max, accept = self.DFA9_accept, special = self.DFA9_special, transition = self.DFA9_transition ) self.dfa10 = self.DFA10( self, 10, eot = self.DFA10_eot, eof = self.DFA10_eof, min = self.DFA10_min, max = self.DFA10_max, accept = self.DFA10_accept, special = self.DFA10_special, transition = self.DFA10_transition ) self.dfa34 = self.DFA34( self, 34, eot = self.DFA34_eot, eof = self.DFA34_eof, min = self.DFA34_min, max = self.DFA34_max, accept = self.DFA34_accept, special = self.DFA34_special, transition = self.DFA34_transition ) self.dfa46 = self.DFA46( self, 46, eot = self.DFA46_eot, eof = self.DFA46_eof, min = self.DFA46_min, max = self.DFA46_max, accept = self.DFA46_accept, special = self.DFA46_special, transition = self.DFA46_transition ) last = None def areRegularExpressionsEnabled(self): ret = True if self.last == None: ret = True elif self.last.getType() == Identifier: ret = False elif self.last.getType() == NumericLiteral: ret = False elif self.last.getType() == TNULL: ret = False elif self.last.getType() == TTRUE: ret = False elif self.last.getType() == TFALSE: ret = False elif self.last.getType() == TTHIS: ret = False elif self.last.getType() == DecimalLiteral: ret = False elif self.last.getType() == HexIntegerLiteral: ret = False elif self.last.getType() == StringLiteral: ret = False elif self.last.getType() == RBRACK: ret = False elif self.last.getType() == RPAREN: ret = False elif self.last.getType() == RSBRACK: ret = False else: ret = True; return ret def nextToken(self): self.result = Lexer.nextToken(self); if self.result.getChannel() != HIDDEN: self.last = self.result; return self.result; # $ANTLR start "T__143" def mT__143(self, ): try: _type = T__143 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:54:8: ( 'pragma' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:54:10: 'pragma' pass self.match("pragma") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__143" # $ANTLR start "T__144" def mT__144(self, ): try: _type = T__144 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:55:8: ( ';' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:55:10: ';' pass self.match(59) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__144" # $ANTLR start "T__145" def mT__145(self, ): try: _type = T__145 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:56:8: ( '^' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:56:10: '^' pass self.match(94) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__145" # $ANTLR start "T__146" def mT__146(self, ): try: _type = T__146 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:57:8: ( '~' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:57:10: '~' pass self.match(126) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__146" # $ANTLR start "T__147" def mT__147(self, ): try: _type = T__147 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:58:8: ( '>=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:58:10: '>=' pass self.match(">=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__147" # $ANTLR start "T__148" def mT__148(self, ): try: _type = T__148 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:59:8: ( '>' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:59:10: '>' pass self.match(62) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__148" # $ANTLR start "T__149" def mT__149(self, ): try: _type = T__149 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:60:8: ( '<' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:60:10: '<' pass self.match(60) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__149" # $ANTLR start "T__150" def mT__150(self, ): try: _type = T__150 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:61:8: ( '<=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:61:10: '<=' pass self.match("<=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__150" # $ANTLR start "T__151" def mT__151(self, ): try: _type = T__151 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:62:8: ( '=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:62:10: '=' pass self.match(61) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__151" # $ANTLR start "T__152" def mT__152(self, ): try: _type = T__152 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:63:8: ( 'as' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:63:10: 'as' pass self.match("as") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__152" # $ANTLR start "T__153" def mT__153(self, ): try: _type = T__153 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:64:8: ( 'import' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:64:10: 'import' pass self.match("import") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__153" # $ANTLR start "T__154" def mT__154(self, ): try: _type = T__154 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:65:8: ( '*' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:65:10: '*' pass self.match(42) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__154" # $ANTLR start "T__155" def mT__155(self, ): try: _type = T__155 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:66:8: ( 'from' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:66:10: 'from' pass self.match("from") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__155" # $ANTLR start "T__156" def mT__156(self, ): try: _type = T__156 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:67:8: ( '{' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:67:10: '{' pass self.match(123) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__156" # $ANTLR start "T__157" def mT__157(self, ): try: _type = T__157 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:68:8: ( ',' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:68:10: ',' pass self.match(44) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__157" # $ANTLR start "T__158" def mT__158(self, ): try: _type = T__158 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:69:8: ( 'contract' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:69:10: 'contract' pass self.match("contract") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__158" # $ANTLR start "T__159" def mT__159(self, ): try: _type = T__159 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:70:8: ( '(' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:70:10: '(' pass self.match(40) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__159" # $ANTLR start "T__160" def mT__160(self, ): try: _type = T__160 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:71:8: ( '.' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:71:10: '.' pass self.match(46) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__160" # $ANTLR start "T__161" def mT__161(self, ): try: _type = T__161 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:72:8: ( 'function' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:72:10: 'function' pass self.match("function") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__161" # $ANTLR start "T__162" def mT__162(self, ): try: _type = T__162 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:73:8: ( 'returns' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:73:10: 'returns' pass self.match("returns") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__162" # $ANTLR start "T__163" def mT__163(self, ): try: _type = T__163 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:74:8: ( 'debugger' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:74:10: 'debugger' pass self.match("debugger") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__163" # $ANTLR start "T__164" def mT__164(self, ): try: _type = T__164 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:75:8: ( 'var' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:75:10: 'var' pass self.match("var") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__164" # $ANTLR start "T__165" def mT__165(self, ): try: _type = T__165 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:76:8: ( 'address' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:76:10: 'address' pass self.match("address") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__165" # $ANTLR start "T__166" def mT__166(self, ): try: _type = T__166 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:77:8: ( 'bool' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:77:10: 'bool' pass self.match("bool") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__166" # $ANTLR start "T__167" def mT__167(self, ): try: _type = T__167 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:78:8: ( 'string' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:78:10: 'string' pass self.match("string") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__167" # $ANTLR start "T__168" def mT__168(self, ): try: _type = T__168 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:79:8: ( 'byte' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:79:10: 'byte' pass self.match("byte") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__168" # $ANTLR start "T__169" def mT__169(self, ): try: _type = T__169 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:80:8: ( 'memory' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:80:10: 'memory' pass self.match("memory") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__169" # $ANTLR start "T__170" def mT__170(self, ): try: _type = T__170 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:81:8: ( 'storage' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:81:10: 'storage' pass self.match("storage") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__170" # $ANTLR start "T__171" def mT__171(self, ): try: _type = T__171 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:82:8: ( 'calldata' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:82:10: 'calldata' pass self.match("calldata") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__171" # $ANTLR start "T__172" def mT__172(self, ): try: _type = T__172 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:83:8: ( 'let' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:83:10: 'let' pass self.match("let") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__172" # $ANTLR start "T__173" def mT__173(self, ): try: _type = T__173 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:84:8: ( 'if' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:84:10: 'if' pass self.match("if") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__173" # $ANTLR start "T__174" def mT__174(self, ): try: _type = T__174 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:85:8: ( 'else' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:85:10: 'else' pass self.match("else") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__174" # $ANTLR start "T__175" def mT__175(self, ): try: _type = T__175 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:86:8: ( 'do' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:86:10: 'do' pass self.match("do") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__175" # $ANTLR start "T__176" def mT__176(self, ): try: _type = T__176 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:87:8: ( 'while' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:87:10: 'while' pass self.match("while") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__176" # $ANTLR start "T__177" def mT__177(self, ): try: _type = T__177 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:88:8: ( 'for' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:88:10: 'for' pass self.match("for") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__177" # $ANTLR start "T__178" def mT__178(self, ): try: _type = T__178 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:89:8: ( 'yield' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:89:10: 'yield' pass self.match("yield") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__178" # $ANTLR start "T__179" def mT__179(self, ): try: _type = T__179 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:90:8: ( 'return' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:90:10: 'return' pass self.match("return") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__179" # $ANTLR start "T__180" def mT__180(self, ): try: _type = T__180 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:91:8: ( 'with' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:91:10: 'with' pass self.match("with") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__180" # $ANTLR start "T__181" def mT__181(self, ): try: _type = T__181 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:92:8: ( ':' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:92:10: ':' pass self.match(58) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__181" # $ANTLR start "T__182" def mT__182(self, ): try: _type = T__182 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:93:8: ( 'switch' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:93:10: 'switch' pass self.match("switch") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__182" # $ANTLR start "T__183" def mT__183(self, ): try: _type = T__183 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:94:8: ( 'case' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:94:10: 'case' pass self.match("case") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__183" # $ANTLR start "T__184" def mT__184(self, ): try: _type = T__184 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:95:8: ( 'default' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:95:10: 'default' pass self.match("default") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__184" # $ANTLR start "T__185" def mT__185(self, ): try: _type = T__185 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:96:8: ( 'throw' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:96:10: 'throw' pass self.match("throw") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__185" # $ANTLR start "T__186" def mT__186(self, ): try: _type = T__186 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:97:8: ( 'try' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:97:10: 'try' pass self.match("try") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__186" # $ANTLR start "T__187" def mT__187(self, ): try: _type = T__187 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:98:8: ( 'catch' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:98:10: 'catch' pass self.match("catch") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__187" # $ANTLR start "T__188" def mT__188(self, ): try: _type = T__188 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:99:8: ( 'finally' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:99:10: 'finally' pass self.match("finally") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__188" # $ANTLR start "T__189" def mT__189(self, ): try: _type = T__189 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:100:8: ( '[' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:100:10: '[' pass self.match(91) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__189" # $ANTLR start "T__190" def mT__190(self, ): try: _type = T__190 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:101:8: ( '*=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:101:10: '*=' pass self.match("*=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__190" # $ANTLR start "T__191" def mT__191(self, ): try: _type = T__191 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:102:8: ( '/=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:102:10: '/=' pass self.match("/=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__191" # $ANTLR start "T__192" def mT__192(self, ): try: _type = T__192 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:103:8: ( '%=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:103:10: '%=' pass self.match("%=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__192" # $ANTLR start "T__193" def mT__193(self, ): try: _type = T__193 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:104:8: ( '+=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:104:10: '+=' pass self.match("+=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__193" # $ANTLR start "T__194" def mT__194(self, ): try: _type = T__194 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:105:8: ( '-=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:105:10: '-=' pass self.match("-=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__194" # $ANTLR start "T__195" def mT__195(self, ): try: _type = T__195 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:106:8: ( '<<=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:106:10: '<<=' pass self.match("<<=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__195" # $ANTLR start "T__196" def mT__196(self, ): try: _type = T__196 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:107:8: ( '>>=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:107:10: '>>=' pass self.match(">>=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__196" # $ANTLR start "T__197" def mT__197(self, ): try: _type = T__197 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:108:8: ( '>>>=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:108:10: '>>>=' pass self.match(">>>=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__197" # $ANTLR start "T__198" def mT__198(self, ): try: _type = T__198 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:109:8: ( '&=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:109:10: '&=' pass self.match("&=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__198" # $ANTLR start "T__199" def mT__199(self, ): try: _type = T__199 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:110:8: ( '^=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:110:10: '^=' pass self.match("^=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__199" # $ANTLR start "T__200" def mT__200(self, ): try: _type = T__200 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:111:8: ( '|=' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:111:10: '|=' pass self.match("|=") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__200" # $ANTLR start "T__201" def mT__201(self, ): try: _type = T__201 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:112:8: ( '?' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:112:10: '?' pass self.match(63) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__201" # $ANTLR start "T__202" def mT__202(self, ): try: _type = T__202 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:113:8: ( '||' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:113:10: '||' pass self.match("||") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__202" # $ANTLR start "T__203" def mT__203(self, ): try: _type = T__203 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:114:8: ( '&&' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:114:10: '&&' pass self.match("&&") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__203" # $ANTLR start "T__204" def mT__204(self, ): try: _type = T__204 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:115:8: ( '|' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:115:10: '|' pass self.match(124) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__204" # $ANTLR start "T__205" def mT__205(self, ): try: _type = T__205 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:116:8: ( '&' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:116:10: '&' pass self.match(38) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__205" # $ANTLR start "T__206" def mT__206(self, ): try: _type = T__206 _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:117:8: ( '!' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:117:10: '!' pass self.match(33) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "T__206" # $ANTLR start "RBRACK" def mRBRACK(self, ): try: _type = RBRACK _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:96:8: ( '}' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:96:10: '}' pass self.match(125) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "RBRACK" # $ANTLR start "RPAREN" def mRPAREN(self, ): try: _type = RPAREN _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:97:8: ( ')' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:97:10: ')' pass self.match(41) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "RPAREN" # $ANTLR start "RSBRACK" def mRSBRACK(self, ): try: _type = RSBRACK _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:98:9: ( ']' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:98:11: ']' pass self.match(93) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "RSBRACK" # $ANTLR start "VersionLiteral" def mVersionLiteral(self, ): try: _type = VersionLiteral _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:3: ( ( DecimalDigit )+ '.' ( DecimalDigit )+ '.' ( DecimalDigit )+ ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:5: ( DecimalDigit )+ '.' ( DecimalDigit )+ '.' ( DecimalDigit )+ pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:5: ( DecimalDigit )+ cnt1 = 0 while True: #loop1 alt1 = 2 LA1_0 = self.input.LA(1) if ((48 <= LA1_0 <= 57)) : alt1 = 1 if alt1 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:5: DecimalDigit pass self.mDecimalDigit() else: if cnt1 >= 1: break #loop1 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(1, self.input) raise eee cnt1 += 1 self.match(46) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:23: ( DecimalDigit )+ cnt2 = 0 while True: #loop2 alt2 = 2 LA2_0 = self.input.LA(1) if ((48 <= LA2_0 <= 57)) : alt2 = 1 if alt2 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:23: DecimalDigit pass self.mDecimalDigit() else: if cnt2 >= 1: break #loop2 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(2, self.input) raise eee cnt2 += 1 self.match(46) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:41: ( DecimalDigit )+ cnt3 = 0 while True: #loop3 alt3 = 2 LA3_0 = self.input.LA(1) if ((48 <= LA3_0 <= 57)) : alt3 = 1 if alt3 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:137:41: DecimalDigit pass self.mDecimalDigit() else: if cnt3 >= 1: break #loop3 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(3, self.input) raise eee cnt3 += 1 self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "VersionLiteral" # $ANTLR start "NEW" def mNEW(self, ): try: _type = NEW _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:426:5: ( 'new' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:426:7: 'new' pass self.match("new") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "NEW" # $ANTLR start "EQUSING" def mEQUSING(self, ): try: _type = EQUSING _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:604:8: ( ( '==' | '!=' | '===' | '!==' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:604:11: ( '==' | '!=' | '===' | '!==' ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:604:11: ( '==' | '!=' | '===' | '!==' ) alt4 = 4 LA4_0 = self.input.LA(1) if (LA4_0 == 61) : LA4_1 = self.input.LA(2) if (LA4_1 == 61) : LA4_3 = self.input.LA(3) if (LA4_3 == 61) : alt4 = 3 else: alt4 = 1 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 4, 1, self.input) raise nvae elif (LA4_0 == 33) : LA4_2 = self.input.LA(2) if (LA4_2 == 61) : LA4_4 = self.input.LA(3) if (LA4_4 == 61) : alt4 = 4 else: alt4 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 4, 2, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 4, 0, self.input) raise nvae if alt4 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:604:12: '==' pass self.match("==") elif alt4 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:604:19: '!=' pass self.match("!=") elif alt4 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:604:26: '===' pass self.match("===") elif alt4 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:604:34: '!==' pass self.match("!==") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "EQUSING" # $ANTLR start "COMPSIGNOIN" def mCOMPSIGNOIN(self, ): try: _type = COMPSIGNOIN _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:12: ( ( '<' | '>' | '<=' | '>=' | 'instanceof' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:14: ( '<' | '>' | '<=' | '>=' | 'instanceof' ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:14: ( '<' | '>' | '<=' | '>=' | 'instanceof' ) alt5 = 5 LA5 = self.input.LA(1) if LA5 == 60: LA5_1 = self.input.LA(2) if (LA5_1 == 61) : alt5 = 3 else: alt5 = 1 elif LA5 == 62: LA5_2 = self.input.LA(2) if (LA5_2 == 61) : alt5 = 4 else: alt5 = 2 elif LA5 == 105: alt5 = 5 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 5, 0, self.input) raise nvae if alt5 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:15: '<' pass self.match(60) elif alt5 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:21: '>' pass self.match(62) elif alt5 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:27: '<=' pass self.match("<=") elif alt5 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:34: '>=' pass self.match(">=") elif alt5 == 5: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:625:41: 'instanceof' pass self.match("instanceof") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "COMPSIGNOIN" # $ANTLR start "TIN" def mTIN(self, ): try: _type = TIN _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:627:5: ( 'in' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:627:7: 'in' pass self.match("in") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TIN" # $ANTLR start "SHIFTSIG" def mSHIFTSIG(self, ): try: _type = SHIFTSIG _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:648:9: ( ( '<<' | '>>' | '>>>' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:648:11: ( '<<' | '>>' | '>>>' ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:648:11: ( '<<' | '>>' | '>>>' ) alt6 = 3 LA6_0 = self.input.LA(1) if (LA6_0 == 60) : alt6 = 1 elif (LA6_0 == 62) : LA6_2 = self.input.LA(2) if (LA6_2 == 62) : LA6_3 = self.input.LA(3) if (LA6_3 == 62) : alt6 = 3 else: alt6 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 6, 2, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 6, 0, self.input) raise nvae if alt6 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:648:12: '<<' pass self.match("<<") elif alt6 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:648:19: '>>' pass self.match(">>") elif alt6 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:648:26: '>>>' pass self.match(">>>") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "SHIFTSIG" # $ANTLR start "MULSIG" def mMULSIG(self, ): try: _type = MULSIG _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:666:7: ( ( '*' | '/' | '%' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:666:8: ( '*' | '/' | '%' ) pass if self.input.LA(1) == 37 or self.input.LA(1) == 42 or self.input.LA(1) == 47: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "MULSIG" # $ANTLR start "PLUSMINUS" def mPLUSMINUS(self, ): try: _type = PLUSMINUS _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:675:10: ( ( '+' | '-' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:675:12: ( '+' | '-' ) pass if self.input.LA(1) == 43 or self.input.LA(1) == 45: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "PLUSMINUS" # $ANTLR start "INCDEC" def mINCDEC(self, ): try: _type = INCDEC _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:677:7: ( ( '++' | '--' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:677:10: ( '++' | '--' ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:677:10: ( '++' | '--' ) alt7 = 2 LA7_0 = self.input.LA(1) if (LA7_0 == 43) : alt7 = 1 elif (LA7_0 == 45) : alt7 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 7, 0, self.input) raise nvae if alt7 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:677:11: '++' pass self.match("++") elif alt7 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:677:18: '--' pass self.match("--") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "INCDEC" # $ANTLR start "TDELETE" def mTDELETE(self, ): try: _type = TDELETE _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:680:9: ( 'delete' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:680:12: 'delete' pass self.match("delete") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TDELETE" # $ANTLR start "TVOID" def mTVOID(self, ): try: _type = TVOID _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:681:7: ( 'void' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:681:9: 'void' pass self.match("void") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TVOID" # $ANTLR start "TTYPEOF" def mTTYPEOF(self, ): try: _type = TTYPEOF _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:682:9: ( 'typeof' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:682:11: 'typeof' pass self.match("typeof") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TTYPEOF" # $ANTLR start "TTHIS" def mTTHIS(self, ): try: _type = TTHIS _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:703:7: ( 'this' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:703:9: 'this' pass self.match("this") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TTHIS" # $ANTLR start "Int" def mInt(self, ): try: _type = Int _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:3: ( 'int' | 'int8' | 'int16' | 'int24' | 'int32' | 'int40' | 'int48' | 'int56' | 'int64' | 'int72' | 'int80' | 'int88' | 'int96' | 'int104' | 'int112' | 'int120' | 'int128' | 'int136' | 'int144' | 'int152' | 'int160' | 'int168' | 'int176' | 'int184' | 'int192' | 'int200' | 'int208' | 'int216' | 'int224' | 'int232' | 'int240' | 'int248' | 'int256' ) alt8 = 33 alt8 = self.dfa8.predict(self.input) if alt8 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:5: 'int' pass self.match("int") elif alt8 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:13: 'int8' pass self.match("int8") elif alt8 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:22: 'int16' pass self.match("int16") elif alt8 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:32: 'int24' pass self.match("int24") elif alt8 == 5: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:42: 'int32' pass self.match("int32") elif alt8 == 6: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:52: 'int40' pass self.match("int40") elif alt8 == 7: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:62: 'int48' pass self.match("int48") elif alt8 == 8: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:72: 'int56' pass self.match("int56") elif alt8 == 9: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:82: 'int64' pass self.match("int64") elif alt8 == 10: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:92: 'int72' pass self.match("int72") elif alt8 == 11: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:102: 'int80' pass self.match("int80") elif alt8 == 12: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:112: 'int88' pass self.match("int88") elif alt8 == 13: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:122: 'int96' pass self.match("int96") elif alt8 == 14: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:132: 'int104' pass self.match("int104") elif alt8 == 15: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:143: 'int112' pass self.match("int112") elif alt8 == 16: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:154: 'int120' pass self.match("int120") elif alt8 == 17: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:165: 'int128' pass self.match("int128") elif alt8 == 18: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:176: 'int136' pass self.match("int136") elif alt8 == 19: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:187: 'int144' pass self.match("int144") elif alt8 == 20: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:198: 'int152' pass self.match("int152") elif alt8 == 21: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:209: 'int160' pass self.match("int160") elif alt8 == 22: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:220: 'int168' pass self.match("int168") elif alt8 == 23: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:231: 'int176' pass self.match("int176") elif alt8 == 24: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:242: 'int184' pass self.match("int184") elif alt8 == 25: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:253: 'int192' pass self.match("int192") elif alt8 == 26: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:264: 'int200' pass self.match("int200") elif alt8 == 27: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:275: 'int208' pass self.match("int208") elif alt8 == 28: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:286: 'int216' pass self.match("int216") elif alt8 == 29: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:297: 'int224' pass self.match("int224") elif alt8 == 30: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:308: 'int232' pass self.match("int232") elif alt8 == 31: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:319: 'int240' pass self.match("int240") elif alt8 == 32: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:330: 'int248' pass self.match("int248") elif alt8 == 33: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:752:341: 'int256' pass self.match("int256") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "Int" # $ANTLR start "Uint" def mUint(self, ): try: _type = Uint _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:3: ( 'uint' | 'uint8' | 'uint16' | 'uint24' | 'uint32' | 'uint40' | 'uint48' | 'uint56' | 'uint64' | 'uint72' | 'uint80' | 'uint88' | 'uint96' | 'uint104' | 'uint112' | 'uint120' | 'uint128' | 'uint136' | 'uint144' | 'uint152' | 'uint160' | 'uint168' | 'uint176' | 'uint184' | 'uint192' | 'uint200' | 'uint208' | 'uint216' | 'uint224' | 'uint232' | 'uint240' | 'uint248' | 'uint256' ) alt9 = 33 alt9 = self.dfa9.predict(self.input) if alt9 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:5: 'uint' pass self.match("uint") elif alt9 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:14: 'uint8' pass self.match("uint8") elif alt9 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:24: 'uint16' pass self.match("uint16") elif alt9 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:35: 'uint24' pass self.match("uint24") elif alt9 == 5: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:46: 'uint32' pass self.match("uint32") elif alt9 == 6: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:57: 'uint40' pass self.match("uint40") elif alt9 == 7: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:68: 'uint48' pass self.match("uint48") elif alt9 == 8: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:79: 'uint56' pass self.match("uint56") elif alt9 == 9: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:90: 'uint64' pass self.match("uint64") elif alt9 == 10: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:101: 'uint72' pass self.match("uint72") elif alt9 == 11: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:112: 'uint80' pass self.match("uint80") elif alt9 == 12: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:123: 'uint88' pass self.match("uint88") elif alt9 == 13: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:134: 'uint96' pass self.match("uint96") elif alt9 == 14: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:145: 'uint104' pass self.match("uint104") elif alt9 == 15: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:157: 'uint112' pass self.match("uint112") elif alt9 == 16: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:169: 'uint120' pass self.match("uint120") elif alt9 == 17: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:181: 'uint128' pass self.match("uint128") elif alt9 == 18: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:193: 'uint136' pass self.match("uint136") elif alt9 == 19: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:205: 'uint144' pass self.match("uint144") elif alt9 == 20: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:217: 'uint152' pass self.match("uint152") elif alt9 == 21: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:229: 'uint160' pass self.match("uint160") elif alt9 == 22: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:241: 'uint168' pass self.match("uint168") elif alt9 == 23: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:253: 'uint176' pass self.match("uint176") elif alt9 == 24: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:265: 'uint184' pass self.match("uint184") elif alt9 == 25: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:277: 'uint192' pass self.match("uint192") elif alt9 == 26: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:289: 'uint200' pass self.match("uint200") elif alt9 == 27: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:301: 'uint208' pass self.match("uint208") elif alt9 == 28: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:313: 'uint216' pass self.match("uint216") elif alt9 == 29: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:325: 'uint224' pass self.match("uint224") elif alt9 == 30: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:337: 'uint232' pass self.match("uint232") elif alt9 == 31: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:349: 'uint240' pass self.match("uint240") elif alt9 == 32: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:361: 'uint248' pass self.match("uint248") elif alt9 == 33: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:755:373: 'uint256' pass self.match("uint256") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "Uint" # $ANTLR start "Byte" def mByte(self, ): try: _type = Byte _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:3: ( 'bytes' | 'bytes1' | 'bytes2' | 'bytes3' | 'bytes4' | 'bytes5' | 'bytes6' | 'bytes7' | 'bytes8' | 'bytes9' | 'bytes10' | 'bytes11' | 'bytes12' | 'bytes13' | 'bytes14' | 'bytes15' | 'bytes16' | 'bytes17' | 'bytes18' | 'bytes19' | 'bytes20' | 'bytes21' | 'bytes22' | 'bytes23' | 'bytes24' | 'bytes25' | 'bytes26' | 'bytes27' | 'bytes28' | 'bytes29' | 'bytes30' | 'bytes31' | 'bytes32' ) alt10 = 33 alt10 = self.dfa10.predict(self.input) if alt10 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:5: 'bytes' pass self.match("bytes") elif alt10 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:15: 'bytes1' pass self.match("bytes1") elif alt10 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:26: 'bytes2' pass self.match("bytes2") elif alt10 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:37: 'bytes3' pass self.match("bytes3") elif alt10 == 5: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:48: 'bytes4' pass self.match("bytes4") elif alt10 == 6: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:59: 'bytes5' pass self.match("bytes5") elif alt10 == 7: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:70: 'bytes6' pass self.match("bytes6") elif alt10 == 8: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:81: 'bytes7' pass self.match("bytes7") elif alt10 == 9: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:92: 'bytes8' pass self.match("bytes8") elif alt10 == 10: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:103: 'bytes9' pass self.match("bytes9") elif alt10 == 11: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:114: 'bytes10' pass self.match("bytes10") elif alt10 == 12: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:126: 'bytes11' pass self.match("bytes11") elif alt10 == 13: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:138: 'bytes12' pass self.match("bytes12") elif alt10 == 14: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:150: 'bytes13' pass self.match("bytes13") elif alt10 == 15: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:162: 'bytes14' pass self.match("bytes14") elif alt10 == 16: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:174: 'bytes15' pass self.match("bytes15") elif alt10 == 17: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:186: 'bytes16' pass self.match("bytes16") elif alt10 == 18: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:198: 'bytes17' pass self.match("bytes17") elif alt10 == 19: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:210: 'bytes18' pass self.match("bytes18") elif alt10 == 20: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:222: 'bytes19' pass self.match("bytes19") elif alt10 == 21: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:234: 'bytes20' pass self.match("bytes20") elif alt10 == 22: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:246: 'bytes21' pass self.match("bytes21") elif alt10 == 23: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:258: 'bytes22' pass self.match("bytes22") elif alt10 == 24: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:270: 'bytes23' pass self.match("bytes23") elif alt10 == 25: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:282: 'bytes24' pass self.match("bytes24") elif alt10 == 26: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:294: 'bytes25' pass self.match("bytes25") elif alt10 == 27: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:306: 'bytes26' pass self.match("bytes26") elif alt10 == 28: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:318: 'bytes27' pass self.match("bytes27") elif alt10 == 29: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:330: 'bytes28' pass self.match("bytes28") elif alt10 == 30: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:342: 'bytes29' pass self.match("bytes29") elif alt10 == 31: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:354: 'bytes30' pass self.match("bytes30") elif alt10 == 32: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:366: 'bytes31' pass self.match("bytes31") elif alt10 == 33: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:758:378: 'bytes32' pass self.match("bytes32") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "Byte" # $ANTLR start "Fixed" def mFixed(self, ): try: _type = Fixed _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:3: ( 'fixed' | ( 'fixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ ) ) alt13 = 2 LA13_0 = self.input.LA(1) if (LA13_0 == 102) : LA13_1 = self.input.LA(2) if (LA13_1 == 105) : LA13_2 = self.input.LA(3) if (LA13_2 == 120) : LA13_3 = self.input.LA(4) if (LA13_3 == 101) : LA13_4 = self.input.LA(5) if (LA13_4 == 100) : LA13_5 = self.input.LA(6) if ((48 <= LA13_5 <= 57)) : alt13 = 2 else: alt13 = 1 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 13, 4, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 13, 3, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 13, 2, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 13, 1, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 13, 0, self.input) raise nvae if alt13 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:5: 'fixed' pass self.match("fixed") elif alt13 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:15: ( 'fixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:15: ( 'fixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:17: 'fixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ pass self.match("fixed") # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:25: ( DecimalDigit )+ cnt11 = 0 while True: #loop11 alt11 = 2 LA11_0 = self.input.LA(1) if ((48 <= LA11_0 <= 57)) : alt11 = 1 if alt11 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:25: DecimalDigit pass self.mDecimalDigit() else: if cnt11 >= 1: break #loop11 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(11, self.input) raise eee cnt11 += 1 self.match(120) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:43: ( DecimalDigit )+ cnt12 = 0 while True: #loop12 alt12 = 2 LA12_0 = self.input.LA(1) if ((48 <= LA12_0 <= 57)) : alt12 = 1 if alt12 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:761:43: DecimalDigit pass self.mDecimalDigit() else: if cnt12 >= 1: break #loop12 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(12, self.input) raise eee cnt12 += 1 self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "Fixed" # $ANTLR start "Ufixed" def mUfixed(self, ): try: _type = Ufixed _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:3: ( 'ufixed' | ( 'ufixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ ) ) alt16 = 2 LA16_0 = self.input.LA(1) if (LA16_0 == 117) : LA16_1 = self.input.LA(2) if (LA16_1 == 102) : LA16_2 = self.input.LA(3) if (LA16_2 == 105) : LA16_3 = self.input.LA(4) if (LA16_3 == 120) : LA16_4 = self.input.LA(5) if (LA16_4 == 101) : LA16_5 = self.input.LA(6) if (LA16_5 == 100) : LA16_6 = self.input.LA(7) if ((48 <= LA16_6 <= 57)) : alt16 = 2 else: alt16 = 1 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 16, 5, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 16, 4, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 16, 3, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 16, 2, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 16, 1, self.input) raise nvae else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 16, 0, self.input) raise nvae if alt16 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:5: 'ufixed' pass self.match("ufixed") elif alt16 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:16: ( 'ufixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:16: ( 'ufixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:18: 'ufixed' ( DecimalDigit )+ 'x' ( DecimalDigit )+ pass self.match("ufixed") # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:27: ( DecimalDigit )+ cnt14 = 0 while True: #loop14 alt14 = 2 LA14_0 = self.input.LA(1) if ((48 <= LA14_0 <= 57)) : alt14 = 1 if alt14 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:27: DecimalDigit pass self.mDecimalDigit() else: if cnt14 >= 1: break #loop14 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(14, self.input) raise eee cnt14 += 1 self.match(120) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:45: ( DecimalDigit )+ cnt15 = 0 while True: #loop15 alt15 = 2 LA15_0 = self.input.LA(1) if ((48 <= LA15_0 <= 57)) : alt15 = 1 if alt15 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:764:45: DecimalDigit pass self.mDecimalDigit() else: if cnt15 >= 1: break #loop15 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(15, self.input) raise eee cnt15 += 1 self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "Ufixed" # $ANTLR start "AnonymousKeyword" def mAnonymousKeyword(self, ): try: _type = AnonymousKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:766:18: ( 'anonymous' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:766:20: 'anonymous' pass self.match("anonymous") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "AnonymousKeyword" # $ANTLR start "BreakKeyword" def mBreakKeyword(self, ): try: _type = BreakKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:767:14: ( 'break' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:767:16: 'break' pass self.match("break") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "BreakKeyword" # $ANTLR start "ConstantKeyword" def mConstantKeyword(self, ): try: _type = ConstantKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:768:17: ( 'constant' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:768:19: 'constant' pass self.match("constant") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "ConstantKeyword" # $ANTLR start "ContinueKeyword" def mContinueKeyword(self, ): try: _type = ContinueKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:769:17: ( 'continue' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:769:19: 'continue' pass self.match("continue") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "ContinueKeyword" # $ANTLR start "ExternalKeyword" def mExternalKeyword(self, ): try: _type = ExternalKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:770:17: ( 'external' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:770:19: 'external' pass self.match("external") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "ExternalKeyword" # $ANTLR start "IndexedKeyword" def mIndexedKeyword(self, ): try: _type = IndexedKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:771:16: ( 'indexed' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:771:18: 'indexed' pass self.match("indexed") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "IndexedKeyword" # $ANTLR start "InternalKeyword" def mInternalKeyword(self, ): try: _type = InternalKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:772:17: ( 'internal' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:772:19: 'internal' pass self.match("internal") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "InternalKeyword" # $ANTLR start "PayableKeyword" def mPayableKeyword(self, ): try: _type = PayableKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:773:16: ( 'payable' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:773:18: 'payable' pass self.match("payable") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "PayableKeyword" # $ANTLR start "PrivateKeyword" def mPrivateKeyword(self, ): try: _type = PrivateKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:774:16: ( 'private' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:774:18: 'private' pass self.match("private") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "PrivateKeyword" # $ANTLR start "PublicKeyword" def mPublicKeyword(self, ): try: _type = PublicKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:775:15: ( 'public' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:775:17: 'public' pass self.match("public") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "PublicKeyword" # $ANTLR start "PureKeyword" def mPureKeyword(self, ): try: _type = PureKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:776:13: ( 'pure' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:776:15: 'pure' pass self.match("pure") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "PureKeyword" # $ANTLR start "ViewKeyword" def mViewKeyword(self, ): try: _type = ViewKeyword _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:777:13: ( 'view' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:777:15: 'view' pass self.match("view") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "ViewKeyword" # $ANTLR start "TNULL" def mTNULL(self, ): try: _type = TNULL _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:782:7: ( 'null' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:782:9: 'null' pass self.match("null") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TNULL" # $ANTLR start "TTRUE" def mTTRUE(self, ): try: _type = TTRUE _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:783:7: ( 'true' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:783:9: 'true' pass self.match("true") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TTRUE" # $ANTLR start "TFALSE" def mTFALSE(self, ): try: _type = TFALSE _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:784:8: ( 'false' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:784:10: 'false' pass self.match("false") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "TFALSE" # $ANTLR start "StringLiteral" def mStringLiteral(self, ): try: _type = StringLiteral _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:798:2: ( '\"' ( DoubleStringCharacter )* '\"' | '\\'' ( SingleStringCharacter )* '\\'' ) alt19 = 2 LA19_0 = self.input.LA(1) if (LA19_0 == 34) : alt19 = 1 elif (LA19_0 == 39) : alt19 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 19, 0, self.input) raise nvae if alt19 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:798:4: '\"' ( DoubleStringCharacter )* '\"' pass self.match(34) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:798:8: ( DoubleStringCharacter )* while True: #loop17 alt17 = 2 LA17_0 = self.input.LA(1) if ((0 <= LA17_0 <= 9) or (11 <= LA17_0 <= 12) or (14 <= LA17_0 <= 33) or (35 <= LA17_0 <= 8231) or (8234 <= LA17_0 <= 65535)) : alt17 = 1 if alt17 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:798:8: DoubleStringCharacter pass self.mDoubleStringCharacter() else: break #loop17 self.match(34) elif alt19 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:799:4: '\\'' ( SingleStringCharacter )* '\\'' pass self.match(39) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:799:9: ( SingleStringCharacter )* while True: #loop18 alt18 = 2 LA18_0 = self.input.LA(1) if ((0 <= LA18_0 <= 9) or (11 <= LA18_0 <= 12) or (14 <= LA18_0 <= 38) or (40 <= LA18_0 <= 8231) or (8234 <= LA18_0 <= 65535)) : alt18 = 1 if alt18 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:799:9: SingleStringCharacter pass self.mSingleStringCharacter() else: break #loop18 self.match(39) self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "StringLiteral" # $ANTLR start "DoubleStringCharacter" def mDoubleStringCharacter(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:803:2: (~ ( '\"' | '\\\\' | LT ) | '\\\\' EscapeSequence ) alt20 = 2 LA20_0 = self.input.LA(1) if ((0 <= LA20_0 <= 9) or (11 <= LA20_0 <= 12) or (14 <= LA20_0 <= 33) or (35 <= LA20_0 <= 91) or (93 <= LA20_0 <= 8231) or (8234 <= LA20_0 <= 65535)) : alt20 = 1 elif (LA20_0 == 92) : alt20 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 20, 0, self.input) raise nvae if alt20 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:803:4: ~ ( '\"' | '\\\\' | LT ) pass if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 33) or (35 <= self.input.LA(1) <= 91) or (93 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse elif alt20 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:804:4: '\\\\' EscapeSequence pass self.match(92) self.mEscapeSequence() finally: pass # $ANTLR end "DoubleStringCharacter" # $ANTLR start "SingleStringCharacter" def mSingleStringCharacter(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:808:2: (~ ( '\\'' | '\\\\' | LT ) | '\\\\' EscapeSequence ) alt21 = 2 LA21_0 = self.input.LA(1) if ((0 <= LA21_0 <= 9) or (11 <= LA21_0 <= 12) or (14 <= LA21_0 <= 38) or (40 <= LA21_0 <= 91) or (93 <= LA21_0 <= 8231) or (8234 <= LA21_0 <= 65535)) : alt21 = 1 elif (LA21_0 == 92) : alt21 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 21, 0, self.input) raise nvae if alt21 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:808:4: ~ ( '\\'' | '\\\\' | LT ) pass if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 38) or (40 <= self.input.LA(1) <= 91) or (93 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse elif alt21 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:809:4: '\\\\' EscapeSequence pass self.match(92) self.mEscapeSequence() finally: pass # $ANTLR end "SingleStringCharacter" # $ANTLR start "EscapeSequence" def mEscapeSequence(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:813:2: ( CharacterEscapeSequence | '0' | HexEscapeSequence | UnicodeEscapeSequence ) alt22 = 4 LA22_0 = self.input.LA(1) if ((0 <= LA22_0 <= 9) or (11 <= LA22_0 <= 12) or (14 <= LA22_0 <= 47) or (58 <= LA22_0 <= 116) or (118 <= LA22_0 <= 119) or (121 <= LA22_0 <= 8231) or (8234 <= LA22_0 <= 65535)) : alt22 = 1 elif (LA22_0 == 48) : alt22 = 2 elif (LA22_0 == 120) : alt22 = 3 elif (LA22_0 == 117) : alt22 = 4 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 22, 0, self.input) raise nvae if alt22 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:813:4: CharacterEscapeSequence pass self.mCharacterEscapeSequence() elif alt22 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:814:4: '0' pass self.match(48) elif alt22 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:815:4: HexEscapeSequence pass self.mHexEscapeSequence() elif alt22 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:816:4: UnicodeEscapeSequence pass self.mUnicodeEscapeSequence() finally: pass # $ANTLR end "EscapeSequence" # $ANTLR start "CharacterEscapeSequence" def mCharacterEscapeSequence(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:820:2: ( SingleEscapeCharacter | NonEscapeCharacter ) alt23 = 2 LA23_0 = self.input.LA(1) if (LA23_0 == 34 or LA23_0 == 39 or LA23_0 == 92 or LA23_0 == 98 or LA23_0 == 102 or LA23_0 == 110 or LA23_0 == 114 or LA23_0 == 116 or LA23_0 == 118) : alt23 = 1 elif ((0 <= LA23_0 <= 9) or (11 <= LA23_0 <= 12) or (14 <= LA23_0 <= 33) or (35 <= LA23_0 <= 38) or (40 <= LA23_0 <= 47) or (58 <= LA23_0 <= 91) or (93 <= LA23_0 <= 97) or (99 <= LA23_0 <= 101) or (103 <= LA23_0 <= 109) or (111 <= LA23_0 <= 113) or LA23_0 == 115 or LA23_0 == 119 or (121 <= LA23_0 <= 8231) or (8234 <= LA23_0 <= 65535)) : alt23 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 23, 0, self.input) raise nvae if alt23 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:820:4: SingleEscapeCharacter pass self.mSingleEscapeCharacter() elif alt23 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:821:4: NonEscapeCharacter pass self.mNonEscapeCharacter() finally: pass # $ANTLR end "CharacterEscapeSequence" # $ANTLR start "NonEscapeCharacter" def mNonEscapeCharacter(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:825:2: (~ ( EscapeCharacter | LT ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:825:4: ~ ( EscapeCharacter | LT ) pass if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 33) or (35 <= self.input.LA(1) <= 38) or (40 <= self.input.LA(1) <= 47) or (58 <= self.input.LA(1) <= 91) or (93 <= self.input.LA(1) <= 97) or (99 <= self.input.LA(1) <= 101) or (103 <= self.input.LA(1) <= 109) or (111 <= self.input.LA(1) <= 113) or self.input.LA(1) == 115 or self.input.LA(1) == 119 or (121 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "NonEscapeCharacter" # $ANTLR start "SingleEscapeCharacter" def mSingleEscapeCharacter(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:829:2: ( '\\'' | '\"' | '\\\\' | 'b' | 'f' | 'n' | 'r' | 't' | 'v' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g: pass if self.input.LA(1) == 34 or self.input.LA(1) == 39 or self.input.LA(1) == 92 or self.input.LA(1) == 98 or self.input.LA(1) == 102 or self.input.LA(1) == 110 or self.input.LA(1) == 114 or self.input.LA(1) == 116 or self.input.LA(1) == 118: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "SingleEscapeCharacter" # $ANTLR start "EscapeCharacter" def mEscapeCharacter(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:833:2: ( SingleEscapeCharacter | DecimalDigit | 'x' | 'u' ) alt24 = 4 LA24 = self.input.LA(1) if LA24 == 34 or LA24 == 39 or LA24 == 92 or LA24 == 98 or LA24 == 102 or LA24 == 110 or LA24 == 114 or LA24 == 116 or LA24 == 118: alt24 = 1 elif LA24 == 48 or LA24 == 49 or LA24 == 50 or LA24 == 51 or LA24 == 52 or LA24 == 53 or LA24 == 54 or LA24 == 55 or LA24 == 56 or LA24 == 57: alt24 = 2 elif LA24 == 120: alt24 = 3 elif LA24 == 117: alt24 = 4 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 24, 0, self.input) raise nvae if alt24 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:833:4: SingleEscapeCharacter pass self.mSingleEscapeCharacter() elif alt24 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:834:4: DecimalDigit pass self.mDecimalDigit() elif alt24 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:835:4: 'x' pass self.match(120) elif alt24 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:836:4: 'u' pass self.match(117) finally: pass # $ANTLR end "EscapeCharacter" # $ANTLR start "HexEscapeSequence" def mHexEscapeSequence(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:840:2: ( 'x' HexDigit HexDigit ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:840:4: 'x' HexDigit HexDigit pass self.match(120) self.mHexDigit() self.mHexDigit() finally: pass # $ANTLR end "HexEscapeSequence" # $ANTLR start "UnicodeEscapeSequence" def mUnicodeEscapeSequence(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:844:2: ( 'u' HexDigit HexDigit HexDigit HexDigit ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:844:4: 'u' HexDigit HexDigit HexDigit HexDigit pass self.match(117) self.mHexDigit() self.mHexDigit() self.mHexDigit() self.mHexDigit() finally: pass # $ANTLR end "UnicodeEscapeSequence" # $ANTLR start "NumericLiteral" def mNumericLiteral(self, ): try: _type = NumericLiteral _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:848:2: ( DecimalLiteral | HexIntegerLiteral | 'NaN' ) alt25 = 3 LA25 = self.input.LA(1) if LA25 == 48: LA25_1 = self.input.LA(2) if (LA25_1 == 88 or LA25_1 == 120) : alt25 = 2 else: alt25 = 1 elif LA25 == 46 or LA25 == 49 or LA25 == 50 or LA25 == 51 or LA25 == 52 or LA25 == 53 or LA25 == 54 or LA25 == 55 or LA25 == 56 or LA25 == 57: alt25 = 1 elif LA25 == 78: alt25 = 3 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 25, 0, self.input) raise nvae if alt25 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:848:4: DecimalLiteral pass self.mDecimalLiteral() elif alt25 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:849:4: HexIntegerLiteral pass self.mHexIntegerLiteral() elif alt25 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:850:4: 'NaN' pass self.match("NaN") self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "NumericLiteral" # $ANTLR start "HexIntegerLiteral" def mHexIntegerLiteral(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:854:2: ( '0' ( 'x' | 'X' ) ( HexDigit )+ ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:854:4: '0' ( 'x' | 'X' ) ( HexDigit )+ pass self.match(48) if self.input.LA(1) == 88 or self.input.LA(1) == 120: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:854:20: ( HexDigit )+ cnt26 = 0 while True: #loop26 alt26 = 2 LA26_0 = self.input.LA(1) if ((48 <= LA26_0 <= 57) or (65 <= LA26_0 <= 70) or (97 <= LA26_0 <= 102)) : alt26 = 1 if alt26 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:854:20: HexDigit pass self.mHexDigit() else: if cnt26 >= 1: break #loop26 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(26, self.input) raise eee cnt26 += 1 finally: pass # $ANTLR end "HexIntegerLiteral" # $ANTLR start "HexDigit" def mHexDigit(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:2: ( DecimalDigit | ( 'a' .. 'f' ) | ( 'A' .. 'F' ) ) alt27 = 3 LA27 = self.input.LA(1) if LA27 == 48 or LA27 == 49 or LA27 == 50 or LA27 == 51 or LA27 == 52 or LA27 == 53 or LA27 == 54 or LA27 == 55 or LA27 == 56 or LA27 == 57: alt27 = 1 elif LA27 == 97 or LA27 == 98 or LA27 == 99 or LA27 == 100 or LA27 == 101 or LA27 == 102: alt27 = 2 elif LA27 == 65 or LA27 == 66 or LA27 == 67 or LA27 == 68 or LA27 == 69 or LA27 == 70: alt27 = 3 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 27, 0, self.input) raise nvae if alt27 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:4: DecimalDigit pass self.mDecimalDigit() elif alt27 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:19: ( 'a' .. 'f' ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:19: ( 'a' .. 'f' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:20: 'a' .. 'f' pass self.matchRange(97, 102) elif alt27 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:32: ( 'A' .. 'F' ) pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:32: ( 'A' .. 'F' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:858:33: 'A' .. 'F' pass self.matchRange(65, 70) finally: pass # $ANTLR end "HexDigit" # $ANTLR start "DecimalLiteral" def mDecimalLiteral(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:2: ( ( DecimalDigit )+ '.' ( DecimalDigit )* ( ExponentPart )? | ( '.' )? ( DecimalDigit )+ ( ExponentPart )? ) alt34 = 2 alt34 = self.dfa34.predict(self.input) if alt34 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:4: ( DecimalDigit )+ '.' ( DecimalDigit )* ( ExponentPart )? pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:4: ( DecimalDigit )+ cnt28 = 0 while True: #loop28 alt28 = 2 LA28_0 = self.input.LA(1) if ((48 <= LA28_0 <= 57)) : alt28 = 1 if alt28 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:4: DecimalDigit pass self.mDecimalDigit() else: if cnt28 >= 1: break #loop28 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(28, self.input) raise eee cnt28 += 1 self.match(46) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:22: ( DecimalDigit )* while True: #loop29 alt29 = 2 LA29_0 = self.input.LA(1) if ((48 <= LA29_0 <= 57)) : alt29 = 1 if alt29 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:22: DecimalDigit pass self.mDecimalDigit() else: break #loop29 # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:36: ( ExponentPart )? alt30 = 2 LA30_0 = self.input.LA(1) if (LA30_0 == 69 or LA30_0 == 101) : alt30 = 1 if alt30 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:862:36: ExponentPart pass self.mExponentPart() elif alt34 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:863:4: ( '.' )? ( DecimalDigit )+ ( ExponentPart )? pass # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:863:4: ( '.' )? alt31 = 2 LA31_0 = self.input.LA(1) if (LA31_0 == 46) : alt31 = 1 if alt31 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:863:4: '.' pass self.match(46) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:863:9: ( DecimalDigit )+ cnt32 = 0 while True: #loop32 alt32 = 2 LA32_0 = self.input.LA(1) if ((48 <= LA32_0 <= 57)) : alt32 = 1 if alt32 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:863:9: DecimalDigit pass self.mDecimalDigit() else: if cnt32 >= 1: break #loop32 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(32, self.input) raise eee cnt32 += 1 # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:863:23: ( ExponentPart )? alt33 = 2 LA33_0 = self.input.LA(1) if (LA33_0 == 69 or LA33_0 == 101) : alt33 = 1 if alt33 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:863:23: ExponentPart pass self.mExponentPart() finally: pass # $ANTLR end "DecimalLiteral" # $ANTLR start "DecimalDigit" def mDecimalDigit(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:867:2: ( ( '0' .. '9' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:867:4: ( '0' .. '9' ) pass if (48 <= self.input.LA(1) <= 57): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "DecimalDigit" # $ANTLR start "ExponentPart" def mExponentPart(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:871:2: ( ( 'e' | 'E' ) ( '+' | '-' )? ( DecimalDigit )+ ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:871:4: ( 'e' | 'E' ) ( '+' | '-' )? ( DecimalDigit )+ pass if self.input.LA(1) == 69 or self.input.LA(1) == 101: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:871:16: ( '+' | '-' )? alt35 = 2 LA35_0 = self.input.LA(1) if (LA35_0 == 43 or LA35_0 == 45) : alt35 = 1 if alt35 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g: pass if self.input.LA(1) == 43 or self.input.LA(1) == 45: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:871:30: ( DecimalDigit )+ cnt36 = 0 while True: #loop36 alt36 = 2 LA36_0 = self.input.LA(1) if ((48 <= LA36_0 <= 57)) : alt36 = 1 if alt36 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:871:30: DecimalDigit pass self.mDecimalDigit() else: if cnt36 >= 1: break #loop36 if self._state.backtracking > 0: raise BacktrackingFailed eee = EarlyExitException(36, self.input) raise eee cnt36 += 1 finally: pass # $ANTLR end "ExponentPart" # $ANTLR start "Identifier" def mIdentifier(self, ): try: _type = Identifier _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:875:2: ( IdentifierStart ( IdentifierPart )* ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:875:4: IdentifierStart ( IdentifierPart )* pass self.mIdentifierStart() # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:875:20: ( IdentifierPart )* while True: #loop37 alt37 = 2 LA37_0 = self.input.LA(1) if (LA37_0 == 36 or (48 <= LA37_0 <= 57) or (65 <= LA37_0 <= 90) or LA37_0 == 92 or LA37_0 == 95 or (97 <= LA37_0 <= 122) or LA37_0 == 170 or LA37_0 == 181 or LA37_0 == 186 or (192 <= LA37_0 <= 214) or (216 <= LA37_0 <= 246) or (248 <= LA37_0 <= 543) or (546 <= LA37_0 <= 563) or (592 <= LA37_0 <= 685) or (688 <= LA37_0 <= 696) or (699 <= LA37_0 <= 705) or (720 <= LA37_0 <= 721) or (736 <= LA37_0 <= 740) or LA37_0 == 750 or LA37_0 == 890 or LA37_0 == 902 or (904 <= LA37_0 <= 906) or LA37_0 == 908 or (910 <= LA37_0 <= 929) or (931 <= LA37_0 <= 974) or (976 <= LA37_0 <= 983) or (986 <= LA37_0 <= 1011) or (1024 <= LA37_0 <= 1153) or (1164 <= LA37_0 <= 1220) or (1223 <= LA37_0 <= 1224) or (1227 <= LA37_0 <= 1228) or (1232 <= LA37_0 <= 1269) or (1272 <= LA37_0 <= 1273) or (1329 <= LA37_0 <= 1366) or LA37_0 == 1369 or (1377 <= LA37_0 <= 1415) or (1488 <= LA37_0 <= 1514) or (1520 <= LA37_0 <= 1522) or (1569 <= LA37_0 <= 1594) or (1600 <= LA37_0 <= 1610) or (1632 <= LA37_0 <= 1641) or (1649 <= LA37_0 <= 1747) or LA37_0 == 1749 or (1765 <= LA37_0 <= 1766) or (1776 <= LA37_0 <= 1788) or LA37_0 == 1808 or (1810 <= LA37_0 <= 1836) or (1920 <= LA37_0 <= 1957) or (2309 <= LA37_0 <= 2361) or LA37_0 == 2365 or LA37_0 == 2384 or (2392 <= LA37_0 <= 2401) or (2406 <= LA37_0 <= 2415) or (2437 <= LA37_0 <= 2444) or (2447 <= LA37_0 <= 2448) or (2451 <= LA37_0 <= 2472) or (2474 <= LA37_0 <= 2480) or LA37_0 == 2482 or (2486 <= LA37_0 <= 2489) or (2524 <= LA37_0 <= 2525) or (2527 <= LA37_0 <= 2529) or (2534 <= LA37_0 <= 2545) or (2565 <= LA37_0 <= 2570) or (2575 <= LA37_0 <= 2576) or (2579 <= LA37_0 <= 2600) or (2602 <= LA37_0 <= 2608) or (2610 <= LA37_0 <= 2611) or (2613 <= LA37_0 <= 2614) or (2616 <= LA37_0 <= 2617) or (2649 <= LA37_0 <= 2652) or LA37_0 == 2654 or (2662 <= LA37_0 <= 2671) or (2674 <= LA37_0 <= 2676) or (2693 <= LA37_0 <= 2699) or LA37_0 == 2701 or (2703 <= LA37_0 <= 2705) or (2707 <= LA37_0 <= 2728) or (2730 <= LA37_0 <= 2736) or (2738 <= LA37_0 <= 2739) or (2741 <= LA37_0 <= 2745) or LA37_0 == 2749 or LA37_0 == 2768 or LA37_0 == 2784 or (2790 <= LA37_0 <= 2799) or (2821 <= LA37_0 <= 2828) or (2831 <= LA37_0 <= 2832) or (2835 <= LA37_0 <= 2856) or (2858 <= LA37_0 <= 2864) or (2866 <= LA37_0 <= 2867) or (2870 <= LA37_0 <= 2873) or LA37_0 == 2877 or (2908 <= LA37_0 <= 2909) or (2911 <= LA37_0 <= 2913) or (2918 <= LA37_0 <= 2927) or (2949 <= LA37_0 <= 2954) or (2958 <= LA37_0 <= 2960) or (2962 <= LA37_0 <= 2965) or (2969 <= LA37_0 <= 2970) or LA37_0 == 2972 or (2974 <= LA37_0 <= 2975) or (2979 <= LA37_0 <= 2980) or (2984 <= LA37_0 <= 2986) or (2990 <= LA37_0 <= 2997) or (2999 <= LA37_0 <= 3001) or (3047 <= LA37_0 <= 3055) or (3077 <= LA37_0 <= 3084) or (3086 <= LA37_0 <= 3088) or (3090 <= LA37_0 <= 3112) or (3114 <= LA37_0 <= 3123) or (3125 <= LA37_0 <= 3129) or (3168 <= LA37_0 <= 3169) or (3174 <= LA37_0 <= 3183) or (3205 <= LA37_0 <= 3212) or (3214 <= LA37_0 <= 3216) or (3218 <= LA37_0 <= 3240) or (3242 <= LA37_0 <= 3251) or (3253 <= LA37_0 <= 3257) or LA37_0 == 3294 or (3296 <= LA37_0 <= 3297) or (3302 <= LA37_0 <= 3311) or (3333 <= LA37_0 <= 3340) or (3342 <= LA37_0 <= 3344) or (3346 <= LA37_0 <= 3368) or (3370 <= LA37_0 <= 3385) or (3424 <= LA37_0 <= 3425) or (3430 <= LA37_0 <= 3439) or (3461 <= LA37_0 <= 3478) or (3482 <= LA37_0 <= 3505) or (3507 <= LA37_0 <= 3515) or LA37_0 == 3517 or (3520 <= LA37_0 <= 3526) or (3585 <= LA37_0 <= 3632) or (3634 <= LA37_0 <= 3635) or (3648 <= LA37_0 <= 3654) or (3664 <= LA37_0 <= 3673) or (3713 <= LA37_0 <= 3714) or LA37_0 == 3716 or (3719 <= LA37_0 <= 3720) or LA37_0 == 3722 or LA37_0 == 3725 or (3732 <= LA37_0 <= 3735) or (3737 <= LA37_0 <= 3743) or (3745 <= LA37_0 <= 3747) or LA37_0 == 3749 or LA37_0 == 3751 or (3754 <= LA37_0 <= 3755) or (3757 <= LA37_0 <= 3760) or (3762 <= LA37_0 <= 3763) or (3773 <= LA37_0 <= 3780) or LA37_0 == 3782 or (3792 <= LA37_0 <= 3801) or (3804 <= LA37_0 <= 3805) or LA37_0 == 3840 or (3872 <= LA37_0 <= 3881) or (3904 <= LA37_0 <= 3946) or (3976 <= LA37_0 <= 3979) or (4096 <= LA37_0 <= 4129) or (4131 <= LA37_0 <= 4135) or (4137 <= LA37_0 <= 4138) or (4160 <= LA37_0 <= 4169) or (4176 <= LA37_0 <= 4181) or (4256 <= LA37_0 <= 4293) or (4304 <= LA37_0 <= 4342) or (4352 <= LA37_0 <= 4441) or (4447 <= LA37_0 <= 4514) or (4520 <= LA37_0 <= 4601) or (4608 <= LA37_0 <= 4614) or (4616 <= LA37_0 <= 4678) or LA37_0 == 4680 or (4682 <= LA37_0 <= 4685) or (4688 <= LA37_0 <= 4694) or LA37_0 == 4696 or (4698 <= LA37_0 <= 4701) or (4704 <= LA37_0 <= 4742) or LA37_0 == 4744 or (4746 <= LA37_0 <= 4749) or (4752 <= LA37_0 <= 4782) or LA37_0 == 4784 or (4786 <= LA37_0 <= 4789) or (4792 <= LA37_0 <= 4798) or LA37_0 == 4800 or (4802 <= LA37_0 <= 4805) or (4808 <= LA37_0 <= 4814) or (4816 <= LA37_0 <= 4822) or (4824 <= LA37_0 <= 4846) or (4848 <= LA37_0 <= 4878) or LA37_0 == 4880 or (4882 <= LA37_0 <= 4885) or (4888 <= LA37_0 <= 4894) or (4896 <= LA37_0 <= 4934) or (4936 <= LA37_0 <= 4954) or (4969 <= LA37_0 <= 4977) or (5024 <= LA37_0 <= 5108) or (5121 <= LA37_0 <= 5750) or (5761 <= LA37_0 <= 5786) or (5792 <= LA37_0 <= 5866) or (6016 <= LA37_0 <= 6067) or (6112 <= LA37_0 <= 6121) or (6160 <= LA37_0 <= 6169) or (6176 <= LA37_0 <= 6263) or (6272 <= LA37_0 <= 6312) or (7680 <= LA37_0 <= 7835) or (7840 <= LA37_0 <= 7929) or (7936 <= LA37_0 <= 7957) or (7960 <= LA37_0 <= 7965) or (7968 <= LA37_0 <= 8005) or (8008 <= LA37_0 <= 8013) or (8016 <= LA37_0 <= 8023) or LA37_0 == 8025 or LA37_0 == 8027 or LA37_0 == 8029 or (8031 <= LA37_0 <= 8061) or (8064 <= LA37_0 <= 8116) or (8118 <= LA37_0 <= 8124) or LA37_0 == 8126 or (8130 <= LA37_0 <= 8132) or (8134 <= LA37_0 <= 8140) or (8144 <= LA37_0 <= 8147) or (8150 <= LA37_0 <= 8155) or (8160 <= LA37_0 <= 8172) or (8178 <= LA37_0 <= 8180) or (8182 <= LA37_0 <= 8188) or (8255 <= LA37_0 <= 8256) or LA37_0 == 8319 or LA37_0 == 8450 or LA37_0 == 8455 or (8458 <= LA37_0 <= 8467) or LA37_0 == 8469 or (8473 <= LA37_0 <= 8477) or LA37_0 == 8484 or LA37_0 == 8486 or LA37_0 == 8488 or (8490 <= LA37_0 <= 8493) or (8495 <= LA37_0 <= 8497) or (8499 <= LA37_0 <= 8505) or (8544 <= LA37_0 <= 8579) or (12293 <= LA37_0 <= 12295) or (12321 <= LA37_0 <= 12329) or (12337 <= LA37_0 <= 12341) or (12344 <= LA37_0 <= 12346) or (12353 <= LA37_0 <= 12436) or (12445 <= LA37_0 <= 12446) or (12449 <= LA37_0 <= 12542) or (12549 <= LA37_0 <= 12588) or (12593 <= LA37_0 <= 12686) or (12704 <= LA37_0 <= 12727) or LA37_0 == 13312 or LA37_0 == 19893 or LA37_0 == 19968 or LA37_0 == 40869 or (40960 <= LA37_0 <= 42124) or LA37_0 == 44032 or LA37_0 == 55203 or (63744 <= LA37_0 <= 64045) or (64256 <= LA37_0 <= 64262) or (64275 <= LA37_0 <= 64279) or LA37_0 == 64285 or (64287 <= LA37_0 <= 64296) or (64298 <= LA37_0 <= 64310) or (64312 <= LA37_0 <= 64316) or LA37_0 == 64318 or (64320 <= LA37_0 <= 64321) or (64323 <= LA37_0 <= 64324) or (64326 <= LA37_0 <= 64433) or (64467 <= LA37_0 <= 64829) or (64848 <= LA37_0 <= 64911) or (64914 <= LA37_0 <= 64967) or (65008 <= LA37_0 <= 65019) or (65075 <= LA37_0 <= 65076) or (65101 <= LA37_0 <= 65103) or (65136 <= LA37_0 <= 65138) or LA37_0 == 65140 or (65142 <= LA37_0 <= 65276) or (65296 <= LA37_0 <= 65305) or (65313 <= LA37_0 <= 65338) or LA37_0 == 65343 or (65345 <= LA37_0 <= 65370) or (65381 <= LA37_0 <= 65470) or (65474 <= LA37_0 <= 65479) or (65482 <= LA37_0 <= 65487) or (65490 <= LA37_0 <= 65495) or (65498 <= LA37_0 <= 65500)) : alt37 = 1 if alt37 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:875:20: IdentifierPart pass self.mIdentifierPart() else: break #loop37 self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "Identifier" # $ANTLR start "IdentifierStart" def mIdentifierStart(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:879:2: ( UnicodeLetter | '$' | '_' | '\\\\' UnicodeEscapeSequence ) alt38 = 4 LA38_0 = self.input.LA(1) if ((65 <= LA38_0 <= 90) or (97 <= LA38_0 <= 122) or LA38_0 == 170 or LA38_0 == 181 or LA38_0 == 186 or (192 <= LA38_0 <= 214) or (216 <= LA38_0 <= 246) or (248 <= LA38_0 <= 543) or (546 <= LA38_0 <= 563) or (592 <= LA38_0 <= 685) or (688 <= LA38_0 <= 696) or (699 <= LA38_0 <= 705) or (720 <= LA38_0 <= 721) or (736 <= LA38_0 <= 740) or LA38_0 == 750 or LA38_0 == 890 or LA38_0 == 902 or (904 <= LA38_0 <= 906) or LA38_0 == 908 or (910 <= LA38_0 <= 929) or (931 <= LA38_0 <= 974) or (976 <= LA38_0 <= 983) or (986 <= LA38_0 <= 1011) or (1024 <= LA38_0 <= 1153) or (1164 <= LA38_0 <= 1220) or (1223 <= LA38_0 <= 1224) or (1227 <= LA38_0 <= 1228) or (1232 <= LA38_0 <= 1269) or (1272 <= LA38_0 <= 1273) or (1329 <= LA38_0 <= 1366) or LA38_0 == 1369 or (1377 <= LA38_0 <= 1415) or (1488 <= LA38_0 <= 1514) or (1520 <= LA38_0 <= 1522) or (1569 <= LA38_0 <= 1594) or (1600 <= LA38_0 <= 1610) or (1649 <= LA38_0 <= 1747) or LA38_0 == 1749 or (1765 <= LA38_0 <= 1766) or (1786 <= LA38_0 <= 1788) or LA38_0 == 1808 or (1810 <= LA38_0 <= 1836) or (1920 <= LA38_0 <= 1957) or (2309 <= LA38_0 <= 2361) or LA38_0 == 2365 or LA38_0 == 2384 or (2392 <= LA38_0 <= 2401) or (2437 <= LA38_0 <= 2444) or (2447 <= LA38_0 <= 2448) or (2451 <= LA38_0 <= 2472) or (2474 <= LA38_0 <= 2480) or LA38_0 == 2482 or (2486 <= LA38_0 <= 2489) or (2524 <= LA38_0 <= 2525) or (2527 <= LA38_0 <= 2529) or (2544 <= LA38_0 <= 2545) or (2565 <= LA38_0 <= 2570) or (2575 <= LA38_0 <= 2576) or (2579 <= LA38_0 <= 2600) or (2602 <= LA38_0 <= 2608) or (2610 <= LA38_0 <= 2611) or (2613 <= LA38_0 <= 2614) or (2616 <= LA38_0 <= 2617) or (2649 <= LA38_0 <= 2652) or LA38_0 == 2654 or (2674 <= LA38_0 <= 2676) or (2693 <= LA38_0 <= 2699) or LA38_0 == 2701 or (2703 <= LA38_0 <= 2705) or (2707 <= LA38_0 <= 2728) or (2730 <= LA38_0 <= 2736) or (2738 <= LA38_0 <= 2739) or (2741 <= LA38_0 <= 2745) or LA38_0 == 2749 or LA38_0 == 2768 or LA38_0 == 2784 or (2821 <= LA38_0 <= 2828) or (2831 <= LA38_0 <= 2832) or (2835 <= LA38_0 <= 2856) or (2858 <= LA38_0 <= 2864) or (2866 <= LA38_0 <= 2867) or (2870 <= LA38_0 <= 2873) or LA38_0 == 2877 or (2908 <= LA38_0 <= 2909) or (2911 <= LA38_0 <= 2913) or (2949 <= LA38_0 <= 2954) or (2958 <= LA38_0 <= 2960) or (2962 <= LA38_0 <= 2965) or (2969 <= LA38_0 <= 2970) or LA38_0 == 2972 or (2974 <= LA38_0 <= 2975) or (2979 <= LA38_0 <= 2980) or (2984 <= LA38_0 <= 2986) or (2990 <= LA38_0 <= 2997) or (2999 <= LA38_0 <= 3001) or (3077 <= LA38_0 <= 3084) or (3086 <= LA38_0 <= 3088) or (3090 <= LA38_0 <= 3112) or (3114 <= LA38_0 <= 3123) or (3125 <= LA38_0 <= 3129) or (3168 <= LA38_0 <= 3169) or (3205 <= LA38_0 <= 3212) or (3214 <= LA38_0 <= 3216) or (3218 <= LA38_0 <= 3240) or (3242 <= LA38_0 <= 3251) or (3253 <= LA38_0 <= 3257) or LA38_0 == 3294 or (3296 <= LA38_0 <= 3297) or (3333 <= LA38_0 <= 3340) or (3342 <= LA38_0 <= 3344) or (3346 <= LA38_0 <= 3368) or (3370 <= LA38_0 <= 3385) or (3424 <= LA38_0 <= 3425) or (3461 <= LA38_0 <= 3478) or (3482 <= LA38_0 <= 3505) or (3507 <= LA38_0 <= 3515) or LA38_0 == 3517 or (3520 <= LA38_0 <= 3526) or (3585 <= LA38_0 <= 3632) or (3634 <= LA38_0 <= 3635) or (3648 <= LA38_0 <= 3654) or (3713 <= LA38_0 <= 3714) or LA38_0 == 3716 or (3719 <= LA38_0 <= 3720) or LA38_0 == 3722 or LA38_0 == 3725 or (3732 <= LA38_0 <= 3735) or (3737 <= LA38_0 <= 3743) or (3745 <= LA38_0 <= 3747) or LA38_0 == 3749 or LA38_0 == 3751 or (3754 <= LA38_0 <= 3755) or (3757 <= LA38_0 <= 3760) or (3762 <= LA38_0 <= 3763) or (3773 <= LA38_0 <= 3780) or LA38_0 == 3782 or (3804 <= LA38_0 <= 3805) or LA38_0 == 3840 or (3904 <= LA38_0 <= 3946) or (3976 <= LA38_0 <= 3979) or (4096 <= LA38_0 <= 4129) or (4131 <= LA38_0 <= 4135) or (4137 <= LA38_0 <= 4138) or (4176 <= LA38_0 <= 4181) or (4256 <= LA38_0 <= 4293) or (4304 <= LA38_0 <= 4342) or (4352 <= LA38_0 <= 4441) or (4447 <= LA38_0 <= 4514) or (4520 <= LA38_0 <= 4601) or (4608 <= LA38_0 <= 4614) or (4616 <= LA38_0 <= 4678) or LA38_0 == 4680 or (4682 <= LA38_0 <= 4685) or (4688 <= LA38_0 <= 4694) or LA38_0 == 4696 or (4698 <= LA38_0 <= 4701) or (4704 <= LA38_0 <= 4742) or LA38_0 == 4744 or (4746 <= LA38_0 <= 4749) or (4752 <= LA38_0 <= 4782) or LA38_0 == 4784 or (4786 <= LA38_0 <= 4789) or (4792 <= LA38_0 <= 4798) or LA38_0 == 4800 or (4802 <= LA38_0 <= 4805) or (4808 <= LA38_0 <= 4814) or (4816 <= LA38_0 <= 4822) or (4824 <= LA38_0 <= 4846) or (4848 <= LA38_0 <= 4878) or LA38_0 == 4880 or (4882 <= LA38_0 <= 4885) or (4888 <= LA38_0 <= 4894) or (4896 <= LA38_0 <= 4934) or (4936 <= LA38_0 <= 4954) or (5024 <= LA38_0 <= 5108) or (5121 <= LA38_0 <= 5750) or (5761 <= LA38_0 <= 5786) or (5792 <= LA38_0 <= 5866) or (6016 <= LA38_0 <= 6067) or (6176 <= LA38_0 <= 6263) or (6272 <= LA38_0 <= 6312) or (7680 <= LA38_0 <= 7835) or (7840 <= LA38_0 <= 7929) or (7936 <= LA38_0 <= 7957) or (7960 <= LA38_0 <= 7965) or (7968 <= LA38_0 <= 8005) or (8008 <= LA38_0 <= 8013) or (8016 <= LA38_0 <= 8023) or LA38_0 == 8025 or LA38_0 == 8027 or LA38_0 == 8029 or (8031 <= LA38_0 <= 8061) or (8064 <= LA38_0 <= 8116) or (8118 <= LA38_0 <= 8124) or LA38_0 == 8126 or (8130 <= LA38_0 <= 8132) or (8134 <= LA38_0 <= 8140) or (8144 <= LA38_0 <= 8147) or (8150 <= LA38_0 <= 8155) or (8160 <= LA38_0 <= 8172) or (8178 <= LA38_0 <= 8180) or (8182 <= LA38_0 <= 8188) or LA38_0 == 8319 or LA38_0 == 8450 or LA38_0 == 8455 or (8458 <= LA38_0 <= 8467) or LA38_0 == 8469 or (8473 <= LA38_0 <= 8477) or LA38_0 == 8484 or LA38_0 == 8486 or LA38_0 == 8488 or (8490 <= LA38_0 <= 8493) or (8495 <= LA38_0 <= 8497) or (8499 <= LA38_0 <= 8505) or (8544 <= LA38_0 <= 8579) or (12293 <= LA38_0 <= 12295) or (12321 <= LA38_0 <= 12329) or (12337 <= LA38_0 <= 12341) or (12344 <= LA38_0 <= 12346) or (12353 <= LA38_0 <= 12436) or (12445 <= LA38_0 <= 12446) or (12449 <= LA38_0 <= 12538) or (12540 <= LA38_0 <= 12542) or (12549 <= LA38_0 <= 12588) or (12593 <= LA38_0 <= 12686) or (12704 <= LA38_0 <= 12727) or LA38_0 == 13312 or LA38_0 == 19893 or LA38_0 == 19968 or LA38_0 == 40869 or (40960 <= LA38_0 <= 42124) or LA38_0 == 44032 or LA38_0 == 55203 or (63744 <= LA38_0 <= 64045) or (64256 <= LA38_0 <= 64262) or (64275 <= LA38_0 <= 64279) or LA38_0 == 64285 or (64287 <= LA38_0 <= 64296) or (64298 <= LA38_0 <= 64310) or (64312 <= LA38_0 <= 64316) or LA38_0 == 64318 or (64320 <= LA38_0 <= 64321) or (64323 <= LA38_0 <= 64324) or (64326 <= LA38_0 <= 64433) or (64467 <= LA38_0 <= 64829) or (64848 <= LA38_0 <= 64911) or (64914 <= LA38_0 <= 64967) or (65008 <= LA38_0 <= 65019) or (65136 <= LA38_0 <= 65138) or LA38_0 == 65140 or (65142 <= LA38_0 <= 65276) or (65313 <= LA38_0 <= 65338) or (65345 <= LA38_0 <= 65370) or (65382 <= LA38_0 <= 65470) or (65474 <= LA38_0 <= 65479) or (65482 <= LA38_0 <= 65487) or (65490 <= LA38_0 <= 65495) or (65498 <= LA38_0 <= 65500)) : alt38 = 1 elif (LA38_0 == 36) : alt38 = 2 elif (LA38_0 == 95) : alt38 = 3 elif (LA38_0 == 92) : alt38 = 4 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 38, 0, self.input) raise nvae if alt38 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:879:4: UnicodeLetter pass self.mUnicodeLetter() elif alt38 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:880:4: '$' pass self.match(36) elif alt38 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:881:4: '_' pass self.match(95) elif alt38 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:882:11: '\\\\' UnicodeEscapeSequence pass self.match(92) self.mUnicodeEscapeSequence() finally: pass # $ANTLR end "IdentifierStart" # $ANTLR start "RegularExpressionLiteral" def mRegularExpressionLiteral(self, ): try: _type = RegularExpressionLiteral _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:886:25: ({...}? => '/' RegularExpressionBody '/' ( IdentifierPart )* ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:887:4: {...}? => '/' RegularExpressionBody '/' ( IdentifierPart )* pass if not ((self.areRegularExpressionsEnabled() )): if self._state.backtracking > 0: raise BacktrackingFailed raise FailedPredicateException(self.input, "RegularExpressionLiteral", " self.areRegularExpressionsEnabled() ") self.match(47) self.mRegularExpressionBody() self.match(47) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:887:78: ( IdentifierPart )* while True: #loop39 alt39 = 2 LA39_0 = self.input.LA(1) if (LA39_0 == 36 or (48 <= LA39_0 <= 57) or (65 <= LA39_0 <= 90) or LA39_0 == 92 or LA39_0 == 95 or (97 <= LA39_0 <= 122) or LA39_0 == 170 or LA39_0 == 181 or LA39_0 == 186 or (192 <= LA39_0 <= 214) or (216 <= LA39_0 <= 246) or (248 <= LA39_0 <= 543) or (546 <= LA39_0 <= 563) or (592 <= LA39_0 <= 685) or (688 <= LA39_0 <= 696) or (699 <= LA39_0 <= 705) or (720 <= LA39_0 <= 721) or (736 <= LA39_0 <= 740) or LA39_0 == 750 or LA39_0 == 890 or LA39_0 == 902 or (904 <= LA39_0 <= 906) or LA39_0 == 908 or (910 <= LA39_0 <= 929) or (931 <= LA39_0 <= 974) or (976 <= LA39_0 <= 983) or (986 <= LA39_0 <= 1011) or (1024 <= LA39_0 <= 1153) or (1164 <= LA39_0 <= 1220) or (1223 <= LA39_0 <= 1224) or (1227 <= LA39_0 <= 1228) or (1232 <= LA39_0 <= 1269) or (1272 <= LA39_0 <= 1273) or (1329 <= LA39_0 <= 1366) or LA39_0 == 1369 or (1377 <= LA39_0 <= 1415) or (1488 <= LA39_0 <= 1514) or (1520 <= LA39_0 <= 1522) or (1569 <= LA39_0 <= 1594) or (1600 <= LA39_0 <= 1610) or (1632 <= LA39_0 <= 1641) or (1649 <= LA39_0 <= 1747) or LA39_0 == 1749 or (1765 <= LA39_0 <= 1766) or (1776 <= LA39_0 <= 1788) or LA39_0 == 1808 or (1810 <= LA39_0 <= 1836) or (1920 <= LA39_0 <= 1957) or (2309 <= LA39_0 <= 2361) or LA39_0 == 2365 or LA39_0 == 2384 or (2392 <= LA39_0 <= 2401) or (2406 <= LA39_0 <= 2415) or (2437 <= LA39_0 <= 2444) or (2447 <= LA39_0 <= 2448) or (2451 <= LA39_0 <= 2472) or (2474 <= LA39_0 <= 2480) or LA39_0 == 2482 or (2486 <= LA39_0 <= 2489) or (2524 <= LA39_0 <= 2525) or (2527 <= LA39_0 <= 2529) or (2534 <= LA39_0 <= 2545) or (2565 <= LA39_0 <= 2570) or (2575 <= LA39_0 <= 2576) or (2579 <= LA39_0 <= 2600) or (2602 <= LA39_0 <= 2608) or (2610 <= LA39_0 <= 2611) or (2613 <= LA39_0 <= 2614) or (2616 <= LA39_0 <= 2617) or (2649 <= LA39_0 <= 2652) or LA39_0 == 2654 or (2662 <= LA39_0 <= 2671) or (2674 <= LA39_0 <= 2676) or (2693 <= LA39_0 <= 2699) or LA39_0 == 2701 or (2703 <= LA39_0 <= 2705) or (2707 <= LA39_0 <= 2728) or (2730 <= LA39_0 <= 2736) or (2738 <= LA39_0 <= 2739) or (2741 <= LA39_0 <= 2745) or LA39_0 == 2749 or LA39_0 == 2768 or LA39_0 == 2784 or (2790 <= LA39_0 <= 2799) or (2821 <= LA39_0 <= 2828) or (2831 <= LA39_0 <= 2832) or (2835 <= LA39_0 <= 2856) or (2858 <= LA39_0 <= 2864) or (2866 <= LA39_0 <= 2867) or (2870 <= LA39_0 <= 2873) or LA39_0 == 2877 or (2908 <= LA39_0 <= 2909) or (2911 <= LA39_0 <= 2913) or (2918 <= LA39_0 <= 2927) or (2949 <= LA39_0 <= 2954) or (2958 <= LA39_0 <= 2960) or (2962 <= LA39_0 <= 2965) or (2969 <= LA39_0 <= 2970) or LA39_0 == 2972 or (2974 <= LA39_0 <= 2975) or (2979 <= LA39_0 <= 2980) or (2984 <= LA39_0 <= 2986) or (2990 <= LA39_0 <= 2997) or (2999 <= LA39_0 <= 3001) or (3047 <= LA39_0 <= 3055) or (3077 <= LA39_0 <= 3084) or (3086 <= LA39_0 <= 3088) or (3090 <= LA39_0 <= 3112) or (3114 <= LA39_0 <= 3123) or (3125 <= LA39_0 <= 3129) or (3168 <= LA39_0 <= 3169) or (3174 <= LA39_0 <= 3183) or (3205 <= LA39_0 <= 3212) or (3214 <= LA39_0 <= 3216) or (3218 <= LA39_0 <= 3240) or (3242 <= LA39_0 <= 3251) or (3253 <= LA39_0 <= 3257) or LA39_0 == 3294 or (3296 <= LA39_0 <= 3297) or (3302 <= LA39_0 <= 3311) or (3333 <= LA39_0 <= 3340) or (3342 <= LA39_0 <= 3344) or (3346 <= LA39_0 <= 3368) or (3370 <= LA39_0 <= 3385) or (3424 <= LA39_0 <= 3425) or (3430 <= LA39_0 <= 3439) or (3461 <= LA39_0 <= 3478) or (3482 <= LA39_0 <= 3505) or (3507 <= LA39_0 <= 3515) or LA39_0 == 3517 or (3520 <= LA39_0 <= 3526) or (3585 <= LA39_0 <= 3632) or (3634 <= LA39_0 <= 3635) or (3648 <= LA39_0 <= 3654) or (3664 <= LA39_0 <= 3673) or (3713 <= LA39_0 <= 3714) or LA39_0 == 3716 or (3719 <= LA39_0 <= 3720) or LA39_0 == 3722 or LA39_0 == 3725 or (3732 <= LA39_0 <= 3735) or (3737 <= LA39_0 <= 3743) or (3745 <= LA39_0 <= 3747) or LA39_0 == 3749 or LA39_0 == 3751 or (3754 <= LA39_0 <= 3755) or (3757 <= LA39_0 <= 3760) or (3762 <= LA39_0 <= 3763) or (3773 <= LA39_0 <= 3780) or LA39_0 == 3782 or (3792 <= LA39_0 <= 3801) or (3804 <= LA39_0 <= 3805) or LA39_0 == 3840 or (3872 <= LA39_0 <= 3881) or (3904 <= LA39_0 <= 3946) or (3976 <= LA39_0 <= 3979) or (4096 <= LA39_0 <= 4129) or (4131 <= LA39_0 <= 4135) or (4137 <= LA39_0 <= 4138) or (4160 <= LA39_0 <= 4169) or (4176 <= LA39_0 <= 4181) or (4256 <= LA39_0 <= 4293) or (4304 <= LA39_0 <= 4342) or (4352 <= LA39_0 <= 4441) or (4447 <= LA39_0 <= 4514) or (4520 <= LA39_0 <= 4601) or (4608 <= LA39_0 <= 4614) or (4616 <= LA39_0 <= 4678) or LA39_0 == 4680 or (4682 <= LA39_0 <= 4685) or (4688 <= LA39_0 <= 4694) or LA39_0 == 4696 or (4698 <= LA39_0 <= 4701) or (4704 <= LA39_0 <= 4742) or LA39_0 == 4744 or (4746 <= LA39_0 <= 4749) or (4752 <= LA39_0 <= 4782) or LA39_0 == 4784 or (4786 <= LA39_0 <= 4789) or (4792 <= LA39_0 <= 4798) or LA39_0 == 4800 or (4802 <= LA39_0 <= 4805) or (4808 <= LA39_0 <= 4814) or (4816 <= LA39_0 <= 4822) or (4824 <= LA39_0 <= 4846) or (4848 <= LA39_0 <= 4878) or LA39_0 == 4880 or (4882 <= LA39_0 <= 4885) or (4888 <= LA39_0 <= 4894) or (4896 <= LA39_0 <= 4934) or (4936 <= LA39_0 <= 4954) or (4969 <= LA39_0 <= 4977) or (5024 <= LA39_0 <= 5108) or (5121 <= LA39_0 <= 5750) or (5761 <= LA39_0 <= 5786) or (5792 <= LA39_0 <= 5866) or (6016 <= LA39_0 <= 6067) or (6112 <= LA39_0 <= 6121) or (6160 <= LA39_0 <= 6169) or (6176 <= LA39_0 <= 6263) or (6272 <= LA39_0 <= 6312) or (7680 <= LA39_0 <= 7835) or (7840 <= LA39_0 <= 7929) or (7936 <= LA39_0 <= 7957) or (7960 <= LA39_0 <= 7965) or (7968 <= LA39_0 <= 8005) or (8008 <= LA39_0 <= 8013) or (8016 <= LA39_0 <= 8023) or LA39_0 == 8025 or LA39_0 == 8027 or LA39_0 == 8029 or (8031 <= LA39_0 <= 8061) or (8064 <= LA39_0 <= 8116) or (8118 <= LA39_0 <= 8124) or LA39_0 == 8126 or (8130 <= LA39_0 <= 8132) or (8134 <= LA39_0 <= 8140) or (8144 <= LA39_0 <= 8147) or (8150 <= LA39_0 <= 8155) or (8160 <= LA39_0 <= 8172) or (8178 <= LA39_0 <= 8180) or (8182 <= LA39_0 <= 8188) or (8255 <= LA39_0 <= 8256) or LA39_0 == 8319 or LA39_0 == 8450 or LA39_0 == 8455 or (8458 <= LA39_0 <= 8467) or LA39_0 == 8469 or (8473 <= LA39_0 <= 8477) or LA39_0 == 8484 or LA39_0 == 8486 or LA39_0 == 8488 or (8490 <= LA39_0 <= 8493) or (8495 <= LA39_0 <= 8497) or (8499 <= LA39_0 <= 8505) or (8544 <= LA39_0 <= 8579) or (12293 <= LA39_0 <= 12295) or (12321 <= LA39_0 <= 12329) or (12337 <= LA39_0 <= 12341) or (12344 <= LA39_0 <= 12346) or (12353 <= LA39_0 <= 12436) or (12445 <= LA39_0 <= 12446) or (12449 <= LA39_0 <= 12542) or (12549 <= LA39_0 <= 12588) or (12593 <= LA39_0 <= 12686) or (12704 <= LA39_0 <= 12727) or LA39_0 == 13312 or LA39_0 == 19893 or LA39_0 == 19968 or LA39_0 == 40869 or (40960 <= LA39_0 <= 42124) or LA39_0 == 44032 or LA39_0 == 55203 or (63744 <= LA39_0 <= 64045) or (64256 <= LA39_0 <= 64262) or (64275 <= LA39_0 <= 64279) or LA39_0 == 64285 or (64287 <= LA39_0 <= 64296) or (64298 <= LA39_0 <= 64310) or (64312 <= LA39_0 <= 64316) or LA39_0 == 64318 or (64320 <= LA39_0 <= 64321) or (64323 <= LA39_0 <= 64324) or (64326 <= LA39_0 <= 64433) or (64467 <= LA39_0 <= 64829) or (64848 <= LA39_0 <= 64911) or (64914 <= LA39_0 <= 64967) or (65008 <= LA39_0 <= 65019) or (65075 <= LA39_0 <= 65076) or (65101 <= LA39_0 <= 65103) or (65136 <= LA39_0 <= 65138) or LA39_0 == 65140 or (65142 <= LA39_0 <= 65276) or (65296 <= LA39_0 <= 65305) or (65313 <= LA39_0 <= 65338) or LA39_0 == 65343 or (65345 <= LA39_0 <= 65370) or (65381 <= LA39_0 <= 65470) or (65474 <= LA39_0 <= 65479) or (65482 <= LA39_0 <= 65487) or (65490 <= LA39_0 <= 65495) or (65498 <= LA39_0 <= 65500)) : alt39 = 1 if alt39 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:887:78: IdentifierPart pass self.mIdentifierPart() else: break #loop39 self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "RegularExpressionLiteral" # $ANTLR start "RegularExpressionBody" def mRegularExpressionBody(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:889:31: ( RegularExpressionFirstChar ( RegularExpressionChar )* ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:890:2: RegularExpressionFirstChar ( RegularExpressionChar )* pass self.mRegularExpressionFirstChar() # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:890:29: ( RegularExpressionChar )* while True: #loop40 alt40 = 2 LA40_0 = self.input.LA(1) if ((0 <= LA40_0 <= 9) or (11 <= LA40_0 <= 12) or (14 <= LA40_0 <= 46) or (48 <= LA40_0 <= 8231) or (8234 <= LA40_0 <= 65535)) : alt40 = 1 if alt40 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:890:29: RegularExpressionChar pass self.mRegularExpressionChar() else: break #loop40 finally: pass # $ANTLR end "RegularExpressionBody" # $ANTLR start "RegularExpressionFirstChar" def mRegularExpressionFirstChar(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:893:2: (~ ( LT | '*' | '\\\\' | '/' ) | '\\\\' ~ ( LT ) ) alt41 = 2 LA41_0 = self.input.LA(1) if ((0 <= LA41_0 <= 9) or (11 <= LA41_0 <= 12) or (14 <= LA41_0 <= 41) or (43 <= LA41_0 <= 46) or (48 <= LA41_0 <= 91) or (93 <= LA41_0 <= 8231) or (8234 <= LA41_0 <= 65535)) : alt41 = 1 elif (LA41_0 == 92) : alt41 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 41, 0, self.input) raise nvae if alt41 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:893:4: ~ ( LT | '*' | '\\\\' | '/' ) pass if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 41) or (43 <= self.input.LA(1) <= 46) or (48 <= self.input.LA(1) <= 91) or (93 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse elif alt41 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:894:4: '\\\\' ~ ( LT ) pass self.match(92) if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "RegularExpressionFirstChar" # $ANTLR start "RegularExpressionChar" def mRegularExpressionChar(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:898:2: (~ ( LT | '\\\\' | '/' ) | '\\\\' ~ ( LT ) ) alt42 = 2 LA42_0 = self.input.LA(1) if ((0 <= LA42_0 <= 9) or (11 <= LA42_0 <= 12) or (14 <= LA42_0 <= 46) or (48 <= LA42_0 <= 91) or (93 <= LA42_0 <= 8231) or (8234 <= LA42_0 <= 65535)) : alt42 = 1 elif (LA42_0 == 92) : alt42 = 2 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 42, 0, self.input) raise nvae if alt42 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:898:4: ~ ( LT | '\\\\' | '/' ) pass if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 46) or (48 <= self.input.LA(1) <= 91) or (93 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse elif alt42 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:899:4: '\\\\' ~ ( LT ) pass self.match(92) if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "RegularExpressionChar" # $ANTLR start "IdentifierPart" def mIdentifierPart(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:903:2: ( ( IdentifierStart )=> IdentifierStart | UnicodeDigit | UnicodeConnectorPunctuation ) alt43 = 3 LA43_0 = self.input.LA(1) if ((65 <= LA43_0 <= 90) or (97 <= LA43_0 <= 122) or LA43_0 == 170 or LA43_0 == 181 or LA43_0 == 186 or (192 <= LA43_0 <= 214) or (216 <= LA43_0 <= 246) or (248 <= LA43_0 <= 543) or (546 <= LA43_0 <= 563) or (592 <= LA43_0 <= 685) or (688 <= LA43_0 <= 696) or (699 <= LA43_0 <= 705) or (720 <= LA43_0 <= 721) or (736 <= LA43_0 <= 740) or LA43_0 == 750 or LA43_0 == 890 or LA43_0 == 902 or (904 <= LA43_0 <= 906) or LA43_0 == 908 or (910 <= LA43_0 <= 929) or (931 <= LA43_0 <= 974) or (976 <= LA43_0 <= 983) or (986 <= LA43_0 <= 1011) or (1024 <= LA43_0 <= 1153) or (1164 <= LA43_0 <= 1220) or (1223 <= LA43_0 <= 1224) or (1227 <= LA43_0 <= 1228) or (1232 <= LA43_0 <= 1269) or (1272 <= LA43_0 <= 1273) or (1329 <= LA43_0 <= 1366) or LA43_0 == 1369 or (1377 <= LA43_0 <= 1415) or (1488 <= LA43_0 <= 1514) or (1520 <= LA43_0 <= 1522) or (1569 <= LA43_0 <= 1594) or (1600 <= LA43_0 <= 1610) or (1649 <= LA43_0 <= 1747) or LA43_0 == 1749 or (1765 <= LA43_0 <= 1766) or (1786 <= LA43_0 <= 1788) or LA43_0 == 1808 or (1810 <= LA43_0 <= 1836) or (1920 <= LA43_0 <= 1957) or (2309 <= LA43_0 <= 2361) or LA43_0 == 2365 or LA43_0 == 2384 or (2392 <= LA43_0 <= 2401) or (2437 <= LA43_0 <= 2444) or (2447 <= LA43_0 <= 2448) or (2451 <= LA43_0 <= 2472) or (2474 <= LA43_0 <= 2480) or LA43_0 == 2482 or (2486 <= LA43_0 <= 2489) or (2524 <= LA43_0 <= 2525) or (2527 <= LA43_0 <= 2529) or (2544 <= LA43_0 <= 2545) or (2565 <= LA43_0 <= 2570) or (2575 <= LA43_0 <= 2576) or (2579 <= LA43_0 <= 2600) or (2602 <= LA43_0 <= 2608) or (2610 <= LA43_0 <= 2611) or (2613 <= LA43_0 <= 2614) or (2616 <= LA43_0 <= 2617) or (2649 <= LA43_0 <= 2652) or LA43_0 == 2654 or (2674 <= LA43_0 <= 2676) or (2693 <= LA43_0 <= 2699) or LA43_0 == 2701 or (2703 <= LA43_0 <= 2705) or (2707 <= LA43_0 <= 2728) or (2730 <= LA43_0 <= 2736) or (2738 <= LA43_0 <= 2739) or (2741 <= LA43_0 <= 2745) or LA43_0 == 2749 or LA43_0 == 2768 or LA43_0 == 2784 or (2821 <= LA43_0 <= 2828) or (2831 <= LA43_0 <= 2832) or (2835 <= LA43_0 <= 2856) or (2858 <= LA43_0 <= 2864) or (2866 <= LA43_0 <= 2867) or (2870 <= LA43_0 <= 2873) or LA43_0 == 2877 or (2908 <= LA43_0 <= 2909) or (2911 <= LA43_0 <= 2913) or (2949 <= LA43_0 <= 2954) or (2958 <= LA43_0 <= 2960) or (2962 <= LA43_0 <= 2965) or (2969 <= LA43_0 <= 2970) or LA43_0 == 2972 or (2974 <= LA43_0 <= 2975) or (2979 <= LA43_0 <= 2980) or (2984 <= LA43_0 <= 2986) or (2990 <= LA43_0 <= 2997) or (2999 <= LA43_0 <= 3001) or (3077 <= LA43_0 <= 3084) or (3086 <= LA43_0 <= 3088) or (3090 <= LA43_0 <= 3112) or (3114 <= LA43_0 <= 3123) or (3125 <= LA43_0 <= 3129) or (3168 <= LA43_0 <= 3169) or (3205 <= LA43_0 <= 3212) or (3214 <= LA43_0 <= 3216) or (3218 <= LA43_0 <= 3240) or (3242 <= LA43_0 <= 3251) or (3253 <= LA43_0 <= 3257) or LA43_0 == 3294 or (3296 <= LA43_0 <= 3297) or (3333 <= LA43_0 <= 3340) or (3342 <= LA43_0 <= 3344) or (3346 <= LA43_0 <= 3368) or (3370 <= LA43_0 <= 3385) or (3424 <= LA43_0 <= 3425) or (3461 <= LA43_0 <= 3478) or (3482 <= LA43_0 <= 3505) or (3507 <= LA43_0 <= 3515) or LA43_0 == 3517 or (3520 <= LA43_0 <= 3526) or (3585 <= LA43_0 <= 3632) or (3634 <= LA43_0 <= 3635) or (3648 <= LA43_0 <= 3654) or (3713 <= LA43_0 <= 3714) or LA43_0 == 3716 or (3719 <= LA43_0 <= 3720) or LA43_0 == 3722 or LA43_0 == 3725 or (3732 <= LA43_0 <= 3735) or (3737 <= LA43_0 <= 3743) or (3745 <= LA43_0 <= 3747) or LA43_0 == 3749 or LA43_0 == 3751 or (3754 <= LA43_0 <= 3755) or (3757 <= LA43_0 <= 3760) or (3762 <= LA43_0 <= 3763) or (3773 <= LA43_0 <= 3780) or LA43_0 == 3782 or (3804 <= LA43_0 <= 3805) or LA43_0 == 3840 or (3904 <= LA43_0 <= 3946) or (3976 <= LA43_0 <= 3979) or (4096 <= LA43_0 <= 4129) or (4131 <= LA43_0 <= 4135) or (4137 <= LA43_0 <= 4138) or (4176 <= LA43_0 <= 4181) or (4256 <= LA43_0 <= 4293) or (4304 <= LA43_0 <= 4342) or (4352 <= LA43_0 <= 4441) or (4447 <= LA43_0 <= 4514) or (4520 <= LA43_0 <= 4601) or (4608 <= LA43_0 <= 4614) or (4616 <= LA43_0 <= 4678) or LA43_0 == 4680 or (4682 <= LA43_0 <= 4685) or (4688 <= LA43_0 <= 4694) or LA43_0 == 4696 or (4698 <= LA43_0 <= 4701) or (4704 <= LA43_0 <= 4742) or LA43_0 == 4744 or (4746 <= LA43_0 <= 4749) or (4752 <= LA43_0 <= 4782) or LA43_0 == 4784 or (4786 <= LA43_0 <= 4789) or (4792 <= LA43_0 <= 4798) or LA43_0 == 4800 or (4802 <= LA43_0 <= 4805) or (4808 <= LA43_0 <= 4814) or (4816 <= LA43_0 <= 4822) or (4824 <= LA43_0 <= 4846) or (4848 <= LA43_0 <= 4878) or LA43_0 == 4880 or (4882 <= LA43_0 <= 4885) or (4888 <= LA43_0 <= 4894) or (4896 <= LA43_0 <= 4934) or (4936 <= LA43_0 <= 4954) or (5024 <= LA43_0 <= 5108) or (5121 <= LA43_0 <= 5750) or (5761 <= LA43_0 <= 5786) or (5792 <= LA43_0 <= 5866) or (6016 <= LA43_0 <= 6067) or (6176 <= LA43_0 <= 6263) or (6272 <= LA43_0 <= 6312) or (7680 <= LA43_0 <= 7835) or (7840 <= LA43_0 <= 7929) or (7936 <= LA43_0 <= 7957) or (7960 <= LA43_0 <= 7965) or (7968 <= LA43_0 <= 8005) or (8008 <= LA43_0 <= 8013) or (8016 <= LA43_0 <= 8023) or LA43_0 == 8025 or LA43_0 == 8027 or LA43_0 == 8029 or (8031 <= LA43_0 <= 8061) or (8064 <= LA43_0 <= 8116) or (8118 <= LA43_0 <= 8124) or LA43_0 == 8126 or (8130 <= LA43_0 <= 8132) or (8134 <= LA43_0 <= 8140) or (8144 <= LA43_0 <= 8147) or (8150 <= LA43_0 <= 8155) or (8160 <= LA43_0 <= 8172) or (8178 <= LA43_0 <= 8180) or (8182 <= LA43_0 <= 8188) or LA43_0 == 8319 or LA43_0 == 8450 or LA43_0 == 8455 or (8458 <= LA43_0 <= 8467) or LA43_0 == 8469 or (8473 <= LA43_0 <= 8477) or LA43_0 == 8484 or LA43_0 == 8486 or LA43_0 == 8488 or (8490 <= LA43_0 <= 8493) or (8495 <= LA43_0 <= 8497) or (8499 <= LA43_0 <= 8505) or (8544 <= LA43_0 <= 8579) or (12293 <= LA43_0 <= 12295) or (12321 <= LA43_0 <= 12329) or (12337 <= LA43_0 <= 12341) or (12344 <= LA43_0 <= 12346) or (12353 <= LA43_0 <= 12436) or (12445 <= LA43_0 <= 12446) or (12449 <= LA43_0 <= 12538) or (12540 <= LA43_0 <= 12542) or (12549 <= LA43_0 <= 12588) or (12593 <= LA43_0 <= 12686) or (12704 <= LA43_0 <= 12727) or LA43_0 == 13312 or LA43_0 == 19893 or LA43_0 == 19968 or LA43_0 == 40869 or (40960 <= LA43_0 <= 42124) or LA43_0 == 44032 or LA43_0 == 55203 or (63744 <= LA43_0 <= 64045) or (64256 <= LA43_0 <= 64262) or (64275 <= LA43_0 <= 64279) or LA43_0 == 64285 or (64287 <= LA43_0 <= 64296) or (64298 <= LA43_0 <= 64310) or (64312 <= LA43_0 <= 64316) or LA43_0 == 64318 or (64320 <= LA43_0 <= 64321) or (64323 <= LA43_0 <= 64324) or (64326 <= LA43_0 <= 64433) or (64467 <= LA43_0 <= 64829) or (64848 <= LA43_0 <= 64911) or (64914 <= LA43_0 <= 64967) or (65008 <= LA43_0 <= 65019) or (65136 <= LA43_0 <= 65138) or LA43_0 == 65140 or (65142 <= LA43_0 <= 65276) or (65313 <= LA43_0 <= 65338) or (65345 <= LA43_0 <= 65370) or (65382 <= LA43_0 <= 65470) or (65474 <= LA43_0 <= 65479) or (65482 <= LA43_0 <= 65487) or (65490 <= LA43_0 <= 65495) or (65498 <= LA43_0 <= 65500)) and (self.synpred1_sol()): alt43 = 1 elif (LA43_0 == 36) and (self.synpred1_sol()): alt43 = 1 elif (LA43_0 == 95) : LA43_3 = self.input.LA(2) if (self.synpred1_sol()) : alt43 = 1 elif (True) : alt43 = 3 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 43, 3, self.input) raise nvae elif (LA43_0 == 92) and (self.synpred1_sol()): alt43 = 1 elif ((48 <= LA43_0 <= 57) or (1632 <= LA43_0 <= 1641) or (1776 <= LA43_0 <= 1785) or (2406 <= LA43_0 <= 2415) or (2534 <= LA43_0 <= 2543) or (2662 <= LA43_0 <= 2671) or (2790 <= LA43_0 <= 2799) or (2918 <= LA43_0 <= 2927) or (3047 <= LA43_0 <= 3055) or (3174 <= LA43_0 <= 3183) or (3302 <= LA43_0 <= 3311) or (3430 <= LA43_0 <= 3439) or (3664 <= LA43_0 <= 3673) or (3792 <= LA43_0 <= 3801) or (3872 <= LA43_0 <= 3881) or (4160 <= LA43_0 <= 4169) or (4969 <= LA43_0 <= 4977) or (6112 <= LA43_0 <= 6121) or (6160 <= LA43_0 <= 6169) or (65296 <= LA43_0 <= 65305)) : alt43 = 2 elif ((8255 <= LA43_0 <= 8256) or LA43_0 == 12539 or (65075 <= LA43_0 <= 65076) or (65101 <= LA43_0 <= 65103) or LA43_0 == 65343 or LA43_0 == 65381) : alt43 = 3 else: if self._state.backtracking > 0: raise BacktrackingFailed nvae = NoViableAltException("", 43, 0, self.input) raise nvae if alt43 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:903:4: ( IdentifierStart )=> IdentifierStart pass self.mIdentifierStart() elif alt43 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:904:4: UnicodeDigit pass self.mUnicodeDigit() elif alt43 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:905:4: UnicodeConnectorPunctuation pass self.mUnicodeConnectorPunctuation() finally: pass # $ANTLR end "IdentifierPart" # $ANTLR start "UnicodeLetter" def mUnicodeLetter(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:909:23: ( '\\u0041' .. '\\u005A' | '\\u0061' .. '\\u007A' | '\\u00AA' | '\\u00B5' | '\\u00BA' | '\\u00C0' .. '\\u00D6' | '\\u00D8' .. '\\u00F6' | '\\u00F8' .. '\\u021F' | '\\u0222' .. '\\u0233' | '\\u0250' .. '\\u02AD' | '\\u02B0' .. '\\u02B8' | '\\u02BB' .. '\\u02C1' | '\\u02D0' .. '\\u02D1' | '\\u02E0' .. '\\u02E4' | '\\u02EE' | '\\u037A' | '\\u0386' | '\\u0388' .. '\\u038A' | '\\u038C' | '\\u038E' .. '\\u03A1' | '\\u03A3' .. '\\u03CE' | '\\u03D0' .. '\\u03D7' | '\\u03DA' .. '\\u03F3' | '\\u0400' .. '\\u0481' | '\\u048C' .. '\\u04C4' | '\\u04C7' .. '\\u04C8' | '\\u04CB' .. '\\u04CC' | '\\u04D0' .. '\\u04F5' | '\\u04F8' .. '\\u04F9' | '\\u0531' .. '\\u0556' | '\\u0559' | '\\u0561' .. '\\u0587' | '\\u05D0' .. '\\u05EA' | '\\u05F0' .. '\\u05F2' | '\\u0621' .. '\\u063A' | '\\u0640' .. '\\u064A' | '\\u0671' .. '\\u06D3' | '\\u06D5' | '\\u06E5' .. '\\u06E6' | '\\u06FA' .. '\\u06FC' | '\\u0710' | '\\u0712' .. '\\u072C' | '\\u0780' .. '\\u07A5' | '\\u0905' .. '\\u0939' | '\\u093D' | '\\u0950' | '\\u0958' .. '\\u0961' | '\\u0985' .. '\\u098C' | '\\u098F' .. '\\u0990' | '\\u0993' .. '\\u09A8' | '\\u09AA' .. '\\u09B0' | '\\u09B2' | '\\u09B6' .. '\\u09B9' | '\\u09DC' .. '\\u09DD' | '\\u09DF' .. '\\u09E1' | '\\u09F0' .. '\\u09F1' | '\\u0A05' .. '\\u0A0A' | '\\u0A0F' .. '\\u0A10' | '\\u0A13' .. '\\u0A28' | '\\u0A2A' .. '\\u0A30' | '\\u0A32' .. '\\u0A33' | '\\u0A35' .. '\\u0A36' | '\\u0A38' .. '\\u0A39' | '\\u0A59' .. '\\u0A5C' | '\\u0A5E' | '\\u0A72' .. '\\u0A74' | '\\u0A85' .. '\\u0A8B' | '\\u0A8D' | '\\u0A8F' .. '\\u0A91' | '\\u0A93' .. '\\u0AA8' | '\\u0AAA' .. '\\u0AB0' | '\\u0AB2' .. '\\u0AB3' | '\\u0AB5' .. '\\u0AB9' | '\\u0ABD' | '\\u0AD0' | '\\u0AE0' | '\\u0B05' .. '\\u0B0C' | '\\u0B0F' .. '\\u0B10' | '\\u0B13' .. '\\u0B28' | '\\u0B2A' .. '\\u0B30' | '\\u0B32' .. '\\u0B33' | '\\u0B36' .. '\\u0B39' | '\\u0B3D' | '\\u0B5C' .. '\\u0B5D' | '\\u0B5F' .. '\\u0B61' | '\\u0B85' .. '\\u0B8A' | '\\u0B8E' .. '\\u0B90' | '\\u0B92' .. '\\u0B95' | '\\u0B99' .. '\\u0B9A' | '\\u0B9C' | '\\u0B9E' .. '\\u0B9F' | '\\u0BA3' .. '\\u0BA4' | '\\u0BA8' .. '\\u0BAA' | '\\u0BAE' .. '\\u0BB5' | '\\u0BB7' .. '\\u0BB9' | '\\u0C05' .. '\\u0C0C' | '\\u0C0E' .. '\\u0C10' | '\\u0C12' .. '\\u0C28' | '\\u0C2A' .. '\\u0C33' | '\\u0C35' .. '\\u0C39' | '\\u0C60' .. '\\u0C61' | '\\u0C85' .. '\\u0C8C' | '\\u0C8E' .. '\\u0C90' | '\\u0C92' .. '\\u0CA8' | '\\u0CAA' .. '\\u0CB3' | '\\u0CB5' .. '\\u0CB9' | '\\u0CDE' | '\\u0CE0' .. '\\u0CE1' | '\\u0D05' .. '\\u0D0C' | '\\u0D0E' .. '\\u0D10' | '\\u0D12' .. '\\u0D28' | '\\u0D2A' .. '\\u0D39' | '\\u0D60' .. '\\u0D61' | '\\u0D85' .. '\\u0D96' | '\\u0D9A' .. '\\u0DB1' | '\\u0DB3' .. '\\u0DBB' | '\\u0DBD' | '\\u0DC0' .. '\\u0DC6' | '\\u0E01' .. '\\u0E30' | '\\u0E32' .. '\\u0E33' | '\\u0E40' .. '\\u0E46' | '\\u0E81' .. '\\u0E82' | '\\u0E84' | '\\u0E87' .. '\\u0E88' | '\\u0E8A' | '\\u0E8D' | '\\u0E94' .. '\\u0E97' | '\\u0E99' .. '\\u0E9F' | '\\u0EA1' .. '\\u0EA3' | '\\u0EA5' | '\\u0EA7' | '\\u0EAA' .. '\\u0EAB' | '\\u0EAD' .. '\\u0EB0' | '\\u0EB2' .. '\\u0EB3' | '\\u0EBD' .. '\\u0EC4' | '\\u0EC6' | '\\u0EDC' .. '\\u0EDD' | '\\u0F00' | '\\u0F40' .. '\\u0F6A' | '\\u0F88' .. '\\u0F8B' | '\\u1000' .. '\\u1021' | '\\u1023' .. '\\u1027' | '\\u1029' .. '\\u102A' | '\\u1050' .. '\\u1055' | '\\u10A0' .. '\\u10C5' | '\\u10D0' .. '\\u10F6' | '\\u1100' .. '\\u1159' | '\\u115F' .. '\\u11A2' | '\\u11A8' .. '\\u11F9' | '\\u1200' .. '\\u1206' | '\\u1208' .. '\\u1246' | '\\u1248' | '\\u124A' .. '\\u124D' | '\\u1250' .. '\\u1256' | '\\u1258' | '\\u125A' .. '\\u125D' | '\\u1260' .. '\\u1286' | '\\u1288' | '\\u128A' .. '\\u128D' | '\\u1290' .. '\\u12AE' | '\\u12B0' | '\\u12B2' .. '\\u12B5' | '\\u12B8' .. '\\u12BE' | '\\u12C0' | '\\u12C2' .. '\\u12C5' | '\\u12C8' .. '\\u12CE' | '\\u12D0' .. '\\u12D6' | '\\u12D8' .. '\\u12EE' | '\\u12F0' .. '\\u130E' | '\\u1310' | '\\u1312' .. '\\u1315' | '\\u1318' .. '\\u131E' | '\\u1320' .. '\\u1346' | '\\u1348' .. '\\u135A' | '\\u13A0' .. '\\u13B0' | '\\u13B1' .. '\\u13F4' | '\\u1401' .. '\\u1676' | '\\u1681' .. '\\u169A' | '\\u16A0' .. '\\u16EA' | '\\u1780' .. '\\u17B3' | '\\u1820' .. '\\u1877' | '\\u1880' .. '\\u18A8' | '\\u1E00' .. '\\u1E9B' | '\\u1EA0' .. '\\u1EE0' | '\\u1EE1' .. '\\u1EF9' | '\\u1F00' .. '\\u1F15' | '\\u1F18' .. '\\u1F1D' | '\\u1F20' .. '\\u1F39' | '\\u1F3A' .. '\\u1F45' | '\\u1F48' .. '\\u1F4D' | '\\u1F50' .. '\\u1F57' | '\\u1F59' | '\\u1F5B' | '\\u1F5D' | '\\u1F5F' .. '\\u1F7D' | '\\u1F80' .. '\\u1FB4' | '\\u1FB6' .. '\\u1FBC' | '\\u1FBE' | '\\u1FC2' .. '\\u1FC4' | '\\u1FC6' .. '\\u1FCC' | '\\u1FD0' .. '\\u1FD3' | '\\u1FD6' .. '\\u1FDB' | '\\u1FE0' .. '\\u1FEC' | '\\u1FF2' .. '\\u1FF4' | '\\u1FF6' .. '\\u1FFC' | '\\u207F' | '\\u2102' | '\\u2107' | '\\u210A' .. '\\u2113' | '\\u2115' | '\\u2119' .. '\\u211D' | '\\u2124' | '\\u2126' | '\\u2128' | '\\u212A' .. '\\u212D' | '\\u212F' .. '\\u2131' | '\\u2133' .. '\\u2139' | '\\u2160' .. '\\u2183' | '\\u3005' .. '\\u3007' | '\\u3021' .. '\\u3029' | '\\u3031' .. '\\u3035' | '\\u3038' .. '\\u303A' | '\\u3041' .. '\\u3094' | '\\u309D' .. '\\u309E' | '\\u30A1' .. '\\u30FA' | '\\u30FC' .. '\\u30FE' | '\\u3105' .. '\\u312C' | '\\u3131' .. '\\u318E' | '\\u31A0' .. '\\u31B7' | '\\u3400' | '\\u4DB5' | '\\u4E00' | '\\u9FA5' | '\\uA000' .. '\\uA48C' | '\\uAC00' | '\\uD7A3' | '\\uF900' .. '\\uFA2D' | '\\uFB00' .. '\\uFB06' | '\\uFB13' .. '\\uFB17' | '\\uFB1D' | '\\uFB1F' .. '\\uFB28' | '\\uFB2A' .. '\\uFB36' | '\\uFB38' .. '\\uFB3C' | '\\uFB3E' | '\\uFB40' .. '\\uFB41' | '\\uFB43' .. '\\uFB44' | '\\uFB46' .. '\\uFBB1' | '\\uFBD3' .. '\\uFD3D' | '\\uFD50' .. '\\uFD8F' | '\\uFD92' .. '\\uFDC7' | '\\uFDF0' .. '\\uFDFB' | '\\uFE70' .. '\\uFE72' | '\\uFE74' | '\\uFE76' .. '\\uFEFC' | '\\uFF21' .. '\\uFF3A' | '\\uFF41' .. '\\uFF5A' | '\\uFF66' .. '\\uFFBE' | '\\uFFC2' .. '\\uFFC7' | '\\uFFCA' .. '\\uFFCF' | '\\uFFD2' .. '\\uFFD7' | '\\uFFDA' .. '\\uFFDC' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g: pass if (65 <= self.input.LA(1) <= 90) or (97 <= self.input.LA(1) <= 122) or self.input.LA(1) == 170 or self.input.LA(1) == 181 or self.input.LA(1) == 186 or (192 <= self.input.LA(1) <= 214) or (216 <= self.input.LA(1) <= 246) or (248 <= self.input.LA(1) <= 543) or (546 <= self.input.LA(1) <= 563) or (592 <= self.input.LA(1) <= 685) or (688 <= self.input.LA(1) <= 696) or (699 <= self.input.LA(1) <= 705) or (720 <= self.input.LA(1) <= 721) or (736 <= self.input.LA(1) <= 740) or self.input.LA(1) == 750 or self.input.LA(1) == 890 or self.input.LA(1) == 902 or (904 <= self.input.LA(1) <= 906) or self.input.LA(1) == 908 or (910 <= self.input.LA(1) <= 929) or (931 <= self.input.LA(1) <= 974) or (976 <= self.input.LA(1) <= 983) or (986 <= self.input.LA(1) <= 1011) or (1024 <= self.input.LA(1) <= 1153) or (1164 <= self.input.LA(1) <= 1220) or (1223 <= self.input.LA(1) <= 1224) or (1227 <= self.input.LA(1) <= 1228) or (1232 <= self.input.LA(1) <= 1269) or (1272 <= self.input.LA(1) <= 1273) or (1329 <= self.input.LA(1) <= 1366) or self.input.LA(1) == 1369 or (1377 <= self.input.LA(1) <= 1415) or (1488 <= self.input.LA(1) <= 1514) or (1520 <= self.input.LA(1) <= 1522) or (1569 <= self.input.LA(1) <= 1594) or (1600 <= self.input.LA(1) <= 1610) or (1649 <= self.input.LA(1) <= 1747) or self.input.LA(1) == 1749 or (1765 <= self.input.LA(1) <= 1766) or (1786 <= self.input.LA(1) <= 1788) or self.input.LA(1) == 1808 or (1810 <= self.input.LA(1) <= 1836) or (1920 <= self.input.LA(1) <= 1957) or (2309 <= self.input.LA(1) <= 2361) or self.input.LA(1) == 2365 or self.input.LA(1) == 2384 or (2392 <= self.input.LA(1) <= 2401) or (2437 <= self.input.LA(1) <= 2444) or (2447 <= self.input.LA(1) <= 2448) or (2451 <= self.input.LA(1) <= 2472) or (2474 <= self.input.LA(1) <= 2480) or self.input.LA(1) == 2482 or (2486 <= self.input.LA(1) <= 2489) or (2524 <= self.input.LA(1) <= 2525) or (2527 <= self.input.LA(1) <= 2529) or (2544 <= self.input.LA(1) <= 2545) or (2565 <= self.input.LA(1) <= 2570) or (2575 <= self.input.LA(1) <= 2576) or (2579 <= self.input.LA(1) <= 2600) or (2602 <= self.input.LA(1) <= 2608) or (2610 <= self.input.LA(1) <= 2611) or (2613 <= self.input.LA(1) <= 2614) or (2616 <= self.input.LA(1) <= 2617) or (2649 <= self.input.LA(1) <= 2652) or self.input.LA(1) == 2654 or (2674 <= self.input.LA(1) <= 2676) or (2693 <= self.input.LA(1) <= 2699) or self.input.LA(1) == 2701 or (2703 <= self.input.LA(1) <= 2705) or (2707 <= self.input.LA(1) <= 2728) or (2730 <= self.input.LA(1) <= 2736) or (2738 <= self.input.LA(1) <= 2739) or (2741 <= self.input.LA(1) <= 2745) or self.input.LA(1) == 2749 or self.input.LA(1) == 2768 or self.input.LA(1) == 2784 or (2821 <= self.input.LA(1) <= 2828) or (2831 <= self.input.LA(1) <= 2832) or (2835 <= self.input.LA(1) <= 2856) or (2858 <= self.input.LA(1) <= 2864) or (2866 <= self.input.LA(1) <= 2867) or (2870 <= self.input.LA(1) <= 2873) or self.input.LA(1) == 2877 or (2908 <= self.input.LA(1) <= 2909) or (2911 <= self.input.LA(1) <= 2913) or (2949 <= self.input.LA(1) <= 2954) or (2958 <= self.input.LA(1) <= 2960) or (2962 <= self.input.LA(1) <= 2965) or (2969 <= self.input.LA(1) <= 2970) or self.input.LA(1) == 2972 or (2974 <= self.input.LA(1) <= 2975) or (2979 <= self.input.LA(1) <= 2980) or (2984 <= self.input.LA(1) <= 2986) or (2990 <= self.input.LA(1) <= 2997) or (2999 <= self.input.LA(1) <= 3001) or (3077 <= self.input.LA(1) <= 3084) or (3086 <= self.input.LA(1) <= 3088) or (3090 <= self.input.LA(1) <= 3112) or (3114 <= self.input.LA(1) <= 3123) or (3125 <= self.input.LA(1) <= 3129) or (3168 <= self.input.LA(1) <= 3169) or (3205 <= self.input.LA(1) <= 3212) or (3214 <= self.input.LA(1) <= 3216) or (3218 <= self.input.LA(1) <= 3240) or (3242 <= self.input.LA(1) <= 3251) or (3253 <= self.input.LA(1) <= 3257) or self.input.LA(1) == 3294 or (3296 <= self.input.LA(1) <= 3297) or (3333 <= self.input.LA(1) <= 3340) or (3342 <= self.input.LA(1) <= 3344) or (3346 <= self.input.LA(1) <= 3368) or (3370 <= self.input.LA(1) <= 3385) or (3424 <= self.input.LA(1) <= 3425) or (3461 <= self.input.LA(1) <= 3478) or (3482 <= self.input.LA(1) <= 3505) or (3507 <= self.input.LA(1) <= 3515) or self.input.LA(1) == 3517 or (3520 <= self.input.LA(1) <= 3526) or (3585 <= self.input.LA(1) <= 3632) or (3634 <= self.input.LA(1) <= 3635) or (3648 <= self.input.LA(1) <= 3654) or (3713 <= self.input.LA(1) <= 3714) or self.input.LA(1) == 3716 or (3719 <= self.input.LA(1) <= 3720) or self.input.LA(1) == 3722 or self.input.LA(1) == 3725 or (3732 <= self.input.LA(1) <= 3735) or (3737 <= self.input.LA(1) <= 3743) or (3745 <= self.input.LA(1) <= 3747) or self.input.LA(1) == 3749 or self.input.LA(1) == 3751 or (3754 <= self.input.LA(1) <= 3755) or (3757 <= self.input.LA(1) <= 3760) or (3762 <= self.input.LA(1) <= 3763) or (3773 <= self.input.LA(1) <= 3780) or self.input.LA(1) == 3782 or (3804 <= self.input.LA(1) <= 3805) or self.input.LA(1) == 3840 or (3904 <= self.input.LA(1) <= 3946) or (3976 <= self.input.LA(1) <= 3979) or (4096 <= self.input.LA(1) <= 4129) or (4131 <= self.input.LA(1) <= 4135) or (4137 <= self.input.LA(1) <= 4138) or (4176 <= self.input.LA(1) <= 4181) or (4256 <= self.input.LA(1) <= 4293) or (4304 <= self.input.LA(1) <= 4342) or (4352 <= self.input.LA(1) <= 4441) or (4447 <= self.input.LA(1) <= 4514) or (4520 <= self.input.LA(1) <= 4601) or (4608 <= self.input.LA(1) <= 4614) or (4616 <= self.input.LA(1) <= 4678) or self.input.LA(1) == 4680 or (4682 <= self.input.LA(1) <= 4685) or (4688 <= self.input.LA(1) <= 4694) or self.input.LA(1) == 4696 or (4698 <= self.input.LA(1) <= 4701) or (4704 <= self.input.LA(1) <= 4742) or self.input.LA(1) == 4744 or (4746 <= self.input.LA(1) <= 4749) or (4752 <= self.input.LA(1) <= 4782) or self.input.LA(1) == 4784 or (4786 <= self.input.LA(1) <= 4789) or (4792 <= self.input.LA(1) <= 4798) or self.input.LA(1) == 4800 or (4802 <= self.input.LA(1) <= 4805) or (4808 <= self.input.LA(1) <= 4814) or (4816 <= self.input.LA(1) <= 4822) or (4824 <= self.input.LA(1) <= 4846) or (4848 <= self.input.LA(1) <= 4878) or self.input.LA(1) == 4880 or (4882 <= self.input.LA(1) <= 4885) or (4888 <= self.input.LA(1) <= 4894) or (4896 <= self.input.LA(1) <= 4934) or (4936 <= self.input.LA(1) <= 4954) or (5024 <= self.input.LA(1) <= 5108) or (5121 <= self.input.LA(1) <= 5750) or (5761 <= self.input.LA(1) <= 5786) or (5792 <= self.input.LA(1) <= 5866) or (6016 <= self.input.LA(1) <= 6067) or (6176 <= self.input.LA(1) <= 6263) or (6272 <= self.input.LA(1) <= 6312) or (7680 <= self.input.LA(1) <= 7835) or (7840 <= self.input.LA(1) <= 7929) or (7936 <= self.input.LA(1) <= 7957) or (7960 <= self.input.LA(1) <= 7965) or (7968 <= self.input.LA(1) <= 8005) or (8008 <= self.input.LA(1) <= 8013) or (8016 <= self.input.LA(1) <= 8023) or self.input.LA(1) == 8025 or self.input.LA(1) == 8027 or self.input.LA(1) == 8029 or (8031 <= self.input.LA(1) <= 8061) or (8064 <= self.input.LA(1) <= 8116) or (8118 <= self.input.LA(1) <= 8124) or self.input.LA(1) == 8126 or (8130 <= self.input.LA(1) <= 8132) or (8134 <= self.input.LA(1) <= 8140) or (8144 <= self.input.LA(1) <= 8147) or (8150 <= self.input.LA(1) <= 8155) or (8160 <= self.input.LA(1) <= 8172) or (8178 <= self.input.LA(1) <= 8180) or (8182 <= self.input.LA(1) <= 8188) or self.input.LA(1) == 8319 or self.input.LA(1) == 8450 or self.input.LA(1) == 8455 or (8458 <= self.input.LA(1) <= 8467) or self.input.LA(1) == 8469 or (8473 <= self.input.LA(1) <= 8477) or self.input.LA(1) == 8484 or self.input.LA(1) == 8486 or self.input.LA(1) == 8488 or (8490 <= self.input.LA(1) <= 8493) or (8495 <= self.input.LA(1) <= 8497) or (8499 <= self.input.LA(1) <= 8505) or (8544 <= self.input.LA(1) <= 8579) or (12293 <= self.input.LA(1) <= 12295) or (12321 <= self.input.LA(1) <= 12329) or (12337 <= self.input.LA(1) <= 12341) or (12344 <= self.input.LA(1) <= 12346) or (12353 <= self.input.LA(1) <= 12436) or (12445 <= self.input.LA(1) <= 12446) or (12449 <= self.input.LA(1) <= 12538) or (12540 <= self.input.LA(1) <= 12542) or (12549 <= self.input.LA(1) <= 12588) or (12593 <= self.input.LA(1) <= 12686) or (12704 <= self.input.LA(1) <= 12727) or self.input.LA(1) == 13312 or self.input.LA(1) == 19893 or self.input.LA(1) == 19968 or self.input.LA(1) == 40869 or (40960 <= self.input.LA(1) <= 42124) or self.input.LA(1) == 44032 or self.input.LA(1) == 55203 or (63744 <= self.input.LA(1) <= 64045) or (64256 <= self.input.LA(1) <= 64262) or (64275 <= self.input.LA(1) <= 64279) or self.input.LA(1) == 64285 or (64287 <= self.input.LA(1) <= 64296) or (64298 <= self.input.LA(1) <= 64310) or (64312 <= self.input.LA(1) <= 64316) or self.input.LA(1) == 64318 or (64320 <= self.input.LA(1) <= 64321) or (64323 <= self.input.LA(1) <= 64324) or (64326 <= self.input.LA(1) <= 64433) or (64467 <= self.input.LA(1) <= 64829) or (64848 <= self.input.LA(1) <= 64911) or (64914 <= self.input.LA(1) <= 64967) or (65008 <= self.input.LA(1) <= 65019) or (65136 <= self.input.LA(1) <= 65138) or self.input.LA(1) == 65140 or (65142 <= self.input.LA(1) <= 65276) or (65313 <= self.input.LA(1) <= 65338) or (65345 <= self.input.LA(1) <= 65370) or (65382 <= self.input.LA(1) <= 65470) or (65474 <= self.input.LA(1) <= 65479) or (65482 <= self.input.LA(1) <= 65487) or (65490 <= self.input.LA(1) <= 65495) or (65498 <= self.input.LA(1) <= 65500): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "UnicodeLetter" # $ANTLR start "UnicodeCombiningMark" def mUnicodeCombiningMark(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:969:30: ( '\\u0300' .. '\\u034E' | '\\u0360' .. '\\u0362' | '\\u0483' .. '\\u0486' | '\\u0591' .. '\\u05A1' | '\\u05A3' .. '\\u05B9' | '\\u05BB' .. '\\u05BD' | '\\u05BF' | '\\u05C1' .. '\\u05C2' | '\\u05C4' | '\\u064B' .. '\\u0655' | '\\u0670' | '\\u06D6' .. '\\u06DC' | '\\u06DF' .. '\\u06E4' | '\\u06E7' .. '\\u06E8' | '\\u06EA' .. '\\u06ED' | '\\u0711' | '\\u0730' .. '\\u074A' | '\\u07A6' .. '\\u07B0' | '\\u0901' .. '\\u0903' | '\\u093C' | '\\u093E' .. '\\u094D' | '\\u0951' .. '\\u0954' | '\\u0962' .. '\\u0963' | '\\u0981' .. '\\u0983' | '\\u09BC' .. '\\u09C4' | '\\u09C7' .. '\\u09C8' | '\\u09CB' .. '\\u09CD' | '\\u09D7' | '\\u09E2' .. '\\u09E3' | '\\u0A02' | '\\u0A3C' | '\\u0A3E' .. '\\u0A42' | '\\u0A47' .. '\\u0A48' | '\\u0A4B' .. '\\u0A4D' | '\\u0A70' .. '\\u0A71' | '\\u0A81' .. '\\u0A83' | '\\u0ABC' | '\\u0ABE' .. '\\u0AC5' | '\\u0AC7' .. '\\u0AC9' | '\\u0ACB' .. '\\u0ACD' | '\\u0B01' .. '\\u0B03' | '\\u0B3C' | '\\u0B3E' .. '\\u0B43' | '\\u0B47' .. '\\u0B48' | '\\u0B4B' .. '\\u0B4D' | '\\u0B56' .. '\\u0B57' | '\\u0B82' .. '\\u0B83' | '\\u0BBE' .. '\\u0BC2' | '\\u0BC6' .. '\\u0BC8' | '\\u0BCA' .. '\\u0BCD' | '\\u0BD7' | '\\u0C01' .. '\\u0C03' | '\\u0C3E' .. '\\u0C44' | '\\u0C46' .. '\\u0C48' | '\\u0C4A' .. '\\u0C4D' | '\\u0C55' .. '\\u0C56' | '\\u0C82' .. '\\u0C83' | '\\u0CBE' .. '\\u0CC4' | '\\u0CC6' .. '\\u0CC8' | '\\u0CCA' .. '\\u0CCD' | '\\u0CD5' .. '\\u0CD6' | '\\u0D02' .. '\\u0D03' | '\\u0D3E' .. '\\u0D43' | '\\u0D46' .. '\\u0D48' | '\\u0D4A' .. '\\u0D4D' | '\\u0D57' | '\\u0D82' .. '\\u0D83' | '\\u0DCA' | '\\u0DCF' .. '\\u0DD4' | '\\u0DD6' | '\\u0DD8' .. '\\u0DDF' | '\\u0DF2' .. '\\u0DF3' | '\\u0E31' | '\\u0E34' .. '\\u0E3A' | '\\u0E47' .. '\\u0E4E' | '\\u0EB1' | '\\u0EB4' .. '\\u0EB9' | '\\u0EBB' .. '\\u0EBC' | '\\u0EC8' .. '\\u0ECD' | '\\u0F18' .. '\\u0F19' | '\\u0F35' | '\\u0F37' | '\\u0F39' | '\\u0F3E' .. '\\u0F3F' | '\\u0F71' .. '\\u0F84' | '\\u0F86' .. '\\u0F87' | '\\u0F90' .. '\\u0F97' | '\\u0F99' .. '\\u0FBC' | '\\u0FC6' | '\\u102C' .. '\\u1032' | '\\u1036' .. '\\u1039' | '\\u1056' .. '\\u1059' | '\\u17B4' .. '\\u17D3' | '\\u18A9' | '\\u20D0' .. '\\u20DC' | '\\u20E1' | '\\u302A' .. '\\u302F' | '\\u3099' .. '\\u309A' | '\\uFB1E' | '\\uFE20' .. '\\uFE23' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g: pass if (768 <= self.input.LA(1) <= 846) or (864 <= self.input.LA(1) <= 866) or (1155 <= self.input.LA(1) <= 1158) or (1425 <= self.input.LA(1) <= 1441) or (1443 <= self.input.LA(1) <= 1465) or (1467 <= self.input.LA(1) <= 1469) or self.input.LA(1) == 1471 or (1473 <= self.input.LA(1) <= 1474) or self.input.LA(1) == 1476 or (1611 <= self.input.LA(1) <= 1621) or self.input.LA(1) == 1648 or (1750 <= self.input.LA(1) <= 1756) or (1759 <= self.input.LA(1) <= 1764) or (1767 <= self.input.LA(1) <= 1768) or (1770 <= self.input.LA(1) <= 1773) or self.input.LA(1) == 1809 or (1840 <= self.input.LA(1) <= 1866) or (1958 <= self.input.LA(1) <= 1968) or (2305 <= self.input.LA(1) <= 2307) or self.input.LA(1) == 2364 or (2366 <= self.input.LA(1) <= 2381) or (2385 <= self.input.LA(1) <= 2388) or (2402 <= self.input.LA(1) <= 2403) or (2433 <= self.input.LA(1) <= 2435) or (2492 <= self.input.LA(1) <= 2500) or (2503 <= self.input.LA(1) <= 2504) or (2507 <= self.input.LA(1) <= 2509) or self.input.LA(1) == 2519 or (2530 <= self.input.LA(1) <= 2531) or self.input.LA(1) == 2562 or self.input.LA(1) == 2620 or (2622 <= self.input.LA(1) <= 2626) or (2631 <= self.input.LA(1) <= 2632) or (2635 <= self.input.LA(1) <= 2637) or (2672 <= self.input.LA(1) <= 2673) or (2689 <= self.input.LA(1) <= 2691) or self.input.LA(1) == 2748 or (2750 <= self.input.LA(1) <= 2757) or (2759 <= self.input.LA(1) <= 2761) or (2763 <= self.input.LA(1) <= 2765) or (2817 <= self.input.LA(1) <= 2819) or self.input.LA(1) == 2876 or (2878 <= self.input.LA(1) <= 2883) or (2887 <= self.input.LA(1) <= 2888) or (2891 <= self.input.LA(1) <= 2893) or (2902 <= self.input.LA(1) <= 2903) or (2946 <= self.input.LA(1) <= 2947) or (3006 <= self.input.LA(1) <= 3010) or (3014 <= self.input.LA(1) <= 3016) or (3018 <= self.input.LA(1) <= 3021) or self.input.LA(1) == 3031 or (3073 <= self.input.LA(1) <= 3075) or (3134 <= self.input.LA(1) <= 3140) or (3142 <= self.input.LA(1) <= 3144) or (3146 <= self.input.LA(1) <= 3149) or (3157 <= self.input.LA(1) <= 3158) or (3202 <= self.input.LA(1) <= 3203) or (3262 <= self.input.LA(1) <= 3268) or (3270 <= self.input.LA(1) <= 3272) or (3274 <= self.input.LA(1) <= 3277) or (3285 <= self.input.LA(1) <= 3286) or (3330 <= self.input.LA(1) <= 3331) or (3390 <= self.input.LA(1) <= 3395) or (3398 <= self.input.LA(1) <= 3400) or (3402 <= self.input.LA(1) <= 3405) or self.input.LA(1) == 3415 or (3458 <= self.input.LA(1) <= 3459) or self.input.LA(1) == 3530 or (3535 <= self.input.LA(1) <= 3540) or self.input.LA(1) == 3542 or (3544 <= self.input.LA(1) <= 3551) or (3570 <= self.input.LA(1) <= 3571) or self.input.LA(1) == 3633 or (3636 <= self.input.LA(1) <= 3642) or (3655 <= self.input.LA(1) <= 3662) or self.input.LA(1) == 3761 or (3764 <= self.input.LA(1) <= 3769) or (3771 <= self.input.LA(1) <= 3772) or (3784 <= self.input.LA(1) <= 3789) or (3864 <= self.input.LA(1) <= 3865) or self.input.LA(1) == 3893 or self.input.LA(1) == 3895 or self.input.LA(1) == 3897 or (3902 <= self.input.LA(1) <= 3903) or (3953 <= self.input.LA(1) <= 3972) or (3974 <= self.input.LA(1) <= 3975) or (3984 <= self.input.LA(1) <= 3991) or (3993 <= self.input.LA(1) <= 4028) or self.input.LA(1) == 4038 or (4140 <= self.input.LA(1) <= 4146) or (4150 <= self.input.LA(1) <= 4153) or (4182 <= self.input.LA(1) <= 4185) or (6068 <= self.input.LA(1) <= 6099) or self.input.LA(1) == 6313 or (8400 <= self.input.LA(1) <= 8412) or self.input.LA(1) == 8417 or (12330 <= self.input.LA(1) <= 12335) or (12441 <= self.input.LA(1) <= 12442) or self.input.LA(1) == 64286 or (65056 <= self.input.LA(1) <= 65059): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "UnicodeCombiningMark" # $ANTLR start "UnicodeDigit" def mUnicodeDigit(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:995:22: ( '\\u0030' .. '\\u0039' | '\\u0660' .. '\\u0669' | '\\u06F0' .. '\\u06F9' | '\\u0966' .. '\\u096F' | '\\u09E6' .. '\\u09EF' | '\\u0A66' .. '\\u0A6F' | '\\u0AE6' .. '\\u0AEF' | '\\u0B66' .. '\\u0B6F' | '\\u0BE7' .. '\\u0BEF' | '\\u0C66' .. '\\u0C6F' | '\\u0CE6' .. '\\u0CEF' | '\\u0D66' .. '\\u0D6F' | '\\u0E50' .. '\\u0E59' | '\\u0ED0' .. '\\u0ED9' | '\\u0F20' .. '\\u0F29' | '\\u1040' .. '\\u1049' | '\\u1369' .. '\\u1371' | '\\u17E0' .. '\\u17E9' | '\\u1810' .. '\\u1819' | '\\uFF10' .. '\\uFF19' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g: pass if (48 <= self.input.LA(1) <= 57) or (1632 <= self.input.LA(1) <= 1641) or (1776 <= self.input.LA(1) <= 1785) or (2406 <= self.input.LA(1) <= 2415) or (2534 <= self.input.LA(1) <= 2543) or (2662 <= self.input.LA(1) <= 2671) or (2790 <= self.input.LA(1) <= 2799) or (2918 <= self.input.LA(1) <= 2927) or (3047 <= self.input.LA(1) <= 3055) or (3174 <= self.input.LA(1) <= 3183) or (3302 <= self.input.LA(1) <= 3311) or (3430 <= self.input.LA(1) <= 3439) or (3664 <= self.input.LA(1) <= 3673) or (3792 <= self.input.LA(1) <= 3801) or (3872 <= self.input.LA(1) <= 3881) or (4160 <= self.input.LA(1) <= 4169) or (4969 <= self.input.LA(1) <= 4977) or (6112 <= self.input.LA(1) <= 6121) or (6160 <= self.input.LA(1) <= 6169) or (65296 <= self.input.LA(1) <= 65305): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "UnicodeDigit" # $ANTLR start "UnicodeConnectorPunctuation" def mUnicodeConnectorPunctuation(self, ): try: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1002:37: ( '\\u005F' | '\\u203F' .. '\\u2040' | '\\u30FB' | '\\uFE33' .. '\\uFE34' | '\\uFE4D' .. '\\uFE4F' | '\\uFF3F' | '\\uFF65' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g: pass if self.input.LA(1) == 95 or (8255 <= self.input.LA(1) <= 8256) or self.input.LA(1) == 12539 or (65075 <= self.input.LA(1) <= 65076) or (65101 <= self.input.LA(1) <= 65103) or self.input.LA(1) == 65343 or self.input.LA(1) == 65381: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse finally: pass # $ANTLR end "UnicodeConnectorPunctuation" # $ANTLR start "Comment" def mComment(self, ): try: _type = Comment _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1006:8: ( '/*' ( options {greedy=false; } : . )* '*/' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1007:2: '/*' ( options {greedy=false; } : . )* '*/' pass self.match("/*") # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1007:7: ( options {greedy=false; } : . )* while True: #loop44 alt44 = 2 LA44_0 = self.input.LA(1) if (LA44_0 == 42) : LA44_1 = self.input.LA(2) if (LA44_1 == 47) : alt44 = 2 elif ((0 <= LA44_1 <= 46) or (48 <= LA44_1 <= 65535)) : alt44 = 1 elif ((0 <= LA44_0 <= 41) or (43 <= LA44_0 <= 65535)) : alt44 = 1 if alt44 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1007:34: . pass self.matchAny() else: break #loop44 self.match("*/") if self._state.backtracking == 0: _channel=HIDDEN; self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "Comment" # $ANTLR start "LineComment" def mLineComment(self, ): try: _type = LineComment _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1010:12: ( '//' (~ ( LT ) )* ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1011:2: '//' (~ ( LT ) )* pass self.match("//") # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1011:7: (~ ( LT ) )* while True: #loop45 alt45 = 2 LA45_0 = self.input.LA(1) if ((0 <= LA45_0 <= 9) or (11 <= LA45_0 <= 12) or (14 <= LA45_0 <= 8231) or (8234 <= LA45_0 <= 65535)) : alt45 = 1 if alt45 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1011:7: ~ ( LT ) pass if (0 <= self.input.LA(1) <= 9) or (11 <= self.input.LA(1) <= 12) or (14 <= self.input.LA(1) <= 8231) or (8234 <= self.input.LA(1) <= 65535): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse else: break #loop45 if self._state.backtracking == 0: _channel=HIDDEN; self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "LineComment" # $ANTLR start "LT" def mLT(self, ): try: _type = LT _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1014:3: ( '\\n' | '\\r' | '\\u2028' | '\\u2029' ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g: pass if self.input.LA(1) == 10 or self.input.LA(1) == 13 or (8232 <= self.input.LA(1) <= 8233): self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "LT" # $ANTLR start "WhiteSpace" def mWhiteSpace(self, ): try: _type = WhiteSpace _channel = DEFAULT_CHANNEL # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1021:11: ( ( '\\t' | '\\v' | '\\f' | ' ' | '\\u00A0' ) ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1022:2: ( '\\t' | '\\v' | '\\f' | ' ' | '\\u00A0' ) pass if self.input.LA(1) == 9 or self.input.LA(1) == 12 or self.input.LA(1) == 32 or self.input.LA(1) == 118 or self.input.LA(1) == 160: self.input.consume() else: if self._state.backtracking > 0: raise BacktrackingFailed mse = MismatchedSetException(None, self.input) self.recover(mse) raise mse if self._state.backtracking == 0: _channel=HIDDEN; self._state.type = _type self._state.channel = _channel finally: pass # $ANTLR end "WhiteSpace" def mTokens(self): # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:8: ( T__143 | T__144 | T__145 | T__146 | T__147 | T__148 | T__149 | T__150 | T__151 | T__152 | T__153 | T__154 | T__155 | T__156 | T__157 | T__158 | T__159 | T__160 | T__161 | T__162 | T__163 | T__164 | T__165 | T__166 | T__167 | T__168 | T__169 | T__170 | T__171 | T__172 | T__173 | T__174 | T__175 | T__176 | T__177 | T__178 | T__179 | T__180 | T__181 | T__182 | T__183 | T__184 | T__185 | T__186 | T__187 | T__188 | T__189 | T__190 | T__191 | T__192 | T__193 | T__194 | T__195 | T__196 | T__197 | T__198 | T__199 | T__200 | T__201 | T__202 | T__203 | T__204 | T__205 | T__206 | RBRACK | RPAREN | RSBRACK | VersionLiteral | NEW | EQUSING | COMPSIGNOIN | TIN | SHIFTSIG | MULSIG | PLUSMINUS | INCDEC | TDELETE | TVOID | TTYPEOF | TTHIS | Int | Uint | Byte | Fixed | Ufixed | AnonymousKeyword | BreakKeyword | ConstantKeyword | ContinueKeyword | ExternalKeyword | IndexedKeyword | InternalKeyword | PayableKeyword | PrivateKeyword | PublicKeyword | PureKeyword | ViewKeyword | TNULL | TTRUE | TFALSE | StringLiteral | NumericLiteral | Identifier | RegularExpressionLiteral | Comment | LineComment | LT | WhiteSpace ) alt46 = 108 alt46 = self.dfa46.predict(self.input) if alt46 == 1: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:10: T__143 pass self.mT__143() elif alt46 == 2: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:17: T__144 pass self.mT__144() elif alt46 == 3: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:24: T__145 pass self.mT__145() elif alt46 == 4: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:31: T__146 pass self.mT__146() elif alt46 == 5: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:38: T__147 pass self.mT__147() elif alt46 == 6: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:45: T__148 pass self.mT__148() elif alt46 == 7: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:52: T__149 pass self.mT__149() elif alt46 == 8: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:59: T__150 pass self.mT__150() elif alt46 == 9: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:66: T__151 pass self.mT__151() elif alt46 == 10: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:73: T__152 pass self.mT__152() elif alt46 == 11: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:80: T__153 pass self.mT__153() elif alt46 == 12: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:87: T__154 pass self.mT__154() elif alt46 == 13: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:94: T__155 pass self.mT__155() elif alt46 == 14: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:101: T__156 pass self.mT__156() elif alt46 == 15: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:108: T__157 pass self.mT__157() elif alt46 == 16: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:115: T__158 pass self.mT__158() elif alt46 == 17: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:122: T__159 pass self.mT__159() elif alt46 == 18: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:129: T__160 pass self.mT__160() elif alt46 == 19: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:136: T__161 pass self.mT__161() elif alt46 == 20: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:143: T__162 pass self.mT__162() elif alt46 == 21: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:150: T__163 pass self.mT__163() elif alt46 == 22: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:157: T__164 pass self.mT__164() elif alt46 == 23: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:164: T__165 pass self.mT__165() elif alt46 == 24: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:171: T__166 pass self.mT__166() elif alt46 == 25: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:178: T__167 pass self.mT__167() elif alt46 == 26: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:185: T__168 pass self.mT__168() elif alt46 == 27: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:192: T__169 pass self.mT__169() elif alt46 == 28: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:199: T__170 pass self.mT__170() elif alt46 == 29: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:206: T__171 pass self.mT__171() elif alt46 == 30: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:213: T__172 pass self.mT__172() elif alt46 == 31: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:220: T__173 pass self.mT__173() elif alt46 == 32: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:227: T__174 pass self.mT__174() elif alt46 == 33: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:234: T__175 pass self.mT__175() elif alt46 == 34: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:241: T__176 pass self.mT__176() elif alt46 == 35: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:248: T__177 pass self.mT__177() elif alt46 == 36: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:255: T__178 pass self.mT__178() elif alt46 == 37: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:262: T__179 pass self.mT__179() elif alt46 == 38: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:269: T__180 pass self.mT__180() elif alt46 == 39: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:276: T__181 pass self.mT__181() elif alt46 == 40: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:283: T__182 pass self.mT__182() elif alt46 == 41: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:290: T__183 pass self.mT__183() elif alt46 == 42: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:297: T__184 pass self.mT__184() elif alt46 == 43: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:304: T__185 pass self.mT__185() elif alt46 == 44: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:311: T__186 pass self.mT__186() elif alt46 == 45: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:318: T__187 pass self.mT__187() elif alt46 == 46: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:325: T__188 pass self.mT__188() elif alt46 == 47: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:332: T__189 pass self.mT__189() elif alt46 == 48: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:339: T__190 pass self.mT__190() elif alt46 == 49: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:346: T__191 pass self.mT__191() elif alt46 == 50: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:353: T__192 pass self.mT__192() elif alt46 == 51: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:360: T__193 pass self.mT__193() elif alt46 == 52: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:367: T__194 pass self.mT__194() elif alt46 == 53: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:374: T__195 pass self.mT__195() elif alt46 == 54: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:381: T__196 pass self.mT__196() elif alt46 == 55: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:388: T__197 pass self.mT__197() elif alt46 == 56: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:395: T__198 pass self.mT__198() elif alt46 == 57: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:402: T__199 pass self.mT__199() elif alt46 == 58: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:409: T__200 pass self.mT__200() elif alt46 == 59: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:416: T__201 pass self.mT__201() elif alt46 == 60: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:423: T__202 pass self.mT__202() elif alt46 == 61: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:430: T__203 pass self.mT__203() elif alt46 == 62: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:437: T__204 pass self.mT__204() elif alt46 == 63: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:444: T__205 pass self.mT__205() elif alt46 == 64: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:451: T__206 pass self.mT__206() elif alt46 == 65: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:458: RBRACK pass self.mRBRACK() elif alt46 == 66: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:465: RPAREN pass self.mRPAREN() elif alt46 == 67: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:472: RSBRACK pass self.mRSBRACK() elif alt46 == 68: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:480: VersionLiteral pass self.mVersionLiteral() elif alt46 == 69: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:495: NEW pass self.mNEW() elif alt46 == 70: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:499: EQUSING pass self.mEQUSING() elif alt46 == 71: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:507: COMPSIGNOIN pass self.mCOMPSIGNOIN() elif alt46 == 72: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:519: TIN pass self.mTIN() elif alt46 == 73: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:523: SHIFTSIG pass self.mSHIFTSIG() elif alt46 == 74: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:532: MULSIG pass self.mMULSIG() elif alt46 == 75: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:539: PLUSMINUS pass self.mPLUSMINUS() elif alt46 == 76: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:549: INCDEC pass self.mINCDEC() elif alt46 == 77: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:556: TDELETE pass self.mTDELETE() elif alt46 == 78: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:564: TVOID pass self.mTVOID() elif alt46 == 79: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:570: TTYPEOF pass self.mTTYPEOF() elif alt46 == 80: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:578: TTHIS pass self.mTTHIS() elif alt46 == 81: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:584: Int pass self.mInt() elif alt46 == 82: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:588: Uint pass self.mUint() elif alt46 == 83: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:593: Byte pass self.mByte() elif alt46 == 84: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:598: Fixed pass self.mFixed() elif alt46 == 85: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:604: Ufixed pass self.mUfixed() elif alt46 == 86: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:611: AnonymousKeyword pass self.mAnonymousKeyword() elif alt46 == 87: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:628: BreakKeyword pass self.mBreakKeyword() elif alt46 == 88: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:641: ConstantKeyword pass self.mConstantKeyword() elif alt46 == 89: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:657: ContinueKeyword pass self.mContinueKeyword() elif alt46 == 90: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:673: ExternalKeyword pass self.mExternalKeyword() elif alt46 == 91: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:689: IndexedKeyword pass self.mIndexedKeyword() elif alt46 == 92: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:704: InternalKeyword pass self.mInternalKeyword() elif alt46 == 93: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:720: PayableKeyword pass self.mPayableKeyword() elif alt46 == 94: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:735: PrivateKeyword pass self.mPrivateKeyword() elif alt46 == 95: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:750: PublicKeyword pass self.mPublicKeyword() elif alt46 == 96: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:764: PureKeyword pass self.mPureKeyword() elif alt46 == 97: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:776: ViewKeyword pass self.mViewKeyword() elif alt46 == 98: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:788: TNULL pass self.mTNULL() elif alt46 == 99: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:794: TTRUE pass self.mTTRUE() elif alt46 == 100: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:800: TFALSE pass self.mTFALSE() elif alt46 == 101: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:807: StringLiteral pass self.mStringLiteral() elif alt46 == 102: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:821: NumericLiteral pass self.mNumericLiteral() elif alt46 == 103: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:836: Identifier pass self.mIdentifier() elif alt46 == 104: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:847: RegularExpressionLiteral pass self.mRegularExpressionLiteral() elif alt46 == 105: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:872: Comment pass self.mComment() elif alt46 == 106: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:880: LineComment pass self.mLineComment() elif alt46 == 107: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:892: LT pass self.mLT() elif alt46 == 108: # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:1:895: WhiteSpace pass self.mWhiteSpace() # $ANTLR start "synpred1_sol" def synpred1_sol_fragment(self, ): # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:903:4: ( IdentifierStart ) # D:\\PycharmProjects\\SolidityObfuscator\\src\\sol.g:903:5: IdentifierStart pass self.mIdentifierStart() # $ANTLR end "synpred1_sol" def synpred1_sol(self): self._state.backtracking += 1 start = self.input.mark() try: self.synpred1_sol_fragment() except BacktrackingFailed: success = False else: success = True self.input.rewind(start) self._state.backtracking -= 1 return success # lookup tables for DFA #8 DFA8_eot = DFA.unpack( u"\3\uffff\1\15\1\20\14\uffff\1\45\11\uffff\1\52\21\uffff" ) DFA8_eof = DFA.unpack( u"\55\uffff" ) DFA8_min = DFA.unpack( u"\1\151\1\156\1\164\1\61\3\60\1\uffff\1\60\10\uffff\1\60\2\uffff" u"\1\60\6\uffff\2\60\20\uffff" ) DFA8_max = DFA.unpack( u"\1\151\1\156\1\164\1\71\1\70\1\71\1\65\1\uffff\1\70\10\uffff\1" u"\70\2\uffff\1\70\6\uffff\2\70\20\uffff" ) DFA8_accept = DFA.unpack( u"\7\uffff\1\5\1\uffff\1\10\1\11\1\12\1\15\1\1\1\13\1\14\1\2\1\uffff" u"\1\16\1\17\1\uffff\1\22\1\23\1\24\1\27\1\30\1\31\2\uffff\1\34\1" u"\35\1\36\1\41\1\6\1\7\1\25\1\26\1\3\1\20\1\21\1\37\1\40\1\4\1\32" u"\1\33" ) DFA8_special = DFA.unpack( u"\55\uffff" ) DFA8_transition = [ DFA.unpack(u"\1\1"), DFA.unpack(u"\1\2"), DFA.unpack(u"\1\3"), DFA.unpack(u"\1\5\1\6\1\7\1\10\1\11\1\12\1\13\1\4\1\14"), DFA.unpack(u"\1\16\7\uffff\1\17"), DFA.unpack(u"\1\22\1\23\1\24\1\25\1\26\1\27\1\21\1\30\1\31\1\32"), DFA.unpack(u"\1\34\1\35\1\36\1\37\1\33\1\40"), DFA.unpack(u""), DFA.unpack(u"\1\41\7\uffff\1\42"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\43\7\uffff\1\44"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\46\7\uffff\1\47"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\50\7\uffff\1\51"), DFA.unpack(u"\1\53\7\uffff\1\54"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"") ] # class definition for DFA #8 DFA8 = DFA # lookup tables for DFA #9 DFA9_eot = DFA.unpack( u"\4\uffff\1\16\1\21\14\uffff\1\46\11\uffff\1\53\21\uffff" ) DFA9_eof = DFA.unpack( u"\56\uffff" ) DFA9_min = DFA.unpack( u"\1\165\1\151\1\156\1\164\1\61\3\60\1\uffff\1\60\10\uffff\1\60" u"\2\uffff\1\60\6\uffff\2\60\20\uffff" ) DFA9_max = DFA.unpack( u"\1\165\1\151\1\156\1\164\1\71\1\70\1\71\1\65\1\uffff\1\70\10\uffff" u"\1\70\2\uffff\1\70\6\uffff\2\70\20\uffff" ) DFA9_accept = DFA.unpack( u"\10\uffff\1\5\1\uffff\1\10\1\11\1\12\1\15\1\1\1\13\1\14\1\2\1" u"\uffff\1\16\1\17\1\uffff\1\22\1\23\1\24\1\27\1\30\1\31\2\uffff" u"\1\34\1\35\1\36\1\41\1\6\1\7\1\25\1\26\1\3\1\20\1\21\1\37\1\40" u"\1\4\1\32\1\33" ) DFA9_special = DFA.unpack( u"\56\uffff" ) DFA9_transition = [ DFA.unpack(u"\1\1"), DFA.unpack(u"\1\2"), DFA.unpack(u"\1\3"), DFA.unpack(u"\1\4"), DFA.unpack(u"\1\6\1\7\1\10\1\11\1\12\1\13\1\14\1\5\1\15"), DFA.unpack(u"\1\17\7\uffff\1\20"), DFA.unpack(u"\1\23\1\24\1\25\1\26\1\27\1\30\1\22\1\31\1\32\1\33"), DFA.unpack(u"\1\35\1\36\1\37\1\40\1\34\1\41"), DFA.unpack(u""), DFA.unpack(u"\1\42\7\uffff\1\43"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\44\7\uffff\1\45"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\47\7\uffff\1\50"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\51\7\uffff\1\52"), DFA.unpack(u"\1\54\7\uffff\1\55"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"") ] # class definition for DFA #9 DFA9 = DFA # lookup tables for DFA #10 DFA10_eot = DFA.unpack( u"\5\uffff\1\17\1\32\1\45\1\51\41\uffff" ) DFA10_eof = DFA.unpack( u"\52\uffff" ) DFA10_min = DFA.unpack( u"\1\142\1\171\1\164\1\145\1\163\1\61\3\60\41\uffff" ) DFA10_max = DFA.unpack( u"\1\142\1\171\1\164\1\145\1\163\3\71\1\62\41\uffff" ) DFA10_accept = DFA.unpack( u"\11\uffff\1\5\1\6\1\7\1\10\1\11\1\12\1\1\1\13\1\14\1\15\1\16\1" u"\17\1\20\1\21\1\22\1\23\1\24\1\2\1\25\1\26\1\27\1\30\1\31\1\32" u"\1\33\1\34\1\35\1\36\1\3\1\37\1\40\1\41\1\4" ) DFA10_special = DFA.unpack( u"\52\uffff" ) DFA10_transition = [ DFA.unpack(u"\1\1"), DFA.unpack(u"\1\2"), DFA.unpack(u"\1\3"), DFA.unpack(u"\1\4"), DFA.unpack(u"\1\5"), DFA.unpack(u"\1\6\1\7\1\10\1\11\1\12\1\13\1\14\1\15\1\16"), DFA.unpack(u"\1\20\1\21\1\22\1\23\1\24\1\25\1\26\1\27\1\30\1\31"), DFA.unpack(u"\1\33\1\34\1\35\1\36\1\37\1\40\1\41\1\42\1\43\1\44"), DFA.unpack(u"\1\46\1\47\1\50"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"") ] # class definition for DFA #10 DFA10 = DFA # lookup tables for DFA #34 DFA34_eot = DFA.unpack( u"\1\uffff\1\2\2\uffff" ) DFA34_eof = DFA.unpack( u"\4\uffff" ) DFA34_min = DFA.unpack( u"\2\56\2\uffff" ) DFA34_max = DFA.unpack( u"\2\71\2\uffff" ) DFA34_accept = DFA.unpack( u"\2\uffff\1\2\1\1" ) DFA34_special = DFA.unpack( u"\4\uffff" ) DFA34_transition = [ DFA.unpack(u"\1\2\1\uffff\12\1"), DFA.unpack(u"\1\3\1\uffff\12\1"), DFA.unpack(u""), DFA.unpack(u"") ] # class definition for DFA #34 DFA34 = DFA # lookup tables for DFA #46 DFA46_eot = DFA.unpack( u"\1\uffff\1\57\1\uffff\1\66\1\uffff\1\71\1\74\1\76\2\57\1\106\1" u"\57\2\uffff\1\57\1\uffff\1\117\12\57\1\uffff\1\57\1\uffff\2\151" u"\2\155\1\161\1\164\1\uffff\1\165\3\uffff\1\116\2\57\1\uffff\1\116" u"\1\57\3\uffff\3\57\3\uffff\1\u0084\2\uffff\1\u0084\3\uffff\1\u0087" u"\3\57\1\u008b\1\u008f\2\uffff\7\57\2\uffff\2\57\1\u009e\22\57\1" u"\u00b4\20\uffff\1\116\12\57\2\uffff\1\u0084\4\uffff\3\57\1\uffff" u"\1\57\1\u00cf\1\57\1\uffff\2\57\1\u00d3\13\57\1\uffff\1\u00e0\11" u"\57\1\u00ea\7\57\1\u00f2\2\57\1\uffff\1\116\1\u00f6\3\57\1\116" u"\4\57\1\u00fe\1\uffff\4\57\1\u00cf\11\57\1\uffff\1\57\1\u011e\1" u"\57\1\uffff\6\57\1\u0127\5\57\1\uffff\1\u012d\1\u012e\1\u012f\1" u"\u0131\5\57\1\uffff\1\u0137\2\57\1\u013a\2\57\1\u013d\1\uffff\1" u"\u013e\1\57\2\uffff\1\u0140\1\u014a\5\57\1\uffff\4\57\3\u00cf\11" u"\57\1\u00cf\5\57\7\u00cf\2\57\1\uffff\2\57\1\u016c\1\u016e\4\57" u"\1\uffff\1\u0173\4\57\3\uffff\1\u0181\1\uffff\1\u0182\4\57\1\uffff" u"\1\57\1\u0188\1\uffff\1\u0189\1\u018a\2\uffff\1\57\1\uffff\1\u014a" u"\10\57\1\uffff\1\57\1\u01a6\2\57\1\u01a9\2\57\1\u01ac\1\57\24\u00cf" u"\4\57\1\uffff\1\57\1\uffff\4\57\1\uffff\1\u01b8\2\57\1\u01bb\11" u"\u0181\2\uffff\1\u01d3\1\57\1\u01d5\1\u01d6\1\57\3\uffff\1\u01d8" u"\3\u014a\11\57\1\u014a\5\57\7\u014a\1\u01ed\1\uffff\1\u01ef\1\u01f0" u"\1\uffff\1\u01f1\1\57\1\uffff\2\57\1\u01f5\1\57\1\u01f7\5\57\1" u"\u01fd\1\uffff\1\57\1\u01ff\1\uffff\27\u0181\1\uffff\1\u0200\2" u"\uffff\1\57\1\uffff\24\u014a\1\uffff\1\57\3\uffff\2\57\1\u0205" u"\1\uffff\1\u0206\1\uffff\1\u016c\1\u0207\1\u0208\1\u0209\1\u020a" u"\1\uffff\1\u020b\2\uffff\1\u020c\1\57\1\u020e\1\57\10\uffff\1\u01ed" u"\1\uffff\1\u0210\1\uffff" ) DFA46_eof = DFA.unpack( u"\u0211\uffff" ) DFA46_min = DFA.unpack( u"\1\11\1\141\1\uffff\1\75\1\uffff\1\75\1\74\1\75\1\144\1\146\1" u"\75\1\141\2\uffff\1\141\1\uffff\1\60\2\145\1\141\1\157\1\164\2" u"\145\1\154\1\150\1\151\1\uffff\1\150\1\uffff\1\0\1\75\1\53\1\55" u"\1\46\1\75\1\uffff\1\75\3\uffff\1\56\1\145\1\146\1\uffff\1\56\1" u"\141\3\uffff\1\141\1\171\1\142\3\uffff\1\75\2\uffff\1\75\3\uffff" u"\1\44\1\144\1\157\1\160\2\44\2\uffff\1\157\1\156\1\162\1\156\1" u"\154\1\156\1\154\2\uffff\1\164\1\142\1\44\1\162\1\151\1\145\1\157" u"\1\164\1\145\1\157\1\151\1\155\1\164\1\163\1\164\1\151\1\164\1" u"\145\1\151\1\165\1\160\1\0\20\uffff\1\60\1\167\1\154\1\156\1\151" u"\1\116\1\147\1\166\1\141\1\154\1\145\2\uffff\1\75\4\uffff\1\162" u"\1\156\1\157\1\uffff\1\164\1\44\1\145\1\uffff\1\155\1\143\1\44" u"\1\141\1\145\2\163\1\154\1\145\1\143\2\165\1\141\1\145\1\uffff" u"\1\44\1\144\1\167\1\154\1\145\1\141\1\151\1\162\1\164\1\157\1\44" u"\2\145\1\154\1\150\1\154\1\157\1\163\1\44\2\145\1\uffff\1\56\1" u"\44\1\154\1\164\1\170\1\44\1\155\1\141\1\142\1\151\1\44\1\uffff" u"\1\145\1\171\1\162\1\141\1\44\2\60\1\62\1\60\1\66\1\64\1\62\1\66" u"\1\162\1\uffff\1\170\1\44\1\164\1\uffff\1\154\1\144\1\145\1\151" u"\1\164\1\144\1\44\1\150\1\162\1\147\1\165\1\164\1\uffff\4\44\1" u"\153\1\156\1\141\1\143\1\162\1\uffff\1\44\1\162\1\145\1\44\1\144" u"\1\167\1\44\1\uffff\1\44\1\157\2\uffff\2\44\1\145\1\141\1\164\1" u"\154\1\143\1\uffff\1\163\1\155\1\164\1\156\3\44\1\64\1\62\1\60" u"\1\66\1\64\1\62\1\66\1\64\1\62\1\44\1\60\1\66\1\64\1\62\1\66\7" u"\44\1\156\1\145\1\uffff\1\151\1\154\2\44\1\141\1\156\2\141\1\uffff" u"\1\44\1\156\1\147\1\154\1\145\3\uffff\1\44\1\uffff\1\44\2\147\1" u"\150\1\171\1\uffff\1\156\1\44\1\uffff\2\44\2\uffff\1\146\1\uffff" u"\1\44\2\60\1\62\1\60\1\66\1\64\1\62\1\66\1\uffff\1\144\1\44\2\145" u"\1\44\1\163\1\157\1\44\1\143\24\44\1\141\1\144\1\157\1\171\1\uffff" u"\1\60\1\uffff\1\143\1\165\1\156\1\164\1\uffff\1\44\1\145\1\164" u"\12\44\2\uffff\1\44\1\145\2\44\1\141\3\uffff\4\44\1\64\1\62\1\60" u"\1\66\1\64\1\62\1\66\1\64\1\62\1\44\1\60\1\66\1\64\1\62\1\66\10" u"\44\1\uffff\2\44\1\uffff\1\44\1\165\1\uffff\1\145\1\154\1\44\1" u"\156\1\44\1\60\1\164\1\145\1\164\1\141\1\44\1\uffff\1\162\1\44" u"\1\uffff\27\44\1\uffff\1\44\2\uffff\1\154\1\uffff\24\44\1\uffff" u"\1\60\3\uffff\1\163\1\157\1\44\1\uffff\1\44\1\uffff\5\44\1\uffff" u"\1\44\2\uffff\1\44\1\60\1\44\1\146\10\uffff\1\44\1\uffff\1\44\1" u"\uffff" ) DFA46_max = DFA.unpack( u"\1\uffdc\1\165\1\uffff\1\75\1\uffff\1\76\2\75\1\163\1\156\1\75" u"\1\165\2\uffff\1\157\1\uffff\1\71\1\145\2\157\1\171\1\167\2\145" u"\1\170\2\151\1\uffff\1\171\1\uffff\1\uffff\4\75\1\174\1\uffff\1" u"\75\3\uffff\1\71\1\165\1\151\1\uffff\1\71\1\141\3\uffff\1\151\1" u"\171\1\162\3\uffff\1\76\2\uffff\1\75\3\uffff\1\uffdc\1\144\1\157" u"\1\160\2\uffdc\2\uffff\1\157\1\156\1\162\1\170\1\154\1\156\1\164" u"\2\uffff\1\164\1\154\1\uffdc\1\162\1\151\1\145\1\157\1\164\1\145" u"\1\162\1\151\1\155\1\164\1\163\1\164\1\151\1\164\1\145\1\162\1" u"\171\1\160\1\uffff\20\uffff\1\71\1\167\1\154\1\156\1\151\1\116" u"\1\147\1\166\1\141\1\154\1\145\2\uffff\1\75\4\uffff\1\162\1\156" u"\1\157\1\uffff\1\164\1\uffdc\1\145\1\uffff\1\155\1\143\1\uffdc" u"\1\141\1\145\1\163\1\164\1\154\1\145\1\143\2\165\1\141\1\145\1" u"\uffff\1\uffdc\1\144\1\167\1\154\1\145\1\141\1\151\1\162\1\164" u"\1\157\1\uffdc\2\145\1\154\1\150\1\154\1\157\1\163\1\uffdc\2\145" u"\1\uffff\1\71\1\uffdc\1\154\1\164\1\170\1\uffdc\1\155\1\141\1\142" u"\1\151\1\uffdc\1\uffff\1\145\1\171\1\162\1\141\1\uffdc\1\71\1\65" u"\1\62\1\70\1\66\1\64\1\62\1\66\1\162\1\uffff\1\170\1\uffdc\1\164" u"\1\uffff\1\154\1\144\1\145\1\162\1\164\1\144\1\uffdc\1\150\1\162" u"\1\147\1\165\1\164\1\uffff\4\uffdc\1\153\1\156\1\141\1\143\1\162" u"\1\uffff\1\uffdc\1\162\1\145\1\uffdc\1\144\1\167\1\uffdc\1\uffff" u"\1\uffdc\1\157\2\uffff\2\uffdc\1\145\1\141\1\164\1\154\1\143\1" u"\uffff\1\163\1\155\1\164\1\156\3\uffdc\1\64\1\62\1\70\1\66\1\64" u"\1\62\1\66\1\64\1\62\1\uffdc\1\70\1\66\1\64\1\62\1\66\7\uffdc\1" u"\156\1\145\1\uffff\1\151\1\154\2\uffdc\1\141\1\156\2\141\1\uffff" u"\1\uffdc\1\156\1\147\1\154\1\145\3\uffff\1\uffdc\1\uffff\1\uffdc" u"\2\147\1\150\1\171\1\uffff\1\156\1\uffdc\1\uffff\2\uffdc\2\uffff" u"\1\146\1\uffff\1\uffdc\1\71\1\65\1\62\1\70\1\66\1\64\1\62\1\66" u"\1\uffff\1\144\1\uffdc\2\145\1\uffdc\1\163\1\157\1\uffdc\1\143" u"\24\uffdc\1\141\1\144\1\157\1\171\1\uffff\1\170\1\uffff\1\143\1" u"\165\1\156\1\164\1\uffff\1\uffdc\1\145\1\164\12\uffdc\2\uffff\1" u"\uffdc\1\145\2\uffdc\1\141\3\uffff\4\uffdc\1\64\1\62\1\70\1\66" u"\1\64\1\62\1\66\1\64\1\62\1\uffdc\1\70\1\66\1\64\1\62\1\66\10\uffdc" u"\1\uffff\2\uffdc\1\uffff\1\uffdc\1\165\1\uffff\1\145\1\154\1\uffdc" u"\1\156\1\uffdc\1\71\1\164\1\145\1\164\1\141\1\uffdc\1\uffff\1\162" u"\1\uffdc\1\uffff\27\uffdc\1\uffff\1\uffdc\2\uffff\1\154\1\uffff" u"\24\uffdc\1\uffff\1\170\3\uffff\1\163\1\157\1\uffdc\1\uffff\1\uffdc" u"\1\uffff\5\uffdc\1\uffff\1\uffdc\2\uffff\1\uffdc\1\71\1\uffdc\1" u"\146\10\uffff\1\uffdc\1\uffff\1\uffdc\1\uffff" ) DFA46_accept = DFA.unpack( u"\2\uffff\1\2\1\uffff\1\4\7\uffff\1\16\1\17\1\uffff\1\21\13\uffff" u"\1\47\1\uffff\1\57\6\uffff\1\73\1\uffff\1\101\1\102\1\103\3\uffff" u"\1\145\2\uffff\1\147\1\153\1\154\3\uffff\1\71\1\3\1\5\1\uffff\1" u"\6\1\10\1\uffff\1\7\1\106\1\11\6\uffff\1\60\1\14\7\uffff\1\146" u"\1\22\26\uffff\1\151\1\152\1\150\1\112\1\62\1\63\1\114\1\113\1" u"\64\1\70\1\75\1\77\1\72\1\74\1\76\1\100\13\uffff\1\5\1\66\1\uffff" u"\1\111\1\10\1\65\1\12\3\uffff\1\37\3\uffff\1\110\16\uffff\1\41" u"\25\uffff\1\61\13\uffff\1\67\16\uffff\1\121\3\uffff\1\43\14\uffff" u"\1\26\11\uffff\1\36\7\uffff\1\54\2\uffff\1\104\1\105\7\uffff\1" u"\140\37\uffff\1\15\10\uffff\1\51\5\uffff\1\116\1\141\1\30\1\uffff" u"\1\32\5\uffff\1\40\2\uffff\1\46\2\uffff\1\120\1\143\1\uffff\1\142" u"\11\uffff\1\122\41\uffff\1\124\1\uffff\1\144\4\uffff\1\55\15\uffff" u"\1\123\1\127\5\uffff\1\42\1\44\1\53\33\uffff\1\1\2\uffff\1\137" u"\2\uffff\1\13\13\uffff\1\45\2\uffff\1\115\27\uffff\1\31\1\uffff" u"\1\50\1\33\1\uffff\1\117\24\uffff\1\125\1\uffff\1\136\1\135\1\27" u"\3\uffff\1\133\1\uffff\1\56\5\uffff\1\24\1\uffff\1\52\1\34\4\uffff" u"\1\134\1\23\1\20\1\131\1\130\1\35\1\25\1\132\1\uffff\1\126\1\uffff" u"\1\107" ) DFA46_special = DFA.unpack( u"\36\uffff\1\1\106\uffff\1\0\u01ab\uffff" ) DFA46_transition = [ DFA.unpack(u"\1\61\1\60\1\uffff\1\61\1\60\22\uffff\1\61\1\45\1\54" u"\1\uffff\1\57\1\37\1\42\1\54\1\17\1\47\1\12\1\40\1\15\1\41\1\20" u"\1\36\1\51\11\55\1\33\1\2\1\6\1\7\1\5\1\44\1\uffff\15\57\1\56\14" u"\57\1\35\1\57\1\50\1\3\1\57\1\uffff\1\10\1\24\1\16\1\22\1\30\1" u"\13\2\57\1\11\2\57\1\27\1\26\1\52\1\57\1\1\1\57\1\21\1\25\1\34" u"\1\53\1\23\1\31\1\57\1\32\1\57\1\14\1\43\1\46\1\4\41\uffff\1\61" u"\11\uffff\1\57\12\uffff\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff" u"\37\57\1\uffff\u0128\57\2\uffff\22\57\34\uffff\136\57\2\uffff\11" u"\57\2\uffff\7\57\16\uffff\2\57\16\uffff\5\57\11\uffff\1\57\u008b" u"\uffff\1\57\13\uffff\1\57\1\uffff\3\57\1\uffff\1\57\1\uffff\24" u"\57\1\uffff\54\57\1\uffff\10\57\2\uffff\32\57\14\uffff\u0082\57" u"\12\uffff\71\57\2\uffff\2\57\2\uffff\2\57\3\uffff\46\57\2\uffff" u"\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff\47\57\110\uffff\33\57" u"\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57\46\uffff\143\57\1\uffff" u"\1\57\17\uffff\2\57\23\uffff\3\57\23\uffff\1\57\1\uffff\33\57\123" u"\uffff\46\57\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff" u"\12\57\43\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\16\uffff\2" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\23\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\44\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57\1\uffff\3\57" u"\43\uffff\6\57\3\uffff\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1" u"\57\1\uffff\2\57\3\uffff\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff" u"\3\57\113\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57" u"\1\uffff\5\57\46\uffff\2\57\43\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\43" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46\uffff" u"\2\57\43\uffff\22\57\3\uffff\30\57\1\uffff\11\57\1\uffff\1\57\2" u"\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14\uffff\7\57\72\uffff" u"\2\57\1\uffff\1\57\2\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff" u"\4\57\1\uffff\7\57\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff" u"\2\57\1\uffff\4\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\25" u"\uffff\2\57\42\uffff\1\57\77\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\45\uffff\6\57\112\uffff\46\57" u"\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff\122\57\6" u"\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57" u"\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57\1\uffff\4" u"\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff\27\57\1\uffff" u"\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\47\57\1\uffff" u"\23\57\105\uffff\125\57\14\uffff\u0276\57\12\uffff\32\57\5\uffff" u"\113\57\u0095\uffff\64\57\154\uffff\130\57\10\uffff\51\57\u0557" u"\uffff\u009c\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff" u"\46\57\2\uffff\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\1\57\1\uffff\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff" u"\3\57\1\uffff\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff" u"\3\57\1\uffff\7\57\53\uffff\2\60\125\uffff\1\57\u0082\uffff\1\57" u"\4\uffff\1\57\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1" u"\57\1\uffff\1\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff" u"\7\57\46\uffff\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5" u"\57\2\uffff\3\57\6\uffff\124\57\10\uffff\2\57\2\uffff\132\57\1" u"\uffff\3\57\6\uffff\50\57\4\uffff\136\57\21\uffff\30\57\u0248\uffff" u"\1\57\u19b4\uffff\1\57\112\uffff\1\57\u51a4\uffff\1\57\132\uffff" u"\u048d\57\u0773\uffff\1\57\u2ba2\uffff\1\57\u215c\uffff\u012e\57" u"\u00d2\uffff\7\57\14\uffff\5\57\5\uffff\1\57\1\uffff\12\57\1\uffff" u"\15\57\1\uffff\5\57\1\uffff\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff" u"\154\57\41\uffff\u016b\57\22\uffff\100\57\2\uffff\66\57\50\uffff" u"\14\57\164\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\44\uffff\32" u"\57\6\uffff\32\57\13\uffff\131\57\3\uffff\6\57\2\uffff\6\57\2\uffff" u"\6\57\2\uffff\3\57"), DFA.unpack(u"\1\63\20\uffff\1\62\2\uffff\1\64"), DFA.unpack(u""), DFA.unpack(u"\1\65"), DFA.unpack(u""), DFA.unpack(u"\1\67\1\70"), DFA.unpack(u"\1\73\1\72"), DFA.unpack(u"\1\75"), DFA.unpack(u"\1\100\11\uffff\1\101\4\uffff\1\77"), DFA.unpack(u"\1\103\6\uffff\1\102\1\104"), DFA.unpack(u"\1\105"), DFA.unpack(u"\1\113\7\uffff\1\112\5\uffff\1\111\2\uffff\1\107\2" u"\uffff\1\110"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\115\15\uffff\1\114"), DFA.unpack(u""), DFA.unpack(u"\12\116"), DFA.unpack(u"\1\120"), DFA.unpack(u"\1\121\11\uffff\1\122"), DFA.unpack(u"\1\123\7\uffff\1\125\5\uffff\1\124"), DFA.unpack(u"\1\126\2\uffff\1\130\6\uffff\1\127"), DFA.unpack(u"\1\131\2\uffff\1\132"), DFA.unpack(u"\1\133"), DFA.unpack(u"\1\134"), DFA.unpack(u"\1\135\13\uffff\1\136"), DFA.unpack(u"\1\137\1\140"), DFA.unpack(u"\1\141"), DFA.unpack(u""), DFA.unpack(u"\1\142\11\uffff\1\143\6\uffff\1\144"), DFA.unpack(u""), DFA.unpack(u"\12\150\1\uffff\2\150\1\uffff\34\150\1\146\4\150\1" u"\147\15\150\1\145\u1fea\150\2\uffff\udfd6\150"), DFA.unpack(u"\1\152"), DFA.unpack(u"\1\154\21\uffff\1\153"), DFA.unpack(u"\1\154\17\uffff\1\156"), DFA.unpack(u"\1\160\26\uffff\1\157"), DFA.unpack(u"\1\162\76\uffff\1\163"), DFA.unpack(u""), DFA.unpack(u"\1\75"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\166\1\uffff\12\55"), DFA.unpack(u"\1\167\17\uffff\1\170"), DFA.unpack(u"\1\172\2\uffff\1\171"), DFA.unpack(u""), DFA.unpack(u"\1\166\1\uffff\12\55"), DFA.unpack(u"\1\173"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\174\7\uffff\1\175"), DFA.unpack(u"\1\176"), DFA.unpack(u"\1\177\17\uffff\1\u0080"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u0082\1\u0083"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u0086"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0088"), DFA.unpack(u"\1\u0089"), DFA.unpack(u"\1\u008a"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\3\57\1\u008e\16\57\1\u008c\1\u008d\6\57\57" u"\uffff\1\57\12\uffff\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37" u"\57\1\uffff\u0128\57\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57" u"\2\uffff\7\57\16\uffff\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff" u"\1\57\13\uffff\1\57\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff" u"\54\57\1\uffff\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71" u"\57\2\uffff\2\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff" u"\46\57\2\uffff\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57" u"\56\uffff\32\57\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff" u"\1\57\17\uffff\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57" u"\123\uffff\46\57\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7" u"\uffff\12\57\4\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff" u"\26\57\1\uffff\7\57\1\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff" u"\3\57\4\uffff\14\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57" u"\1\uffff\1\57\7\uffff\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff" u"\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff\1\57\5\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2" u"\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57\1\uffff\3\57\4\uffff" u"\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff" u"\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff" u"\3\57\55\uffff\11\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57" u"\1\uffff\12\57\1\uffff\5\57\46\uffff\2\57\4\uffff\12\57\25\uffff" u"\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\44" u"\uffff\1\57\1\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3" u"\57\1\uffff\27\57\1\uffff\20\57\46\uffff\2\57\4\uffff\12\57\25" u"\uffff\22\57\3\uffff\30\57\1\uffff\11\57\1\uffff\1\57\2\uffff\7" u"\57\72\uffff\60\57\1\uffff\2\57\14\uffff\7\57\11\uffff\12\57\47" u"\uffff\2\57\1\uffff\1\57\2\uffff\2\57\1\uffff\1\57\2\uffff\1\57" u"\6\uffff\4\57\1\uffff\7\57\1\uffff\3\57\1\uffff\1\57\1\uffff\1" u"\57\2\uffff\2\57\1\uffff\4\57\1\uffff\2\57\11\uffff\10\57\1\uffff" u"\1\57\11\uffff\12\57\2\uffff\2\57\42\uffff\1\57\37\uffff\12\57" u"\26\uffff\53\57\35\uffff\4\57\164\uffff\42\57\1\uffff\5\57\1\uffff" u"\2\57\25\uffff\12\57\6\uffff\6\57\112\uffff\46\57\12\uffff\47\57" u"\11\uffff\132\57\5\uffff\104\57\5\uffff\122\57\6\uffff\7\57\1\uffff" u"\77\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\47\57\1\uffff\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\7\57\1\uffff\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\47\57\1\uffff\23\57\16\uffff\11\57\56" u"\uffff\125\57\14\uffff\u0276\57\12\uffff\32\57\5\uffff\113\57\u0095" u"\uffff\64\57\54\uffff\12\57\46\uffff\12\57\6\uffff\130\57\10\uffff" u"\51\57\u0557\uffff\u009c\57\4\uffff\132\57\6\uffff\26\57\2\uffff" u"\6\57\2\uffff\46\57\2\uffff\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff" u"\1\57\1\uffff\1\57\1\uffff\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff" u"\1\57\3\uffff\3\57\1\uffff\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff" u"\15\57\5\uffff\3\57\1\uffff\7\57\102\uffff\2\57\76\uffff\1\57\u0082" u"\uffff\1\57\4\uffff\1\57\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57" u"\6\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3" u"\57\1\uffff\7\57\46\uffff\44\57\u0e81\uffff\3\57\31\uffff\11\57" u"\7\uffff\5\57\2\uffff\3\57\6\uffff\124\57\10\uffff\2\57\2\uffff" u"\136\57\6\uffff\50\57\4\uffff\136\57\21\uffff\30\57\u0248\uffff" u"\1\57\u19b4\uffff\1\57\112\uffff\1\57\u51a4\uffff\1\57\132\uffff" u"\u048d\57\u0773\uffff\1\57\u2ba2\uffff\1\57\u215c\uffff\u012e\57" u"\u00d2\uffff\7\57\14\uffff\5\57\5\uffff\1\57\1\uffff\12\57\1\uffff" u"\15\57\1\uffff\5\57\1\uffff\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff" u"\154\57\41\uffff\u016b\57\22\uffff\100\57\2\uffff\66\57\50\uffff" u"\14\57\67\uffff\2\57\30\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1" u"\uffff\u0087\57\23\uffff\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff" u"\32\57\12\uffff\132\57\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2" u"\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u0090"), DFA.unpack(u"\1\u0091"), DFA.unpack(u"\1\u0092"), DFA.unpack(u"\1\u0093\11\uffff\1\u0094"), DFA.unpack(u"\1\u0095"), DFA.unpack(u"\1\u0096"), DFA.unpack(u"\1\u0097\6\uffff\1\u0098\1\u0099"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u009a"), DFA.unpack(u"\1\u009b\3\uffff\1\u009c\5\uffff\1\u009d"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u009f"), DFA.unpack(u"\1\u00a0"), DFA.unpack(u"\1\u00a1"), DFA.unpack(u"\1\u00a2"), DFA.unpack(u"\1\u00a3"), DFA.unpack(u"\1\u00a4"), DFA.unpack(u"\1\u00a6\2\uffff\1\u00a5"), DFA.unpack(u"\1\u00a7"), DFA.unpack(u"\1\u00a8"), DFA.unpack(u"\1\u00a9"), DFA.unpack(u"\1\u00aa"), DFA.unpack(u"\1\u00ab"), DFA.unpack(u"\1\u00ac"), DFA.unpack(u"\1\u00ad"), DFA.unpack(u"\1\u00ae"), DFA.unpack(u"\1\u00b0\10\uffff\1\u00af"), DFA.unpack(u"\1\u00b2\3\uffff\1\u00b1"), DFA.unpack(u"\1\u00b3"), DFA.unpack(u"\12\150\1\uffff\2\150\1\uffff\u201a\150\2\uffff\udfd6" u"\150"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\12\u00b5"), DFA.unpack(u"\1\u00b6"), DFA.unpack(u"\1\u00b7"), DFA.unpack(u"\1\u00b8"), DFA.unpack(u"\1\u00b9"), DFA.unpack(u"\1\u00ba"), DFA.unpack(u"\1\u00bb"), DFA.unpack(u"\1\u00bc"), DFA.unpack(u"\1\u00bd"), DFA.unpack(u"\1\u00be"), DFA.unpack(u"\1\u00bf"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u00c0"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u00c1"), DFA.unpack(u"\1\u00c2"), DFA.unpack(u"\1\u00c3"), DFA.unpack(u""), DFA.unpack(u"\1\u00c4"), DFA.unpack(u"\1\57\13\uffff\1\57\1\u00c6\1\u00c7\1\u00c8\1\u00c9" u"\1\u00ca\1\u00cb\1\u00cc\1\u00c5\1\u00cd\7\uffff\32\57\1\uffff" u"\1\57\2\uffff\1\57\1\uffff\4\57\1\u00ce\25\57\57\uffff\1\57\12" u"\uffff\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128" u"\57\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16" u"\uffff\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff" u"\1\57\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u00d0"), DFA.unpack(u""), DFA.unpack(u"\1\u00d1"), DFA.unpack(u"\1\u00d2"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u00d4"), DFA.unpack(u"\1\u00d5"), DFA.unpack(u"\1\u00d6"), DFA.unpack(u"\1\u00d8\1\u00d7"), DFA.unpack(u"\1\u00d9"), DFA.unpack(u"\1\u00da"), DFA.unpack(u"\1\u00db"), DFA.unpack(u"\1\u00dc"), DFA.unpack(u"\1\u00dd"), DFA.unpack(u"\1\u00de"), DFA.unpack(u"\1\u00df"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u00e1"), DFA.unpack(u"\1\u00e2"), DFA.unpack(u"\1\u00e3"), DFA.unpack(u"\1\u00e4"), DFA.unpack(u"\1\u00e5"), DFA.unpack(u"\1\u00e6"), DFA.unpack(u"\1\u00e7"), DFA.unpack(u"\1\u00e8"), DFA.unpack(u"\1\u00e9"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u00eb"), DFA.unpack(u"\1\u00ec"), DFA.unpack(u"\1\u00ed"), DFA.unpack(u"\1\u00ee"), DFA.unpack(u"\1\u00ef"), DFA.unpack(u"\1\u00f0"), DFA.unpack(u"\1\u00f1"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u00f3"), DFA.unpack(u"\1\u00f4"), DFA.unpack(u""), DFA.unpack(u"\1\u00f5\1\uffff\12\u00b5"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u00f7"), DFA.unpack(u"\1\u00f8"), DFA.unpack(u"\1\u00f9"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u00fa"), DFA.unpack(u"\1\u00fb"), DFA.unpack(u"\1\u00fc"), DFA.unpack(u"\1\u00fd"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\u00ff"), DFA.unpack(u"\1\u0100"), DFA.unpack(u"\1\u0101"), DFA.unpack(u"\1\u0102"), DFA.unpack(u"\1\57\13\uffff\1\u0103\7\57\1\u0104\1\57\7\uffff\32" u"\57\1\uffff\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff" u"\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57" u"\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0106\1\u0107\1\u0108\1\u0109\1\u010a\1\u010b\1" u"\u0105\1\u010c\1\u010d\1\u010e"), DFA.unpack(u"\1\u0110\1\u0111\1\u0112\1\u0113\1\u010f\1\u0114"), DFA.unpack(u"\1\u0115"), DFA.unpack(u"\1\u0116\7\uffff\1\u0117"), DFA.unpack(u"\1\u0118"), DFA.unpack(u"\1\u0119"), DFA.unpack(u"\1\u011a"), DFA.unpack(u"\1\u011b"), DFA.unpack(u"\1\u011c"), DFA.unpack(u""), DFA.unpack(u"\1\u011d"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u011f"), DFA.unpack(u""), DFA.unpack(u"\1\u0120"), DFA.unpack(u"\1\u0121"), DFA.unpack(u"\1\u0122"), DFA.unpack(u"\1\u0124\10\uffff\1\u0123"), DFA.unpack(u"\1\u0125"), DFA.unpack(u"\1\u0126"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0128"), DFA.unpack(u"\1\u0129"), DFA.unpack(u"\1\u012a"), DFA.unpack(u"\1\u012b"), DFA.unpack(u"\1\u012c"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\22\57\1\u0130\7\57\57\uffff\1\57\12\uffff\1" u"\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2" u"\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0132"), DFA.unpack(u"\1\u0133"), DFA.unpack(u"\1\u0134"), DFA.unpack(u"\1\u0135"), DFA.unpack(u"\1\u0136"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0138"), DFA.unpack(u"\1\u0139"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u013b"), DFA.unpack(u"\1\u013c"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u013f"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\1\57\1\u0142\1\u0143\1\u0144\1\u0145" u"\1\u0146\1\u0147\1\u0148\1\u0141\1\u0149\7\uffff\32\57\1\uffff" u"\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4" u"\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff" u"\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57" u"\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2" u"\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff" u"\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7" u"\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff" u"\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57" u"\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f" u"\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12" u"\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23" u"\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57" u"\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12" u"\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u014b"), DFA.unpack(u"\1\u014c"), DFA.unpack(u"\1\u014d"), DFA.unpack(u"\1\u014e"), DFA.unpack(u"\1\u014f"), DFA.unpack(u""), DFA.unpack(u"\1\u0150"), DFA.unpack(u"\1\u0151"), DFA.unpack(u"\1\u0152"), DFA.unpack(u"\1\u0153"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\1\u0154\7\57\1\u0155\1\57\7\uffff\32" u"\57\1\uffff\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff" u"\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57" u"\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0156"), DFA.unpack(u"\1\u0157"), DFA.unpack(u"\1\u0158\7\uffff\1\u0159"), DFA.unpack(u"\1\u015a"), DFA.unpack(u"\1\u015b"), DFA.unpack(u"\1\u015c"), DFA.unpack(u"\1\u015d"), DFA.unpack(u"\1\u015e"), DFA.unpack(u"\1\u015f"), DFA.unpack(u"\1\57\13\uffff\1\u0160\7\57\1\u0161\1\57\7\uffff\32" u"\57\1\uffff\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff" u"\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57" u"\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0162\7\uffff\1\u0163"), DFA.unpack(u"\1\u0164"), DFA.unpack(u"\1\u0165"), DFA.unpack(u"\1\u0166"), DFA.unpack(u"\1\u0167"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0168"), DFA.unpack(u"\1\u0169"), DFA.unpack(u""), DFA.unpack(u"\1\u016a"), DFA.unpack(u"\1\u016b"), DFA.unpack(u"\1\57\13\uffff\12\u016d\7\uffff\32\57\1\uffff\1\57" u"\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff" u"\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u016f"), DFA.unpack(u"\1\u0170"), DFA.unpack(u"\1\u0171"), DFA.unpack(u"\1\u0172"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0174"), DFA.unpack(u"\1\u0175"), DFA.unpack(u"\1\u0176"), DFA.unpack(u"\1\u0177"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\1\57\1\u0178\1\u0179\1\u017a\1\u017b" u"\1\u017c\1\u017d\1\u017e\1\u017f\1\u0180\7\uffff\32\57\1\uffff" u"\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4" u"\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff" u"\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57" u"\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2" u"\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff" u"\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7" u"\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff" u"\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57" u"\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f" u"\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12" u"\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23" u"\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57" u"\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12" u"\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u0183"), DFA.unpack(u"\1\u0184"), DFA.unpack(u"\1\u0185"), DFA.unpack(u"\1\u0186"), DFA.unpack(u""), DFA.unpack(u"\1\u0187"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u018b"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\1\u018c\7\57\1\u018d\1\57\7\uffff\32" u"\57\1\uffff\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff" u"\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57" u"\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u018f\1\u0190\1\u0191\1\u0192\1\u0193\1\u0194\1" u"\u018e\1\u0195\1\u0196\1\u0197"), DFA.unpack(u"\1\u0199\1\u019a\1\u019b\1\u019c\1\u0198\1\u019d"), DFA.unpack(u"\1\u019e"), DFA.unpack(u"\1\u019f\7\uffff\1\u01a0"), DFA.unpack(u"\1\u01a1"), DFA.unpack(u"\1\u01a2"), DFA.unpack(u"\1\u01a3"), DFA.unpack(u"\1\u01a4"), DFA.unpack(u""), DFA.unpack(u"\1\u01a5"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01a7"), DFA.unpack(u"\1\u01a8"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01aa"), DFA.unpack(u"\1\u01ab"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01ad"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01ae"), DFA.unpack(u"\1\u01af"), DFA.unpack(u"\1\u01b0"), DFA.unpack(u"\1\u01b1"), DFA.unpack(u""), DFA.unpack(u"\12\u016d\76\uffff\1\u01b2"), DFA.unpack(u""), DFA.unpack(u"\1\u01b3"), DFA.unpack(u"\1\u01b4"), DFA.unpack(u"\1\u01b5"), DFA.unpack(u"\1\u01b6"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\22\57\1\u01b7\7\57\57\uffff\1\57\12\uffff\1" u"\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2" u"\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01b9"), DFA.unpack(u"\1\u01ba"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\1\u01bc\1\u01bd\1\u01be\1\u01bf\1\u01c0" u"\1\u01c1\1\u01c2\1\u01c3\1\u01c4\1\u01c5\7\uffff\32\57\1\uffff" u"\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4" u"\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff" u"\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57" u"\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2" u"\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff" u"\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7" u"\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff" u"\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57" u"\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f" u"\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12" u"\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23" u"\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57" u"\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12" u"\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\1\u01c6\1\u01c7\1\u01c8\1\u01c9\1\u01ca" u"\1\u01cb\1\u01cc\1\u01cd\1\u01ce\1\u01cf\7\uffff\32\57\1\uffff" u"\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4" u"\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff" u"\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57" u"\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2" u"\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff" u"\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7" u"\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff" u"\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57" u"\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f" u"\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12" u"\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23" u"\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57" u"\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12" u"\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\1\u01d0\1\u01d1\1\u01d2\7\57\7\uffff" u"\32\57\1\uffff\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12" u"\uffff\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128" u"\57\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16" u"\uffff\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff" u"\1\57\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01d4"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01d7"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\1\u01d9\7\57\1\u01da\1\57\7\uffff\32" u"\57\1\uffff\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff" u"\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57" u"\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01db"), DFA.unpack(u"\1\u01dc"), DFA.unpack(u"\1\u01dd\7\uffff\1\u01de"), DFA.unpack(u"\1\u01df"), DFA.unpack(u"\1\u01e0"), DFA.unpack(u"\1\u01e1"), DFA.unpack(u"\1\u01e2"), DFA.unpack(u"\1\u01e3"), DFA.unpack(u"\1\u01e4"), DFA.unpack(u"\1\57\13\uffff\1\u01e5\7\57\1\u01e6\1\57\7\uffff\32" u"\57\1\uffff\1\57\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff" u"\1\57\4\uffff\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57" u"\2\uffff\22\57\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff" u"\2\57\16\uffff\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff" u"\10\57\2\uffff\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2" u"\57\2\uffff\2\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff" u"\1\57\7\uffff\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57" u"\5\uffff\13\57\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff" u"\2\57\11\uffff\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57" u"\u015f\uffff\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff" u"\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1" u"\uffff\1\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14" u"\57\23\uffff\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff" u"\2\57\1\uffff\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff" u"\12\57\2\uffff\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff" u"\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff" u"\1\57\17\uffff\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2" u"\uffff\26\57\1\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57" u"\36\uffff\2\57\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff" u"\3\57\1\uffff\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff" u"\2\57\3\uffff\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25" u"\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5" u"\57\46\uffff\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff" u"\27\57\1\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4" u"\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff" u"\20\57\46\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57" u"\1\uffff\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff" u"\2\57\14\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2" u"\uffff\2\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57" u"\1\uffff\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4" u"\57\1\uffff\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff" u"\2\57\42\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57" u"\164\uffff\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff" u"\6\57\112\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104" u"\57\5\uffff\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff" u"\4\57\2\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff" u"\1\57\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff" u"\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01e7\7\uffff\1\u01e8"), DFA.unpack(u"\1\u01e9"), DFA.unpack(u"\1\u01ea"), DFA.unpack(u"\1\u01eb"), DFA.unpack(u"\1\u01ec"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\u01ee\7\uffff\32\57\1\uffff\1\57" u"\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff" u"\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01f2"), DFA.unpack(u""), DFA.unpack(u"\1\u01f3"), DFA.unpack(u"\1\u01f4"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u01f6"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\12\u01f8"), DFA.unpack(u"\1\u01f9"), DFA.unpack(u"\1\u01fa"), DFA.unpack(u"\1\u01fb"), DFA.unpack(u"\1\u01fc"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\u01fe"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u0201"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\12\u01ee\76\uffff\1\u0202"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\u0203"), DFA.unpack(u"\1\u0204"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\u01f8\7\uffff\32\57\1\uffff\1\57" u"\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff" u"\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\12\u020d"), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"\1\u020f"), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\u020d\7\uffff\32\57\1\uffff\1\57" u"\2\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff" u"\1\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u""), DFA.unpack(u"\1\57\13\uffff\12\57\7\uffff\32\57\1\uffff\1\57\2" u"\uffff\1\57\1\uffff\32\57\57\uffff\1\57\12\uffff\1\57\4\uffff\1" u"\57\5\uffff\27\57\1\uffff\37\57\1\uffff\u0128\57\2\uffff\22\57" u"\34\uffff\136\57\2\uffff\11\57\2\uffff\7\57\16\uffff\2\57\16\uffff" u"\5\57\11\uffff\1\57\u008b\uffff\1\57\13\uffff\1\57\1\uffff\3\57" u"\1\uffff\1\57\1\uffff\24\57\1\uffff\54\57\1\uffff\10\57\2\uffff" u"\32\57\14\uffff\u0082\57\12\uffff\71\57\2\uffff\2\57\2\uffff\2" u"\57\3\uffff\46\57\2\uffff\2\57\67\uffff\46\57\2\uffff\1\57\7\uffff" u"\47\57\110\uffff\33\57\5\uffff\3\57\56\uffff\32\57\5\uffff\13\57" u"\25\uffff\12\57\7\uffff\143\57\1\uffff\1\57\17\uffff\2\57\11\uffff" u"\15\57\23\uffff\1\57\1\uffff\33\57\123\uffff\46\57\u015f\uffff" u"\65\57\3\uffff\1\57\22\uffff\1\57\7\uffff\12\57\4\uffff\12\57\25" u"\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\1" u"\57\3\uffff\4\57\42\uffff\2\57\1\uffff\3\57\4\uffff\14\57\23\uffff" u"\6\57\4\uffff\2\57\2\uffff\26\57\1\uffff\7\57\1\uffff\2\57\1\uffff" u"\2\57\1\uffff\2\57\37\uffff\4\57\1\uffff\1\57\7\uffff\12\57\2\uffff" u"\3\57\20\uffff\7\57\1\uffff\1\57\1\uffff\3\57\1\uffff\26\57\1\uffff" u"\7\57\1\uffff\2\57\1\uffff\5\57\3\uffff\1\57\22\uffff\1\57\17\uffff" u"\1\57\5\uffff\12\57\25\uffff\10\57\2\uffff\2\57\2\uffff\26\57\1" u"\uffff\7\57\1\uffff\2\57\2\uffff\4\57\3\uffff\1\57\36\uffff\2\57" u"\1\uffff\3\57\4\uffff\12\57\25\uffff\6\57\3\uffff\3\57\1\uffff" u"\4\57\3\uffff\2\57\1\uffff\1\57\1\uffff\2\57\3\uffff\2\57\3\uffff" u"\3\57\3\uffff\10\57\1\uffff\3\57\55\uffff\11\57\25\uffff\10\57" u"\1\uffff\3\57\1\uffff\27\57\1\uffff\12\57\1\uffff\5\57\46\uffff" u"\2\57\4\uffff\12\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1" u"\uffff\12\57\1\uffff\5\57\44\uffff\1\57\1\uffff\2\57\4\uffff\12" u"\57\25\uffff\10\57\1\uffff\3\57\1\uffff\27\57\1\uffff\20\57\46" u"\uffff\2\57\4\uffff\12\57\25\uffff\22\57\3\uffff\30\57\1\uffff" u"\11\57\1\uffff\1\57\2\uffff\7\57\72\uffff\60\57\1\uffff\2\57\14" u"\uffff\7\57\11\uffff\12\57\47\uffff\2\57\1\uffff\1\57\2\uffff\2" u"\57\1\uffff\1\57\2\uffff\1\57\6\uffff\4\57\1\uffff\7\57\1\uffff" u"\3\57\1\uffff\1\57\1\uffff\1\57\2\uffff\2\57\1\uffff\4\57\1\uffff" u"\2\57\11\uffff\10\57\1\uffff\1\57\11\uffff\12\57\2\uffff\2\57\42" u"\uffff\1\57\37\uffff\12\57\26\uffff\53\57\35\uffff\4\57\164\uffff" u"\42\57\1\uffff\5\57\1\uffff\2\57\25\uffff\12\57\6\uffff\6\57\112" u"\uffff\46\57\12\uffff\47\57\11\uffff\132\57\5\uffff\104\57\5\uffff" u"\122\57\6\uffff\7\57\1\uffff\77\57\1\uffff\1\57\1\uffff\4\57\2" u"\uffff\7\57\1\uffff\1\57\1\uffff\4\57\2\uffff\47\57\1\uffff\1\57" u"\1\uffff\4\57\2\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7" u"\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff\7\57\1\uffff" u"\27\57\1\uffff\37\57\1\uffff\1\57\1\uffff\4\57\2\uffff\7\57\1\uffff" u"\47\57\1\uffff\23\57\16\uffff\11\57\56\uffff\125\57\14\uffff\u0276" u"\57\12\uffff\32\57\5\uffff\113\57\u0095\uffff\64\57\54\uffff\12" u"\57\46\uffff\12\57\6\uffff\130\57\10\uffff\51\57\u0557\uffff\u009c" u"\57\4\uffff\132\57\6\uffff\26\57\2\uffff\6\57\2\uffff\46\57\2\uffff" u"\6\57\2\uffff\10\57\1\uffff\1\57\1\uffff\1\57\1\uffff\1\57\1\uffff" u"\37\57\2\uffff\65\57\1\uffff\7\57\1\uffff\1\57\3\uffff\3\57\1\uffff" u"\7\57\3\uffff\4\57\2\uffff\6\57\4\uffff\15\57\5\uffff\3\57\1\uffff" u"\7\57\102\uffff\2\57\76\uffff\1\57\u0082\uffff\1\57\4\uffff\1\57" u"\2\uffff\12\57\1\uffff\1\57\3\uffff\5\57\6\uffff\1\57\1\uffff\1" u"\57\1\uffff\1\57\1\uffff\4\57\1\uffff\3\57\1\uffff\7\57\46\uffff" u"\44\57\u0e81\uffff\3\57\31\uffff\11\57\7\uffff\5\57\2\uffff\3\57" u"\6\uffff\124\57\10\uffff\2\57\2\uffff\136\57\6\uffff\50\57\4\uffff" u"\136\57\21\uffff\30\57\u0248\uffff\1\57\u19b4\uffff\1\57\112\uffff" u"\1\57\u51a4\uffff\1\57\132\uffff\u048d\57\u0773\uffff\1\57\u2ba2" u"\uffff\1\57\u215c\uffff\u012e\57\u00d2\uffff\7\57\14\uffff\5\57" u"\5\uffff\1\57\1\uffff\12\57\1\uffff\15\57\1\uffff\5\57\1\uffff" u"\1\57\1\uffff\2\57\1\uffff\2\57\1\uffff\154\57\41\uffff\u016b\57" u"\22\uffff\100\57\2\uffff\66\57\50\uffff\14\57\67\uffff\2\57\30" u"\uffff\3\57\40\uffff\3\57\1\uffff\1\57\1\uffff\u0087\57\23\uffff" u"\12\57\7\uffff\32\57\4\uffff\1\57\1\uffff\32\57\12\uffff\132\57" u"\3\uffff\6\57\2\uffff\6\57\2\uffff\6\57\2\uffff\3\57"), DFA.unpack(u"") ] # class definition for DFA #46 class DFA46(DFA): def specialStateTransition(self_, s, input): # convince pylint that my self_ magic is ok ;) # pylint: disable-msg=E0213 # pretend we are a member of the recognizer # thus semantic predicates can be evaluated self = self_.recognizer _s = s if s == 0: LA46_101 = input.LA(1) index46_101 = input.index() input.rewind() s = -1 if ((0 <= LA46_101 <= 9) or (11 <= LA46_101 <= 12) or (14 <= LA46_101 <= 8231) or (8234 <= LA46_101 <= 65535)) and ((self.areRegularExpressionsEnabled() )): s = 104 else: s = 180 input.seek(index46_101) if s >= 0: return s elif s == 1: LA46_30 = input.LA(1) index46_30 = input.index() input.rewind() s = -1 if (LA46_30 == 61): s = 101 elif (LA46_30 == 42): s = 102 elif (LA46_30 == 47): s = 103 elif ((0 <= LA46_30 <= 9) or (11 <= LA46_30 <= 12) or (14 <= LA46_30 <= 41) or (43 <= LA46_30 <= 46) or (48 <= LA46_30 <= 60) or (62 <= LA46_30 <= 8231) or (8234 <= LA46_30 <= 65535)) and ((self.areRegularExpressionsEnabled() )): s = 104 else: s = 105 input.seek(index46_30) if s >= 0: return s if self._state.backtracking >0: raise BacktrackingFailed nvae = NoViableAltException(self_.getDescription(), 46, _s, input) self_.error(nvae) raise nvae def main(argv, stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr): from antlr3.main import LexerMain main = LexerMain(solLexer) main.stdin = stdin main.stdout = stdout main.stderr = stderr main.execute(argv) if __name__ == '__main__': main(sys.argv)
58.208395
9,302
0.587728
0fef8d9cdd77bc503c06228b7c00d952a7eec6df
7,200
py
Python
python/fate_arch/federation/pulsar/_pulsar_manager.py
hubert-he/FATE
6758e150bd7ca7d6f788f9a7a8c8aea7e6500363
[ "Apache-2.0" ]
1
2021-03-30T13:24:01.000Z
2021-03-30T13:24:01.000Z
python/fate_arch/federation/pulsar/_pulsar_manager.py
hubert-he/FATE
6758e150bd7ca7d6f788f9a7a8c8aea7e6500363
[ "Apache-2.0" ]
null
null
null
python/fate_arch/federation/pulsar/_pulsar_manager.py
hubert-he/FATE
6758e150bd7ca7d6f788f9a7a8c8aea7e6500363
[ "Apache-2.0" ]
null
null
null
######################################################## # Copyright 2019-2021 program was created VMware, Inc. # # SPDX-License-Identifier: Apache-2.0 # ######################################################## import logging import json import requests from requests.adapters import HTTPAdapter from urllib3.util.retry import Retry from fate_arch.common.log import getLogger logger = getLogger() MAX_RETRIES = 10 MAX_REDIRECT = 5 BACKOFF_FACTOR = 1 # sleep time equips to {BACKOFF_FACTOR} * (2 ** ({NUMBER_OF_TOTALRETRIES} - 1)) CLUSTER = 'clusters/{}' TENANT = 'tenants/{}' # APIs are refer to https://pulsar.apache.org/admin-rest-api/?version=2.7.0&apiversion=v2 class PulsarManager(): def __init__(self, host: str, port: str, runtime_config: dict = {}): self.service_url = "http://{}:{}/admin/v2/".format(host, port) self.runtime_config = runtime_config # create session is used to construct url and request parameters def _create_session(self): # retry mechanism refers to https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html#urllib3.util.Retry retry = Retry(total=MAX_RETRIES, redirect=MAX_REDIRECT, backoff_factor=BACKOFF_FACTOR) s = requests.Session() # initialize headers s.headers.update({'Content-Type': 'application/json'}) http_adapter = HTTPAdapter(max_retries=retry) s.mount('http://', http_adapter) s.mount('https://', http_adapter) return s # allocator def get_allocator(self, allocator: str = 'default'): session = self._create_session() response = session.get( self.service_url + 'broker-stats/allocator-stats/{}'.format(allocator)) return response # cluster def get_cluster(self, cluster_name: str = ''): session = self._create_session() response = session.get( self.service_url + CLUSTER.format(cluster_name)) return response def delete_cluster(self, cluster_name: str = ''): session = self._create_session() response = session.delete( self.service_url + CLUSTER.format(cluster_name)) return response # service_url need to provide "http://" prefix def create_cluster(self, cluster_name: str, broker_url: str, service_url: str = '', service_url_tls: str = '', broker_url_tls: str = '', proxy_url: str = '', proxy_protocol: str = "SNI", peer_cluster_names: list = [], ): # initialize data data = { 'serviceUrl': service_url, 'serviceUrlTls': service_url_tls, 'brokerServiceUrl': broker_url, 'brokerServiceUrlTls': broker_url_tls, 'peerClusterNames': peer_cluster_names, 'proxyServiceUrl': proxy_url, 'proxyProtocol': proxy_protocol } session = self._create_session() response = session.put( self.service_url + CLUSTER.format(cluster_name), data=json.dumps(data)) return response def update_cluster(self, cluster_name: str, broker_url: str, service_url: str = '', service_url_tls: str = '', broker_url_tls: str = '', proxy_url: str = '', proxy_protocol: str = "SNI", peer_cluster_names: list = [], ): # initialize data data = { 'serviceUrl': service_url, 'serviceUrlTls': service_url_tls, 'brokerServiceUrl': broker_url, 'brokerServiceUrlTls': broker_url_tls, 'peerClusterNames': peer_cluster_names, 'proxyServiceUrl': proxy_url, 'proxyProtocol': proxy_protocol } session = self._create_session() response = session.post( self.service_url + CLUSTER.format(cluster_name), data=json.dumps(data)) return response # tenants def get_tenant(self, tenant: str = ''): session = self._create_session() response = session.get(self.service_url + TENANT.format(tenant)) return response def create_tenant(self, tenant: str, admins: list, clusters: list): session = self._create_session() data = {'adminRoles': admins, 'allowedClusters': clusters} response = session.put( self.service_url + TENANT.format(tenant), data=json.dumps(data)) return response def delete_tenant(self, tenant: str): session = self._create_session() response = session.delete( self.service_url + TENANT.format(tenant)) return response def update_tenant(self, tenant: str, admins: list, clusters: list): session = self._create_session() data = {'adminRoles': admins, 'allowedClusters': clusters} response = session.post( self.service_url + TENANT.format(tenant), data=json.dumps(data)) return response # namespace def get_namespace(self, tenant: str): session = self._create_session() response = session.get( self.service_url + 'namespaces/{}'.format(tenant)) return response # 'replication_clusters' is always required def create_namespace(self, tenant: str, namespace: str, policies: dict = {}): session = self._create_session() response = session.put( self.service_url + 'namespaces/{}/{}'.format(tenant, namespace), data=json.dumps(policies) ) return response def delete_namespace(self, tenant: str, namespace: str, force: bool = False): session = self._create_session() response = session.delete( self.service_url + 'namespace/{}/{}?force={}'.format(tenant, namespace, str(force).lower()) ) return response def set_clusters_to_namespace(self, tenant: str, namespace: str, clusters: list): session = self._create_session() response = session.post( self.service_url + 'namespaces/{}/{}/replication'.format(tenant, namespace), json=clusters ) return response def get_cluster_from_namespace(self, tenant: str, namespace: str): session = self._create_session() response = session.get( self.service_url + 'namespaces/{}/{}/replication'.format(tenant, namespace) ) return response def set_subscription_expiration_time(self, tenant: str, namespace: str, mintues: int = 0): session = self._create_session() response = session.post( self.service_url + 'namespaces/{}/{}/subscriptionExpirationTime'.format(tenant, namespace), json=mintues ) return response def set_message_ttl(self, tenant: str, namespace: str, mintues: int = 0): session = self._create_session() response = session.post( # the API accepts data as seconds self.service_url + 'namespaces/{}/{}/messageTTL'.format(tenant, namespace), json=mintues*60 ) return response
35.46798
123
0.605556
269ee7085817f53c01075896867ff51da1ee44f6
7,375
py
Python
nuqql_matrixd_nio/server.py
hwipl/nuqql-matrixd-nio
5a121eb45496cf9f329b3afddebd1ab9b3d6fce7
[ "MIT" ]
null
null
null
nuqql_matrixd_nio/server.py
hwipl/nuqql-matrixd-nio
5a121eb45496cf9f329b3afddebd1ab9b3d6fce7
[ "MIT" ]
null
null
null
nuqql_matrixd_nio/server.py
hwipl/nuqql-matrixd-nio
5a121eb45496cf9f329b3afddebd1ab9b3d6fce7
[ "MIT" ]
null
null
null
""" matrixd backend server """ import html import re from typing import TYPE_CHECKING, Dict, Optional, Tuple # nuqql-based imports from nuqql_based.based import Based from nuqql_based.callback import Callback from nuqql_based.message import Message # matrixd imports from nuqql_matrixd_nio.client import BackendClient from nuqql_matrixd_nio.matrix import unescape_name if TYPE_CHECKING: # imports for typing # pylint: disable=ungrouped-imports from nuqql_based.based import CallbackList from nuqql_based.account import Account # noqa # matrixd version VERSION = "0.2.0" class BackendServer: """ Backend server class, manages the BackendClients for connections to IM networks """ def __init__(self) -> None: self.connections: Dict[int, BackendClient] = {} self.based = Based("matrixd-nio", VERSION) async def start(self) -> None: """ Start server """ # set callbacks callbacks: "CallbackList" = [ # based events (Callback.BASED_INTERRUPT, self.based_interrupt), (Callback.BASED_QUIT, self.based_quit), # nuqql messages (Callback.QUIT, self.stop_task), (Callback.HELP_WELCOME, self._help_welcome), (Callback.HELP_ACCOUNT_ADD, self._help_account_add), (Callback.ADD_ACCOUNT, self.add_account), (Callback.DEL_ACCOUNT, self.del_account), (Callback.GET_BUDDIES, self.handle_command), (Callback.SEND_MESSAGE, self.send_message), (Callback.SET_STATUS, self.handle_command), (Callback.GET_STATUS, self.handle_command), (Callback.CHAT_LIST, self.handle_command), (Callback.CHAT_JOIN, self.handle_command), (Callback.CHAT_PART, self.handle_command), (Callback.CHAT_SEND, self.chat_send), (Callback.CHAT_USERS, self.handle_command), (Callback.CHAT_INVITE, self.handle_command), ] self.based.set_callbacks(callbacks) # start based await self.based.start() async def handle_command(self, account: Optional["Account"], cmd: Callback, params: Tuple) -> str: """ Handle command in account/client """ assert account try: client = self.connections[account.aid] except KeyError: # no active connection return "" await client.handle_command(cmd, params) return "" async def send_message(self, account: Optional["Account"], cmd: Callback, params: Tuple) -> str: """ send a message to a destination on an account """ # parse parameters if len(params) > 2: dest, msg, msg_type = params else: dest, msg = params msg_type = "chat" # nuqql sends a html-escaped message; construct "plain-text" version # and xhtml version using nuqql's message and use them as message body # later html_msg = f'<body xmlns="http://www.w3.org/1999/xhtml">{msg}</body>' msg = html.unescape(msg) msg = "\n".join(re.split("<br/>", msg, flags=re.IGNORECASE)) # send message await self.handle_command(account, cmd, (unescape_name(dest), msg, html_msg, msg_type)) return "" async def chat_send(self, account: Optional["Account"], _cmd: Callback, params: Tuple) -> str: """ Send message to chat on account """ chat, msg = params # TODO: use cmd to infer msg type in send_message and remove this # function? return await self.send_message(account, Callback.SEND_MESSAGE, (chat, msg, "groupchat")) async def add_account(self, account: Optional["Account"], _cmd: Callback, _params: Tuple) -> str: """ Add a new account (from based) and run a new client task for it """ # only handle matrix accounts assert account if account.type != "matrix": return "" # init client connection client = BackendClient(account) # save client connection in active connections dictionary self.connections[account.aid] = client # start client await client.start() return "" async def del_account(self, account: Optional["Account"], _cmd: Callback, _params: Tuple) -> str: """ Delete an existing account (in based) and stop matrix client task for it """ # let client clean up assert account client = self.connections[account.aid] await client.stop() client.del_account() # cleanup del self.connections[account.aid] return "" @staticmethod async def _help_account_add(_account: Optional["Account"], _cmd: Callback, _params: Tuple) -> str: """ Handle account add help event """ add_help = Message.info("You do not have any accounts configured.") add_help += Message.info("You can add a new matrix account with the " "following command: " "account add matrix <username>@<homeserver> " "<password>") add_help += Message.info("Example: account add matrix " "dummy@matrix.org MyPassword") return add_help async def _help_welcome(self, _account: Optional["Account"], _cmd: Callback, _params: Tuple) -> str: """ Handle welcome help message event """ welcome = Message.info(f"Welcome to nuqql-matrixd-nio v{VERSION}!") welcome += Message.info("Enter \"help\" for a list of available " "commands and their help texts") if self.based.config.get_push_accounts(): welcome += Message.info("Listing your accounts:") return welcome async def stop_task(self, account: Optional["Account"], _cmd: Callback, _params: Tuple) -> str: """ Quit backend/stop client task """ # stop task print("Signalling account tasks to stop.") assert account client = self.connections[account.aid] await client.stop() return "" async def based_interrupt(self, _account: Optional["Account"], _cmd: Callback, _params: Tuple) -> str: """ KeyboardInterrupt event in based """ for client in self.connections.values(): print("Signalling account task to stop.") await client.stop() return "" async def based_quit(self, _account: Optional["Account"], _cmd: Callback, _params: Tuple) -> str: """ Based shut down event """ print("Waiting for all tasks to finish. This might take a while.") for client in self.connections.values(): assert client.task await client.task return ""
31.926407
79
0.571119
e30ececd72355be8dbf4e5b0d771de1a56401529
1,658
py
Python
tests/test_stats.py
InigoSJ/airflow
8b97a387dc30d8c88390d500ec99333798c20f1c
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSD-3-Clause" ]
3
2019-08-17T15:16:11.000Z
2019-11-18T06:42:15.000Z
tests/test_stats.py
InigoSJ/airflow
8b97a387dc30d8c88390d500ec99333798c20f1c
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSD-3-Clause" ]
7
2019-03-27T07:58:14.000Z
2020-02-12T17:42:33.000Z
tests/test_stats.py
upjohnc/airflow-upjohn-k8s
caadbc1618d73e054de99138b0892cea3a9327c4
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSD-3-Clause" ]
5
2017-06-19T19:55:47.000Z
2020-10-10T00:49:20.000Z
# -*- coding: utf-8 -*- # # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. import unittest from airflow.stats import SafeStatsdLogger from unittest.mock import Mock class TestStats(unittest.TestCase): def setUp(self): self.statsd_client = Mock() self.stats = SafeStatsdLogger(self.statsd_client) def test_increment_counter_with_valid_name(self): self.stats.incr('test_stats_run') self.statsd_client.incr.assert_called_once_with('test_stats_run', 1, 1) def test_stat_name_must_be_a_string(self): self.stats.incr(list()) self.statsd_client.assert_not_called() def test_stat_name_must_not_exceed_max_length(self): self.stats.incr('X' * 300) self.statsd_client.assert_not_called() def test_stat_name_must_only_include_whitelisted_characters(self): self.stats.incr('test/$tats') self.statsd_client.assert_not_called()
35.276596
79
0.74608
d079aaa8eb79ed97c762ab7bc8d25028e79a84f8
15,462
py
Python
2vtk.py
ksaslam/dynosol_coupling
8d4cae809c00ae4e8569842a93722b9aedc41a90
[ "MIT" ]
null
null
null
2vtk.py
ksaslam/dynosol_coupling
8d4cae809c00ae4e8569842a93722b9aedc41a90
[ "MIT" ]
null
null
null
2vtk.py
ksaslam/dynosol_coupling
8d4cae809c00ae4e8569842a93722b9aedc41a90
[ "MIT" ]
1
2019-08-28T21:40:06.000Z
2019-08-28T21:40:06.000Z
#!/usr/bin/env python # encoding: utf-8 '''Convert the binary output of DynEarthSol3D to VTK files. usage: 2vtk.py [-a -c -m -p -t -h] modelname [start [end [delta]]]] options: -a save data in ASCII format (default: binary) -c save files in current directory (default: same directory as the data files) -m save marker data -p save P-axis and T-axis -t save all tensor components (default: only 1st/2nd invariants) -h,--help show this help ''' from __future__ import print_function, unicode_literals import sys, os import base64, zlib import numpy as np from numpy.linalg import eigh from Dynearthsol import Dynearthsol # Save in ASCII or encoded binary. # Some old VTK programs cannot read binary VTK files. output_in_binary = True # Save the resultant vtu files in current directory? output_in_cwd = False # Save indivisual components? output_tensor_components = False # Save P-/T-axis output_pt_axis = False # Save markers? output_markers = False def main(modelname, start, end, delta): prefix = modelname if output_in_cwd: output_prefix = os.path.basename(modelname) else: output_prefix = modelname des = Dynearthsol(modelname) if end == -1: end = len(des.frames) for i in range(start, end, delta): frame = des.frames[i] nnode = des.nnode_list[i] nelem = des.nelem_list[i] step = des.steps[i] time_in_yr = des.time[i] / (365.2425 * 86400) des.read_header(frame) suffix = '{0:0=6}'.format(frame) print('Converting frame #{0}'.format(suffix), end='\r', file=sys.stderr) filename = '{0}.{1}.vtu'.format(output_prefix, suffix) fvtu = open(filename, 'wb') try: vtu_header(fvtu, nnode, nelem, time_in_yr, step) # # node-based field # fvtu.write(b' <PointData>\n') # averaged velocity is more stable and is preferred try: convert_field(des, frame, 'velocity averaged', fvtu) except KeyError: convert_field(des, frame, 'velocity', fvtu) convert_field(des, frame, 'force', fvtu) coord0 = des.read_field(frame, 'coord0') coord = des.read_field(frame, 'coordinate') disp = np.zeros((nnode, 3), dtype=coord.dtype) disp[:,0:des.ndims] = coord - coord0 vtk_dataarray(fvtu, disp, 'total displacement', 3) convert_field(des, frame, 'temperature', fvtu) convert_field(des, frame, 'bcflag', fvtu) #convert_field(des, frame, 'mass', fvtu) #convert_field(des, frame, 'tmass', fvtu) #convert_field(des, frame, 'volume_n', fvtu) # node number for debugging vtk_dataarray(fvtu, np.arange(nnode, dtype=np.int32), 'node number') fvtu.write(b' </PointData>\n') # # element-based field # fvtu.write(b' <CellData>\n') #convert_field(des, frame, 'volume', fvtu) #convert_field(des, frame, 'edvoldt', fvtu) convert_field(des, frame, 'mesh quality', fvtu) convert_field(des, frame, 'plastic strain', fvtu) convert_field(des, frame, 'plastic strain-rate', fvtu) strain_rate = des.read_field(frame, 'strain-rate') srII = second_invariant(strain_rate) vtk_dataarray(fvtu, np.log10(srII+1e-45), 'strain-rate II log10') if output_tensor_components: for d in range(des.nstr): vtk_dataarray(fvtu, strain_rate[:,d], 'strain-rate ' + des.component_names[d]) strain = des.read_field(frame, 'strain') sI = first_invariant(strain) sII = second_invariant(strain) vtk_dataarray(fvtu, sI, 'strain I') vtk_dataarray(fvtu, sII, 'strain II') if output_tensor_components: for d in range(des.nstr): vtk_dataarray(fvtu, strain[:,d], 'strain ' + des.component_names[d]) # averaged stress is more stable and is preferred try: stress = des.read_field(frame, 'stress averaged') except KeyError: stress = des.read_field(frame, 'stress') tI = first_invariant(stress) tII = second_invariant(stress) vtk_dataarray(fvtu, tI, 'stress I') vtk_dataarray(fvtu, tII, 'stress II') if output_tensor_components: for d in range(des.ndims): vtk_dataarray(fvtu, stress[:,d] - tI, 'stress ' + des.component_names[d] + ' dev.') for d in range(des.ndims, des.nstr): vtk_dataarray(fvtu, stress[:,d], 'stress ' + des.component_names[d]) if output_pt_axis: p_axis, t_axis = compute_pt_axis(stress) vtk_dataarray(fvtu, p_axis, 'P-axis', 3) vtk_dataarray(fvtu, t_axis, 'T-axis', 3) convert_field(des, frame, 'density', fvtu) convert_field(des, frame, 'material', fvtu) convert_field(des, frame, 'viscosity', fvtu) effvisc = tII / (srII + 1e-45) vtk_dataarray(fvtu, effvisc, 'effective viscosity') # element number for debugging vtk_dataarray(fvtu, np.arange(nelem, dtype=np.int32), 'elem number') fvtu.write(b' </CellData>\n') # # node coordinate # fvtu.write(b' <Points>\n') convert_field(des, frame, 'coordinate', fvtu) fvtu.write(b' </Points>\n') # # element connectivity & types # fvtu.write(b' <Cells>\n') convert_field(des, frame, 'connectivity', fvtu) vtk_dataarray(fvtu, (des.ndims+1)*np.array(range(1, nelem+1), dtype=np.int32), 'offsets') if des.ndims == 2: # VTK_ TRIANGLE == 5 celltype = 5 else: # VTK_ TETRA == 10 celltype = 10 vtk_dataarray(fvtu, celltype*np.ones((nelem,), dtype=np.int32), 'types') fvtu.write(b' </Cells>\n') vtu_footer(fvtu) fvtu.close() except: # delete partial vtu file fvtu.close() os.remove(filename) raise # # Converting marker # if output_markers: # ordinary markerset filename = '{0}.{1}.vtp'.format(output_prefix, suffix) output_vtp_file(des, frame, filename, 'markerset', time_in_yr, step) # hydrous markerset if 'hydrous-markerset size' in des.field_pos: filename = '{0}.hyd-ms.{1}.vtp'.format(output_prefix, suffix) output_vtp_file(des, frame, filename, 'hydrous-markerset', time_in_yr, step) print() return def output_vtp_file(des, frame, filename, markersetname, time_in_yr, step): fvtp = open(filename, 'wb') class MarkerSizeError(RuntimeError): pass try: # read data marker_data = des.read_markers(frame, markersetname) nmarkers = marker_data['size'] if nmarkers <= 0: raise MarkerSizeError() # write vtp header vtp_header(fvtp, nmarkers, time_in_yr, step) # point-based data fvtp.write(' <PointData>\n') name = markersetname + '.mattype' vtk_dataarray(fvtp, marker_data[name], name) name = markersetname + '.elem' vtk_dataarray(fvtp, marker_data[name], name) name = markersetname + '.id' vtk_dataarray(fvtp, marker_data[name], name) fvtp.write(' </PointData>\n') # point coordinates fvtp.write(' <Points>\n') field = marker_data[markersetname + '.coord'] if des.ndims == 2: # VTK requires vector field (velocity, coordinate) has 3 components. # Allocating a 3-vector tmp array for VTK data output. tmp = np.zeros((nmarkers, 3), dtype=field.dtype) tmp[:,:des.ndims] = field else: tmp = field vtk_dataarray(fvtp, tmp, markersetname + '.coord', 3) fvtp.write(' </Points>\n') vtp_footer(fvtp) fvtp.close() except MarkerSizeError: # delete partial vtp file fvtp.close() os.remove(filename) # skip this frame except: # delete partial vtp file fvtp.close() os.remove(filename) raise return def convert_field(des, frame, name, fvtu): field = des.read_field(frame, name) if name in ('coordinate', 'velocity', 'velocity averaged', 'force'): if des.ndims == 2: # VTK requires vector field (velocity, coordinate) has 3 components. # Allocating a 3-vector tmp array for VTK data output. i = des.frames.index(frame) tmp = np.zeros((des.nnode_list[i], 3), dtype=field.dtype) tmp[:,:des.ndims] = field else: tmp = field # Rename 'velocity averaged' to 'velocity' if name == 'velocity averaged': name = 'velocity' vtk_dataarray(fvtu, tmp, name, 3) else: vtk_dataarray(fvtu, field, name) return def vtk_dataarray(f, data, data_name=None, data_comps=None): if data.dtype in (np.int32,): dtype = 'Int32' elif data.dtype in (np.single, np.float32): dtype = 'Float32' elif data.dtype in (np.double, np.float64): dtype = 'Float64' else: raise Error('Unknown data type: ' + name) name = '' if data_name: name = 'Name="{0}"'.format(data_name) ncomp = '' if data_comps: ncomp = 'NumberOfComponents="{0}"'.format(data_comps) if output_in_binary: fmt = 'binary' else: fmt = 'ascii' header = '<DataArray type="{0}" {1} {2} format="{3}">\n'.format( dtype, name, ncomp, fmt) f.write(header.encode('ascii')) if output_in_binary: header = np.zeros(4, dtype=np.int32) header[0] = 1 a = data.tostring() header[1] = len(a) header[2] = len(a) b = zlib.compress(a) header[3] = len(b) f.write(base64.standard_b64encode(header.tostring())) f.write(base64.standard_b64encode(b)) else: data.tofile(f, sep=b' ') f.write(b'\n</DataArray>\n') return def vtu_header(f, nnode, nelem, time, step): f.write( '''<?xml version="1.0"?> <VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor"> <UnstructuredGrid> <FieldData> <DataArray type="Float32" Name="TIME" NumberOfTuples="1" format="ascii"> {2} </DataArray> <DataArray type="Float32" Name="CYCLE" NumberOfTuples="1" format="ascii"> {3} </DataArray> </FieldData> <Piece NumberOfPoints="{0}" NumberOfCells="{1}"> '''.format(nnode, nelem, time, step).encode('ascii')) return def vtu_footer(f): f.write( b'''</Piece> </UnstructuredGrid> </VTKFile> ''') return def vtp_header(f, nmarkers, time, step): f.write( '''<?xml version="1.0"?> <VTKFile type="PolyData" version="0.1" byte_order="LittleEndian" compressor="vtkZLibDataCompressor"> <PolyData> <FieldData> <DataArray type="Float32" Name="TIME" NumberOfTuples="1" format="ascii"> {1} </DataArray> <DataArray type="Float32" Name="CYCLE" NumberOfTuples="1" format="ascii"> {2} </DataArray> </FieldData> <Piece NumberOfPoints="{0}"> '''.format(nmarkers, time, step).encode('ascii')) return def vtp_footer(f): f.write( b'''</Piece> </PolyData> </VTKFile> ''') return def first_invariant(t): nstr = t.shape[1] ndims = 2 if (nstr == 3) else 3 return np.sum(t[:,:ndims], axis=1) / ndims def second_invariant(t): '''The second invariant of the deviatoric part of a symmetric tensor t, where t[:,0:ndims] are the diagonal components; and t[:,ndims:] are the off-diagonal components.''' nstr = t.shape[1] # second invariant: sqrt(0.5 * t_ij**2) if nstr == 3: # 2D return np.sqrt(0.25 * (t[:,0] - t[:,1])**2 + t[:,2]**2) else: # 3D a = (t[:,0] + t[:,1] + t[:,2]) / 3 return np.sqrt( 0.5 * ((t[:,0] - a)**2 + (t[:,1] - a)**2 + (t[:,2] - a)**2) + t[:,3]**2 + t[:,4]**2 + t[:,5]**2) def compute_pt_axis(stress): '''The compression and dilation axis of the deviatoric stress tensor.''' nelem = stress.shape[0] nstr = stress.shape[1] # VTK requires vector field (velocity, coordinate) has 3 components. # Allocating a 3-vector tmp array for VTK data output. p_axis = np.zeros((nelem, 3), dtype=stress.dtype) t_axis = np.zeros((nelem, 3), dtype=stress.dtype) if nstr == 3: # 2D sxx, szz, sxz = stress[:,0], stress[:,1], stress[:,2] mag = np.sqrt(0.25*(sxx - szz)**2 + sxz**2) theta = 0.5 * np.arctan2(2*sxz, sxx-szz) cost = np.cos(theta) sint = np.sin(theta) p_axis[:,0] = mag * sint p_axis[:,1] = mag * cost t_axis[:,0] = mag * cost t_axis[:,1] = -mag * sint else: # 3D # lower part of symmetric stress tensor s = np.zeros((nelem, 3,3), dtype=stress.dtype) s[:,0,0] = stress[:,0] s[:,1,1] = stress[:,1] s[:,2,2] = stress[:,2] s[:,1,0] = stress[:,3] s[:,2,0] = stress[:,4] s[:,2,1] = stress[:,5] # eigenvalues and eigenvectors if np.version.version[:3] >= '1.8': # Numpy-1.8 or newer w, v = eigh(s) else: # Numpy-1.7 or older w = np.zeros((nelem,3), dtype=stress.dtype) v = np.zeros((nelem,3,3), dtype=stress.dtype) for e in range(nelem): w[e,:], v[e,:,:] = eigh(s[e]) # isotropic part to be removed m = np.sum(w, axis=1) p = w.argmin(axis=1) t = w.argmax(axis=1) #print(w.shape, v.shape, p.shape) for e in range(nelem): p_axis[e,:] = (w[e,p[e]] - m[e]) * v[e,:,p[e]] t_axis[e,:] = (w[e,t[e]] - m[e]) * v[e,:,t[e]] return p_axis, t_axis if __name__ == '__main__': if len(sys.argv) < 2: print(__doc__) sys.exit(1) else: for arg in sys.argv[1:]: if arg.lower() in ('-h', '--help'): print(__doc__) sys.exit(0) if '-a' in sys.argv: output_in_binary = False if '-c' in sys.argv: output_in_cwd = True if '-p' in sys.argv: output_pt_axis = True if '-t' in sys.argv: output_tensor_components = True if '-m' in sys.argv: output_markers = True # delete options for i in range(len(sys.argv)): if sys.argv[1][0] == '-': del sys.argv[1] else: # the rest of argv cannot be options break modelname = sys.argv[1] if len(sys.argv) < 3: start = 0 else: start = int(sys.argv[2]) if len(sys.argv) < 4 or int(sys.argv[3]) == -1: end = -1 else: end = int(sys.argv[3]) + 1 if len(sys.argv) < 5: delta = 1 else: delta = int(sys.argv[4]) main(modelname, start, end, delta)
30.617822
108
0.55562
a6da9ecf7708d8b610d00b5e416900b7c5f7b24c
4,985
py
Python
examples/mpi_example_experiment.py
Nathaniel-Rodriguez/reservoirlib
367261d17fa762375ae40b4cc2ffab1de2113858
[ "MIT" ]
4
2018-07-01T20:17:08.000Z
2020-04-19T06:56:43.000Z
examples/mpi_example_experiment.py
Nathaniel-Rodriguez/reservoirlib
367261d17fa762375ae40b4cc2ffab1de2113858
[ "MIT" ]
null
null
null
examples/mpi_example_experiment.py
Nathaniel-Rodriguez/reservoirlib
367261d17fa762375ae40b4cc2ffab1de2113858
[ "MIT" ]
5
2019-08-20T02:04:54.000Z
2021-08-16T22:11:38.000Z
from reservoirlib.esn import DiscreteEchoStateNetwork from reservoirlib.task import BinaryMemoryCapacityTask from reservoirlib.experiment import BenchmarkExperiment from reservoirlib.trainer import LeastSquaredErrorTrainer from reservoirlib.distribution import Distribution from reservoirlib.generator import generate_reservoir_input_weights from reservoirlib.generator import generate_adj_reservoir_from_adj_matrix from graphgen.lfr_generators import unweighted_directed_lfr_as_adj import numpy as np # This import requires mpi4py module to be installed, which means you need # a working MPI, like mpich or openMPI or Cray's Aprun (craype). from reservoirlib.utility import run_mpi_experiment def mc_task_example(parameters): """ :param parameters: a set of parameters that you wish to vary or that need to vary from experiment to experiment (such as seeds or control variables) :return: memory capacity performance on the mc task for the reservoir """ input_weight_dist = Distribution("uniform", {'low': -1.0, 'high': 1.0}, seed=parameters['input_weight_seed']) reservoir_dist = Distribution("uniform", {'low': -1.0, 'high': 1.0}, seed=parameters['reservoir_seed']) # Construct graph graph_pars = {'num_nodes': 500, 'average_k': 6, 'max_degree': 6, 'mu': parameters['mu'], 'com_size_min': 10, 'com_size_max': 10, 'seed': parameters['graph_seed'], 'transpose': True} graph, _ = unweighted_directed_lfr_as_adj(**graph_pars) # construct task mc_task = BinaryMemoryCapacityTask(duration=2000, cut=100, num_lags=200, shift=1) # construct reservoir input_weights = generate_reservoir_input_weights(mc_task.input_dimensions, graph_pars['num_nodes'], parameters['r_sig'], input_weight_dist, by_dimension=True) reservoir = generate_adj_reservoir_from_adj_matrix(graph, reservoir_dist) # Adjust for spectral radius spectral_radius = np.sort(np.absolute(np.linalg.eigvals(reservoir)))[-1] np.divide(reservoir, spectral_radius, out=reservoir) np.multiply(reservoir, parameters['scale'], out=reservoir) # Construct ESN esn = DiscreteEchoStateNetwork(reservoir, input_weights=input_weights, initial_state=None, neuron_type='linear', neuron_pars={'slope': 1.0, 'bias': 0.0}, output_type='heaviside', output_neuron_pars={'shape': (mc_task.output_dimensions, 1), 'threshold': 0.5, 'newval': 1.0}) trainer = LeastSquaredErrorTrainer() test_exp = BenchmarkExperiment(esn, mc_task, trainer, num_training_trials=1, invert_target_of_training=False) test_exp.train_model() # Evaluate only runs one trial, put in a loop if you want to find an average mc, _, _ = test_exp.evaluate_model() return mc if __name__ == "__main__": """ The function mc_task_example takes a set of parameters as an argument and instantiates and runs the experiment. The run_mpi_experiment function can take a function and a list of parameters as an argument, and it will distribution experimental runs over multiple machines. It automatically divides the experiments between the nodes and return the results in the order they were given. If the use wants to, say, vary two parameters at once, then can make a flat list of parameters and then after running run_mpi_experiment can unpack or reshape the list. By default no results are returned from the function, instead they are pickled and dumped to file at the end. """ # First define parameters for each experiment mus = np.linspace(0.0, 0.5, 20) r_sigs = np.linspace(0.05, 0.6, 20) num_trials = 50 rng = np.random.RandomState(765) parameters = [{'input_weight_seed': rng.randint(0, 1000000), 'reservoir_seed': rng.randint(0, 1000000), 'mu': mu, 'graph_seed': rng.randint(0, 1000000), 'r_sig': r_sig, 'scale': 0.9} for mu in mus for r_sig in r_sigs for trial in range(num_trials)] # Use run_mpi function to distribution over multiple nodes run_mpi_experiment(mc_task_example, parameters, savefile='example_results.pyobj', return_results=False)
45.318182
95
0.614845
8cbb90b7b02d5bcb1bb63af2d976d98311944adf
4,570
py
Python
model.py
Cornell-CS-5740-Marseille/NM-pj3
8a883428df850f7217ff06478b2c6f99b5040113
[ "FTL", "CNRI-Python", "RSA-MD" ]
null
null
null
model.py
Cornell-CS-5740-Marseille/NM-pj3
8a883428df850f7217ff06478b2c6f99b5040113
[ "FTL", "CNRI-Python", "RSA-MD" ]
null
null
null
model.py
Cornell-CS-5740-Marseille/NM-pj3
8a883428df850f7217ff06478b2c6f99b5040113
[ "FTL", "CNRI-Python", "RSA-MD" ]
null
null
null
import os import random import numpy as np import math import torch from torch import nn from torch.nn import init from torch import optim # Consult the PyTorch documentation for information on the functions used below: # https://pytorch.org/docs/stable/torch.html class model(nn.Module): def __init__(self, vocab_size, hidden_dim=64, method='no'): super(model, self).__init__() self.method = method self.hidden_dim = hidden_dim self.embeds = nn.Embedding(vocab_size, hidden_dim) self.encoder = nn.LSTM(hidden_dim, hidden_dim) if self.method == 'no': self.decoder = nn.LSTM(hidden_dim, hidden_dim) else: self.decoder = nn.LSTM(2*hidden_dim, hidden_dim) self.loss = nn.CrossEntropyLoss() self.out = nn.Linear(hidden_dim, vocab_size) # additive attention self.v = torch.rand(1, hidden_dim) self.w1 = torch.rand(hidden_dim, hidden_dim) self.w2 = torch.rand(hidden_dim, hidden_dim) # multiplicative attention self.w_mul = torch.rand(hidden_dim, hidden_dim) def attention_additive(self, hidden, outputs_encoder): aj = torch.zeros(outputs_encoder.data.shape[0]) for i in range(outputs_encoder.data.shape[0]): out_temp = outputs_encoder[i] temp1 = hidden.squeeze(1).mm(self.w1) temp2 = out_temp.mm(self.w2) temp3 = temp1 + temp2 temp3 = torch.nn.functional.relu(temp3) aj[i] = temp3.mm(self.v.transpose(0, 1)) ret = torch.nn.functional.softmax(aj) return ret def attention_multiplicative(self, hidden, outputs_encoder): aj = torch.zeros(outputs_encoder.data.shape[0]) for i in range(outputs_encoder.data.shape[0]): out_temp = outputs_encoder[i] temp1 = hidden.squeeze(1).mm(self.w_mul) aj[i] = temp1.mm(out_temp.transpose(0, 1)) ret = torch.nn.functional.softmax(aj) return ret def compute_Loss(self, pred_vec, gold_seq): return self.loss(pred_vec, gold_seq) def saveModels(self): torch.save(self.state_dict(), 'my_trained_model_weights') def forward(self, input_seq, gold_seq=None): input_vectors = self.embeds(torch.tensor(input_seq)) input_vectors = input_vectors.unsqueeze(1) outputs, hidden = self.encoder(input_vectors) save_outputs = outputs # Technique used to train RNNs: # https://machinelearningmastery.com/teacher-forcing-for-recurrent-neural-networks/ teacher_force = False # This condition tells us whether we are in training or inference phase if gold_seq is not None and teacher_force: gold_vectors = torch.cat([torch.zeros(1, self.hidden_dim), self.embeds(torch.tensor(gold_seq[:-1]))], 0) gold_vectors = gold_vectors.unsqueeze(1) gold_vectors = torch.nn.functional.relu(gold_vectors) outputs, hidden = self.decoder(gold_vectors, hidden) predictions = self.out(outputs) predictions = predictions.squeeze() vals, idxs = torch.max(predictions, 1) return predictions, list(np.array(idxs)) else: prev = torch.zeros(1, 1, self.hidden_dim) predictions = [] predicted_seq = [] for i in range(len(input_seq)): prev = torch.nn.functional.relu(prev) if self.method == 'add': attn = self.attention_additive(hidden[0], save_outputs) context = attn.unsqueeze(0).mm(save_outputs.squeeze()) prev = torch.cat((prev, context.unsqueeze(1)), 2) elif self.method == 'mul': attn = self.attention_multiplicative(hidden[0], save_outputs) context = attn.unsqueeze(0).mm(save_outputs.squeeze()) prev = torch.cat((prev, context.unsqueeze(1)), 2) outputs, hidden = self.decoder(prev, hidden) pred_i = self.out(outputs) pred_i = pred_i.squeeze() _, idx = torch.max(pred_i, 0) idx = idx.item() predictions.append(pred_i) predicted_seq.append(idx) prev = self.embeds(torch.tensor([idx])) prev = prev.unsqueeze(1) return torch.stack(predictions), predicted_seq
41.545455
117
0.597374
a89444583a8a48906f65350f511cb55ff442a600
2,069
py
Python
setup.py
JulianWgs/pip-audit
cd91d2a0cbdadafe587ab459583649ad75569fcc
[ "Apache-2.0" ]
null
null
null
setup.py
JulianWgs/pip-audit
cd91d2a0cbdadafe587ab459583649ad75569fcc
[ "Apache-2.0" ]
null
null
null
setup.py
JulianWgs/pip-audit
cd91d2a0cbdadafe587ab459583649ad75569fcc
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env python3 from setuptools import find_packages, setup version = {} with open("./pip_audit/_version.py") as f: exec(f.read(), version) with open("./README.md") as f: long_description = f.read() setup( name="pip-audit", version=version["__version__"], license="Apache-2.0", author="William Woodruff", author_email="william@trailofbits.com", description="A tool for scanning Python environments for known vulnerabilities", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/trailofbits/pip-audit", packages=find_packages(), entry_points={ "console_scripts": [ "pip-audit = pip_audit._cli:audit", ] }, platforms="any", python_requires=">=3.6", install_requires=[ "pip-api>=0.0.23", "packaging>=21.0.0", # TODO: Remove this once 3.7 is our minimally supported version. "dataclasses>=0.6; python_version < '3.7'", "progress>=1.6", "resolvelib>=0.8.0", "html5lib>=1.1", "CacheControl>=0.12.10", "lockfile>=0.12.2", "cyclonedx-python-lib>=0.11.1", ], extras_require={ "dev": [ "bump", "flake8", "black", "isort", "pytest", "pytest-cov", "pretend", "coverage[toml]", "interrogate", # TODO: Remove this environment marker once 3.7 is our minimal version. "pdoc3; python_version >= '3.7'", "mypy", # TODO: Remove this once 3.7 is our minimally supported version. "types-dataclasses; python_version < '3.7'", "types-requests", "types-html5lib", ] }, classifiers=[ "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License", "Intended Audience :: Developers", "Topic :: Security", ], )
29.557143
84
0.560657
45c858327c8001a0e7c0a3bc16230937ca6646cf
6,661
py
Python
tests/unit/test_solvers/test_algebraic_solver.py
gyouhoc/PyBaMM
6852e0e518157e6802ce83a2549562e7d0ed4b9f
[ "BSD-3-Clause" ]
null
null
null
tests/unit/test_solvers/test_algebraic_solver.py
gyouhoc/PyBaMM
6852e0e518157e6802ce83a2549562e7d0ed4b9f
[ "BSD-3-Clause" ]
null
null
null
tests/unit/test_solvers/test_algebraic_solver.py
gyouhoc/PyBaMM
6852e0e518157e6802ce83a2549562e7d0ed4b9f
[ "BSD-3-Clause" ]
null
null
null
# # Tests for the Algebraic Solver class # import pybamm import unittest import numpy as np from tests import get_discretisation_for_testing class TestAlgebraicSolver(unittest.TestCase): def test_algebraic_solver_init(self): solver = pybamm.AlgebraicSolver( method="hybr", tol=1e-4, extra_options={"maxfev": 100} ) self.assertEqual(solver.method, "hybr") self.assertEqual(solver.extra_options, {"maxfev": 100}) self.assertEqual(solver.tol, 1e-4) solver.method = "krylov" self.assertEqual(solver.method, "krylov") solver.tol = 1e-5 self.assertEqual(solver.tol, 1e-5) def test_wrong_solver(self): # Create model model = pybamm.BaseModel() var = pybamm.Variable("var") model.rhs = {var: var} model.algebraic = {var: var - 1} # test errors solver = pybamm.AlgebraicSolver() with self.assertRaisesRegex( pybamm.SolverError, "Cannot use algebraic solver to solve model with time derivatives", ): solver.solve(model) def test_simple_root_find(self): # Simple system: a single algebraic equation class Model: y0 = np.array([2]) rhs = {} timescale_eval = 1 jac_algebraic_eval = None convert_to_format = "python" def algebraic_eval(self, t, y, inputs): return y + 2 # Try passing extra options to solver solver = pybamm.AlgebraicSolver(extra_options={"maxiter": 100}) model = Model() solution = solver._integrate(model, np.array([0])) np.testing.assert_array_equal(solution.y, -2) # Relax options and see worse results solver = pybamm.AlgebraicSolver(extra_options={"ftol": 1}) solution = solver._integrate(model, np.array([0])) self.assertNotEqual(solution.y, -2) def test_root_find_fail(self): class Model: y0 = np.array([2]) rhs = {} timescale_eval = 1 jac_algebraic_eval = None convert_to_format = "casadi" def algebraic_eval(self, t, y, inputs): # algebraic equation has no real root return y ** 2 + 1 model = Model() solver = pybamm.AlgebraicSolver(method="hybr") with self.assertRaisesRegex( pybamm.SolverError, "Could not find acceptable solution: The iteration is not making", ): solver._integrate(model, np.array([0])) solver = pybamm.AlgebraicSolver() with self.assertRaisesRegex( pybamm.SolverError, "Could not find acceptable solution: solver terminated" ): solver._integrate(model, np.array([0])) def test_with_jacobian(self): A = np.array([[4, 3], [1, -1]]) b = np.array([0, 7]) class Model: y0 = np.zeros(2) rhs = {} timescale_eval = 1 convert_to_format = "python" def algebraic_eval(self, t, y, inputs): return A @ y - b def jac_algebraic_eval(self, t, y, inputs): return A model = Model() sol = np.array([3, -4])[:, np.newaxis] solver = pybamm.AlgebraicSolver() solution = solver._integrate(model, np.array([0])) np.testing.assert_array_almost_equal(solution.y, sol) def test_model_solver(self): # Create model model = pybamm.BaseModel() whole_cell = ["negative electrode", "separator", "positive electrode"] var1 = pybamm.Variable("var1", domain=whole_cell) var2 = pybamm.Variable("var2", domain=whole_cell) model.algebraic = {var1: var1 - 3, var2: 2 * var1 - var2} model.initial_conditions = {var1: pybamm.Scalar(1), var2: pybamm.Scalar(4)} model.variables = {"var1": var1, "var2": var2} disc = get_discretisation_for_testing() disc.process_model(model) sol = np.concatenate((np.ones(100) * 3, np.ones(100) * 6))[:, np.newaxis] # Solve solver = pybamm.AlgebraicSolver() solution = solver.solve(model) np.testing.assert_array_equal( model.variables["var1"].evaluate(t=None, y=solution.y), sol[:100] ) np.testing.assert_array_equal( model.variables["var2"].evaluate(t=None, y=solution.y), sol[100:] ) # Test without jacobian model.use_jacobian = False solution_no_jac = solver.solve(model) np.testing.assert_array_equal( model.variables["var1"].evaluate(t=None, y=solution_no_jac.y), sol[:100] ) np.testing.assert_array_equal( model.variables["var2"].evaluate(t=None, y=solution_no_jac.y), sol[100:] ) def test_model_solver_with_time(self): # Create model model = pybamm.BaseModel() var1 = pybamm.Variable("var1") var2 = pybamm.Variable("var2") model.algebraic = {var1: var1 - 3 * pybamm.t, var2: 2 * var1 - var2} model.initial_conditions = {var1: pybamm.Scalar(1), var2: pybamm.Scalar(4)} model.variables = {"var1": var1, "var2": var2} disc = pybamm.Discretisation() disc.process_model(model) # Solve t_eval = np.linspace(0, 1) solver = pybamm.AlgebraicSolver() solution = solver.solve(model, t_eval) sol = np.vstack((3 * t_eval, 6 * t_eval)) np.testing.assert_array_equal(solution.y, sol) np.testing.assert_array_equal( model.variables["var1"].evaluate(t=t_eval, y=solution.y).flatten(), sol[0, :], ) np.testing.assert_array_equal( model.variables["var2"].evaluate(t=t_eval, y=solution.y).flatten(), sol[1, :], ) def test_solve_with_input(self): # Simple system: a single algebraic equation var = pybamm.Variable("var") model = pybamm.BaseModel() model.algebraic = {var: var + pybamm.InputParameter("value")} model.initial_conditions = {var: 2} # create discretisation disc = pybamm.Discretisation() disc.process_model(model) # Solve solver = pybamm.AlgebraicSolver() solution = solver.solve(model, np.linspace(0, 1, 10), inputs={"value": 7}) np.testing.assert_array_equal(solution.y, -7) if __name__ == "__main__": print("Add -v for more debug output") import sys if "-v" in sys.argv: debug = True pybamm.settings.debug_mode = True unittest.main()
33.472362
87
0.589401
3e4cacad9fc35d6839c7e29eb7a4ad85c6f822f4
2,549
py
Python
main_app/urls.py
boyoon-c/readuck-api
4d62705e86603372f867a59604424a86d35b4b87
[ "MIT" ]
null
null
null
main_app/urls.py
boyoon-c/readuck-api
4d62705e86603372f867a59604424a86d35b4b87
[ "MIT" ]
null
null
null
main_app/urls.py
boyoon-c/readuck-api
4d62705e86603372f867a59604424a86d35b4b87
[ "MIT" ]
null
null
null
from django.urls import path from . import views urlpatterns = [ path('', views.home, name='home'), path('accounts/login/', views.Login.as_view(), name='login'), path('about/', views.about, name='about'), path('signup/', views.signup, name='signup'), # articles path('articles/', views.articles_index, name="articles_index"), path('articles/<int:article_id>/', views.articles_detail, name='articles_detail'), path('articles/add/', views.ArticleCreate.as_view(), name='articles_add'), path('articles/<int:pk>/update/', views.ArticleUpdate.as_view(), name='articles_update'), path('articles/<int:pk>/delete', views.ArticleDelete.as_view(), name='articles_delete'), # reviews path('articles/<int:article_id>/add_reviews/', views.add_reviews, name='add_reviews'), path('reviews/<int:pk>/update/', views.ReviewUpdate.as_view(), name='update_reviews'), path('reviews/<int:pk>/delete/', views.ReviewDelete.as_view(), name='delete_reviews'), # replies path('articles/<int:article_id>/<int:review_id>/add_comments/', views.add_replies, name='add_replies'), path('replies/<int:pk>/update/', views.ReplyUpdate.as_view(), name='update_replies'), path('replies/<int:pk>/delete/', views.ReplyDelete.as_view(), name='delete_replies'), # groups path('groups/', views.GroupList.as_view(), name='groups_index'), path('groups/add', views.GroupCreate.as_view(), name='groups_add'), path('groups/<int:pk>', views.GroupDetail.as_view(), name='groups_detail'), path('groups/<int:pk>/update/', views.GroupUpdate.as_view(), name='groups_update'), path('groups/<int:pk>/delete/', views.GroupDelete.as_view(), name='groups_delete'), # group articles path('groups/<int:pk>/add_articles/', views.GroupArticleCreate.as_view(), name='add_group_articles'), path('groups/<int:pk>/delete_articles/', views.GroupArticleDelete.as_view(), name='delete_group_articles'), # group articles reviews path('groups/articles/<int:pk>/add_reviews/', views.GroupArticleReviewCreate.as_view(), name='add_group_articles_reviews'), path('groups/articles/reviews/<int:pk>/update/', views.GroupArticleReviewUpdate.as_view(), name='update_group_articles_reviews'), path('groups/articles/reviews/<int:pk>/delete/', views.GroupArticleReviewDelete.as_view(), name='delete_group_articles_reviews'), # file upload path('articles/<int:article_id>/add_file/', views.add_file, name='add_file'), # profile page path('profile/', views.profile, name='profile_detail'), # search path('search/', views.search, name='search') ]
50.98
131
0.723029
173030055891e73f947a48e8bf1224c26a9dd1e7
1,107
py
Python
term.py
pmchozas/llod4lion
52bb00634f770cb5fd46cfb2cc4d009c317bcef9
[ "Apache-2.0" ]
null
null
null
term.py
pmchozas/llod4lion
52bb00634f770cb5fd46cfb2cc4d009c317bcef9
[ "Apache-2.0" ]
1
2020-12-18T06:19:55.000Z
2020-12-18T06:19:55.000Z
term.py
pmchozas/llod4lion
52bb00634f770cb5fd46cfb2cc4d009c317bcef9
[ "Apache-2.0" ]
1
2020-05-16T11:11:18.000Z
2020-05-16T11:11:18.000Z
# -*- coding: utf-8 -*- """ Created on Tue Sep 29 15:59:53 2020 @author: Pablo """ class Term: string = '' lang = '' score=0 corpus='' synonyms=[] iateURL='' translations = {} def __init__(self, term, code): self.string = term self.lang = code def get_data(self): print(self.string+' '+self.lang+' Synonyms: '+''.join(self.synonyms)) print(self.translations) def getJson(self): return { 'lang':self.lang} termino1 = Term('trabajador','es') termino2 = Term('worker', 'en') termino1.get_data() termino2.get_data() ''' lista=[] lista.append(termino1) lista.append(termino2) print(lista) # Adding list as value termino1.translations["de"] = ['sdsssss'] termino1.translations["en"] = ["worker", "laborist"] print(termino1.translations.get('en')) termino1.get_data() termino1.synonyms.append('estatuto trabajadores') termino1.get_data() del termino1.synonyms[0] termino1.getJson() '''
14.959459
78
0.560072
45efea88d76c390df0c3740275f07346404f90bd
402
py
Python
codertheory/contrib/sites/migrations/0004_auto_20200825_2337.py
codertheory/backend
66017e4f484414b878d2a6e78fa623870aa38cfb
[ "MIT" ]
null
null
null
codertheory/contrib/sites/migrations/0004_auto_20200825_2337.py
codertheory/backend
66017e4f484414b878d2a6e78fa623870aa38cfb
[ "MIT" ]
null
null
null
codertheory/contrib/sites/migrations/0004_auto_20200825_2337.py
codertheory/backend
66017e4f484414b878d2a6e78fa623870aa38cfb
[ "MIT" ]
null
null
null
# Generated by Django 3.1 on 2020-08-25 23:37 from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('sites', '0003_set_site_domain_and_name'), ] operations = [ migrations.AlterModelOptions( name='site', options={'ordering': ['domain'], 'verbose_name': 'site', 'verbose_name_plural': 'sites'}, ), ]
23.647059
101
0.61194
7add08986c3e6ec13bf8bd1c38b83babdae1c36e
15,323
py
Python
docs_old/sphinxext/docscrape.py
vishalbelsare/hddm
bf10f05c956a590d93ec8f3b162ce60df668c18a
[ "BSD-2-Clause-FreeBSD" ]
3
2016-07-14T11:18:04.000Z
2021-07-19T13:13:53.000Z
docs_old/sphinxext/docscrape.py
vishalbelsare/hddm
bf10f05c956a590d93ec8f3b162ce60df668c18a
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
docs_old/sphinxext/docscrape.py
vishalbelsare/hddm
bf10f05c956a590d93ec8f3b162ce60df668c18a
[ "BSD-2-Clause-FreeBSD" ]
1
2020-01-17T09:01:53.000Z
2020-01-17T09:01:53.000Z
"""Extract reference documentation from the NumPy source tree. """ import inspect import textwrap import re import pydoc from StringIO import StringIO from warnings import warn class Reader(object): """A line-based string reader. """ def __init__(self, data): """ Parameters ---------- data : str String with lines separated by '\n'. """ if isinstance(data,list): self._str = data else: self._str = data.split('\n') # store string as list of lines self.reset() def __getitem__(self, n): return self._str[n] def reset(self): self._l = 0 # current line nr def read(self): if not self.eof(): out = self[self._l] self._l += 1 return out else: return '' def seek_next_non_empty_line(self): for l in self[self._l:]: if l.strip(): break else: self._l += 1 def eof(self): return self._l >= len(self._str) def read_to_condition(self, condition_func): start = self._l for line in self[start:]: if condition_func(line): return self[start:self._l] self._l += 1 if self.eof(): return self[start:self._l+1] return [] def read_to_next_empty_line(self): self.seek_next_non_empty_line() def is_empty(line): return not line.strip() return self.read_to_condition(is_empty) def read_to_next_unindented_line(self): def is_unindented(line): return (line.strip() and (len(line.lstrip()) == len(line))) return self.read_to_condition(is_unindented) def peek(self,n=0): if self._l + n < len(self._str): return self[self._l + n] else: return '' def is_empty(self): return not ''.join(self._str).strip() class NumpyDocString(object): def __init__(self, docstring, config={}): docstring = textwrap.dedent(docstring).split('\n') self._doc = Reader(docstring) self._parsed_data = { 'Signature': '', 'Summary': [''], 'Extended Summary': [], 'Parameters': [], 'Returns': [], 'Raises': [], 'Warns': [], 'Other Parameters': [], 'Attributes': [], 'Methods': [], 'See Also': [], 'Notes': [], 'Warnings': [], 'References': '', 'Examples': '', 'index': {} } self._parse() def __getitem__(self,key): return self._parsed_data[key] def __setitem__(self,key,val): #if not self._parsed_data.has_key(key): if not (key in self._parsed_data.keys()): warn("Unknown section %s" % key) else: self._parsed_data[key] = val def _is_at_section(self): self._doc.seek_next_non_empty_line() if self._doc.eof(): return False l1 = self._doc.peek().strip() # e.g. Parameters if l1.startswith('.. index::'): return True l2 = self._doc.peek(1).strip() # ---------- or ========== return l2.startswith('-'*len(l1)) or l2.startswith('='*len(l1)) def _strip(self,doc): i = 0 j = 0 for i,line in enumerate(doc): if line.strip(): break for j,line in enumerate(doc[::-1]): if line.strip(): break return doc[i:len(doc)-j] def _read_to_next_section(self): section = self._doc.read_to_next_empty_line() while not self._is_at_section() and not self._doc.eof(): if not self._doc.peek(-1).strip(): # previous line was empty section += [''] section += self._doc.read_to_next_empty_line() return section def _read_sections(self): while not self._doc.eof(): data = self._read_to_next_section() name = data[0].strip() if name.startswith('..'): # index section yield name, data[1:] elif len(data) < 2: yield StopIteration else: yield name, self._strip(data[2:]) def _parse_param_list(self,content): r = Reader(content) params = [] while not r.eof(): header = r.read().strip() if ' : ' in header: arg_name, arg_type = header.split(' : ')[:2] else: arg_name, arg_type = header, '' desc = r.read_to_next_unindented_line() desc = dedent_lines(desc) params.append((arg_name,arg_type,desc)) return params _name_rgx = re.compile(r"^\s*(:(?P<role>\w+):`(?P<name>[a-zA-Z0-9_.-]+)`|" r" (?P<name2>[a-zA-Z0-9_.-]+))\s*", re.X) def _parse_see_also(self, content): """ func_name : Descriptive text continued text another_func_name : Descriptive text func_name1, func_name2, :meth:`func_name`, func_name3 """ items = [] def parse_item_name(text): """Match ':role:`name`' or 'name'""" m = self._name_rgx.match(text) if m: g = m.groups() if g[1] is None: return g[3], None else: return g[2], g[1] raise ValueError("%s is not a item name" % text) def push_item(name, rest): if not name: return name, role = parse_item_name(name) items.append((name, list(rest), role)) del rest[:] current_func = None rest = [] for line in content: if not line.strip(): continue m = self._name_rgx.match(line) if m and line[m.end():].strip().startswith(':'): push_item(current_func, rest) current_func, line = line[:m.end()], line[m.end():] rest = [line.split(':', 1)[1].strip()] if not rest[0]: rest = [] elif not line.startswith(' '): push_item(current_func, rest) current_func = None if ',' in line: for func in line.split(','): if func.strip(): push_item(func, []) elif line.strip(): current_func = line elif current_func is not None: rest.append(line.strip()) push_item(current_func, rest) return items def _parse_index(self, section, content): """ .. index: default :refguide: something, else, and more """ def strip_each_in(lst): return [s.strip() for s in lst] out = {} section = section.split('::') if len(section) > 1: out['default'] = strip_each_in(section[1].split(','))[0] for line in content: line = line.split(':') if len(line) > 2: out[line[1]] = strip_each_in(line[2].split(',')) return out def _parse_summary(self): """Grab signature (if given) and summary""" if self._is_at_section(): return summary = self._doc.read_to_next_empty_line() summary_str = " ".join([s.strip() for s in summary]).strip() if re.compile('^([\w., ]+=)?\s*[\w\.]+\(.*\)$').match(summary_str): self['Signature'] = summary_str if not self._is_at_section(): self['Summary'] = self._doc.read_to_next_empty_line() else: self['Summary'] = summary if not self._is_at_section(): self['Extended Summary'] = self._read_to_next_section() def _parse(self): self._doc.reset() self._parse_summary() for (section,content) in self._read_sections(): if not section.startswith('..'): section = ' '.join([s.capitalize() for s in section.split(' ')]) if section in ('Parameters', 'Attributes', 'Methods', 'Returns', 'Raises', 'Warns'): self[section] = self._parse_param_list(content) elif section.startswith('.. index::'): self['index'] = self._parse_index(section, content) elif section == 'See Also': self['See Also'] = self._parse_see_also(content) else: self[section] = content # string conversion routines def _str_header(self, name, symbol='-'): return [name, len(name)*symbol] def _str_indent(self, doc, indent=4): out = [] for line in doc: out += [' '*indent + line] return out def _str_signature(self): if self['Signature']: return [self['Signature'].replace('*','\*')] + [''] else: return [''] def _str_summary(self): if self['Summary']: return self['Summary'] + [''] else: return [] def _str_extended_summary(self): if self['Extended Summary']: return self['Extended Summary'] + [''] else: return [] def _str_param_list(self, name): out = [] if self[name]: out += self._str_header(name) for param,param_type,desc in self[name]: out += ['%s : %s' % (param, param_type)] out += self._str_indent(desc) out += [''] return out def _str_section(self, name): out = [] if self[name]: out += self._str_header(name) out += self[name] out += [''] return out def _str_see_also(self, func_role): if not self['See Also']: return [] out = [] out += self._str_header("See Also") last_had_desc = True for func, desc, role in self['See Also']: if role: link = ':%s:`%s`' % (role, func) elif func_role: link = ':%s:`%s`' % (func_role, func) else: link = "`%s`_" % func if desc or last_had_desc: out += [''] out += [link] else: out[-1] += ", %s" % link if desc: out += self._str_indent([' '.join(desc)]) last_had_desc = True else: last_had_desc = False out += [''] return out def _str_index(self): idx = self['index'] out = [] out += ['.. index:: %s' % idx.get('default','')] for section, references in idx.iteritems(): if section == 'default': continue out += [' :%s: %s' % (section, ', '.join(references))] return out def __str__(self, func_role=''): out = [] out += self._str_signature() out += self._str_summary() out += self._str_extended_summary() for param_list in ('Parameters','Returns','Raises'): out += self._str_param_list(param_list) out += self._str_section('Warnings') out += self._str_see_also(func_role) for s in ('Notes','References','Examples'): out += self._str_section(s) for param_list in ('Attributes', 'Methods'): out += self._str_param_list(param_list) out += self._str_index() return '\n'.join(out) def indent(str,indent=4): indent_str = ' '*indent if str is None: return indent_str lines = str.split('\n') return '\n'.join(indent_str + l for l in lines) def dedent_lines(lines): """Deindent a list of lines maximally""" return textwrap.dedent("\n".join(lines)).split("\n") def header(text, style='-'): return text + '\n' + style*len(text) + '\n' class FunctionDoc(NumpyDocString): def __init__(self, func, role='func', doc=None, config={}): self._f = func self._role = role # e.g. "func" or "meth" if doc is None: if func is None: raise ValueError("No function or docstring given") doc = inspect.getdoc(func) or '' NumpyDocString.__init__(self, doc) if not self['Signature'] and func is not None: func, func_name = self.get_func() try: # try to read signature argspec = inspect.getargspec(func) argspec = inspect.formatargspec(*argspec) argspec = argspec.replace('*','\*') signature = '%s%s' % (func_name, argspec) except TypeError, e: signature = '%s()' % func_name self['Signature'] = signature def get_func(self): func_name = getattr(self._f, '__name__', self.__class__.__name__) if inspect.isclass(self._f): func = getattr(self._f, '__call__', self._f.__init__) else: func = self._f return func, func_name def __str__(self): out = '' func, func_name = self.get_func() signature = self['Signature'].replace('*', '\*') roles = {'func': 'function', 'meth': 'method'} if self._role: # if not roles.has_key(self._role): if not self._role in roles.keys(): print "Warning: invalid role %s" % self._role out += '.. %s:: %s\n \n\n' % (roles.get(self._role,''), func_name) out += super(FunctionDoc, self).__str__(func_role=self._role) return out class ClassDoc(NumpyDocString): def __init__(self, cls, doc=None, modulename='', func_doc=FunctionDoc, config={}): if not inspect.isclass(cls) and cls is not None: raise ValueError("Expected a class or None, but got %r" % cls) self._cls = cls if modulename and not modulename.endswith('.'): modulename += '.' self._mod = modulename if doc is None: if cls is None: raise ValueError("No class or documentation string given") doc = pydoc.getdoc(cls) NumpyDocString.__init__(self, doc) if config.get('show_class_members', True): if not self['Methods']: self['Methods'] = [(name, '', '') for name in sorted(self.methods)] if not self['Attributes']: self['Attributes'] = [(name, '', '') for name in sorted(self.properties)] @property def methods(self): if self._cls is None: return [] return [name for name,func in inspect.getmembers(self._cls) if not name.startswith('_') and callable(func)] @property def properties(self): if self._cls is None: return [] return [name for name,func in inspect.getmembers(self._cls) if not name.startswith('_') and func is None]
30.523904
80
0.501273
53aae45906328ae6357f2bde60668ab822b20850
1,232
py
Python
harstorage/tests/functional/test_combine.py
beenanner/harstorage
c45e735d9d28cb951e70d0c783d5678996ef31ad
[ "Apache-2.0" ]
null
null
null
harstorage/tests/functional/test_combine.py
beenanner/harstorage
c45e735d9d28cb951e70d0c783d5678996ef31ad
[ "Apache-2.0" ]
null
null
null
harstorage/tests/functional/test_combine.py
beenanner/harstorage
c45e735d9d28cb951e70d0c783d5678996ef31ad
[ "Apache-2.0" ]
null
null
null
from harstorage.tests import * class TestCombineController(TestController): """ Test suite for consolidation of static resources """ def test_01_combine_styles(self): """Combine common styles""" # Expected valid response response = self.app.get( url(controller="combine", action="styles"), params={"ver": "1.0", "main.css": "", "tabber.css": "", "datatables/table_jui.css": "", "datatables/ColReorder.css": "", "datatables/TableTools_JUI.css": ""}, status=200) # Response body assert response.content_type == "text/css" def test_02_combine_missing_styles(self): """Combine missing styles""" # Expected 404 status code response = self.app.get( url(controller="combine", action="styles"), params={"ver": "1.0", "imnotexistingfile.css": ""}, status=404) # Response body assert "404 Not Found" in response.body # Template context assert response.tmpl_context.rev == response.config["app_conf"]["static_version"] assert response.tmpl_context.message == "404 Not Found"
29.333333
89
0.579545
ba3e7c8e8e850c253afc4c811a96ae73b0134db1
39
py
Python
modules/2.79/bpy/types/AlphaOverSequence.py
cmbasnett/fake-bpy-module
acb8b0f102751a9563e5b5e5c7cd69a4e8aa2a55
[ "MIT" ]
null
null
null
modules/2.79/bpy/types/AlphaOverSequence.py
cmbasnett/fake-bpy-module
acb8b0f102751a9563e5b5e5c7cd69a4e8aa2a55
[ "MIT" ]
null
null
null
modules/2.79/bpy/types/AlphaOverSequence.py
cmbasnett/fake-bpy-module
acb8b0f102751a9563e5b5e5c7cd69a4e8aa2a55
[ "MIT" ]
null
null
null
AlphaOverSequence.input_count = None
9.75
36
0.820513
fb30ec6d309085790136354fbb7c9ab067ad1c4f
4,367
py
Python
contrib/seeds/generate-seeds.py
m42cx/dashfirst
0789ccf17b8589a5884688df1f9a1340b48b5453
[ "MIT" ]
null
null
null
contrib/seeds/generate-seeds.py
m42cx/dashfirst
0789ccf17b8589a5884688df1f9a1340b48b5453
[ "MIT" ]
null
null
null
contrib/seeds/generate-seeds.py
m42cx/dashfirst
0789ccf17b8589a5884688df1f9a1340b48b5453
[ "MIT" ]
1
2021-02-12T10:50:24.000Z
2021-02-12T10:50:24.000Z
#!/usr/bin/python # Copyright (c) 2014 Wladimir J. van der Laan # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. ''' Script to generate list of seed nodes for chainparams.cpp. This script expects two text files in the directory that is passed as an argument: nodes_main.txt nodes_test.txt These files must consist of lines in the format <ip> <ip>:<port> [<ipv6>] [<ipv6>]:<port> <onion>.onion 0xDDBBCCAA (IPv4 little-endian old pnSeeds format) The output will be two data structures with the peers in binary format: static SeedSpec6 pnSeed6_main[]={ ... } static SeedSpec6 pnSeed6_test[]={ ... } These should be pasted into `src/chainparamsseeds.h`. ''' from __future__ import print_function, division from base64 import b32decode from binascii import a2b_hex import sys, os import re # ipv4 in ipv6 prefix pchIPv4 = bytearray([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff]) # tor-specific ipv6 prefix pchOnionCat = bytearray([0xFD,0x87,0xD8,0x7E,0xEB,0x43]) def name_to_ipv6(addr): if len(addr)>6 and addr.endswith('.onion'): vchAddr = b32decode(addr[0:-6], True) if len(vchAddr) != 16-len(pchOnionCat): raise ValueError('Invalid onion %s' % s) return pchOnionCat + vchAddr elif '.' in addr: # IPv4 return pchIPv4 + bytearray((int(x) for x in addr.split('.'))) elif ':' in addr: # IPv6 sub = [[], []] # prefix, suffix x = 0 addr = addr.split(':') for i,comp in enumerate(addr): if comp == '': if i == 0 or i == (len(addr)-1): # skip empty component at beginning or end continue x += 1 # :: skips to suffix assert(x < 2) else: # two bytes per component val = int(comp, 16) sub[x].append(val >> 8) sub[x].append(val & 0xff) nullbytes = 16 - len(sub[0]) - len(sub[1]) assert((x == 0 and nullbytes == 0) or (x == 1 and nullbytes > 0)) return bytearray(sub[0] + ([0] * nullbytes) + sub[1]) elif addr.startswith('0x'): # IPv4-in-little-endian return pchIPv4 + bytearray(reversed(a2b_hex(addr[2:]))) else: raise ValueError('Could not parse address %s' % addr) def parse_spec(s, defaultport): match = re.match('\[([0-9a-fA-F:]+)\](?::([0-9]+))?$', s) if match: # ipv6 host = match.group(1) port = match.group(2) elif s.count(':') > 1: # ipv6, no port host = s port = '' else: (host,_,port) = s.partition(':') if not port: port = defaultport else: port = int(port) host = name_to_ipv6(host) return (host,port) def process_nodes(g, f, structname, defaultport): g.write('static SeedSpec6 %s[] = {\n' % structname) first = True for line in f: comment = line.find('#') if comment != -1: line = line[0:comment] line = line.strip() if not line: continue if not first: g.write(',\n') first = False (host,port) = parse_spec(line, defaultport) hoststr = ','.join(('0x%02x' % b) for b in host) g.write(' {{%s}, %i}' % (hoststr, port)) g.write('\n};\n') def main(): if len(sys.argv)<2: print(('Usage: %s <path_to_nodes_txt>' % sys.argv[0]), file=sys.stderr) exit(1) g = sys.stdout indir = sys.argv[1] g.write('#ifndef BITCOIN_CHAINPARAMSSEEDS_H\n') g.write('#define BITCOIN_CHAINPARAMSSEEDS_H\n') g.write('/**\n') g.write(' * List of fixed seed nodes for the dashfirst network\n') g.write(' * AUTOGENERATED by contrib/seeds/generate-seeds.py\n') g.write(' *\n') g.write(' * Each line contains a 16-byte IPv6 address and a port.\n') g.write(' * IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.\n') g.write(' */\n') with open(os.path.join(indir,'nodes_main.txt'),'r') as f: process_nodes(g, f, 'pnSeed6_main', 12455) g.write('\n') with open(os.path.join(indir,'nodes_test.txt'),'r') as f: process_nodes(g, f, 'pnSeed6_test', 13455) g.write('#endif // BITCOIN_CHAINPARAMSSEEDS_H\n') if __name__ == '__main__': main()
31.644928
98
0.584612
1f30967987ff242250b0f048a287bbdb36987ae5
167
py
Python
home/urls.py
idokk1/shlifim
f05fd205c1173a2e838b935712e3279e81e2cdf4
[ "MIT" ]
null
null
null
home/urls.py
idokk1/shlifim
f05fd205c1173a2e838b935712e3279e81e2cdf4
[ "MIT" ]
null
null
null
home/urls.py
idokk1/shlifim
f05fd205c1173a2e838b935712e3279e81e2cdf4
[ "MIT" ]
null
null
null
from django.urls import path from . import views urlpatterns = [ path('about/', views.about, name='about'), path('', views.landingpage, name='landingpage') ]
20.875
51
0.676647
71ae39d611bc7834df990ccc83d4264e08958cf7
12,631
py
Python
server/grpc/example_pb2_grpc.py
amine-ouertani/DigitalBeing
1acba704d4dd512b54b3cce124ecad3926268695
[ "MIT" ]
null
null
null
server/grpc/example_pb2_grpc.py
amine-ouertani/DigitalBeing
1acba704d4dd512b54b3cce124ecad3926268695
[ "MIT" ]
null
null
null
server/grpc/example_pb2_grpc.py
amine-ouertani/DigitalBeing
1acba704d4dd512b54b3cce124ecad3926268695
[ "MIT" ]
null
null
null
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! """Client and server classes corresponding to protobuf-defined services.""" import grpc import example_pb2 as example__pb2 class AgentStub(object): """Missing associated documentation comment in .proto file.""" def __init__(self, channel): """Constructor. Args: channel: A grpc.Channel. """ self.InitializeAgents = channel.unary_unary( '/Agent/InitializeAgents', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) self.HandleMessage = channel.unary_unary( '/Agent/HandleMessage', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) self.InvokeSoloAgent = channel.unary_unary( '/Agent/InvokeSoloAgent', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) self.GetAgents = channel.unary_unary( '/Agent/GetAgents', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) self.SetAgentFields = channel.unary_unary( '/Agent/SetAgentFields', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) self.HandleSlashCommand = channel.unary_unary( '/Agent/HandleSlashCommand', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) self.HandleUserUpdate = channel.unary_unary( '/Agent/HandleUserUpdate', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) self.HandleMessageReaction = channel.unary_unary( '/Agent/HandleMessageReaction', request_serializer=example__pb2.Request.SerializeToString, response_deserializer=example__pb2.Response.FromString, ) class AgentServicer(object): """Missing associated documentation comment in .proto file.""" def InitializeAgents(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def HandleMessage(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def InvokeSoloAgent(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def GetAgents(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def SetAgentFields(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def HandleSlashCommand(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def HandleUserUpdate(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def HandleMessageReaction(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') def add_AgentServicer_to_server(servicer, server): rpc_method_handlers = { 'InitializeAgents': grpc.unary_unary_rpc_method_handler( servicer.InitializeAgents, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), 'HandleMessage': grpc.unary_unary_rpc_method_handler( servicer.HandleMessage, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), 'InvokeSoloAgent': grpc.unary_unary_rpc_method_handler( servicer.InvokeSoloAgent, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), 'GetAgents': grpc.unary_unary_rpc_method_handler( servicer.GetAgents, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), 'SetAgentFields': grpc.unary_unary_rpc_method_handler( servicer.SetAgentFields, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), 'HandleSlashCommand': grpc.unary_unary_rpc_method_handler( servicer.HandleSlashCommand, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), 'HandleUserUpdate': grpc.unary_unary_rpc_method_handler( servicer.HandleUserUpdate, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), 'HandleMessageReaction': grpc.unary_unary_rpc_method_handler( servicer.HandleMessageReaction, request_deserializer=example__pb2.Request.FromString, response_serializer=example__pb2.Response.SerializeToString, ), } generic_handler = grpc.method_handlers_generic_handler( 'Agent', rpc_method_handlers) server.add_generic_rpc_handlers((generic_handler,)) # This class is part of an EXPERIMENTAL API. class Agent(object): """Missing associated documentation comment in .proto file.""" @staticmethod def InitializeAgents(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/InitializeAgents', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def HandleMessage(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/HandleMessage', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def InvokeSoloAgent(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/InvokeSoloAgent', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def GetAgents(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/GetAgents', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def SetAgentFields(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/SetAgentFields', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def HandleSlashCommand(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/HandleSlashCommand', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def HandleUserUpdate(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/HandleUserUpdate', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def HandleMessageReaction(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/Agent/HandleMessageReaction', example__pb2.Request.SerializeToString, example__pb2.Response.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
42.385906
93
0.640804
c2a54c1dc6e02f8692a868fb841acfbe651c2ebb
2,218
py
Python
src/compas/datastructures/mesh/duality.py
elidim/compas
b7fab867bbc2f505f1ce6a5375a4fa88623d0717
[ "MIT" ]
1
2019-03-27T22:46:29.000Z
2019-03-27T22:46:29.000Z
src/compas/datastructures/mesh/duality.py
elidim/compas
b7fab867bbc2f505f1ce6a5375a4fa88623d0717
[ "MIT" ]
null
null
null
src/compas/datastructures/mesh/duality.py
elidim/compas
b7fab867bbc2f505f1ce6a5375a4fa88623d0717
[ "MIT" ]
null
null
null
from __future__ import print_function from __future__ import absolute_import from __future__ import division from math import pi __all__ = ['mesh_dual'] PI2 = 2.0 * pi def mesh_dual(mesh, cls=None): """Construct the dual of a mesh. Parameters ---------- mesh : Mesh A mesh object. cls : Mesh, optional [None] The type of the dual mesh. Defaults to the type of the provided mesh object. Returns ------- Mesh The dual mesh object. Examples -------- .. plot:: :include-source: import compas from compas.datastructures import Mesh from compas.datastructures import mesh_dual from compas.plotters import MeshPlotter mesh = Mesh.from_obj(compas.get('faces.obj')) dual = mesh_dual(mesh) lines = [] for u, v in mesh.edges(): lines.append({ 'start': mesh.vertex_coordinates(u, 'xy'), 'end' : mesh.vertex_coordinates(v, 'xy'), 'color': '#cccccc', 'width': 1.0 }) plotter = MeshPlotter(dual) plotter.draw_lines(lines) plotter.draw_vertices(facecolor='#eeeeee', edgecolor='#000000', radius=0.2, text='key') plotter.draw_edges() plotter.show() """ if not cls: cls = type(mesh) dual = cls() fkey_centroid = {fkey: mesh.face_centroid(fkey) for fkey in mesh.faces()} outer = mesh.vertices_on_boundary() inner = list(set(mesh.vertices()) - set(outer)) vertices = {} faces = {} for key in inner: fkeys = mesh.vertex_faces(key, ordered=True) for fkey in fkeys: if fkey not in vertices: vertices[fkey] = fkey_centroid[fkey] faces[key] = fkeys for key, (x, y, z) in vertices.items(): dual.add_vertex(key, x=x, y=y, z=z) for fkey, vertices in faces.items(): dual.add_face(vertices, fkey=fkey) return dual # ============================================================================== # Main # ============================================================================== if __name__ == '__main__': pass
22.865979
95
0.529757
d915466e5fd3c97db5cb2aef01d5846d430a72ba
9,349
py
Python
sentiment analysis/sentiment2.py
chuncaohenli/clp_project
1df861f6c91ce35e1c6118a226c549d5a274d9df
[ "MIT" ]
null
null
null
sentiment analysis/sentiment2.py
chuncaohenli/clp_project
1df861f6c91ce35e1c6118a226c549d5a274d9df
[ "MIT" ]
null
null
null
sentiment analysis/sentiment2.py
chuncaohenli/clp_project
1df861f6c91ce35e1c6118a226c549d5a274d9df
[ "MIT" ]
null
null
null
#coding=utf-8 import json import nltk import os import utils import traceback n_dict = {} adj_dict = {} adv_dict = {} inverse_dict = [] posdict = [] negdict = [] ################ read in all the files ################## # comment_list = getComments(jcontent) id_list = ['3133817'] comments = [] comments_dict = {} allreviews_file = open('all reviews.txt', 'w') for id in id_list: path =('review_3133817') for parent, dirnames, filenames in os.walk(path): for f in filenames[1:]: f_path = path+'/'+f try: data = utils.readJD(f_path,id) comments.extend(data[0]) num_hottag = len(data[1]) except Exception: traceback.print_exc() print f_path continue for comment in comments: comments_dict[comment.id] = [comment.content] allreviews_file.write(str(comment.id) + '\t') allreviews_file.write((comment.content.encode('utf-8'))) allreviews_file.write('\n') allreviews_file.close() n_file = open('noun_cluster.txt', 'r') # input the results of noun clustering fulltext1 = n_file.readlines() for line in fulltext1: a = line.split() try: n_dict[a[1]].append(a[0]) except KeyError: n_dict[a[1]] = [a[0]] for i in n_dict.keys(): n_dict[i] = set(n_dict[i]) n_file.close() adj_file = open('adj_cluster.txt', 'r') # input the results of adjective clustering fulltext2 = adj_file.readlines() for line in fulltext2: a = line.split() try: adj_dict[a[1]].append(a[0]) except KeyError: adj_dict[a[1]] = [a[0]] adj_file.close() total_degrees = len(adj_dict.keys()) # describe the total number of degrees of sentiment adv_file = open('adverb_cluster.txt', 'r') # input the results of adverb clustering fulltext3 = adv_file.readlines() for line in fulltext3: a = line.split() try: adv_dict[a[1]].append(a[0]) except KeyError: adv_dict[a[1]] = [a[0]] adv_file.close() for i in adv_dict.keys(): adv_dict[i] = set(adv_dict[i]) inverse_file = open('inverse.txt', 'r') # input all the inverse words fulltext6 = inverse_file.readlines() for line in fulltext6: a = line.split() inverse_dict.append(a[0]) inverse_file.close() posdict_file = open('posdict.txt', 'r') # input all the inverse words fulltext7 = posdict_file.readlines() for line in fulltext7: a = line.split() posdict.append(a[0]) posdict_file.close() negdict_file = open('negdict.txt', 'r') # input all the inverse words fulltext8 = negdict_file.readlines() for line in fulltext8: a = line.split() negdict.append(a[0]) negdict_file.close() def find_n_class(noun_word): for i in n_dict.keys(): if noun_word in n_dict[i]: return(i) def find_adj_class(adj_word): for i in adj_dict.keys(): if adj_word in adj_dict[i]: return(i) def find_adv_class(adv_word): for i in adv_dict.keys(): if adv_word in adv_dict[i]: return(i) ########### capture the feature key words ########### def capture_feature_keywords(feature_count): keyword = {} for feature_num in feature_count.keys(): max_num = max(feature_count[feature_num].values()) for words in feature_count[feature_num].keys(): if feature_count[feature_num][words] == max_num: keyword[feature_num] = words return keyword #print json.dumps(keyword, encoding="UTF-8", ensure_ascii=False) ########### capture the degree key words ############### def capture_senti_keywords(sentiment): degrees_senti = {} for feature_num in sentiment.keys(): max_num = max(sentiment[feature_num].values()) for degree in sentiment[feature_num].keys(): if sentiment[feature_num][degree] == max_num: degrees_senti[feature_num] = {degree: sentiment_words[feature_num][degree][0]} #print('degree_senti:') #print json.dumps(degrees_senti, encoding="UTF-8", ensure_ascii=False) return degrees_senti #print json.dumps(feature_count, encoding="UTF-8", ensure_ascii=False) ########## output the final results ###################### def output_final(sentiment_words, keyword, degrees_senti): final_results = {} for feature_num in sentiment_words.keys(): final_results[keyword[feature_num]] = {'degree': degrees_senti[feature_num]} sent_degree = degrees_senti[feature_num].keys()[0] final_results[keyword[feature_num]]['count'] = sentiment[feature_num][sent_degree]['count'] final_results[keyword[feature_num]]['id'] = sentiment[feature_num][sent_degree]['id'] #print('final_result:') #print json.dumps(final_results, encoding="UTF-8", ensure_ascii=False) output_file = open('final_result.txt', 'w') for i in final_results.keys(): for j in final_results[i]['degree'].keys(): eachline1 = i + final_results[i]['degree'][j] +\ '(' + str(final_results[i]['count']) + ')' + '\t' + 'Review ID: ' + '\t' output_file.write(eachline1) subfile_name = i + final_results[i]['degree'][j] +\ '(' + str(final_results[i]['count']) + ')' + '.txt' subfile = open(subfile_name, 'w') for k in final_results[i]['id']: eachline2 = k + '\t' output_file.write(eachline2) k1 = k.split('/')[0] eachline3 = k1 + '\t' subfile.write(eachline3) eachline4 = comments_dict[int(k1)][0] subfile.write(eachline4.encode('utf-8')) subfile.write('\n') output_file.write('\n') subfile.close() output_file.close() raw_data = {} # store all raw data for indexing sentiment = {} # store all the sentiment analysis results sentiment_words = {} # store all the sentiment analysis results in form of words feature_count = {} phrases_file = open('parsing4.txt', 'r') # input all the parsing results fulltext4 = phrases_file.readlines() for line in fulltext4: a = line.split( ) id = a[0] raw_data[a[0]] = line.lstrip(a[0]).split() # store the raw data noun_word = a[1] n_class = find_n_class(noun_word) try: feature_count[n_class][noun_word] += 1 except KeyError: try: feature_count[n_class][noun_word] = 1 except KeyError: feature_count[n_class] = {noun_word: 1} if len(a) == 4: # there is an adv before the adj adj_word = a[3] adv_word = a[2] adj_class = find_adj_class(adj_word) adv_class = find_adv_class(adv_word) if adj_class == None: degree = 2 else: degree = adj_class if adv_word in inverse_dict: # check inverse words degree = str(0 - int(degree)) addvalues = adv_word + adj_word try: adj_dict[degree].append(addvalues) except KeyError: adj_dict[degree] = [addvalues] else: addvalues = adj_word try: sentiment[n_class][degree]['count'] += 1 sentiment[n_class][degree]['id'].append(id) sentiment_words[n_class][degree].append(addvalues) except KeyError: try: sentiment[n_class][degree]['count'] = 1 sentiment[n_class][degree]['id'] = [id] sentiment_words[n_class][degree] = [addvalues] except KeyError: try: sentiment[n_class][degree] = {'count': 1, 'id': [id]} sentiment_words[n_class][degree] = [addvalues] except KeyError: sentiment[n_class]={degree: {'count':1, 'id': [id]}} sentiment_words[n_class] = {degree: [addvalues]} elif len(a) == 3: # if there is no adv adj_word = a[2] adj_class = find_adj_class(adj_word) if adj_class == None: degree = 2 else: degree = adj_class try: sentiment[n_class][degree]['count'] += 1 sentiment[n_class][degree]['id'].append(id) sentiment_words[n_class][degree].append(adj_word) except KeyError: try: sentiment[n_class][degree]['count'] = 1 sentiment[n_class][degree]['id'] = [id] sentiment_words[n_class][degree] = [adj_word] except KeyError: try: sentiment[n_class][degree] = {'count': 1, 'id': [id]} sentiment_words[n_class][degree] = [adj_word] except KeyError: sentiment[n_class] = {degree: {'count': 1, 'id': [id]}} sentiment_words[n_class] = {degree: [adj_word]} #print('sentiment:') #print(sentiment) #print('sentiment_word:') #print json.dumps(sentiment_words, encoding="UTF-8", ensure_ascii=False) phrases_file.close() for noun_class in sentiment.keys(): class_degree = max(sentiment[noun_class]) #print('adj_dict:') #print json.dumps(adj_dict, encoding="UTF-8", ensure_ascii=False) feature_keywords = capture_feature_keywords(feature_count) degrees_senti = capture_senti_keywords(sentiment) output_final(sentiment_words, feature_keywords, degrees_senti)
34.754647
99
0.599529
68e73668406db65563eb6b838c8b51d4017f744c
725
py
Python
wordcount/migrations/0001_initial.py
novalex/wordcount
d0dd0d7c4e2389ab9dc54f35d085a0d53546d620
[ "MIT" ]
null
null
null
wordcount/migrations/0001_initial.py
novalex/wordcount
d0dd0d7c4e2389ab9dc54f35d085a0d53546d620
[ "MIT" ]
null
null
null
wordcount/migrations/0001_initial.py
novalex/wordcount
d0dd0d7c4e2389ab9dc54f35d085a0d53546d620
[ "MIT" ]
null
null
null
# Generated by Django 2.2.7 on 2019-11-05 18:57 import django.contrib.postgres.fields.jsonb from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='FileUpload', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('created', models.DateTimeField(auto_now_add=True)), ('wordcount', models.IntegerField()), ('words', django.contrib.postgres.fields.jsonb.JSONField()), ('lines', models.IntegerField()), ], ), ]
27.884615
114
0.588966
856fb37d5c5ffcb9322835d1c7598d3026379bc3
180,817
py
Python
python/tvm/relay/frontend/onnx.py
embodyme/tvm
3c05eb6a4bc026b7b194e6708d96b2dc9eea070a
[ "Apache-2.0" ]
1
2021-12-26T06:58:55.000Z
2021-12-26T06:58:55.000Z
python/tvm/relay/frontend/onnx.py
redbopo/tvm
b54beed37ca2baad6002990b014a2119223e0900
[ "Apache-2.0" ]
null
null
null
python/tvm/relay/frontend/onnx.py
redbopo/tvm
b54beed37ca2baad6002990b014a2119223e0900
[ "Apache-2.0" ]
null
null
null
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # pylint: disable=invalid-name, import-self, len-as-condition, unused-argument, too-many-lines # pylint: disable=import-outside-toplevel """ONNX: Open Neural Network Exchange frontend for Relay.""" import copy import warnings from typing import Optional import numpy as np import tvm from tvm import relay from tvm.ir import IRModule from tvm.topi.utils import get_const_tuple from ... import nd as _nd from .. import analysis from .. import expr as _expr from .. import function as _function from .. import loops as _loops from .. import op as _op from .. import qnn as _qnn from .. import random as _random from .. import ty as _ty from .. import vision as _vision from .common import ( autopad, AttrCvt, Renamer, ensure_scalar_shape, fold_constant, get_name, get_relay_op, gru_cell, infer_channels, infer_shape, infer_type, infer_value, lstm_cell, new_var, shape_of, try_resolve_var_to_const, unbind, ) __all__ = ["from_onnx"] # The default configurations of Relay ONNX frontend. ONNX_DEFAULT_CONFIGS = { # By default, TVM converts qualified onnx `matmul` to `transpose(weight) + nn.batch_matmul_NT`. # Change this flag to False to directly convert to `nn.batch_matmul`. # Note that `nn.batch_matmul` with format other than NT is in experimental, it may have some # performance issues. "use_nt_batch_matmul": True, } class onnx_input(list): """A helper extension to list that returns None for out of bound indices.""" def __getitem__(self, item): if isinstance(item, slice): if item.stop is None: stop = len(self) else: stop = item.stop indices = list(range(stop)[item]) return [self[i] for i in indices] if isinstance(item, int): return list(self)[item] if item < len(self) else None raise TypeError("list indices must be integers or slices, not %s" % type(item).__name__) def get_numpy(tensor_proto): """Grab data in TensorProto and convert to numpy array.""" try: from onnx.numpy_helper import to_array except ImportError as e: raise ImportError("Unable to import onnx which is required {}".format(e)) return to_array(tensor_proto) def get_type(elem_type): """Converts onnx integer datatype to numpy datatype""" try: from onnx.mapping import TENSOR_TYPE_TO_NP_TYPE except ImportError as e: raise ImportError("Unable to import onnx which is required {}".format(e)) return str(TENSOR_TYPE_TO_NP_TYPE[elem_type]) def get_info(info_proto): """Extract the shape from a ValueInfoProto.""" shape = [] shape_name = [] for dim in info_proto.type.tensor_type.shape.dim: name = dim.dim_param value = dim.dim_value if value is None or value == 0: value = _ty.Any() shape_name.append(name) else: shape_name.append(value) shape.append(value) name = info_proto.name if info_proto.type.tensor_type.elem_type: dtype = get_type(info_proto.type.tensor_type.elem_type) else: dtype = None return name, shape, dtype, shape_name def dimension_picker(prefix, suffix=""): """Check that dimensions are supported.""" def _impl(attr): kernel = attr["kernel_shape"] if len(kernel) == 1: return prefix + "1d" + suffix if len(kernel) == 2: return prefix + "2d" + suffix if len(kernel) == 3: return prefix + "3d" + suffix msg = "Only 1D, 2D, and 3D kernels are supported for operator {}." op_name = prefix + "1d/2d/3d" raise tvm.error.OpAttributeInvalid(msg.format(op_name)) return _impl def revert_caffe2_pad(pads): """Caffe2 requires two times the normal padding.""" if len(pads) == 4: pads = pads[:2] elif len(pads) == 2: pass else: raise tvm.error.OpAttributeInvalid("Number of pads must be either 2 or 4.") return pads def get_pad_pair(input1d, kernel1d, stride1d, mode): """infer pad size""" if input1d % stride1d == 0: pad = max(kernel1d - stride1d, 0) else: pad = max(kernel1d - (input1d % stride1d), 0) pad_before = pad // 2 pad_after = pad - pad_before if "LOWER" in mode: return [pad_after, pad_before] return [pad_before, pad_after] def onnx_default_layout(dims, op_name): if dims == 1: return "NCW" if dims == 2: return "NCHW" if dims == 3: return "NCDHW" msg = "Only 1D, 2D and 3D layouts are currently supported for operator {}." raise tvm.error.OpAttributeInvalid(msg.format(op_name)) def onnx_storage_order2layout(storage_order, dims, op_name): """converter of onnx storage order parameter to tvm storage order format""" if storage_order not in (0, 1): raise tvm.error.OpAttributeInvalid("Mode of storage_order must be either 0 or 1") if dims == 1: return "NCW" if storage_order == 0 else "NWC" if dims == 2: return "NCHW" if storage_order == 0 else "NHWC" if dims == 3: return "NCDHW" if storage_order == 0 else "NDHWC" msg = "Only 1D, 2D and 3D layouts are currently supported for operator {}." raise tvm.error.OpAttributeInvalid(msg.format(op_name)) def dimension_constraint(): def _dim_check(attrs): if len(attrs["kernel_shape"]) in [1, 2, 3]: return True return False return _dim_check, "Only 1d, 2d and 3d kernel supported." def get_scalar(x, params, dtype="float32"): """Helper to get a scalar value for Quantized operators.""" if isinstance(x, _expr.Var) and x.name_hint in params: return _op.const(params[x.name_hint].numpy(), dtype) rank = len(infer_shape(x)) assert rank <= 1, "scale and zero_point input must be scalars" if rank == 1: x = _op.squeeze(x, [0]) return _op.cast(x, dtype) def matmul_out_dtype(inputs, out_dtype): """Common function to handle MatMul and MatMulInteger16""" a_shape = shape_of(inputs[0]) a_rank = infer_shape(a_shape)[0] b_shape = shape_of(inputs[1]) b_rank = infer_shape(b_shape)[0] if a_rank > 2 or b_rank > 2: def flatten_to_nd(x, x_shape, nd=3): ndims = infer_shape(x_shape)[0] if ndims == nd: return x newshape = _op.concatenate( [ _expr.const([-1], dtype=infer_type(x_shape).checked_type.dtype), _op.strided_slice(x_shape, [ndims - nd + 1], [ndims]), ], 0, ) out = _op.reshape(x, fold_constant(newshape)) return out b_type = infer_type(inputs[1]) # Convert to dense if the second matrix is 2d and non-dynamic if b_rank == 2 and not _ty.is_dynamic(b_type.checked_type): a = flatten_to_nd(inputs[0], a_shape, 2) b = _op.transpose(inputs[1]) output = _op.nn.dense(a, b, out_dtype=out_dtype) else: # Convert a and b into 3 dimensional tensors. a = flatten_to_nd(inputs[0], a_shape, 3) b = flatten_to_nd(inputs[1], b_shape, 3) # Perform a NN batch matmul. output = _op.nn.batch_matmul(a, b, out_dtype=out_dtype, transpose_b=False) # Determine the output batch dimension. if a_rank > b_rank: out_batch = _op.strided_slice(a_shape, [0], [a_rank - 2]) elif a_rank < b_rank: out_batch = _op.strided_slice(b_shape, [0], [b_rank - 2]) # If its unclear how broadcasting should be applied, the output # shape is determined by choosing the maximum value from each input. else: out_batch = _op.concatenate( [ _op.maximum( _op.strided_slice(a_shape, [i], [i + 1]), _op.strided_slice(b_shape, [i], [i + 1]), ) for i in range(a_rank - 2) ], 0, ) # Reshape output to original dimensions. final_shape = _op.concatenate( [ out_batch, _op.strided_slice( a_shape, [infer_shape(a_shape)[0] - 2], [infer_shape(a_shape)[0] - 1] ), _op.strided_slice( b_shape, [infer_shape(b_shape)[0] - 1], [infer_shape(b_shape)[0]] ), ], 0, ) return _op.reshape(output, fold_constant(final_shape)) # Otherwise a simple dense op will get the job done. input_1_t = _op.transpose(inputs[1], axes=(1, 0)) return _op.nn.dense(inputs[0], input_1_t, out_dtype=out_dtype) class OnnxOpConverter(object): """A helper class for holding onnx op converters.""" @classmethod def get_converter(cls, opset): """Get converter matches given opset. Parameters ---------- opset: int opset from model. Returns ------- converter, which should be `_impl_vx`. Number x is the biggest number smaller than or equal to opset belongs to all support versions. """ versions = [int(d.replace("_impl_v", "")) for d in dir(cls) if "_impl_v" in d] versions = sorted(versions + [opset]) version = versions[max([i for i, v in enumerate(versions) if v == opset]) - 1] if hasattr(cls, "_impl_v{}".format(version)): return getattr(cls, "_impl_v{}".format(version)) raise NotImplementedError( "opset version {} of {} not implemented".format(version, cls.__name__) ) class Unary(OnnxOpConverter): """A helper class for unary op converters.""" name = "" @classmethod def _impl_v1(cls, inputs, attr, params): assert len(inputs) == 1, "Unary math op {} takes 1 input, {} given".format( cls.name, len(inputs) ) op_name = cls.name return get_relay_op(op_name)(*inputs) class Elemwise(OnnxOpConverter): """A helper class for elemwise op converters.""" name = "" @classmethod def _impl_v1(cls, inputs, attr, params): assert len(inputs) == 2, "Math op {} take 2 inputs, {} given".format(cls.name, len(inputs)) op_name = cls.name conv_ops = ["conv2d", "conv2d_transpose"] if attr.get("broadcast", 0) and any(x in str(inputs[0]) for x in conv_ops): # TODO(zhreshold): remove hard coded infershape axis = int(attr.get("axis", 0)) inputs[1] = _op.expand_dims(inputs[1], axis=axis, num_newaxis=2) return get_relay_op(op_name)(*inputs) class Pool(OnnxOpConverter): """A helper class for pool op converters.""" name = "" @classmethod def _impl_v1(cls, inputs, attr, params): attr_cvt, data = cls._run_calculation(inputs, attr, params) return attr_cvt([data], attr, params) @classmethod def _run_calculation(cls, inputs, attr, params): """Helper method to return the processed input data and AttrCvt object""" data = inputs[0] input_shape = infer_shape(data) input_dtype = infer_type(data).checked_type.dtype ndim = len(input_shape) if "auto_pad" in attr: attr["auto_pad"] = attr["auto_pad"].decode("utf-8") if attr["auto_pad"] in ("SAME_UPPER", "SAME_LOWER"): if cls.name == "avg_pool": pad_tuple = [] for axis in range(len(input_shape) - 2): axis_shape = input_shape[2 + axis] stride = attr.get("strides", [1] * ndim)[axis] kernel = attr["kernel_shape"][axis] pad = get_pad_pair(axis_shape, kernel, stride, attr["auto_pad"]) pad_tuple.append(pad) pad_tuple = tuple([val for pair in zip(*pad_tuple) for val in pair]) attr["pads"] = pad_tuple else: # Warning: Pool does not yet support dynamic shapes, # one will need to run dynamic_to_static on this model after import if "int" in input_dtype: pad_val = np.iinfo(np.dtype(input_dtype)).min else: pad_val = np.finfo(np.dtype(input_dtype)).min data = autopad( data, attr.get("strides", [1] * (ndim - 2)), attr["kernel_shape"], [1] * ndim, pad_value=pad_val, mode=attr["auto_pad"], ) elif attr["auto_pad"] == "VALID": attr["pads"] = tuple([0 for i in range(ndim - 2)]) elif attr["auto_pad"] == "NOTSET": pass else: msg = 'Value {} in attribute "auto_pad" of operator {} is invalid.' raise tvm.error.OpAttributeInvalid(msg.format(attr["auto_pad"], cls.name)) attr.pop("auto_pad") if "storage_order" in attr: attr["layout"] = onnx_storage_order2layout( attr["storage_order"], dims=(len(input_shape) - 2), op_name=cls.name ) else: attr["layout"] = onnx_default_layout(dims=(len(input_shape) - 2), op_name=cls.name) return ( AttrCvt( op_name=dimension_picker(cls.name), transforms={ "kernel_shape": "pool_size", "pads": ("padding", 0), "dilations": ("dilation", 1), }, ignores=["storage_order"], custom_check=dimension_constraint(), ), data, ) class Absolute(Unary): """Operator converter for Absolute.""" name = "abs" class Add(Elemwise): """Operator converter for Add.""" name = "add" class AveragePool(Pool): """Operator converter for AveragePool.""" name = "avg_pool" class QLinearAveragePool(Pool): """Operator converter for QLinearAveragePool from Microsoft onnxruntime contrib opset.""" name = "avg_pool" @classmethod def _impl_v1(cls, inputs, attr, params): x_scale = get_scalar(inputs[1], params) x_zero_point = get_scalar(inputs[2], params, dtype="int32") y_scale = fold_constant(get_scalar(inputs[3], params)) y_zero_point = get_scalar(inputs[4], params, dtype="int32") attr_cvt, data = cls._run_calculation(inputs, attr, params) input_dtype = infer_type(data).checked_type.dtype # Onnxruntime doesn't actually do this op in integer, they dequantize to fp32 # and then requantize afer (according to documentation below) # https://github.com/microsoft/onnxruntime/blob/master/docs/ContribOperators.md#com.microsoft.QLinearAveragePool float_node = _qnn.op.dequantize(data, x_scale, x_zero_point) out = attr_cvt([float_node], attr, params) return _qnn.op.quantize(out, y_scale, y_zero_point, out_dtype=input_dtype) class BatchNorm(OnnxOpConverter): """Operator converter for BatchNorm.""" @classmethod def _impl_v1(cls, inputs, attr, params): # TODO(zhreshold): 'spatial' is not properly handled here. # TODO(vvchernov): 'training_mode' (onnx tag) is not correctly handled, ignore for now out = AttrCvt( op_name="batch_norm", ignores=["spatial", "is_test", "consumed_inputs", "momentum", "training_mode"], )(inputs, attr, params) return out[0] class InstanceNorm(OnnxOpConverter): """Operator converter for BatchNorm.""" @classmethod def _impl_v1(cls, inputs, attr, params): return AttrCvt(op_name="instance_norm")(inputs, attr, params) class Conv(OnnxOpConverter): """Operator converter for Conv.""" @classmethod def _impl_v1(cls, inputs, attr, params): # Use shape of input to determine convolution type. data = inputs[0] kernel = inputs[1] input_shape = infer_shape(data) ndim = len(input_shape) kernel_type = infer_type(inputs[1]) kernel_shapes = [get_const_tuple(kernel_type.checked_type.shape)] if "kernel_shape" not in attr: attr["kernel_shape"] = kernel_shapes[0][2:] if "auto_pad" in attr: attr["auto_pad"] = attr["auto_pad"].decode("utf-8") if attr["auto_pad"] in ("SAME_UPPER", "SAME_LOWER"): # Warning: Convolution does not yet support dynamic shapes, # one will need to run dynamic_to_static on this model after import data = autopad( data, attr.get("strides", [1] * (ndim - 2)), attr["kernel_shape"], attr.get("dilations", [1] * (ndim - 2)), mode=attr["auto_pad"], ) elif attr["auto_pad"] == "VALID": attr["pads"] = [0 for i in range(ndim - 2)] elif attr["auto_pad"] == "NOTSET": pass else: msg = 'Value {} in attribute "auto_pad" of operator Conv is invalid.' raise tvm.error.OpAttributeInvalid(msg.format(attr["auto_pad"])) attr.pop("auto_pad") # Check if the requested convolution is a group conv1d, if so convert it to conv2d. # TODO(jwfromm) Remove once proper group_conv1d is supported. group_conv1d = False if dimension_picker("conv")(attr) == "conv1d" and attr.get("group") != 1: group_conv1d = True # Expand input from NCW to NCHW data = _op.expand_dims(data, axis=2) # Expand kernel from OIW to OIHW kernel = _op.expand_dims(kernel, axis=2) # Add new value to kernel_shape, strices, dilation, pads, if needed attr["kernel_shape"] = [1] + list(attr["kernel_shape"]) if "strides" in attr: attr["strides"] = [1] + list(attr["strides"]) if "dilations" in attr: attr["dilations"] = [1] + list(attr["dilations"]) if "pads" in attr: attr["pads"] = [0, attr["pads"][0], 0, attr["pads"][1]] attr["channels"] = kernel_shapes[0][0] out = AttrCvt( op_name=dimension_picker("conv"), transforms={ "kernel_shape": "kernel_size", "dilations": ("dilation", 1), "pads": ("padding", 0), "group": ("groups", 1), }, custom_check=dimension_constraint(), )([data, kernel], attr, params) # If this was a group_conv1d, squish output back to NCW. if group_conv1d: out = _op.squeeze(out, axis=[2]) use_bias = len(inputs) == 3 if use_bias: out = _op.nn.bias_add(out, inputs[2]) return out class ConvTranspose(OnnxOpConverter): """Operator converter for ConvTranspose.""" @classmethod def _impl_v1(cls, inputs, attr, params): # get number of channels out_type = infer_type(inputs[1]) out_shapes = [get_const_tuple(out_type.checked_type.shape)] channels = out_shapes[0][1] attr["channels"] = channels groups = attr.get("group", 1) if "kernel_shape" not in attr: attr["kernel_shape"] = out_shapes[0][2:] attr["groups"] = groups # infer pads for auto_pad data = inputs[0] input_shape = infer_shape(data) ndim = len(input_shape) if "auto_pad" in attr: attr["auto_pad"] = attr["auto_pad"].decode("utf-8") if attr["auto_pad"] in ("SAME_UPPER", "SAME_LOWER"): # Warning: Convolution does not yet support dynamic shapes, # one will need to run dynamic_to_static on this model after import data = autopad( data, attr.get("strides", [1] * (ndim - 2)), attr["kernel_shape"], attr.get("dilations", [1] * (ndim - 2)), deconv=True, mode=attr["auto_pad"], ) elif attr["auto_pad"] == "VALID": attr["pads"] = tuple([0 for i in range(ndim - 2)]) elif attr["auto_pad"] == "NOTSET": pass else: msg = 'Value {} in attribute "auto_pad" of operator Conv is invalid.' raise tvm.error.OpAttributeInvalid(msg.format(attr["auto_pad"])) attr.pop("auto_pad") out = AttrCvt( op_name=dimension_picker("conv", "_transpose"), transforms={ "kernel_shape": "kernel_size", "dilations": ("dilation", 1), "pads": ("padding", 0), "group": ("groups", 1), }, disables=["output_shape"], custom_check=dimension_constraint(), )([data, inputs[1]], attr, params) use_bias = len(inputs) == 3 if use_bias: out = _op.nn.bias_add(out, inputs[2]) return out @classmethod def _impl_v11(cls, inputs, attr, params): # get number of channels out_type = infer_type(inputs[1]) out_shapes = [get_const_tuple(out_type.checked_type.shape)] channels = out_shapes[0][1] attr["channels"] = channels groups = attr.get("group", 1) if "kernel_shape" not in attr: attr["kernel_shape"] = out_shapes[0][2:] attr["groups"] = groups # infer pads for auto_pad data = inputs[0] input_shape = infer_shape(data) ndim = len(input_shape) if "auto_pad" in attr: attr["auto_pad"] = attr["auto_pad"].decode("utf-8") if attr["auto_pad"] in ("SAME_UPPER", "SAME_LOWER"): # Warning: Convolution does not yet support dynamic shapes, # one will need to run dynamic_to_static on this model after import kernel_shape = attr["kernel_shape"] kndim = len(kernel_shape) dilations = attr.get("dilations", [1] * kndim) output_padding = attr.get("output_padding", [0] * kndim) strides = attr["strides"] total_pad = [0] * kndim for i in range(kndim): total_pad[i] = ( output_padding[i] + ((kernel_shape[i] - 1) * dilations[i] + 1) - strides[i] ) left = [p // 2 for p in total_pad] right = [total_pad[i] - left[i] for i in range(kndim)] if "LOWER" in attr["auto_pad"]: pad = left + right else: pad = right + left attr["pads"] = pad elif attr["auto_pad"] == "VALID": attr["pads"] = tuple([0 for i in range(ndim - 2)]) elif attr["auto_pad"] == "NOTSET": pass else: msg = 'Value {} in attribute "auto_pad" of operator Conv is invalid.' raise tvm.error.OpAttributeInvalid(msg.format(attr["auto_pad"])) attr.pop("auto_pad") out = AttrCvt( op_name=dimension_picker("conv", "_transpose"), transforms={ "kernel_shape": "kernel_size", "dilations": ("dilation", 1), "pads": ("padding", 0), "group": ("groups", 1), }, disables=["output_shape"], custom_check=dimension_constraint(), )([data, inputs[1]], attr, params) use_bias = len(inputs) == 3 if use_bias: out = _op.nn.bias_add(out, inputs[2]) return out class GlobalAveragePool(OnnxOpConverter): """Operator converter for GlobalAveragePool""" @classmethod def _impl_v1(cls, inputs, attr, params): rank = len(infer_shape(inputs[0])) if rank == 3: return _op.nn.global_avg_pool1d(inputs[0]) if rank == 4: return _op.nn.global_avg_pool2d(inputs[0]) if rank == 5: return _op.nn.global_avg_pool3d(inputs[0]) raise NotImplementedError( "Global average pooling is only implemented for 1D, 2D, and 3D kernels, got %dD." % (rank - 2), ) class QLinearGlobalAveragePool(OnnxOpConverter): "Operator converter for QLinearGlobalAveragePool from Microsoft onnxruntime contrib opset." @classmethod def _impl_v1(cls, inputs, attr, params): rank = len(infer_shape(inputs[0])) x_scale = get_scalar(inputs[1], params) x_zero_point = get_scalar(inputs[2], params, dtype="int32") y_scale = fold_constant(get_scalar(inputs[3], params)) y_zero_point = get_scalar(inputs[4], params, dtype="int32") input_dtype = infer_type(inputs[0]).checked_type.dtype # Onnxruntime documentation does not mention that this global avg_pool should follow the # sequence dequantize -> float op -> quantize, but that is how QLinearAveragePool is done. # # This op also follows the same pattern since qnn op is not available right now. # TODO: Generate QNN op to perform quantized operation instead of dequant -> op -> quant x = _qnn.op.dequantize(inputs[0], x_scale, x_zero_point) if rank == 3: out = _op.nn.global_avg_pool1d(x) elif rank == 4: out = _op.nn.global_avg_pool2d(x) elif rank == 5: out = _op.nn.global_avg_pool3d(x) else: raise NotImplementedError( "Global average pooling is only implemented for 1D, 2D, and 3D kernels, got %dD." % (rank - 2), ) return _qnn.op.quantize(out, y_scale, y_zero_point, out_dtype=input_dtype) class GlobalMaxPool(OnnxOpConverter): """Operator converter for GlobalMaxPool""" @classmethod def _impl_v1(cls, inputs, attr, params): rank = len(infer_shape(inputs[0])) if rank == 3: return _op.nn.global_max_pool1d(inputs[0]) if rank == 4: return _op.nn.global_max_pool2d(inputs[0]) if rank == 5: return _op.nn.global_max_pool3d(inputs[0]) raise NotImplementedError( "Global max pooling is only implemented for 1D, 2D, and 3D kernels, got %dD." % (rank - 2), ) class Div(Elemwise): """Operator converter for Divide.""" name = "divide" class Elu(OnnxOpConverter): """Operator converter for Elu.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = float(attr.get("alpha", 1.0)) return _expr.const(-alpha) * _op.nn.relu( _expr.const(1.0) - _op.exp(inputs[0]) ) + _op.nn.relu(inputs[0]) class Gemm(OnnxOpConverter): """Operator converter for Gemm.""" @classmethod def _impl_v1(cls, inputs, attr, params): assert len(inputs) == 3 or len(inputs) == 2, "Gemm op take 2 or 3 inputs, {} given".format( len(inputs) ) dtype = infer_type(inputs[0]).checked_type.dtype # Y = alpha * A * B + beta * C alpha = float(attr.get("alpha", 1.0)) beta = float(attr.get("beta", 1.0)) transA = int(attr.get("transA", 0)) transB = int(attr.get("transB", 0)) # get number of channels channels = infer_channels(inputs[1], not transB) if transA: inputs[0] = _op.transpose(inputs[0], axes=(1, 0)) if not transB: inputs[1] = _op.transpose(inputs[1], axes=(1, 0)) inputs[0] = _op.nn.batch_flatten(inputs[0]) if alpha != 1.0: inputs[0] *= _expr.const(alpha, dtype=dtype) out = _op.nn.dense(inputs[0], inputs[1], units=channels) if len(inputs) == 3: out = out + _expr.const(beta, dtype=dtype) * inputs[2] return out class MatMul(OnnxOpConverter): """Operator converter for MatMul.""" @classmethod def _impl_v1(cls, inputs, attr, params): assert len(inputs) == 2, "MatMul op take 2 inputs, {} given".format(len(inputs)) # Need to check input shape as batch matmul must be supported. return matmul_out_dtype(inputs, out_dtype=infer_type(inputs[0]).checked_type.dtype) class MatMulInteger16(OnnxOpConverter): """Operator converter for MatMulInteger16 from Microsoft onnxruntime contrib opset.""" @classmethod def _impl_v10(cls, inputs, attr, params): assert len(inputs) == 2, "MatMulInteger16 op take 2 inputs, {} given".format(len(inputs)) a_dtype = infer_type(inputs[0]).checked_type.dtype b_dtype = infer_type(inputs[1]).checked_type.dtype # Check input data types assert a_dtype in ("int16", "uint16"), "MatMulInteger16: invalid dtype for first input" assert b_dtype in ("int16", "uint16"), "MatMulInteger16: invalid dtype for second input" out_dtype = "int32" if a_dtype == "uint16" and b_dtype == "uint16": out_dtype = "uint32" return matmul_out_dtype(inputs, out_dtype) class Mod(OnnxOpConverter): """Operator converter for Mod.""" @classmethod def _impl_v1(cls, inputs, attr, params): assert len(inputs) == 2, "Mod op take 2 inputs, {} given".format(len(inputs)) # Note: attr['fmod'] determines whether the operator should behave like np.fmod or np.mod. # attr['fmod'] == 0 will behave as np.mod and attr['fmod'] == 1 will force fmod treatment. # The relay equivalent of np.fmod is relay.mod and np.mod is relay.floor_mod if attr.get("fmod", 0) == 0: op_name = "floor_mod" else: op_name = "mod" return AttrCvt(op_name)(inputs, {}, params) class MaxPool(Pool): """Operator converter for MaxPool""" name = "max_pool" class MaxUnpool(OnnxOpConverter): """Operator converter for MaxUnpool""" @classmethod def _impl_v11(cls, inputs, attr, params): # Unpack inputs and attributes data = inputs[0] data_type = infer_type(data).checked_type.dtype indices = inputs[1] output_shape = inputs[2] kernel_shape = attr.get("kernel_shape") pads = attr.get("pads", None) strides = attr.get("strides", [1] * len(kernel_shape)) # Compute the proper output shape before padding. multiplier = _op.concatenate( [_expr.const([1, 1], dtype="int64"), _expr.const(list(strides), dtype="int64")], axis=0 ) total_output_shape = multiplier * shape_of(data, dtype="int64") # Add extra dimensions from kernel size and stride mismatch total_output_shape += _op.concatenate( [_expr.const([0, 0], "int64"), _expr.const(list(kernel_shape), "int64")], axis=0 ) - _op.concatenate( [_expr.const([0, 0], "int64"), _expr.const(list(strides), "int64")], axis=0 ) # Compute padding amount if output shape is specified. if output_shape is not None: total_output_shape = output_shape elif pads is not None: # Get pads in the proper format for relay. pads = _op.concatenate( [_expr.const([0, 0, 0, 0], "int64"), _expr.const(list(pads), "int64")], axis=0 ) pads = _op.reshape(pads, [-1, 2]) # Compute the total padding per axis. total_pad = _op.sum(pads, axis=-1) # Reversing maxpool means that padding actually makes our output smaller. total_output_shape = total_output_shape - total_pad # Create a tensor of zeros then scatter our data through it. zeros_tensor = _op.zeros(total_output_shape, data_type) # We need to flatten all our tensors before scattering. flat_tensor = _op.scatter( _op.reshape(zeros_tensor, [-1]), _op.reshape(indices, [-1]), _op.reshape(data, [-1]), axis=0, ) # Now reshape back to prepadded shape. output_tensor = _op.reshape(flat_tensor, total_output_shape) return output_tensor class LpPool(OnnxOpConverter): """A helper class for lppool op converters.""" @classmethod def _impl_v1(cls, inputs, attr, params): dtype = infer_type(inputs[0]).checked_type.dtype data = inputs[0] input_shape = infer_shape(data) ndim = len(input_shape) if "auto_pad" in attr: attr["auto_pad"] = attr["auto_pad"].decode("utf-8") if attr["auto_pad"] in ("SAME_UPPER", "SAME_LOWER"): # Warning: LpPool does not yet support dynamic shapes, # one will need to run dynamic_to_static on this model after import data = autopad( data, attr["strides"], attr["kernel_shape"], [1] * ndim, mode=attr["auto_pad"], ) elif attr["auto_pad"] == "VALID": attr["pads"] = tuple([0 for i in range(ndim - 2)]) elif attr["auto_pad"] == "NOTSET": pass else: msg = 'Value {} in attribute "auto_pad" of operator {} is invalid.' raise tvm.error.OpAttributeInvalid(msg.format(attr["auto_pad"], "LpPool")) attr.pop("auto_pad") if "storage_order" in attr: attr["layout"] = onnx_storage_order2layout( attr["storage_order"], dims=(len(input_shape) - 2), op_name="LpPool" ) else: attr["layout"] = onnx_default_layout(dims=(len(input_shape) - 2), op_name="LpPool") p_value = attr.get("p", 2) p = _expr.const(p_value, dtype) reci_p = _expr.const(1.0 / p_value, dtype) data = _op.power(data, p) out = AttrCvt( op_name=dimension_picker("avg_pool"), transforms={"kernel_shape": "pool_size", "pads": ("padding", 0)}, extras={"count_include_pad": True}, ignores=["p"], custom_check=dimension_constraint(), )([data], attr, params) kernels = attr["kernel_shape"] out = _op.abs(out) * _expr.const(np.prod(kernels).astype(dtype)) return _op.power(out, reci_p) class GlobalLpPool(OnnxOpConverter): """Operator converter for GlobalLpPool.""" @classmethod def _impl_v1(cls, inputs, attr, params): # TODO: GlobalLpPool does not yet support dynamic shapes in_shape = infer_shape(inputs[0]) attr["kernel_shape"] = in_shape[2:] return LpPool._impl_v1(inputs, attr, params) class Mul(Elemwise): """Operator converter for Multiply.""" name = "multiply" class Pad(OnnxOpConverter): """Operator converter for Pad.""" @classmethod def _impl_v1(cls, inputs, attr, params): pad_width = [] pads = attr.pop("paddings") dims = int(len(pads) / 2) for i in range(dims): pad_width.append((pads[i], pads[i + dims])) attr["pad_width"] = pad_width pad_mode = attr.get("mode", b"constant").decode("utf-8") if pad_mode in ["constant", "edge", "reflect"]: attr["pad_mode"] = pad_mode attr.pop("mode", None) else: raise tvm.error.OpAttributeInvalid( "Value " + pad_mode + ' in attribute "mode" is invalid for operator Pad.' ) return AttrCvt( _op.nn.pad, transforms={ "value": "pad_value", }, )(inputs, attr, params) @classmethod def _impl_v2(cls, inputs, attr, params): pad_width = [] pads = attr.pop("pads") dims = int(len(pads) / 2) for i in range(dims): pad_width.append((pads[i], pads[i + dims])) attr["pad_width"] = pad_width pad_mode = attr.get("mode", b"constant").decode("utf-8") if pad_mode in ["constant", "edge", "reflect"]: attr["pad_mode"] = pad_mode attr.pop("mode", None) else: raise tvm.error.OpAttributeInvalid( "Value " + pad_mode + ' in attribute "mode" is invalid for operator Pad.' ) return AttrCvt( "pad", transforms={ "value": "pad_value", }, )(inputs, attr, params) @classmethod def _impl_v11(cls, inputs, attr, params): pads = inputs[1] if len(inputs) == 3: value = fold_constant(_op.take(inputs[2], _op.const(0))) else: value = 0.0 pad_width_expr = fold_constant(_op.transpose(_op.reshape(pads, (2, -1)))) pad_mode = attr.get("mode", b"constant").decode("utf-8") if not pad_mode in ["constant", "edge", "reflect"]: raise tvm.error.OpAttributeInvalid( "Value " + pad_mode + ' in attribute "mode" is invalid for operator Pad.' ) return _op.nn.pad(inputs[0], pad_width_expr, value, pad_mode=pad_mode) class ParametricSoftPlus(OnnxOpConverter): """Operator converter for ParametricSoftPlus.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = _expr.const(float(attr.get("alpha", 1.0))) beta = _expr.const(float(attr.get("beta", 1.0))) return _op.log(_op.exp(beta * inputs[0]) + _expr.const(1.0)) * alpha class Pow(OnnxOpConverter): """Operator converter for Pow.""" @classmethod def _impl_v13(cls, inputs, attr, params): x = inputs[0] y = inputs[1] x_type = infer_type(x).checked_type.dtype output_type = x_type y_type = infer_type(y).checked_type.dtype if not x_type.startswith("float"): x_type = "float32" x = _op.cast(x, x_type) if x_type != y_type: y = _op.cast(y, x_type) # TODO: come up with good default integer pow() func for common backends result = _op.power(x, y) if x_type != output_type: return _op.cast(result, output_type) return result class Prelu(OnnxOpConverter): """Operator converter for Prelu.""" @classmethod def _impl_v1(cls, inputs, attr, params): assert len(inputs) == 2, "Prelu need 2 inputs, {} given".format(len(inputs)) input_shape = shape_of(inputs[0]) alpha = _op.broadcast_to_like(inputs[1], inputs[0]) alpha = _op.reshape(alpha, [-1]) output = _op.nn.prelu(_op.reshape(inputs[0], [-1]), alpha, axis=0) return _op.reshape(output, input_shape) class Reciprocal(OnnxOpConverter): """Operator converter for Reciprocal.""" @classmethod def _impl_v1(cls, inputs, attr, params): dtype = infer_type(inputs[0]).checked_type.dtype return _expr.const(1.0, dtype=dtype) / inputs[0] class Flatten(OnnxOpConverter): """Operator converter for Flatten.""" @classmethod def _impl_v1(cls, inputs, attr, params): axis = attr.get("axis", 1) ishape = _op.shape_of(inputs[0]) ndim = infer_shape(ishape)[0] if axis < 0: axis = axis + ndim if axis == 1: out = _op.nn.batch_flatten(inputs[0]) else: pre_shape = _op.prod(_op.strided_slice(ishape, [0], [axis], [1]), keepdims=True) post_shape = _op.prod(_op.strided_slice(ishape, [axis], [ndim], [1]), keepdims=True) newshape = _op.concatenate([pre_shape, post_shape], axis=0) out = _op.reshape(inputs[0], newshape) return out class Reshape(OnnxOpConverter): """Operator converter for Reshape.""" @classmethod def _impl_v1(cls, inputs, attr, params): return _op.reshape(inputs[0], attr["shape"]) @classmethod def _impl_v5(cls, inputs, attr, params): if get_name(inputs[1]) in params: shape = tuple(params[inputs[1].name_hint].numpy().astype("int32")) out = _op.reshape(inputs[0], shape) else: out = _op.reshape(*inputs) return out class DepthToSpace(OnnxOpConverter): """Operator converter for DepthToSpace.""" @classmethod def _impl_v11(cls, inputs, attr, params): block_size = int(attr["blocksize"]) mode = attr.get("mode", b"DCR").decode("utf-8") return _op.nn.depth_to_space(inputs[0], block_size, mode=mode) class SpaceToDepth(OnnxOpConverter): """Operator converter for SpaceToDepth.""" @classmethod def _impl_v1(cls, inputs, attr, params): block_size = int(attr["blocksize"]) return _op.nn.space_to_depth(inputs[0], block_size) class Concat(OnnxOpConverter): """Operator converter for Concat.""" @classmethod def _impl_v1(cls, inputs, args, params): return AttrCvt(op_name="concatenate")((inputs,), args) class Scale(OnnxOpConverter): """Operator converter for Scale.""" @classmethod def _impl_v1(cls, inputs, attr, params): scale = float(attr.get("scale", 1.0)) return inputs[0] * _expr.const(scale) class Selu(OnnxOpConverter): """Operator converter for Selu.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = float(attr.get("alpha", 1.67326319217681884765625)) gamma = float(attr.get("gamma", 1.05070102214813232421875)) return _expr.const(gamma) * ( _expr.const(-alpha) * _op.nn.relu(_expr.const(1.0) - _op.exp(inputs[0])) + _op.nn.relu(inputs[0]) ) class ScaledTanh(OnnxOpConverter): """Operator converter for ScaledTanh.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = float(attr.get("alpha", 1.0)) beta = float(attr.get("beta", 1.0)) return _op.tanh(_expr.const(beta) * inputs[0]) * _expr.const(alpha) class Shrink(OnnxOpConverter): """Operator converter for Shrink.""" @classmethod def _impl_v9(cls, inputs, attr, params): x = inputs[0] dtype = infer_type(x).checked_type.dtype lambd = _op.const(attr.get("lambd", 0.5), dtype=dtype) bias = _op.const(attr.get("bias", 0.0), dtype=dtype) zeros = _op.zeros_like(x) return _op.where(x < -lambd, x + bias, zeros) + _op.where(x > lambd, x - bias, zeros) class Softsign(OnnxOpConverter): """Operator converter for Softsign.""" @classmethod def _impl_v1(cls, inputs, attr, params): return inputs[0] / (_expr.const(1.0) + Absolute.get_converter(1)(inputs, attr, params)) class Sub(Elemwise): """Operator converter for Subtract.""" name = "subtract" class Sum(OnnxOpConverter): """Operator converter for Sum.""" @classmethod def _impl_v1(cls, inputs, attr, params): # Onnx Sum Operator for in_index in range(len(inputs) - 1): inputs[in_index + 1] = _op.add(inputs[in_index], inputs[in_index + 1]) return inputs[len(inputs) - 1] class Affine(OnnxOpConverter): """Operator converter for Affine transformation.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = _expr.const(attr.get("alpha", 1.0)) beta = _expr.const(attr.get("beta", 0.0)) return (alpha * inputs[0]) + beta class ThresholdedRelu(OnnxOpConverter): """Operator converter for ThresholdedRelu.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = float(attr.get("alpha", 1.0)) alpha_tensor = _op.full_like(inputs[0], fill_value=_expr.const(alpha)) mask = _op.greater(inputs[0], alpha_tensor).astype("float32") return inputs[0] * mask def _broadcast_constraint(): def _broadcast_check(attrs): if attrs.get("axis", None): return False return True return _broadcast_check, "Specifying broadcast axis not allowed." def _fully_connected(opset): def _impl(inputs, attr, params): # get number of channels channels = infer_channels(inputs[1], params) attr["units"] = channels return AttrCvt("dense", ignores=["axis", "axis_w"])(inputs, attr) return _impl class Upsample(OnnxOpConverter): """Operator converter for Upsample (nearest mode).""" @classmethod def _impl_v9(cls, inputs, attr, params): scales = attr.get("scales") input_shape = infer_shape(inputs[0]) dims = len(input_shape) if not scales: # Here we are going to higher OPSET version. assert len(inputs) == 2, "Upsample op takes 2 inputs, {} given".format(len(inputs)) if get_name(inputs[1]) in params: scales = params[inputs[1].name_hint].numpy() else: scales = inputs[1] if isinstance(scales, _expr.Constant): scales = list(scales.data.numpy()) if not isinstance(scales, _expr.Expr): assert scales[0] == 1.0 and scales[1] == 1.0 mode = attr.get("mode") if mode == b"nearest": method = "nearest_neighbor" elif mode == b"linear": method = "trilinear" if dims == 5 else "bilinear" else: raise tvm.error.OpAttributeInvalid( 'Value {} in attribute "mode" of operator Upsample is not valid.'.format(mode) ) # in 3d case, we use the purely static op if dims == 5: if isinstance(scales, _expr.Expr): scale_h = _op.take(scales, _op.const(3)) scale_w = _op.take(scales, _op.const(4)) scale_d = _op.take(scales, _op.const(1)) else: assert len(scales) == 5 scale_h = scales[-2] scale_w = scales[-1] scale_d = scales[-3] layout = "NCDHW" out = _op.nn.upsampling3d( inputs[0], scale_d, scale_h, scale_w, layout=layout, method=method, coordinate_transformation_mode="asymmetric", ) # in 2d case, use dynamic op else: if isinstance(scales, _expr.Expr): scale_h = _op.take(scales, _op.const(3)) scale_w = _op.take(scales, _op.const(4)) else: assert len(scales) == 4 scale_h = scales[-2] scale_w = scales[-1] layout = "NCHW" out = _op.nn.upsampling( inputs[0], scale_h, scale_w, layout=layout, method=method, align_corners=False, ) return out class Shape(OnnxOpConverter): """Operator converter for Shape.""" @classmethod def _impl_v1(cls, inputs, attr, params): return shape_of(inputs[0], "int64") class CumSum(OnnxOpConverter): """Operator converter for CumSum.""" @classmethod def _impl_v1(cls, inputs, attr, params): data = inputs[0] dim = inputs[1] if dim is not None: dim = int(infer_value(dim, params).numpy()) exclusive = attr.get("exclusive", 0) reverse = attr.get("reverse", 0) if reverse != 0: out = _op.reverse(data, axis=dim) out = _op.cumsum(out, axis=dim, exclusive=exclusive) return _op.reverse(out, axis=dim) return _op.cumsum(data, axis=dim, exclusive=exclusive) class Cast(OnnxOpConverter): """Operator converter for Cast.""" @classmethod def _impl_v1(cls, inputs, attr, params): return AttrCvt(op_name="cast", transforms={"to": "dtype"})(inputs, attr) @classmethod def _impl_v5(cls, inputs, attr, params): try: from onnx.mapping import TENSOR_TYPE_TO_NP_TYPE attr["to"] = str(TENSOR_TYPE_TO_NP_TYPE[attr["to"]]) except ImportError as e: raise ImportError("Unable to import onnx.mapping which is required {}".format(e)) return AttrCvt(op_name="cast", transforms={"to": "dtype"})(inputs, attr) class Unsqueeze(OnnxOpConverter): """Operator converter for Unsqueeze.""" @classmethod def run_calculation(cls, tensor, axes): axes = sorted(axes) for axis in axes: tensor = _op.expand_dims(tensor, axis=axis, num_newaxis=1) return tensor @classmethod def _impl_v1(cls, inputs, attr, params): return cls.run_calculation(inputs[0], attr["axes"]) @classmethod def _impl_v13(cls, inputs, attr, params): if isinstance(inputs[1], _expr.Constant): constant_axes = list(inputs[1].data.numpy()) constant_axes = list(map(int, constant_axes)) return cls.run_calculation(inputs[0], constant_axes) rank_input = len(infer_type(inputs[0]).checked_type.shape) num_new_axis = int(infer_type(inputs[1]).checked_type.shape[0]) axes = relay.split(inputs[1], num_new_axis).astuple() result = inputs[0] # TODO (AndrewZhaoLuo): investigate performance issues with consecutive # dynamic expand_dims on non-llvm targets. for i in range(num_new_axis): axis = relay.TupleGetItem(axes, i) # Unpack scalar axis = relay.reshape(axis, []) axis = relay.where( axis >= relay.const(0, "int64"), axis, axis + relay.const(rank_input, "int64") ) result = _op.expand_dims(result, axis) return result class Squeeze(OnnxOpConverter): """Operator converter for Squeeze.""" @classmethod def _impl_v1(cls, inputs, attr, params): axis = attr.get("axes", None) return _op.squeeze(inputs[0], axis) @classmethod def _impl_v13(cls, inputs, attr, params): axis = inputs[1] dtype = infer_type(axis).checked_type.dtype if isinstance(axis, _expr.Constant): constant_axes = list(inputs[1].data.numpy()) constant_axes = list(map(int, constant_axes)) return _op.squeeze(inputs[0], constant_axes) rank = _op.shape_of(_op.shape_of(inputs[0], dtype), dtype) axis = _op.where(axis < _op.const(0, dtype), axis + rank, axis) return _op.squeeze(inputs[0], fold_constant(axis)) class Split(OnnxOpConverter): """Operator converter for Split.""" @classmethod def _impl_v1(cls, inputs, attr, params): splits = attr.get("split", None) if splits is not None and len(splits) > 1: indices = [] index = 0 for i in splits[:-1]: index += i indices.append(index) # When splits isnt specified divide evenly over axis. else: indices = attr["tvm_custom"]["num_outputs"] output = _op.split(inputs[0], indices, attr.get("axis", 0)) # If the output of split is a single value, unpack if from the TupleWrapper if len(output) == 1: output = output[0] return output @classmethod def _impl_v13(cls, inputs, attr, params): splits = inputs[1] splits_rank = None if splits is not None: splits_rank = len(infer_shape(splits)) if splits is not None and splits_rank > 0: if isinstance(splits, _expr.Constant): splits = splits.data.asnumpy() indices = [] index = 0 for i in splits[:-1]: index += i indices.append(index) else: raise ValueError("Dynamic Split not yet supported") # When splits isnt specified divide evenly over axis. else: indices = attr["tvm_custom"]["num_outputs"] output = _op.split(inputs[0], indices, attr.get("axis", 0)) # If the output of split is a single value, unpack if from the TupleWrapper if len(output) == 1: output = output[0] return output class Slice(OnnxOpConverter): """Operator converter for Slice.""" @classmethod def _common(cls, starts, ends, axes): N = max(axes) + 1 new_axes = list(range(N)) new_starts = [0] * N new_ends = [np.iinfo(np.int32).max] * N for i, axis in enumerate(axes): new_starts[axis] = starts[i] new_ends[axis] = ends[i] return new_starts, new_ends, new_axes @classmethod def _impl_v1(cls, inputs, attr, params): if isinstance(attr["starts"], int): attr["starts"] = (attr["starts"],) attr["ends"] = (attr["ends"],) try: # Update the starts and ends according to axes if required. if isinstance(attr["axes"], int): attr["axes"] = (attr["axes"],) new_starts, new_ends, new_axes = cls._common(attr["starts"], attr["ends"], attr["axes"]) attr["axes"] = new_axes attr["starts"] = new_starts attr["ends"] = new_ends except KeyError: pass begin = list(attr["starts"]) end = list(attr["ends"]) return _op.strided_slice(inputs[0], begin=begin, end=end) @classmethod def _impl_v10(cls, inputs, attr, params): starts = inputs[1] ends = inputs[2] axes = inputs[3] steps = inputs[4] ishape = infer_shape(inputs[0]) data_rank = len(ishape) if axes is not None: # Normalize for negative axes axes_dtype = infer_type(axes).checked_type.dtype axes = fold_constant( _op.where( axes < _op.const(0, axes_dtype), axes + _op.const(data_rank, axes_dtype), axes ) ) def has_static_axes(): return ( isinstance(axes, _expr.Constant) and isinstance(starts, _expr.Constant) and isinstance(ends, _expr.Constant) and (steps is None or isinstance(steps, _expr.Constant)) ) if axes is not None and has_static_axes(): axes_np = axes.data.numpy().astype("int64") begin_np = starts.data.numpy().astype("int64") end_np = ends.data.numpy().astype("int64") if steps is None: strides_np = np.ones_like(begin_np).astype("int64") else: strides_np = steps.data.numpy().astype("int64") if all([isinstance(ishape[i], int) for i in axes_np]): return _op.strided_slice( inputs[0], list(begin_np), list(end_np), list(strides_np), axes=list(axes_np) ) # Update the starts and ends according to axes if required. if axes is not None: data_shape = shape_of(inputs[0], dtype=infer_type(ends).checked_type.dtype) starts = _op.scatter( _op.const([0] * data_rank, dtype=infer_type(starts).checked_type.dtype), axes, starts, axis=0, ) ends = _op.scatter(data_shape, axes, ends, axis=0) if steps is not None: steps = _op.scatter( _op.const([1] * data_rank, dtype=infer_type(steps).checked_type.dtype), axes, steps, axis=0, ) if steps is None: steps = _op.const([1] * data_rank, dtype=infer_type(starts).checked_type.dtype) return _op.strided_slice( inputs[0], fold_constant(starts), fold_constant(ends), fold_constant(steps) ) def normalize_gather_indices(data, indices, axis): """Make sure gather indicies aren't negative""" ind_dtype = infer_type(indices).checked_type.dtype # Normalize the indices to a positive range s = _op.take(_op.shape_of(data, dtype=ind_dtype), _op.const(axis, dtype="int64")) cond = fold_constant(indices < _op.const(0, ind_dtype)) if isinstance(cond, _expr.Constant): val = cond.data.numpy() if val.size == 1: cond = val.item() if cond: indices = indices + s return indices indices = _op.where(cond, indices + s, indices) return indices class Gather(OnnxOpConverter): """Operator converter for Gather.""" @classmethod def _impl_v1(cls, inputs, attr, params): axis = attr.get("axis", 0) data = inputs[0] indices = inputs[1] indices = normalize_gather_indices(data, indices, axis) return _op.take(data, indices, axis) class GatherElements(OnnxOpConverter): """Operator converter for GatherElements.""" @classmethod def _impl_v1(cls, inputs, attr, params): data = inputs[0] indices = inputs[1] axis = attr.get("axis", 0) indices = normalize_gather_indices(data, indices, axis) return _op.gather(data, axis, indices) class GatherND(OnnxOpConverter): """Operator converter for GatherND.""" @classmethod def _impl_common(cls, data, indices, batch_dims=0): indices_dims = len(infer_shape(indices)) indices_shape = infer_shape(indices) indices = _op.transpose(indices, axes=[-1] + list(range(indices_dims - 1))) index_rank = indices_shape[-1] return _op.gather_nd( data, indices, batch_dims=batch_dims, index_rank=index_rank, ) @classmethod def _impl_v1(cls, inputs, attr, params): return cls._impl_common(inputs[0], inputs[1]) @classmethod def _impl_v12(cls, inputs, attr, params): batch_dims = attr.get("batch_dims", 0) return cls._impl_common(inputs[0], inputs[1], batch_dims) class Compress(OnnxOpConverter): """Operator converter for compress""" @classmethod def _impl_v11(cls, inputs, attr, params): input_tensor, condition_tensor = inputs axis = attr.get("axis", None) # Change one hot tensor to indices e.g. [0, 1, 1, 0, 1] -> [1, 2, 4] condition_tensor = _op.reshape(_op.argwhere(condition_tensor), (-1,)) if axis is not None: return _op.take(input_tensor, condition_tensor, axis=axis) # if axis is None, flatten input tensor before selection input_tensor = _op.reshape(input_tensor, (-1,)) return _op.take(input_tensor, condition_tensor, axis=0) class Scatter(OnnxOpConverter): """Operator converter for Scatter.""" @classmethod def _impl_v1(cls, inputs, attr, params): axis = attr.get("axis", 0) return _op.scatter(inputs[0], inputs[1], inputs[2], axis) class ScatterND(OnnxOpConverter): """Operator converter for ScatterND.""" @classmethod def _impl_v11(cls, inputs, attr, params): indices_dim = len(infer_shape(inputs[1])) axes = list(range(indices_dim)) return _op.scatter_nd( inputs[0], _op.transpose(inputs[1], axes[-1:] + axes[:-1]), inputs[2], "update" ) class EyeLike(OnnxOpConverter): """Operator converter for EyeLike.""" @classmethod def _impl_v9(cls, inputs, attr, params): in_checked_type = infer_type(inputs[0]).checked_type in_dtype = in_checked_type.dtype in_shape = list(get_const_tuple(in_checked_type.shape)) dtype = attr.get("dtype", None) if dtype is None: dtype = in_dtype else: dtype = get_type(dtype) zeros = _op.zeros(in_shape, dtype) dim = in_shape[0] indices = _op.arange(_op.const(0), _op.const(dim), dtype="int32") ones = _op.full(_op.const(1), (dim,), dtype=dtype) k = _op.const(attr.get("k", 0), dtype="int32") return _op.scatter_nd(zeros, _op.stack([indices, indices + k], axis=0), ones, "update") class LRN(OnnxOpConverter): """Operator converter for Local Response Normalization.""" @classmethod def _impl_v1(cls, inputs, attr, params): """LRN support only NCHW format https://github.com/onnx/onnx/blob/master/docs/Operators.md#LRN """ axis = 1 alpha = attr.get("alpha", 0.0001) beta = attr.get("beta", 0.75) bias = attr.get("bias", 1.0) nsize = attr.get("size") attr = {"size": nsize, "axis": axis, "alpha": alpha, "beta": beta, "bias": bias} return AttrCvt("lrn")(inputs, attr) class Maximum(OnnxOpConverter): """Operator converter for Maximum.""" @classmethod def _impl_v1(cls, inputs, attr, params): if len(inputs) == 1: return inputs[0] _max = inputs[0] for i in range(1, len(inputs)): _max = AttrCvt("maximum")([_max, inputs[i]], {}) return _max class Minimum(OnnxOpConverter): """Operator converter for Minimum.""" @classmethod def _impl_v1(cls, inputs, attr, params): if len(inputs) == 1: return inputs[0] _min = inputs[0] for i in range(1, len(inputs)): _min = AttrCvt("minimum")([_min, inputs[i]], {}) return _min class Mean(OnnxOpConverter): """Operator converter for Mean.""" @classmethod def _impl_v1(cls, inputs, attr, params): if len(inputs) == 1: return inputs[0] # avoid overflow concat = _op.concatenate([_op.expand_dims(x, axis=0) for x in inputs], axis=0) return _op.mean(concat, axis=0, keepdims=False) class HardSigmoid(OnnxOpConverter): """Operator converter for HardSigmoid.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = attr.get("alpha", 0.2) beta = attr.get("beta", 0.5) transformX = (inputs[0] * _expr.const(alpha)) + _expr.const(beta) attr = {"a_min": 0, "a_max": 1} return AttrCvt("clip")([transformX], attr) class Reduce(OnnxOpConverter): """Operator converter for reduce ops.""" name = "" @classmethod def run_calculation(cls, inputs, axis, keepdims): attr = {"axis": axis, "keepdims": keepdims} return AttrCvt(cls.name)(inputs, attr) @classmethod def _impl_v1(cls, inputs, attr, params): if "axes" in attr: axis = attr.get("axes", 0) else: axis_len = len(infer_shape(inputs[0])) axis = list(range(axis_len)) return cls.run_calculation(inputs, axis, attr.get("keepdims", True)) @classmethod def _impl_v12(cls, inputs, attr, params): if len(inputs) == 2: if isinstance(inputs[1], _expr.Constant): # Get axis and unpack scalar constant_axis = int(inputs[1].data.numpy()[0]) return cls.run_calculation([inputs[0]], constant_axis, attr.get("keepdims", True)) raise ValueError("Dynamic Reduce is not supported yet!") return cls._impl_v1(inputs, attr, params) class ReduceMax(Reduce): """Operator converter for ReduceMax.""" name = "max" class ReduceMin(Reduce): """Operator converter for ReduceMin.""" name = "min" class ReduceSum(Reduce): """Operator converter for ReduceSum.""" name = "sum" class ReduceMean(Reduce): """Operator converter for ReduceMean.""" name = "mean" class ReduceProd(Reduce): """Operator converter for ReduceProd.""" name = "prod" class ReduceLogSumExp(Reduce): """Operator converter for ReduceLogSumExp.""" name = "logsumexp" class ReduceSumSquare(OnnxOpConverter): """Operator converter for ReduceSumSquare.""" @classmethod def _impl_v1(cls, inputs, attr, params): if "axes" in attr: axis = attr.get("axes", 0) else: axis_len = len(infer_shape(inputs[0])) axis = list(range(axis_len)) attr = {"axis": axis, "keepdims": attr.get("keepdims", True)} inputs[0] = inputs[0] * inputs[0] return AttrCvt("sum")(inputs, attr) class ReduceL1(OnnxOpConverter): """Operator converter for ReduceL1.""" @classmethod def _impl_v1(cls, inputs, attr, params): if "axes" in attr: axis = attr.get("axes", 0) else: axis_len = len(infer_shape(inputs[0])) axis = list(range(axis_len)) attr = {"axis": axis, "keepdims": attr.get("keepdims", True)} inputs[0] = _op.abs(inputs[0]) return AttrCvt("sum")(inputs, attr) class ReduceL2(OnnxOpConverter): """Operator converter for ReduceL2.""" @classmethod def _impl_v1(cls, inputs, attr, params): if "axes" in attr: axis = attr.get("axes", 0) else: axis_len = len(infer_shape(inputs[0])) axis = list(range(axis_len)) attr = {"axis": axis, "keepdims": attr.get("keepdims", True)} inputs[0] = inputs[0] * inputs[0] out = AttrCvt("sum")(inputs, attr) return _op.sqrt(out) class ReduceLogSum(OnnxOpConverter): """Operator converter for ReduceLogSum.""" @classmethod def _impl_v1(cls, inputs, attr, params): if "axes" in attr: axis = attr.get("axes", 0) else: axis_len = len(infer_shape(inputs[0])) axis = list(range(axis_len)) attr = {"axis": axis, "keepdims": attr.get("keepdims", True)} out = AttrCvt("sum")(inputs, attr) return _op.log(out) class ArgMax(OnnxOpConverter): """Operator converter for ArgMax.""" @classmethod def _impl_v13(cls, inputs, attr, params): axis = attr.get("axis", 0) keepdims = attr.get("keepdims", True) select_last_index = attr.get("select_last_index", False) attr = {"axis": axis, "keepdims": keepdims, "select_last_index": select_last_index} return _op.cast(AttrCvt("argmax")(inputs, attr), "int64") class ArgMin(OnnxOpConverter): """Operator converter for ArgMin.""" @classmethod def _impl_v13(cls, inputs, attr, params): axis = attr.get("axis", 0) keepdims = attr.get("keepdims", True) select_last_index = attr.get("select_last_index", False) attr = {"axis": axis, "keepdims": keepdims, "select_last_index": select_last_index} return _op.cast(AttrCvt("argmin")(inputs, attr), "int64") class Softmax(OnnxOpConverter): """Operator converter for Softmax.""" @classmethod def _impl_v1(cls, inputs, attr, params): axis = attr.get("axis", 1) ndim = len(infer_shape(inputs[0])) if axis < 0: axis += ndim axes = list(range(axis, ndim)) x = inputs[0] m = _op.max(x, axes, keepdims=True) e = _op.exp(x - m) return e / _op.sum(e, axes, keepdims=True) @classmethod def _impl_v13(cls, inputs, attr, params): axis = attr.get("axis", -1) ndim = len(infer_shape(inputs[0])) if axis < 0: axis += ndim axes = [axis] x = inputs[0] m = _op.max(x, axes, keepdims=True) e = _op.exp(x - m) return e / _op.sum(e, axes, keepdims=True) class LogSoftmax(OnnxOpConverter): """Operator converter for Softmax.""" @classmethod def run_calculation(cls, x, axes): """Run the calculation for Log Softmax calculation.""" m = _op.max(x, axes, keepdims=True) e = _op.exp(x - m) s = _op.sum(e, axes, keepdims=True) return x - m - _op.log(s) @classmethod def _impl_v1(cls, inputs, attr, params): axis = attr.get("axis", 1) ndim = len(infer_shape(inputs[0])) if axis < 0: axis += ndim axes = list(range(axis, ndim)) return cls.run_calculation(inputs[0], axes) @classmethod def _impl_v13(cls, inputs, attr, params): axis = attr.get("axis", -1) ndim = len(infer_shape(inputs[0])) if axis < 0: axis += ndim axes = [axis] return cls.run_calculation(inputs[0], axes) class Hardmax(OnnxOpConverter): """Operator converter for Hardmax.""" @classmethod def _impl_v1(cls, inputs, attr, params): axis = attr.get("axis", 1) ndim = len(infer_shape(inputs[0])) if axis < 0: axis += ndim dtype = infer_type(inputs[0]).checked_type.dtype if axis == 0: pre = _op.const([1], "int64") else: pre = _op.prod( _op.strided_slice(shape_of(inputs[0]), [0], [axis], [1]), axis=0, keepdims=True ) post = _op.prod( _op.strided_slice(shape_of(inputs[0]), [axis], [2147483647], [1]), axis=0, keepdims=True ) newshape = _op.concatenate([pre, post], axis=0) x = _op.reshape(inputs[0], fold_constant(newshape)) argmax = _op.argmax(x, axis=1) onehot = _op.one_hot( argmax, _op.const(1.0, dtype), _op.const(0.0, dtype), fold_constant(_op.take(shape_of(x), _op.const([1], "int64"))), 1, dtype, ) return _op.reshape(onehot, shape_of(inputs[0])) @classmethod def _impl_v13(cls, inputs, attr, params) -> relay.Expr: inferred_type = infer_type(inputs[0]) dtype = inferred_type.checked_type.dtype ndim = len(inferred_type.checked_type.shape) axis = attr.get("axis", -1) % ndim argmax = _op.argmax(inputs[0], axis=axis) return _op.one_hot( argmax, _op.const(1.0, dtype), _op.const(0.0, dtype), fold_constant(_op.take(shape_of(inputs[0]), _op.const([axis], "int64"))), axis, dtype, ) class OneHot(OnnxOpConverter): """Operator converter for OneHot.""" @classmethod def _impl_v9(cls, inputs, attr, params): # Extract relay one_hot inputs. indices, depth, values = inputs ndim = len(infer_shape(indices)) # Split onnx on off values into two separate expressions. off_value, on_value = _op.take(values, _op.const(0)), _op.take(values, _op.const(1)) # Extract the datatype of the output from on_value. dtype = infer_type(on_value).checked_type.dtype ind_dtype = infer_type(indices).checked_type.dtype # Normalize the indices to a positive range indices = _op.where( indices < _op.const(0, ind_dtype), indices + _op.cast(depth, ind_dtype), indices ) # set default value when axis is not set in the model if "axis" not in attr: attr["axis"] = -1 axis = attr["axis"] if axis < 0: axis += ndim + 1 return _op.one_hot(indices, on_value, off_value, depth, axis, dtype=dtype) class ConstantOfShape(OnnxOpConverter): """Operator converter for ConstantOfShape.""" @classmethod def _impl_v9(cls, inputs, attr, params): if "value" in attr: np_value = get_numpy(attr.pop("value"))[0] value = _expr.const(np_value) dtype = np_value.dtype.name else: value = _expr.const(0) dtype = "float32" output = _op.full(value, inputs[0], dtype=dtype) return output class Constant(OnnxOpConverter): """Operator converter for ConstantOfShape.""" @classmethod def _impl_v9(cls, inputs, attr, params): if "value" not in attr: raise tvm.errors.OpAttributeRequired("no value in Constant") value = attr.pop("value") # Constants may rarely have string types. These are likely exported # from other frameworks and not actually used in TVM. We'll just use # a zero valued constant for compatibility. if isinstance(value, bytes): np_value = np.asarray([0]).astype("int64") else: np_value = get_numpy(value) dtype = np_value.dtype.name value = _expr.const(np_value, dtype) return value class Sign(OnnxOpConverter): """Operator converter for Sign.""" @classmethod def _impl_v1(cls, inputs, attr, params): return _op.sign(inputs[0]) class Equal(Elemwise): """Operator converter for Equal.""" name = "equal" class Not(Elemwise): """Operator converter for Not.""" @classmethod def _impl_v1(cls, inputs, attr, params): return _op.logical_not(inputs[0]) class And(Elemwise): """Operator converter for And.""" @classmethod def _impl_v1(cls, inputs, attr, params): return _op.logical_and(inputs[0], inputs[1]) class Tile(Elemwise): """Operator converter for Tile""" @classmethod def _impl_v6(cls, inputs, attr, params): return _op.tile(inputs[0], inputs[1]) class Erf(OnnxOpConverter): """Operator converter for Erf""" @classmethod def _impl_v1(cls, inputs, attr, params): return _op.erf(inputs[0]) class Where(OnnxOpConverter): """Operator converter for Where""" @classmethod def _impl_v9(cls, inputs, attr, params): condition_rank = len(infer_shape(inputs[0])) x_rank = len(infer_shape(inputs[1])) y_rank = len(infer_shape(inputs[2])) ranks = [condition_rank, x_rank, y_rank] # If one rank is longer than others, then we can broadcast # to that shape. max_rank = max(ranks) max_rank_idxs = [i for i, x in enumerate(ranks) if x == max_rank] broadcast_shape = shape_of(inputs[max_rank_idxs[0]]) # If two or more inputs have the same rank, compute the broadcast # shape by taking the maximum value of each dimensions. if len(max_rank_idxs) > 1: for idx in max_rank_idxs: broadcast_shape = _op.maximum(broadcast_shape, shape_of(inputs[idx])) broadcast_shape = fold_constant(broadcast_shape) condition = _op.broadcast_to(inputs[0], broadcast_shape) x = _op.broadcast_to(inputs[1], broadcast_shape) y = _op.broadcast_to(inputs[2], broadcast_shape) return _op.where(condition, x, y) class Or(Elemwise): """Operator converter for Or.""" @classmethod def _impl_v7(cls, inputs, attr, params): return _op.logical_or(inputs[0], inputs[1]) class Expand(OnnxOpConverter): """Operator converter for Expand.""" @classmethod def _impl_v8(cls, inputs, attr, params): dtype = infer_type(inputs[1]).checked_type.dtype in_shape = shape_of(inputs[0], dtype=dtype) shape = inputs[1] # Currently 'op.broadcast_to' expect the rank of the given 'shape' # (the 2nd input) is always higher than that of the given 'input' (the 1st input) # However, ONNX Expand supports multi-directional broadcasting, which allows # above pattern and also some extent of 'shape' can be smaller than the corresponding # extent of 'input'. In this case, the extent of 'shape' must be 1. # https://github.com/onnx/onnx/blob/master/docs/Broadcasting.md # In above cases, we cannot directorly apply 'op.broadcast_to' instead of 'expand' # so, here we solved this problem by expanding the given 'shape' itself. def expand_shape(in_shape, shape): """A function expands the shape when the rank is lower than that of the given intput. Also it replaces the extent of the shape with the corresponding extent of the intput when it is 1. """ in_dims = infer_shape(in_shape)[0] new_dims = infer_shape(shape)[0] if in_dims < new_dims: in_shape = _op.concatenate( [ _expr.const( [ 1, ] * (new_dims - in_dims), dtype=dtype, ), in_shape, ], axis=0, ) elif new_dims > in_dims: shape = _op.concatenate( [ _expr.const( [ 1, ] * (in_dims - new_dims), dtype=dtype, ), shape, ], axis=0, ) new_shape = _op.maximum(in_shape, shape) return new_shape shape = fold_constant(expand_shape(in_shape, shape)) return _op.broadcast_to(inputs[0], shape=shape) class RNN(OnnxOpConverter): """Operator converter for RNNs such as LSTM and GRU.""" @classmethod def _activation_helper(cls, activation, alpha, beta): convert_map = _get_convert_map(1) attrs = {} if alpha is not None: attrs["alpha"] = alpha if beta is not None: attrs["beta"] = beta return lambda x: convert_map[activation.decode("utf-8")]([x], attrs, {}) @classmethod def _activation_needs_alpha(cls, activation): needs_alpha = [ "Affine", "LeakyRelu", "ThresholdedRelu", "ScaledTanh", "HardSigmoid", "Elu", ] return activation.decode("utf-8") in needs_alpha @classmethod def _activation_needs_beta(cls, activation): needs_beta = [ "Affine", "ScaledTanh", "HardSigmoid", ] return activation.decode("utf-8") in needs_beta class LSTM(RNN): """Operator converter for LSTM""" @classmethod def bidir_lstm_cell( cls, input_seqs, weight_dicts, acts, ): """ Bidirectional LSTM cell """ seq_len = len(input_seqs) forward_outputs, fw_H_t, fw_C_t = lstm_cell( input_seqs, **weight_dicts[0], f_act=acts[0], g_act=acts[1], h_act=acts[2], ) reverse_outputs, rev_H_t, rev_C_t = lstm_cell( input_seqs, **weight_dicts[1], f_act=acts[3], g_act=acts[4], h_act=acts[5], backwards=True, ) final_outputs = [] for i in range(seq_len): final_outputs.append( _op.stack([forward_outputs[i], reverse_outputs[seq_len - 1 - i]], axis=0) ) return ( _op.stack(final_outputs, axis=0), _op.stack([fw_H_t, rev_H_t], axis=0), _op.stack([fw_C_t, rev_C_t], axis=0), ) @classmethod def _impl_v7(cls, inputs, attr, params): # Unpack inputs, note that if optional and not provided then value will be None. X = inputs[0] Wp = inputs[1] Rp = inputs[2] Bp = inputs[3] # Sequence length currently unused as it can be inferred from shapes. # sequence_lens = inputs['sequence_lens'] Hp_0 = inputs[5] Cp_0 = inputs[6] Pp = inputs[7] num_directions = infer_shape(Wp)[0] W_dtype = infer_type(Wp).checked_type.dtype if num_directions not in [1, 2]: raise ValueError("num_directions must be either 1 or 2!") X_shape = infer_shape(X) hidden_size = infer_shape(Rp)[-1] batch_size = X_shape[1] # Initialize state if not provided. # Otherwise remove bidirectional axis. if Hp_0 is None: Hp_0 = _op.zeros((num_directions, batch_size, hidden_size), W_dtype) if Cp_0 is None: Cp_0 = _op.zeros((num_directions, batch_size, hidden_size), W_dtype) if "activations" in attr: activations = attr["activations"] if len(activations) != 3 * num_directions: raise NotImplementedError( f"LSTM assumes 3 * num_directions activation functions are provided" ) alpha_loc = 0 alphas = attr.get("activation_alpha", []) if isinstance(alphas, float): alphas = [alphas] beta_loc = 0 betas = attr.get("activation_beta", []) if isinstance(betas, float): betas = [betas] acts = [] for i in range(3 * num_directions): alpha = None beta = None activation = activations[i] if cls._activation_needs_alpha(activation) and len(alphas) > alpha_loc: alpha = alphas[alpha_loc] alpha_loc += 1 if cls._activation_needs_beta(activation) and len(betas) > beta_loc: beta = betas[beta_loc] beta_loc += 1 acts.append(cls._activation_helper(activation, alpha, beta)) else: acts = [_op.sigmoid, _op.tanh, _op.tanh] * num_directions # TODO (vvchernov): It can be replaced by _op.split if issue #8412 is resolved X_steps = unbind(X, axis=0) H_ts = _op.split(Hp_0, num_directions) C_ts = _op.split(Cp_0, num_directions) Ws = _op.split(Wp, num_directions) Rs = _op.split(Rp, num_directions) if Bp is not None: Bs = _op.split(Bp, num_directions) if Pp is not None: p_i, p_o, p_f = _op.split(Pp, 3, axis=1) p_is = _op.split(p_i, num_directions) p_fs = _op.split(p_f, num_directions) p_os = _op.split(p_o, num_directions) weights_dicts = [] for i in range(num_directions): weights_dict = {} weights_dict["hidden_state"] = _op.squeeze(H_ts[i], axis=[0]) weights_dict["cell_state"] = _op.squeeze(C_ts[i], axis=[0]) # Weights permutation: onnx format i-o-f-c, lstm cell format i-f-c-o mati, mato, matf, matc = _op.split(_op.squeeze(Ws[i], axis=[0]), 4) weights_dict["w_inp"] = _op.concatenate([mati, matf, matc, mato], axis=0) mati, mato, matf, matc = _op.split(_op.squeeze(Rs[i], axis=[0]), 4) weights_dict["w_hid"] = _op.concatenate([mati, matf, matc, mato], axis=0) if Bp is not None: Bi, Bh = _op.split(Bs[i], 2, -1) mati, mato, matf, matc = _op.split(_op.squeeze(Bi, axis=[0]), 4) weights_dict["b_inp"] = _op.concatenate([mati, matf, matc, mato], axis=0) mati, mato, matf, matc = _op.split(_op.squeeze(Bh, axis=[0]), 4) weights_dict["b_hid"] = _op.concatenate([mati, matf, matc, mato], axis=0) if Pp is not None: weights_dict["p_i"] = _op.squeeze(p_is[i], axis=[0]) weights_dict["p_f"] = _op.squeeze(p_fs[i], axis=[0]) weights_dict["p_o"] = _op.squeeze(p_os[i], axis=[0]) weights_dicts.append(weights_dict) if num_directions == 2: output, H, C = LSTM.bidir_lstm_cell( input_seqs=X_steps, weight_dicts=weights_dicts, acts=acts, ) else: # outputs shape = [seqs_num, (batch_size, hidden_size)] outputs, H, C = lstm_cell( input_seqs=X_steps, **weights_dicts[0], f_act=acts[0], g_act=acts[1], h_act=acts[2], ) # output shape = (seqs_num, num_directions, batch_size, hidden_size) output = _op.expand_dims(_op.stack(outputs, axis=0), axis=1) H = _op.expand_dims(H, axis=0) C = _op.expand_dims(C, axis=0) return _expr.TupleWrapper(_expr.Tuple((output, H, C)), 3) class GRU(RNN): """Operator convert for GRU""" @classmethod def bidir_gru_cell( cls, input_seqs, weight_dicts, acts, ): """ Bidirectional GRU cell """ seq_len = len(input_seqs) forward_outputs, fw_H_t = gru_cell( input_seqs, **weight_dicts[0], rz_act=acts[0], n_act=acts[1], ) reverse_outputs, rev_H_t = gru_cell( input_seqs, **weight_dicts[1], rz_act=acts[2], n_act=acts[3], backwards=True, ) final_outputs = [] for i in range(seq_len): final_outputs.append( _op.stack([forward_outputs[i], reverse_outputs[seq_len - 1 - i]], axis=0) ) return ( _op.stack(final_outputs, axis=0), _op.stack([fw_H_t, rev_H_t], axis=0), ) @classmethod def _impl_v7(cls, inputs, attr, params): # Unpack inputs, note that if optional and not provided then value will be None. X = inputs[0] Wp = inputs[1] Rp = inputs[2] Bp = inputs[3] # Sequence length currently unused as it can be inferred from shapes. # sequence_lens = inputs['sequence_lens'] Hp_0 = inputs[5] linear_before_reset = attr.get("linear_before_reset", 0) num_directions = infer_shape(Wp)[0] W_dtype = infer_type(Wp).checked_type.dtype if num_directions not in [1, 2]: raise ValueError("num_directions must be either 1 or 2!") X_shape = infer_shape(X) hidden_size = infer_shape(Rp)[-1] batch_size = X_shape[1] if Hp_0 is None: Hp_0 = _op.zeros((num_directions, batch_size, hidden_size), W_dtype) if "activations" in attr: activations = attr["activations"] if len(activations) != 2 * num_directions: raise NotImplementedError( "GRU assumes 2 * num_directions activation functions are provided" ) alpha_loc = 0 alphas = attr.get("activation_alpha", []) if isinstance(alphas, float): alphas = [alphas] beta_loc = 0 betas = attr.get("activation_beta", []) if isinstance(betas, float): betas = [betas] acts = [] for i in range(2 * num_directions): alpha = None beta = None activation = activations[i] if cls._activation_needs_alpha(activation) and len(alphas) > alpha_loc: alpha = alphas[alpha_loc] alpha_loc += 1 if cls._activation_needs_beta(activation) and len(betas) > beta_loc: beta = betas[beta_loc] beta_loc += 1 acts.append(cls._activation_helper(activation, alpha, beta)) else: acts = [_op.sigmoid, _op.tanh] * 2 # TODO (vvchernov): It can be replaced by _op.split if issue #8412 is resolved X_steps = unbind(X, axis=0) H_ts = _op.split(Hp_0, num_directions) Ws = _op.split(Wp, num_directions) Rs = _op.split(Rp, num_directions) if Bp is not None: Bs = _op.split(Bp, num_directions) weights_dicts = [] for i in range(num_directions): weights_dict = {} weights_dict["hidden_state"] = _op.squeeze(H_ts[i], axis=[0]) weights_dict["linear_before_reset"] = linear_before_reset # Weights permutation: onnx format i-o-f-c, lstm cell format i-f-c-o matz, matr, matn = _op.split(_op.squeeze(Ws[i], axis=[0]), 3) weights_dict["w_inp"] = _op.concatenate([matr, matz, matn], axis=0) matz, matr, matn = _op.split(_op.squeeze(Rs[i], axis=[0]), 3) weights_dict["w_hid"] = _op.concatenate([matr, matz, matn], axis=0) if Bp is not None: Bi, Bh = _op.split(Bs[i], 2, -1) matz, matr, matn = _op.split(_op.squeeze(Bi, axis=[0]), 3) weights_dict["b_inp"] = _op.concatenate([matr, matz, matn], axis=0) matz, matr, matn = _op.split(_op.squeeze(Bh, axis=[0]), 3) weights_dict["b_hid"] = _op.concatenate([matr, matz, matn], axis=0) weights_dicts.append(weights_dict) if num_directions == 2: output, H = GRU.bidir_gru_cell( input_seqs=X_steps, weight_dicts=weights_dicts, acts=acts, ) else: # outputs shape = [seqs_num, (batch_size, hidden_size)] outputs, H = gru_cell( input_seqs=X_steps, **weights_dicts[0], rz_act=acts[0], n_act=acts[1], ) # output shape = (seqs_num, num_directions, batch_size, hidden_size) output = _op.expand_dims(_op.stack(outputs, axis=0), axis=1) H = _op.expand_dims(H, axis=0) return _expr.TupleWrapper(_expr.Tuple((output, H)), 2) class Resize(OnnxOpConverter): """Operator converter for Resize""" @classmethod def _impl_v10(cls, inputs, attr, params): mode = attr.get("mode").decode("ascii") if mode == "nearest": method = "nearest_neighbor" elif mode == "linear": method = "linear" elif mode == "cubic": method = "cubic" else: raise tvm.error.OpAttributeInvalid( 'Value {} in attribute "mode" of operator Resize is not valid.'.format(mode) ) scale = inputs[1] size = _op.cast(shape_of(inputs[0]), infer_type(scale).checked_type.dtype) * scale ndims = len(infer_shape(inputs[0])) out = None if ndims == 3: out_size = fold_constant(_op.strided_slice(size, [2], [3])) out = _op.image.resize1d(inputs[0], out_size, None, "NCW", method, "asymmetric") elif ndims == 4: out_size = fold_constant(_op.strided_slice(size, [2], [4])) out = _op.image.resize2d(inputs[0], out_size, None, "NCHW", method, "asymmetric") elif ndims == 5: out_size = fold_constant(_op.strided_slice(size, [2], [5])) out = _op.image.resize3d(inputs[0], out_size, None, "NCDHW", method, "asymmetric") else: raise NotImplementedError("Resize only supports 3, 4, or 5 dims") return out @classmethod def _impl_v11(cls, inputs, attr, params): scale = inputs[2] scale_shape = infer_shape(scale) if len(inputs) == 4: assert ( len(scale_shape) == 0 or scale_shape[0] == 0 ), "One of scale or size should be passed, not both." size = inputs[3] else: assert len(scale_shape) != 0, "One of scale or size should be passed." size = _op.cast(shape_of(inputs[0]), infer_type(scale).checked_type.dtype) * scale return cls.v11_13_common(inputs, size, attr, params) @classmethod def _impl_v13(cls, inputs, attr, params): scale = inputs[2] size = inputs[3] # Some versions of onnx exporters produce an opset 13 model with the opset 11 # resize op, handle that edge case if scale is not None and size is not None: return cls._impl_v11(inputs, attr, params) if size is not None: assert scale is None, "One of scale or size should be passed, not both." else: scale_type = infer_type(scale) scale_shape = scale_type.checked_type.shape scale_dtype = scale_type.checked_type.dtype assert len(scale_shape) != 0, "One of scale or size should be passed." size = _op.cast(shape_of(inputs[0]), scale_dtype) * scale return cls.v11_13_common(inputs, size, attr, params) @classmethod def v11_13_common(cls, inputs, size, attr, params): """ Resize v11 and Resize v13 are identical except in how they handle the passing of scale and size. This utility provides the implementation for both """ roi = inputs[1] if roi is not None and infer_shape(roi)[0] == 0: roi = None ndims = len(infer_shape(inputs[0])) mode = attr.get("mode").decode("ascii") if mode == "nearest": method = "nearest_neighbor" elif mode == "linear": method = "linear" elif mode == "cubic": method = "cubic" else: raise tvm.error.OpAttributeInvalid( 'Value {} in attribute "mode" of operator Resize is not valid.'.format(mode) ) coord_trans = attr.get("coordinate_transformation_mode", b"half_pixel").decode("ascii") nearest_mode = attr.get("nearest_mode", b"round_prefer_floor").decode("ascii") alpha = attr.get("cubic_coeff_a", -0.75) exclude = attr.get("exclude_outside", 0) extrapolation_value = attr.get("extrapolation_value", 0.0) if roi is not None: roi = fold_constant( _op.concatenate( [ _op.strided_slice(roi, [2], [ndims]), _op.strided_slice(roi, [ndims + 2], [2 * ndims]), ], axis=0, ) ) out_size = fold_constant(_op.strided_slice(size, [2], [ndims])) out = None if ndims == 3: out = _op.image.resize1d( inputs[0], out_size, roi, "NCW", method, coord_trans, nearest_mode, alpha, exclude, extrapolation_value, ) elif ndims == 4: out = _op.image.resize2d( inputs[0], out_size, roi, "NCHW", method, coord_trans, nearest_mode, alpha, exclude, extrapolation_value, ) elif ndims == 5: out = _op.image.resize3d( inputs[0], out_size, roi, "NCDHW", method, coord_trans, nearest_mode, alpha, exclude, extrapolation_value, ) else: raise NotImplementedError("Resize only supports 3, 4, or 5 dims") return out class NonZero(OnnxOpConverter): """Operator converter for NonZero""" @classmethod def _impl_v9(cls, inputs, attr, params): if len(inputs) > 1: raise ValueError("Expect 1 input only") output = AttrCvt(op_name="argwhere")(inputs, attr, params) # ONNX NonZero always outputs int64 output = _op.cast(output, "int64") return _op.transpose(output, axes=(1, 0)) class ReverseSequence(OnnxOpConverter): """Operator converter for ReverseSequence""" @classmethod def _impl_v10(cls, inputs, attr, params): return _op.reverse_sequence(inputs[0], inputs[1], attr["time_axis"], attr["batch_axis"]) class TopK(OnnxOpConverter): """Operator converter for TopK""" @classmethod def _impl_v1(cls, inputs, attr, params): if len(inputs) != 2: raise ValueError("Expect 2 input only") axis = attr.get("axis", -1) largest = attr.get("largest", 1) if largest == 0: # TODO(mbrookhart): optimize this by adding a smallest attribute to topi if this # ever becomes a bottleneck ndim = len(infer_shape(inputs[0])) if axis < 0: axis += ndim sort = _op.sort(inputs[0], axis=axis) argsort = _op.argsort(inputs[0], axis=axis, dtype="int64") begin = [0] * ndim stride = [1] * ndim end = _op.concatenate( [ _op.const([np.iinfo(np.int64).max] * axis, dtype="int64"), inputs[1], _op.const([np.iinfo(np.int64).max] * (ndim - axis - 1), dtype="int64"), ], axis=0, ) return _expr.TupleWrapper( _expr.Tuple( [ _op.strided_slice(sort, begin, end, stride), _op.strided_slice(argsort, begin, end, stride), ] ), 2, ) return _op.topk(inputs[0], inputs[1], axis=axis, dtype="int64") class Range(OnnxOpConverter): """Operator converter for Range""" @classmethod def _impl_v1(cls, inputs, attr, params): if len(inputs) != 3: raise ValueError("Expect 3 input only") return _op.arange( inputs[0], inputs[1], inputs[2], dtype=infer_type(inputs[0]).checked_type.dtype ) class IsInf(OnnxOpConverter): """Operator converter for IsInf""" @classmethod def _impl_v10(cls, inputs, attr, params): detect_negative = attr.get("detect_negative", 1) detect_positive = attr.get("detect_positive", 1) dtype = infer_type(inputs[0]).checked_type.dtype isinf = _op.isinf(inputs[0]) if not detect_negative: isinf = isinf * (inputs[0] > _op.const(0, dtype)) if not detect_positive: isinf = isinf * (inputs[0] < _op.const(0, dtype)) return isinf class Celu(OnnxOpConverter): """Operator convereter for celu""" @classmethod def _impl_v12(cls, inputs, attr, params): x = inputs[0] dtype = infer_type(x).checked_type.dtype alpha = _op.const(attr.get("alpha", 1.0), dtype) zero = _op.const(0, dtype) one = _op.const(1, dtype) out = _op.maximum(zero, x) + _op.minimum(zero, alpha * (_op.exp(x / alpha) - one)) return out class MaxRoiPool(OnnxOpConverter): """Operator converter for MaxRoiPool.""" @classmethod def _impl_v1(cls, inputs, attr, params): assert len(inputs) == 2, "MMaxRoiPool op take 2 inputs, {} given".format(len(inputs)) data = inputs[0] rois = inputs[1] pooled_shape = attr.get("pooled_shape") spatial_scale = attr.get("spatial_scale", 1.0) return _vision.roi_pool(data, rois, pooled_shape, spatial_scale) class RoiAlign(OnnxOpConverter): """Operator converter for RoiAlign.""" @classmethod def _impl_v1(cls, inputs, attr, params): if len(inputs) != 3: raise ValueError("Expect 3 inputs only") x = inputs[0] rois = inputs[1] batch_indices = inputs[2] mode = attr.get("mode", b"avg") if mode not in (b"avg", b"max"): raise NotImplementedError("RoiAlign in Relay only uses avg and max modes") output_height = attr.get("output_height", 1) output_width = attr.get("output_width", 1) sampling_ratio = attr.get("sampling_ratio", 0) spatial_scale = attr.get("spatial_scale", 1.0) batch_indices = _op.expand_dims(batch_indices, axis=1, num_newaxis=1) batch_indices = _op.cast(batch_indices, infer_type(rois).checked_type.dtype) rois = _op.concatenate([batch_indices, rois], 1) return _vision.roi_align( x, rois, [output_height, output_width], spatial_scale, sampling_ratio, mode=mode ) class Clip(OnnxOpConverter): """Operator converter for Clip.""" @staticmethod def convert_attributes(inputs, attr, params): convert = AttrCvt("clip", transforms={"min": "a_min", "max": "a_max"}) return convert(inputs, attr, params) @classmethod def _impl_v1(cls, inputs, attr, params): if "min" not in attr: attr["min"] = -np.inf if "max" not in attr: attr["max"] = np.inf return Clip.convert_attributes(inputs, attr, params) @classmethod def _impl_v11(cls, inputs, attr, params): if len(inputs) == 3 and isinstance(inputs[2], _expr.Constant): attr["max"] = inputs[2].data.numpy().item() inputs = inputs[0:2] if len(inputs) >= 2 and isinstance(inputs[1], _expr.Constant): attr["min"] = inputs[1].data.numpy().item() inputs = inputs[0:1] if "min" in attr and "max" in attr: return Clip.convert_attributes(inputs, attr, params) assert len(inputs) <= 3, "Clip-11 takes up to 3 inputs, input, min, max" result = inputs[0] for i, op in enumerate([_op.tensor.maximum, _op.tensor.minimum]): if i < len(inputs) - 1: if inputs[i + 1] is not None: result = op(result, inputs[i + 1]) return result class Softplus(OnnxOpConverter): """Operator converter for Softplus.""" @classmethod def _impl_v1(cls, inputs, attr, params): data = inputs[0] data_dtype = infer_type(data).checked_type.dtype data = _op.exp(data) + _expr.const(1, dtype=data_dtype) return _op.log(data) class Loop(OnnxOpConverter): """Operator converter for Loop""" @classmethod def _impl_v11(cls, inputs, attr, params): max_loop_count = inputs[0] cond = inputs[1] loop_deps = inputs[2:] num_deps = len(loop_deps) # Create a copy of the body function to prevent the original # from being modified. body = copy.copy(attr["body"]) iter_dtype = infer_type(max_loop_count).checked_type.dtype # Determine what condition mode we're in. assert cond is not None or max_loop_count is not None is_for_loop = max_loop_count is not None and cond is None is_condition_for_loop = cond is not None and max_loop_count is not None # Loop inputs will be packed as # [iter_count, max_count, condition, loop_deps, scan_outputs] def cond_fn(*loop_inputs): i = loop_inputs[0] max_count = loop_inputs[1] w = loop_inputs[2] if cond is not None: out_while = _op.equal(w, _expr.const(True, "bool")) if max_loop_count is not None: out_loop = _op.less(i, max_count) if is_condition_for_loop: return _op.logical_and(out_while, out_loop) if is_for_loop: return out_loop return out_while # Get the current graph proto and create a clone for the subgraph graph_scope = GraphProto.current subgraph_scope = GraphProto( graph_scope._shape, graph_scope._dtype, graph_scope._freeze_params ) # Load nodes from outer graph into inner graph. subgraph_scope._nodes = graph_scope._nodes.copy() # Create a list of variables for each value updated in the loop. def get_var(name, val, scan=False): checked_type = infer_type(val) if hasattr(checked_type, "type_annotation"): checked_type = checked_type.type_annotation if hasattr(checked_type, "checked_type"): checked_type = checked_type.checked_type shape = get_const_tuple(checked_type.shape) actual_shape = [] for dim in shape: if isinstance(dim, int) and dim == 0: actual_shape.append(_ty.Any()) else: actual_shape.append(dim) if scan: return _expr.var(name, shape=[_ty.Any()] + actual_shape, dtype=checked_type.dtype) return _expr.var(name, shape=actual_shape, dtype=checked_type.dtype) loop_vars = [ _expr.var(body.input[0].name, shape=(), dtype=iter_dtype), # iteration count _expr.var("max_count", shape=(), dtype=iter_dtype), # iteration count get_var(body.input[1].name, cond), # exit condition ] loop_vars += [get_var(body.input[i + 2].name, v) for i, v in enumerate(loop_deps)] loop_var_names = [v.name_hint for v in loop_vars] num_scan_outputs = len(body.output) - (1 + num_deps) # Construct variables and initial empty tensors for any scan outputs. # To do this, we'll figure out the output shapes of the body subgraph by importing # it and doing type inference. scan_output_vars = [] scan_output_init = [] if num_scan_outputs > 0: with subgraph_scope: loop_outputs = subgraph_scope.from_onnx( body, graph_scope.opset, get_output_expr=True ) loop_outputs = _expr.TupleWrapper(loop_outputs, len(body.output)) for i in range(num_scan_outputs): name, _, _, _ = get_info(body.output[i + 1 + num_deps]) output_node = infer_type(loop_outputs[i + 1 + num_deps]) shape = get_const_tuple(output_node.checked_type.shape) dtype = output_node.checked_type.dtype scan_output_vars.append( _expr.var(name, shape=([_ty.Any()] * (len(shape) + 1)), dtype=dtype) ) scan_output_init.append( _op.reshape(_expr.const(np.array([]).astype(dtype)), [0] + [1] * len(shape)) ) # Now we can remove loop iter variables from our inner loop's inputs. # This is kind of a hack since we have graph inputs that we don't # want to treat as actual inputs. while len(body.input) != 0: body.input.pop(0) # Define the loop body, in this function we need to unpack loop inputs, # convert the loop subgraph, and pack outputs for the next iteration. def body_fn(*loop_inputs): # Unpack inputs loop_count = loop_inputs[0] max_count = loop_inputs[1] cond = loop_inputs[2] current_vars = list(loop_inputs[3 : (3 + num_deps)]) scan_outputs = loop_inputs[(3 + num_deps) :] # Prepare body inputs by adding them to node dictionary. new_inputs = [loop_count, max_count, cond] + current_vars for i, inp in enumerate(new_inputs): subgraph_scope._nodes[loop_var_names[i]] = inp # Get the output of the current loop using the updated inputs. with subgraph_scope: loop_outputs = subgraph_scope.from_onnx( body, graph_scope.opset, get_output_expr=True ) # Unpack the body outputs and prepare variables for next iteration. new_cond = loop_outputs[0] new_loop_vars = [loop_outputs[i] for i in range(1, 1 + num_deps)] new_scan_outputs = [loop_outputs[i] for i in range(1 + num_deps, len(loop_outputs))] # Add new scan outputs to tracking combined_scan_outputs = [] for i, scan in enumerate(scan_outputs): rank = len(infer_shape(scan)) - 1 new_scan = new_scan_outputs[i] expand_scan = _op.expand_dims(new_scan, axis=0) # For non scalar outputs we need to broadcast the initial value. if rank > 0: new_scan_shape = shape_of(new_scan, dtype=iter_dtype) scan_broadcast = _op.concatenate( [_op.reshape(loop_count, [1]), new_scan_shape], axis=0 ) scan = _op.broadcast_to(scan, scan_broadcast) combined_scan = _op.concatenate([scan, expand_scan], axis=0) combined_scan_outputs.append(combined_scan) # Increment counter. if max_loop_count is not None: incr = _expr.const(1, dtype=iter_dtype) loop_count = loop_count + incr # Pack loop outputs for next iteration # [iter_count, cond, loop_deps, loop_scans] return [loop_count, max_count, new_cond] + new_loop_vars + combined_scan_outputs # Create the loop function. loop = fold_constant(_loops.while_loop(cond_fn, loop_vars + scan_output_vars, body_fn)) # Now need to run initial values through the graph. init_count = _expr.const(0, dtype=iter_dtype) loop_vals = loop(init_count, max_loop_count, cond, *loop_deps, *scan_output_init) # Extract final iteration outputs. if num_deps + num_scan_outputs == 1: outputs = _expr.TupleGetItem(loop_vals, 3) else: outputs = _expr.TupleWrapper( _expr.Tuple( [ _expr.TupleGetItem(loop_vals, i + 3) for i in range(num_deps + num_scan_outputs) ] ), num_deps + num_scan_outputs, ) # Update outer graph with constants found in the subgraph. free_vars = analysis.free_vars(loop) graph_scope._params.update(subgraph_scope._params) graph_scope._nodes.update(subgraph_scope._nodes) for var in free_vars: graph_scope._nodes.update({var.name_hint: var}) return outputs class If(OnnxOpConverter): """Operator converter for If""" @classmethod def _impl_v1(cls, inputs, attr, params): cond = inputs[0] # Convert array to bool if needed. if len(infer_shape(cond)) > 0: cond = _op.take(cond, _expr.const(0, dtype="int64")) then_branch = attr.get("then_branch", None) else_branch = attr.get("else_branch", None) assert then_branch is not None and else_branch is not None # Create graph converters for both branches. graph_scope = GraphProto.current then_graph = GraphProto(graph_scope._shape, graph_scope._dtype, graph_scope._freeze_params) then_graph._nodes = graph_scope._nodes.copy() else_graph = GraphProto(graph_scope._shape, graph_scope._dtype, graph_scope._freeze_params) else_graph._nodes = graph_scope._nodes.copy() # Convert each branch to a relay expression. with then_graph: then_expr = then_graph.from_onnx(then_branch, graph_scope.opset, get_output_expr=True) with else_graph: else_expr = else_graph.from_onnx(else_branch, graph_scope.opset, get_output_expr=True) # Add constants from both branches to parent graph. graph_scope._params.update(then_graph._params) graph_scope._nodes.update(then_graph._nodes) then_free_vars = analysis.free_vars(then_expr) for var in then_free_vars: graph_scope._nodes.update({var.name_hint: var}) graph_scope._params.update(else_graph._params) graph_scope._nodes.update(else_graph._nodes) else_free_vars = analysis.free_vars(else_expr) for var in else_free_vars: graph_scope._nodes.update({var.name_hint: var}) # Now we can construct the relay if statement and return. ret = _expr.If(cond, then_expr, else_expr) if len(then_branch.output) > 1: ret = _expr.TupleWrapper(ret, len(then_branch.output)) return ret class NonMaxSuppression(OnnxOpConverter): """Operator converter for NonMaxSuppression.""" @classmethod def _impl_v10(cls, inputs, attr, params): # Get parameter values boxes = inputs[0] scores = inputs[1] max_output_boxes_per_class = inputs[2] iou_threshold = inputs[3] score_threshold = inputs[4] boxes_dtype = infer_type(boxes).checked_type.dtype if attr.get("center_point_box", 0) != 0: xc, yc, w, h = _op.split(boxes, 4, axis=2) half_w = w / _expr.const(2.0, boxes_dtype) half_h = h / _expr.const(2.0, boxes_dtype) x1 = xc - half_w x2 = xc + half_w y1 = yc - half_h y2 = yc + half_h boxes = _op.concatenate([y1, x1, y2, x2], axis=2) if iou_threshold is None: iou_threshold = _expr.const(0.0, dtype="float32") if score_threshold is None: score_threshold = _expr.const(0.0, dtype="float32") def conditionally_squeeze_scalar(x): rank = len(infer_shape(x)) assert rank <= 1, "nms thresholds must be scalars" if rank == 1: return _op.squeeze(x, [0]) return x max_output_boxes_per_class = conditionally_squeeze_scalar(max_output_boxes_per_class) iou_threshold = conditionally_squeeze_scalar(iou_threshold) score_threshold = conditionally_squeeze_scalar(score_threshold) nms_out = _op.vision.all_class_non_max_suppression( boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold ) return _op.strided_slice(nms_out[0], _op.const([0], dtype="int64"), nms_out[1]) class ATen(OnnxOpConverter): """Operator converter for Pytorch ATen ops.""" @classmethod def _op_dispatch(cls, operator, inputs, attr, params): op_map = { "size": cls._size, "arange": cls._arange, "index_put": cls._index_put, "reshape": cls._reshape, "embedding_bag": cls._embedding_bag, } assert operator in op_map, "Operator %s is not supported." % operator return op_map[operator](inputs, attr, params) @classmethod def _size(cls, inputs, attr, params): return _op.take( _op.shape_of(inputs[0], dtype="int64"), _expr.const(-1, dtype="int64"), axis=0, mode="wrap", ) @classmethod def _arange(cls, inputs, attr, params): return _op.arange(inputs[0], inputs[1], inputs[2], dtype="int64") @classmethod def _check_index(cls, indices, values): def unfolding_indices(indices, values): n = len(indices) flatten_indices = [] slices_size = [] for index in indices: flatten_indices.append(_op.reshape(index, _op.const([-1]))) slices_size.append(infer_shape(flatten_indices[-1])[0]) repeat_size = [1] tile_size = [1] for i in range(1, n): repeat_size.append(slices_size[-i] * repeat_size[-1]) tile_size.append(slices_size[i - 1] * tile_size[-1]) repeat_size.reverse() unflod_slices = [] for i in range(n): unflod_slices.append( fold_constant( _op.repeat(_op.tile(flatten_indices[i], (tile_size[i],)), repeat_size[i], 0) ) ) return unflod_slices, _op.reshape(values, _op.const([-1])) values_shape = infer_shape(values) if len(values_shape) != 1: return unfolding_indices(indices, values) return indices, values @classmethod def _index_put(cls, inputs, attr, params): in_tensor = inputs[0] indices, values = cls._check_index(inputs[1 : len(inputs) - 2], inputs[len(inputs) - 2]) accumulate = inputs[len(inputs) - 1].data.asnumpy() != 0 if not accumulate: mode = "update" else: mode = "add" index_tensor = _op.stack(indices, axis=0) return _op.transform.scatter_nd(in_tensor, index_tensor, values, mode) @classmethod def _reshape(cls, inputs, attr, params): return _op.reshape(inputs[0], inputs[1]) @classmethod def _embedding_bag(cls, inputs, attr, params): mode_map = {0: _op.sum, 1: _op.mean, 2: _op.max} mode = attr.get("mode", 1) reduction_fn = mode_map[mode] weights, indices, offsets = inputs[0], inputs[1], inputs[2] offsets_shape = _op.shape_of(offsets, dtype="int64") indices_shape = _op.stack( [ _op.take(offsets_shape, _expr.const(0, dtype="int64")), _expr.const(-1, dtype="int64"), ], axis=0, ) indices = _op.reshape(indices, indices_shape) embedding = _op.take(weights, indices.astype("int64"), axis=0) rembedding = reduction_fn(embedding, axis=1) # EmbeddingBag has 4 outputs for some reason despite only one ever being used. # Fill the rest with 0s. unused_output = _expr.const(0, dtype="float32") return _expr.TupleWrapper( _expr.Tuple((rembedding, unused_output, unused_output, unused_output)), 4 ) @classmethod def _impl_v1(cls, inputs, attr, params): operator = attr.get("operator", None).decode("utf-8") assert operator, "ATen Operator not found" return cls._op_dispatch(operator, inputs, attr, params) class QuantizeLinear(OnnxOpConverter): """Operator converter for QuantizeLinear.""" @classmethod def _impl_v10(cls, inputs, attr, params): data, scale, zp = inputs out_dtype = infer_type(zp).checked_type.dtype return _qnn.op.quantize(data, scale, _op.cast(zp, "int32"), 0, out_dtype) @classmethod def _impl_v13(cls, inputs, attr, params): data, scale, zp = inputs out_dtype = infer_type(zp).checked_type.dtype axis = attr.get("axis", 1) if len(infer_shape(data)) < 2: axis = 0 return _qnn.op.quantize(data, scale, _op.cast(zp, "int32"), axis, out_dtype) class DequantizeLinear(OnnxOpConverter): """Operator converter for QuantizeLinear.""" @classmethod def _impl_v10(cls, inputs, attr, params): data, scale, zp = inputs return _qnn.op.dequantize(data, scale, _op.cast(zp, "int32"), 0) @classmethod def _impl_v13(cls, inputs, attr, params): data, scale, zp = inputs axis = attr.get("axis", 1) if len(infer_shape(data)) <= 1: axis = 0 return _qnn.op.dequantize(data, scale, _op.cast(zp, "int32"), axis) class DynamicQuantizeLinear(OnnxOpConverter): """Operator converter for QuantizeLinear.""" @classmethod def _impl_v11(cls, inputs, attr, params): """This op is deprecated an only supports uint8""" data = inputs[0] data_dtype = infer_type(data).checked_type.dtype zero = _op.const(0, dtype=data_dtype) maximum = _op.maximum(zero, _op.max(data)) minimum = _op.minimum(zero, _op.min(data)) scale = (maximum - minimum) / _op.const(255, dtype=data_dtype) zp = zero - _op.min(data) / scale zp = _op.cast(_op.round(_op.clip(zp, 0, 255)), "uint8") return _expr.TupleWrapper( _expr.Tuple( [_qnn.op.quantize(data, scale, _op.cast(zp, "int32"), 0, "uint8"), scale, zp] ), size=3, ) class QLinearConv(OnnxOpConverter): """Operator converter for QLinearConv.""" @classmethod def _impl_v10(cls, inputs, attr, params): data = inputs[0] x_scale = get_scalar(inputs[1], params) x_zero_point = get_scalar(inputs[2], params, "int32") weight = inputs[3] w_scale = get_scalar(inputs[4], params) w_zero_point = get_scalar(inputs[5], params, "int32") y_scale = fold_constant(get_scalar(inputs[6], params)) y_zero_point = get_scalar(inputs[7], params, "int32") input_shape = infer_shape(data) ndim = len(input_shape) kernel_type = infer_type(weight) kernel_shapes = [get_const_tuple(kernel_type.checked_type.shape)] if "kernel_shape" not in attr: attr["kernel_shape"] = kernel_shapes[0][2:] if "auto_pad" in attr: attr["auto_pad"] = attr["auto_pad"].decode("utf-8") if attr["auto_pad"] in ("SAME_UPPER", "SAME_LOWER"): # Warning: Convolution does not yet support dynamic shapes, # one will need to run dynamic_to_static on this model after import data = autopad( data, attr.get("strides", [1] * (ndim - 2)), attr["kernel_shape"], attr.get("dilations", [1] * (ndim - 2)), pad_value=x_zero_point.data, mode=attr["auto_pad"], ) elif attr["auto_pad"] == "VALID": attr["pads"] = tuple([0 for i in range(ndim - 2)]) elif attr["auto_pad"] == "NOTSET": pass else: msg = 'Value {} in attribute "auto_pad" of operator Conv is invalid.' raise tvm.error.OpAttributeInvalid(msg.format(attr["auto_pad"])) attr.pop("auto_pad") out_channels = kernel_shapes[0][0] dilation = attr.get("dilations", [1] * (ndim - 2)) strides = attr.get("strides", [1] * (ndim - 2)) padding = attr["pads"] if "pads" in attr else 0 groups = attr["group"] if "group" in attr else 1 if ndim != 4: raise tvm.error.OpAttributeInvalid( "Only 2D kernels are supported for operator QLinearConv." ) out = _qnn.op.conv2d( data, weight, x_zero_point, w_zero_point, x_scale, w_scale, kernel_size=attr["kernel_shape"], channels=out_channels, strides=strides, padding=padding, dilation=dilation, groups=groups, ) use_bias = len(inputs) == 9 if use_bias: out = _op.nn.bias_add(out, inputs[8]) out_dtype = infer_type(inputs[7]).checked_type.dtype requantize_scale = _op.multiply(x_scale, w_scale) # requantize requires y_scale to be constant, # if y_scale is not constant, doing dequantize -> quantize if isinstance(y_scale, _expr.Constant): out = _qnn.op.requantize( out, requantize_scale, _op.const(0, dtype="int32"), y_scale, y_zero_point, out_dtype=out_dtype, axis=0, ) else: out = _qnn.op.dequantize(out, requantize_scale, _op.const(0, dtype="int32"), axis=0) out = _qnn.op.quantize(out, y_scale, y_zero_point, axis=0, out_dtype=out_dtype) return out class QLinearAdd(OnnxOpConverter): """Operator converter for QLinearAdd from Microsoft onnxruntime contrib opset.""" @classmethod def _impl_v10(cls, inputs, attr, params): a = inputs[0] a_scale = get_scalar(inputs[1], params) a_zero_point = get_scalar(inputs[2], params, "int32") b = inputs[3] b_scale = get_scalar(inputs[4], params) b_zero_point = get_scalar(inputs[5], params, "int32") c_scale = get_scalar(inputs[6], params) c_zero_point = get_scalar(inputs[7], params, "int32") dtype = infer_type(a).checked_type.dtype ## Onnxruntime doesn't actually do this op in integer, they dequantize to fp32 ## and then requantize afer ## https://github.com/microsoft/onnxruntime/blob/master/onnxruntime/core/mlas/lib/qladd.cpp a = _qnn.op.dequantize( inputs[0], a_scale, a_zero_point ) # , c_scale, c_zero_point, out_dtype = dtype) b = _qnn.op.dequantize( inputs[3], b_scale, b_zero_point ) # , c_scale, c_zero_point, out_dtype = dtype) out = _op.add(a, b) return _qnn.op.quantize(out, c_scale, c_zero_point, out_dtype=dtype) class QLinearMatMul(OnnxOpConverter): """ Operator converter for QLinearMatMul from Microsoft onnxruntime contrib opset. Limitations: - Only supports 2D input tensors. - Not guaranteed to meet the integer-overflow behavior stipulated in the ONNX documentation for this operator. """ @classmethod def _impl_v10(cls, inputs, attr, params): # Some of the ops used below take scalar-like inputs, and may require either # of the following: # # - the input is Const node (not merely an expression that *could* be reduced # to a single Const at graph-compilation time) # # - the input has a specific dtype # # This function attempts to present 'x' in a form that meets both of those # requirements. def try_resolve_to_const_scalar(x, dtype_override=None): x2 = try_resolve_var_to_const(x, params) x3 = ensure_scalar_shape(x2) x_dtype = infer_type(x).checked_type.dtype if (dtype_override is not None) and (dtype_override != x_dtype): x4 = _op.cast(x3, dtype_override) else: x4 = x3 x5 = fold_constant(x4) return x5 # Unpack the inputs and obtain some type info... a, a_scale, a_zp, b, b_scale, b_zp, y_scale, y_zp = inputs a_type = infer_type(a).checked_type # 'T1' in ONNX doc for this op a_scale_type = infer_type(a_scale).checked_type a_zp_type = infer_type(a_zp).checked_type b_type = infer_type(b).checked_type # 'T2' in ONNX doc for this op b_scale_type = infer_type(b_scale).checked_type b_zp_type = infer_type(b_zp).checked_type y_scale_type = infer_type(y_scale).checked_type y_zp_type = infer_type(y_zp).checked_type # 'T3' in ONNX doc for this op a_shape = infer_shape(a) b_shape = infer_shape(b) # Verify type assumptions, based on the ONNX doc for this op... assert a_type.dtype in ["int8", "uint8"] assert a_scale_type.dtype == "float32" assert a_zp_type.dtype == a_type.dtype assert b_type.dtype in ["int8", "uint8"] assert b_scale_type.dtype == "float32" assert b_zp_type.dtype == b_type.dtype assert y_scale_type.dtype == "float32" assert y_zp_type.dtype in ["int8", "uint8"] # TODO: relax this limitation in a future version of this importer. a_rank = len(a_shape) b_rank = len(b_shape) assert (a_rank == 2) and (b_rank == 2), ( "QLinearMatMul importer currently requires both 'a' and 'b' tensors to be 2D, but" " rank(a)={}, rank(b)={}".format(a_rank, b_rank) ) # _qnn.op.dense requires the zero-point values to have dtype int32. a_scale_scalar = try_resolve_to_const_scalar(a_scale) a_zp_scalar = try_resolve_to_const_scalar(a_zp, "int32") b_scale_scalar = try_resolve_to_const_scalar(b_scale) b_zp_scalar = try_resolve_to_const_scalar(b_zp, "int32") y_scale_scalar = try_resolve_to_const_scalar(y_scale) y_zp_scalar = try_resolve_to_const_scalar(y_zp, "int32") # TODO: Confirm that we're using 'num_hidden_units' correctly / as intended with # the '_qnn.op.dense' instance below. num_hidden_units = infer_shape(b)[-1] # - Specify the matmul result dtype as int32, so that hopefully the matmul will use # a 32-bit accumulator as seems to be required by the ONNX op's documentation. # # TL;DR: # The ONNX documentation for this op is clear about acceptable overflow # behavior during the matmul operation: # - The scalar multiplication ops MAY NOT overflow. # - The scalar addition ops, which sum the results of the scalar multiplication, # MAY overflow, but if they do so, it must behave as one would expect during # 32-bit integer-addition overflow. # As of this writing, Relay's qnn.op.dense operator doesn't expose a way for us to # express these constraints. # # TODO: Extend TVM / Relay / TIR / etc. to allow this kind of constraint to be # expressed in a Relay graph. And then update this importer and various TVM # backends accordingly. matmul_result_dtype = "int32" matmul_result = _qnn.op.dense( a, _op.transpose(b), a_zp_scalar, b_zp_scalar, a_scale_scalar, b_scale_scalar, num_hidden_units, matmul_result_dtype, ) # This information might only be found in the C++ code-comments for the # dense.matmul op, but the quantized tensor returned by _qnn.op.dense # has scale==(a_scale_scalar * b_scale_scalar), and zero_point==0. # # 'matmul_result_zp_scalar' has type 'int32' to satisfy input requirements # of the [de/re]quantize ops below. matmul_result_scale_scalar = fold_constant(_op.multiply(a_scale_scalar, b_scale_scalar)) matmul_result_zp_scalar = _op.const(0, dtype="int32") # requantize requires y_scale to be constant, # if y_scale is not constant, doing dequantize -> quantize if isinstance(y_scale_scalar, _expr.Constant): y = _qnn.op.requantize( matmul_result, matmul_result_scale_scalar, matmul_result_zp_scalar, y_scale_scalar, y_zp_scalar, axis=-1, rounding="TONEAREST", out_dtype=y_zp_type.dtype, ) else: matmul_result_deq = _qnn.op.dequantize( matmul_result, matmul_result_scale_scalar, matmul_result_zp_scalar, axis=0 ) y = _qnn.op.quantize( matmul_result_deq, y_scale_scalar, y_zp_scalar, axis=0, out_dtype=y_zp_type.dtype ) return y class QLinearMul(OnnxOpConverter): """Operator converter for QLinearMul from Microsoft onnxruntime contrib opset.""" @classmethod def _impl_v10(cls, inputs, attr, params): a = inputs[0] a_scale = get_scalar(inputs[1], params) a_zero_point = get_scalar(inputs[2], params, "int32") b = inputs[3] b_scale = get_scalar(inputs[4], params) b_zero_point = get_scalar(inputs[5], params, "int32") y_scale = fold_constant(get_scalar(inputs[6], params)) y_zero_point = get_scalar(inputs[7], params, "int32") dtype = infer_type(a).checked_type.dtype ## Onnxruntime doesn't actually do this op in integer, they dequantize to fp32 ## and then requantize afer ## https://github.com/microsoft/onnxruntime/blob/master/onnxruntime/core/mlas/lib/qlmul.cpp a = _qnn.op.dequantize(inputs[0], a_scale, a_zero_point) b = _qnn.op.dequantize(inputs[3], b_scale, b_zero_point) out = _op.multiply(a, b) return _qnn.op.quantize(out, y_scale, y_zero_point, out_dtype=dtype) class QLinearLeakyRelu(OnnxOpConverter): """Operator converter for QLinearLeakyRelu from Microsoft onnxruntime contrib opset.""" @classmethod def _impl_v10(cls, inputs, attr, params): a_scale = get_scalar(inputs[1], params) a_zero_point = get_scalar(inputs[2], params, "int32") y_scale = fold_constant(get_scalar(inputs[3], params)) y_zero_point = get_scalar(inputs[4], params, "int32") alpha = float(attr.get("alpha", 1.0)) dtype = infer_type(inputs[0]).checked_type.dtype # Onnxruntime doesn't actually do this op in integer, they dequantize to fp32 # and then requantize afer (according to documentation below) # https://github.com/microsoft/onnxruntime/blob/master/docs/ContribOperators.md#com.microsoft.QLinearLeakyRelu a = _qnn.op.dequantize(inputs[0], a_scale, a_zero_point) out = _op.nn.leaky_relu(a, alpha) return _qnn.op.quantize(out, y_scale, y_zero_point, out_dtype=dtype) class QLinearSigmoid(OnnxOpConverter): """Operator converter for QLinearSigmoid from Microsoft onnxruntime contrib opset.""" @classmethod def _impl_v10(cls, inputs, attr, params): x = inputs[0] x_scale = get_scalar(inputs[1], params) x_zero_point = get_scalar(inputs[2], params, "int32") y_scale = fold_constant(get_scalar(inputs[3], params)) y_zero_point = get_scalar(inputs[4], params, "int32") dtype = infer_type(x).checked_type.dtype ## Apparently, onnxruntime doesn't do this op in integer, they dequantize to fp32 ## and then requantize after: ## https://github.com/microsoft/onnxruntime/blob/master/onnxruntime/core/ ## providers/dml/DmlExecutionProvider/src/GraphTransformer.cpp#L245 x = _qnn.op.dequantize(x, x_scale, x_zero_point) out = _op.sigmoid(x) return _qnn.op.quantize(out, y_scale, y_zero_point, out_dtype=dtype) class QLinearConcat(OnnxOpConverter): """Operator converter for QLinearConcat from Microsoft onnxruntime contrib opset.""" @classmethod def _impl_v1(cls, inputs, attr, params): # which axis to concat on axis = attr["axis"] y_scale = fold_constant(get_scalar(inputs[0], params)) y_zero_point = get_scalar(inputs[1], params, "int32") # input tensors, scales, zero_points assert ( len(inputs) % 3 == 2 ), "Additional input count must be a multiple of 3 -- tensor/scale/zero_point tuples" tensors = [] scales = [] zero_points = [] for i in range(2, len(inputs), 3): tensors.append(inputs[i]) scales.append(get_scalar(inputs[i + 1], params)) zero_points.append(get_scalar(inputs[i + 2], params, "int32")) return _qnn.op.concatenate(tensors, scales, zero_points, y_scale, y_zero_point, axis) class ConvInteger(OnnxOpConverter): """Operator converter for ConvInteger.""" @classmethod def _impl_v10(cls, inputs, attr, params): data = inputs[0] weight = inputs[1] data_zp = inputs[2] weight_zp = inputs[3] if data_zp is None: data_zp = _expr.const(0, "int32") if weight_zp is None: weight_zp = _expr.const(0, "int32") input_type = infer_type(data) input_shape = get_const_tuple(input_type.checked_type.shape) ndim = len(input_shape) kernel_type = infer_type(weight) kernel_shape = get_const_tuple(kernel_type.checked_type.shape) if "kernel_shape" not in attr: attr["kernel_shape"] = kernel_shape[2:] if "auto_pad" in attr: attr["auto_pad"] = attr["auto_pad"].decode("utf-8") if attr["auto_pad"] in ("SAME_UPPER", "SAME_LOWER"): # Warning: Convolution does not yet support dynamic shapes, # one will need to run dynamic_to_static on this model after import data = autopad( data, attr.get("strides", [1] * (ndim - 2)), attr["kernel_shape"], attr.get("dilations", [1] * (ndim - 2)), pad_value=data_zp, mode=attr["auto_pad"], ) elif attr["auto_pad"] == "VALID": attr["pads"] = tuple([0 for i in range(ndim - 2)]) elif attr["auto_pad"] == "NOTSET": pass else: msg = 'Value {} in attribute "auto_pad" of operator Conv is invalid.' raise tvm.error.OpAttributeInvalid(msg.format(attr["auto_pad"])) attr.pop("auto_pad") out_channels = kernel_shape[0] dilation = attr.get("dilations", [1] * (ndim - 2)) strides = attr.get("strides", [1] * (ndim - 2)) padding = attr["pads"] if "pads" in attr else 0 groups = attr["group"] if "group" in attr else 1 if ndim != 4: raise tvm.error.OpAttributeInvalid( "Only 2D kernels are supported for operator ConvInteger." ) return _qnn.op.conv2d( data, weight, _op.cast(data_zp, "int32"), _op.cast(weight_zp, "int32"), _expr.const(1.0, "float32"), _expr.const(1.0, "float32"), kernel_size=attr["kernel_shape"], channels=out_channels, strides=strides, padding=padding, dilation=dilation, groups=groups, ) class BitShift(OnnxOpConverter): """Operator converter for NonZero""" @classmethod def _impl_v11(cls, inputs, attr, params): if len(inputs) != 2: raise ValueError("Bitshift expects 2 inputs") direction = attr.get("direction", "LEFT").decode("ascii") if direction == "LEFT": out = _op.left_shift(*inputs) elif direction == "RIGHT": out = _op.right_shift(*inputs) else: raise ValueError("Unsupported Shift Direction: " + direction) return out class Unique(OnnxOpConverter): """Operator converter for unique""" @classmethod def _impl_v11(cls, inputs, attr, params): if len(inputs) != 1: raise ValueError("Unique expects 1 input") data = inputs[0] axis = attr.get("axis", None) if axis is None: # If axis is None, flatten the input before calling unique data = _op.reshape(data, _op.const([-1])) else: data_shape = infer_shape(data) if len(data_shape) != 1: raise ValueError("TVM only supports 1D Unique operator.") is_sorted = attr.get("sorted", 1) # sorted is 0 or 1, 1 by default # ONNX documentation lists return_counts as optional but there is no input to specify # whether it is returned. Therefore we'll just always return it. unique = _op.unique(data, is_sorted=(is_sorted == 1), return_counts=True) num_unique = unique[3] trim_unique_lambda = lambda input: _op.strided_slice(input, _op.const([0]), num_unique) unique_vals = trim_unique_lambda(unique[0]) indices = _op.cast(trim_unique_lambda(unique[1]), "int64") # ONNX always returns int64 inverse_indices = _op.cast(unique[2], "int64") # ONNX always returns int64 counts = _op.cast(trim_unique_lambda(unique[4]), "int64") # ONNX always returns int64 # ONNX unique returns unique, indices, inverse_indices, (optional) counts return _expr.TupleWrapper(_expr.Tuple([unique_vals, indices, inverse_indices, counts]), 4) class Einsum(OnnxOpConverter): """Operator converter for Einsum""" @classmethod def _impl_v12(cls, inputs, attr, params): equation = attr["equation"].decode("utf-8") return _op.einsum(inputs, equation) class RandomNormal(OnnxOpConverter): """Operator converter for random_normal""" @classmethod def _impl_v1(cls, inputs, attr, params): dtype = get_type(attr.get("dtype", 1)) mean = attr.get("mean", 0.0) scale = attr.get("scale", 1.0) seed = attr.get("seed", None) shape = attr["shape"] assert dtype in [ "float32", "float64", ], "Only float random value generation is currently supported." if seed is None: seed = np.random.randint(1e6) else: seed = int(seed) key = _random.threefry_key(seed) output = _op.random.normal(key, shape, dtype=dtype, mean=mean, scale=scale) _, vals = _expr.TupleWrapper(output, 2) return vals class RandomNormalLike(OnnxOpConverter): """Operator converter for random_normal_like""" @classmethod def _impl_v1(cls, inputs, attr, params): dtype = attr.get("dtype", None) scale = attr.get("scale", 1.0) mean = attr.get("mean", 0.0) seed = attr.get("seed", None) shape = infer_shape(inputs[0]) if dtype is None: dtype = infer_type(inputs[0]).checked_type.dtype else: dtype = get_type(dtype) assert dtype in [ "float32", "float64", ], "Only float random value generation is currently supported." if seed is None: seed = np.random.randint(1e6) else: seed = int(seed) key = _random.threefry_key(seed) output = _op.random.normal(key, shape, dtype=dtype, mean=mean, scale=scale) _, vals = _expr.TupleWrapper(output, 2) return vals class RandomUniform(OnnxOpConverter): """Operator converter for random_uniform""" @classmethod def _impl_v1(cls, inputs, attr, params): dtype = get_type(attr.get("dtype", 1)) high = attr.get("high", 1.0) low = attr.get("low", 0.0) seed = attr.get("seed", None) shape = attr["shape"] assert dtype in [ "float32", "float64", ], "Only float random value generation is currently supported." if seed is None: seed = np.random.randint(1e6) else: seed = int(seed) key = _random.threefry_key(seed) output = _op.random.uniform(key, shape, dtype=dtype, low=low, high=high) _, vals = _expr.TupleWrapper(output, 2) return vals class RandomUniformLike(OnnxOpConverter): """Operator converter for random_uniform_like""" @classmethod def _impl_v1(cls, inputs, attr, params): dtype = attr.get("dtype", None) high = attr.get("high", 1.0) low = attr.get("low", 0.0) seed = attr.get("seed", None) shape = infer_shape(inputs[0]) if dtype is None: dtype = infer_type(inputs[0]).checked_type.dtype else: dtype = get_type(dtype) assert dtype in [ "float32", "float64", ], "Only float random value generation is currently supported." if seed is None: seed = np.random.randint(1e6) else: seed = int(seed) key = _random.threefry_key(seed) output = _op.random.uniform(key, shape, dtype=dtype, low=low, high=high) _, vals = _expr.TupleWrapper(output, 2) return vals class NegativeLogLikelihoodLoss(OnnxOpConverter): """Operator converter for NegativeLogLikehoodLoss""" VALID_REDUCTIONS = {"mean", "sum", "none"} @classmethod def run_calculation( cls: "NegativeLogLikelihoodLoss", input_tensor: relay.Expr, target_tensor: relay.Expr, weight_tensor: Optional[relay.Expr], ignore_index: int, ): """Run calculation for NegativeLogLikelihood, returning output tensor and weight tensor used for mean-style reductions. """ # Convert negative indices --> positive indices for gather ops, note we have to # use the original target tensor to interact with ignore_index to have proper behavior. normalized_target_tensor = normalize_gather_indices(input_tensor, target_tensor, 1) if weight_tensor is None: channels = infer_shape(input_tensor)[1] weight_tensor = relay.ones( [channels], dtype=infer_type(input_tensor).checked_type.dtype, ) loss = -relay.gather( input_tensor, axis=1, indices=relay.expand_dims(normalized_target_tensor, 1), ) loss = relay.squeeze(loss, axis=[1]) expanded_normalized_target_tensor = relay.expand_dims(normalized_target_tensor, 0) expanded_normalized_target_tensor = relay.nn.batch_flatten( expanded_normalized_target_tensor ) flattened_weights = relay.gather_nd(weight_tensor, expanded_normalized_target_tensor) select_weights = relay.reshape_like(flattened_weights, loss) loss *= select_weights if ignore_index is not None: # "Ignore" values whose target is the ignore_index mask_tensor = relay.equal( target_tensor, relay.const(ignore_index, dtype=target_tensor.type_annotation.dtype) ) mask_tensor = relay.const(1, dtype="int8") - relay.cast(mask_tensor, "int8") loss = relay.where( mask_tensor, loss, relay.const(0, infer_type(loss).checked_type.dtype) ) # This is not explained super clearly in the onnx spec, but masked values don't # contribute toward the final value in reduction select_weights *= relay.cast_like(mask_tensor, select_weights) weight_total = relay.sum(select_weights) return loss, weight_total @classmethod def _impl_v13(cls, inputs, attr, params): ignore_index = attr.get("ignore_index", None) reduction = attr.get("reduction", b"mean").decode("utf-8") if reduction not in cls.VALID_REDUCTIONS: raise ValueError( f"Unknown reduction type {reduction}, choices are {cls.VALID_REDUCTIONS}" ) input_tensor, target_tensor = inputs[0], inputs[1] if len(inputs) == 3: weight_tensor = inputs[2] else: weight_tensor = None loss, weight_total = cls.run_calculation( input_tensor, target_tensor, weight_tensor=weight_tensor, ignore_index=ignore_index, ) if reduction == "mean": return relay.sum(loss) / weight_total if reduction == "sum": return relay.sum(loss) # Case reduction == 'none' return loss class SoftmaxCrossEntropyLoss(OnnxOpConverter): """Operator converter for SCE_loss""" @classmethod def _impl_v13(cls, inputs, attr, params): ignore_index = attr.get("ignore_index", None) reduction = attr.get("reduction", b"mean").decode("utf-8") input_tensor, target_tensor = inputs[0], inputs[1] if len(inputs) == 3: weight_tensor = inputs[2] else: weight_tensor = None get_log_prob = attr["tvm_custom"]["num_outputs"] == 2 log_softmax_tensor = LogSoftmax.run_calculation(input_tensor, axes=[1]) loss, weight_total = NegativeLogLikelihoodLoss.run_calculation( log_softmax_tensor, target_tensor, weight_tensor, ignore_index=ignore_index, ) if reduction == "mean": loss = relay.sum(loss) / weight_total elif reduction == "sum": loss = relay.sum(loss) if get_log_prob: return relay.TupleWrapper(relay.Tuple((loss, log_softmax_tensor)), 2) return loss class Adagrad(OnnxOpConverter): """Operator converter for adagrad op.""" @classmethod def _impl_v1(cls, inputs, attr, params): decay_factor = attr.get("decay_factor", 0.0) epsilon = attr.get("epsilon", 0.0) norm_coefficient = attr.get("norm_coefficient", 0.0) R = inputs[0] T = inputs[1] # convert attributes to constants, proper types dtype_inputs = infer_type(inputs[3]).checked_type.dtype decay_factor = relay.const(decay_factor, dtype=dtype_inputs) epsilon = relay.const(epsilon, dtype=dtype_inputs) norm_coefficient = relay.const(norm_coefficient, dtype=dtype_inputs) T = relay.cast_like(T, inputs[3]) assert ( len(inputs) - 2 ) % 3 == 0, f"Expect triplets for remaining inputs, found {len(inputs) - 2}" # Remaining inputs are: # [x_1, x_2 ..., x_1_gradient, x_2_gradient, ... x_1_sq_g, x_2_sq_g...] num_input_tensors = (len(inputs) - 2) // 3 output_tensors = [] output_accumulated_squared_gradients = [] for i in range(num_input_tensors): x = inputs[i + 2] gradient = inputs[i + 2 + num_input_tensors] accumulated_squared_gradient = inputs[i + 2 + 2 * num_input_tensors] r = R / (relay.const(1.0, dtype=dtype_inputs) + T * decay_factor) g_regularized = norm_coefficient * x + gradient new_accumulated_squared_gradient = ( accumulated_squared_gradient + g_regularized * g_regularized ) h_adaptive = relay.sqrt(new_accumulated_squared_gradient) + epsilon x_new = x - r * g_regularized / h_adaptive output_tensors.append(x_new) output_accumulated_squared_gradients.append(new_accumulated_squared_gradient) # append lists together, momentums come after result tensors result = output_tensors + output_accumulated_squared_gradients return _expr.TupleWrapper(_expr.Tuple(result), len(result)) class Adam(OnnxOpConverter): """Operator converter for Adam op.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = attr.get("alpha", 0.9) beta = attr.get("beta", 0.999) # Note in the docs epsilon default is 0.0 but in the tests it is set to 1e-2: # https://git.io/Ju5C4 epsilon = attr.get("epsilon", 1e-2) norm_coefficient = attr.get("norm_coefficient", 0.0) norm_coefficient_post = attr.get("norm_coefficient_post", 0.0) R = inputs[0] T = inputs[1] assert ( len(inputs) - 2 ) % 4 == 0, f"Expect 4-lets for remaining inputs, found {len(inputs) - 2}" # convert attributes to constants, proper types dtype_inputs = infer_type(inputs[3]).checked_type.dtype inverse_alpha = relay.const(1 - alpha, dtype=dtype_inputs) alpha = relay.const(alpha, dtype=dtype_inputs) inverse_beta = relay.const(1 - beta, dtype=dtype_inputs) beta = relay.const(beta, dtype=dtype_inputs) epsilon = relay.const(epsilon, dtype=dtype_inputs) norm_coefficient = relay.const(norm_coefficient, dtype=dtype_inputs) norm_coefficient_post = relay.const(norm_coefficient_post, dtype=dtype_inputs) one = relay.const(1, dtype=dtype_inputs) T = relay.cast_like(T, inputs[3]) # Remaining inputs are: # [x_1, x_2 ..., x_1_grad, x_2_grad, ... x_1_g_accum, x_2_g_accum..., x_1_g_sq_accum, ...] num_input_tensors = (len(inputs) - 2) // 4 output_tensors = [] output_accumulated_gradients = [] output_accumulated_squared_gradients = [] for i in range(num_input_tensors): x = inputs[i + 2] g = inputs[i + 2 + num_input_tensors] v = inputs[i + 2 + 2 * num_input_tensors] h = inputs[i + 2 + 3 * num_input_tensors] g_regularized = norm_coefficient * x + g v_new = alpha * v + inverse_alpha * g_regularized h_new = beta * h + inverse_beta * g_regularized * g_regularized h_sqrt = relay.sqrt(h_new) + epsilon true_branch = R * relay.sqrt(one - relay.power(beta, T)) / (one - relay.power(alpha, T)) R_adjusted = relay.If(T > relay.const(0, dtype=dtype_inputs), true_branch, R) x_new = x - R_adjusted * (v_new / h_sqrt) x_result = (one - norm_coefficient_post) * x_new output_tensors.append(x_result) output_accumulated_gradients.append(v_new) output_accumulated_squared_gradients.append(h_new) # append lists together to get final result result = ( output_tensors + output_accumulated_gradients + output_accumulated_squared_gradients ) return _expr.TupleWrapper(_expr.Tuple(result), len(result)) class Momentum(OnnxOpConverter): """Operator converter for Momentum op.""" @classmethod def _impl_v1(cls, inputs, attr, params): alpha = attr["alpha"] beta = attr["beta"] mode = attr["mode"].decode("utf-8") norm_coefficient = attr["norm_coefficient"] assert mode in ["nesterov", "standard"], f"Unknown momentum mode {mode}" R = inputs[0] T = inputs[1] assert ( len(inputs) - 2 ) % 3 == 0, f"Expect triplets for remaining inputs, found {len(inputs) - 2}" # Remaining inputs are: # [x_1, x_2 ..., x_1_gradient, x_2_gradient, ... x_1_momentum, x_2_momentum...] num_input_tensors = (len(inputs) - 2) // 3 # convert attributes to constants dtype_inputs = infer_type(inputs[3]).checked_type.dtype alpha = relay.const(alpha, dtype=dtype_inputs) beta = relay.const(beta, dtype=dtype_inputs) norm_coefficient = relay.const(norm_coefficient, dtype=dtype_inputs) default_beta = relay.const(1.0, dtype=dtype_inputs) # Calculate updated values for every input output_tensors = [] output_momentums = [] for i in range(num_input_tensors): x = inputs[i + 2] gradient = inputs[i + 2 + num_input_tensors] momentum = inputs[i + 2 + 2 * num_input_tensors] g_regularized = norm_coefficient * x + gradient beta_adjusted = relay.If(T > relay.const(0, dtype="int64"), beta, default_beta) new_momentum = alpha * momentum + beta_adjusted * g_regularized if mode == "standard": x_output = x - R * new_momentum else: # mode == 'nesterov' x_output = x - R * (g_regularized + alpha * new_momentum) output_tensors.append(x_output) output_momentums.append(new_momentum) # append lists together, momentums come after result tensors result = output_tensors + output_momentums return _expr.TupleWrapper(_expr.Tuple(result), len(result)) # compatible operators that do NOT require any conversion. _identity_list = [] # _convert_map defines maps of name to converter functor(callable) # for 1 to 1 mapping, use Renamer if nothing but name is different # use AttrCvt if attributes need to be converted # for 1 to N mapping(composed), use custom callable functions # for N to 1 mapping, currently not supported(?) def _get_convert_map(opset): return { # defs/experimental "Identity": Renamer("copy"), "Affine": Affine.get_converter(opset), "BitShift": BitShift.get_converter(opset), "ThresholdedRelu": ThresholdedRelu.get_converter(opset), "ScaledTanh": ScaledTanh.get_converter(opset), "ParametricSoftplus": ParametricSoftPlus.get_converter(opset), "Constant": Constant.get_converter(opset), "ConstantOfShape": ConstantOfShape.get_converter(opset), # 'GivenTensorFill' "FC": AttrCvt("dense", ignores=["axis", "axis_w"]), "Scale": Scale.get_converter(opset), # 'GRUUnit' # 'ATen' # 'ImageScaler' # 'MeanVarianceNormalization' # 'Crop' # 'Embedding' "Upsample": Upsample.get_converter(opset), "SpatialBN": BatchNorm.get_converter(opset), # defs/generator # 'Constant' # Implemented # 'RandomUniform' # 'RandomNormal' # 'RandomUniformLike' # 'RandomNormalLike' # defs/logical # defs/math "Add": Add.get_converter(opset), "Sub": Sub.get_converter(opset), "Mul": Mul.get_converter(opset), "Div": Div.get_converter(opset), "Neg": Renamer("negative"), "Abs": Absolute.get_converter(opset), "Reciprocal": Reciprocal.get_converter(opset), "Floor": Renamer("floor"), "Ceil": Renamer("ceil"), "Round": Renamer("round"), "IsInf": IsInf.get_converter(opset), "IsNaN": Renamer("isnan"), "Sqrt": Renamer("sqrt"), "Relu": Renamer("relu"), "Celu": Celu.get_converter(opset), "LeakyRelu": Renamer("leaky_relu"), "Selu": Selu.get_converter(opset), "Elu": Elu.get_converter(opset), "Exp": Renamer("exp"), "Greater": Renamer("greater"), "GreaterOrEqual": Renamer("greater_equal"), "Less": Renamer("less"), "LessOrEqual": Renamer("less_equal"), "Log": Renamer("log"), "Acos": Renamer("acos"), "Acosh": Renamer("acosh"), "Asin": Renamer("asin"), "Asinh": Renamer("asinh"), "Atan": Renamer("atan"), "Atanh": Renamer("atanh"), "Cos": Renamer("cos"), "Cosh": Renamer("cosh"), "Sin": Renamer("sin"), "Sinh": Renamer("sinh"), "Tan": Renamer("tan"), "Tanh": Renamer("tanh"), "Pow": Pow.get_converter(opset), "PRelu": Prelu.get_converter(opset), "Sigmoid": Renamer("sigmoid"), "HardSigmoid": HardSigmoid.get_converter(opset), "Max": Maximum.get_converter(opset), "Min": Minimum.get_converter(opset), "Sum": Sum.get_converter(opset), "Mean": Mean.get_converter(opset), "Clip": Clip.get_converter(opset), "Softplus": Softplus.get_converter(opset), # softmax default axis is different in onnx "Softmax": Softmax.get_converter(opset), "LogSoftmax": LogSoftmax.get_converter(opset), "OneHot": OneHot.get_converter(opset), "Hardmax": Hardmax.get_converter(opset), "Shrink": Shrink.get_converter(opset), "Softsign": Softsign.get_converter(opset), "Gemm": Gemm.get_converter(opset), "MatMul": MatMul.get_converter(opset), "MatMulInteger16": MatMulInteger16.get_converter(opset), "Mod": Mod.get_converter(opset), "Xor": Renamer("logical_xor"), # defs/nn "AveragePool": AveragePool.get_converter(opset), "LpPool": LpPool.get_converter(opset), "GlobalLpPool": GlobalLpPool.get_converter(opset), "MaxPool": MaxPool.get_converter(opset), "MaxUnpool": MaxUnpool.get_converter(opset), "Conv": Conv.get_converter(opset), "ConvTranspose": ConvTranspose.get_converter(opset), "GlobalAveragePool": GlobalAveragePool.get_converter(opset), "GlobalMaxPool": GlobalMaxPool.get_converter(opset), "BatchNormalization": BatchNorm.get_converter(opset), "InstanceNormalization": InstanceNorm.get_converter(opset), # 'LpNormalization' "Dropout": AttrCvt("dropout", {"ratio": "rate"}, ignores=["is_test"]), "Flatten": Flatten.get_converter(opset), "LRN": LRN.get_converter(opset), # Recurrent Layers "LSTM": LSTM.get_converter(opset), "GRU": GRU.get_converter(opset), # defs/vision "MaxRoiPool": MaxRoiPool.get_converter(opset), "RoiAlign": RoiAlign.get_converter(opset), "NonMaxSuppression": NonMaxSuppression.get_converter(opset), # defs/reduction "ReduceMax": ReduceMax.get_converter(opset), "ReduceMin": ReduceMin.get_converter(opset), "ReduceSum": ReduceSum.get_converter(opset), "ReduceMean": ReduceMean.get_converter(opset), "ReduceProd": ReduceProd.get_converter(opset), "ReduceLogSumExp": ReduceLogSumExp.get_converter(opset), "ReduceLogSum": ReduceLogSum.get_converter(opset), "ReduceSumSquare": ReduceSumSquare.get_converter(opset), "ReduceL1": ReduceL1.get_converter(opset), "ReduceL2": ReduceL2.get_converter(opset), # defs/sorting "ArgMax": ArgMax.get_converter(opset), "ArgMin": ArgMin.get_converter(opset), "TopK": TopK.get_converter(opset), # defs/tensor "Cast": Cast.get_converter(opset), "Reshape": Reshape.get_converter(opset), "Expand": Expand.get_converter(opset), "Concat": Concat.get_converter(opset), "Split": Split.get_converter(opset), "Slice": Slice.get_converter(opset), "Transpose": AttrCvt("transpose", {"perm": "axes"}), "DepthToSpace": DepthToSpace.get_converter(opset), "SpaceToDepth": SpaceToDepth.get_converter(opset), "Gather": Gather.get_converter(opset), "GatherElements": GatherElements.get_converter(opset), "GatherND": GatherND.get_converter(opset), "Compress": Compress.get_converter(opset), "Size": AttrCvt("ndarray_size", extras={"dtype": "int64"}), "Scatter": Scatter.get_converter(opset), "ScatterElements": Scatter.get_converter(opset), "ScatterND": ScatterND.get_converter(opset), "EyeLike": EyeLike.get_converter(opset), "Squeeze": Squeeze.get_converter(opset), "Unsqueeze": Unsqueeze.get_converter(opset), "Pad": Pad.get_converter(opset), "Shape": Shape.get_converter(opset), "Sign": Sign.get_converter(opset), "Equal": Equal.get_converter(opset), "Not": Not.get_converter(opset), "And": And.get_converter(opset), "Tile": Tile.get_converter(opset), "Erf": Erf.get_converter(opset), "Where": Where.get_converter(opset), "Or": Or.get_converter(opset), "Resize": Resize.get_converter(opset), "NonZero": NonZero.get_converter(opset), "Range": Range.get_converter(opset), "CumSum": CumSum.get_converter(opset), "Unique": Unique.get_converter(opset), "Einsum": Einsum.get_converter(opset), # defs/control_flow "Loop": Loop.get_converter(opset), "If": If.get_converter(opset), # Torch ATen Dispatcher. "ATen": ATen.get_converter(opset), # Quantization "QuantizeLinear": QuantizeLinear.get_converter(opset), "DequantizeLinear": DequantizeLinear.get_converter(opset), "DynamicQuantizeLinear": DynamicQuantizeLinear.get_converter(opset), "ReverseSequence": ReverseSequence.get_converter(opset), "QLinearConv": QLinearConv.get_converter(opset), "QLinearConcat": QLinearConcat.get_converter(opset), "QLinearAdd": QLinearAdd.get_converter(opset), "QLinearMatMul": QLinearMatMul.get_converter(opset), "QLinearMul": QLinearMul.get_converter(opset), "QLinearSigmoid": QLinearSigmoid.get_converter(opset), "ConvInteger": ConvInteger.get_converter(opset), "QLinearAveragePool": QLinearAveragePool.get_converter(opset), "QLinearGlobalAveragePool": QLinearGlobalAveragePool.get_converter(opset), "QLinearLeakyRelu": QLinearLeakyRelu.get_converter(opset), # Random number generation. "RandomNormal": RandomNormal.get_converter(opset), "RandomNormalLike": RandomNormalLike.get_converter(opset), "RandomUniform": RandomUniform.get_converter(opset), "RandomUniformLike": RandomUniformLike.get_converter(opset), # Loss functions / training "NegativeLogLikelihoodLoss": NegativeLogLikelihoodLoss.get_converter(opset), "SoftmaxCrossEntropyLoss": SoftmaxCrossEntropyLoss.get_converter(opset), "Adagrad": Adagrad.get_converter(opset), "Adam": Adam.get_converter(opset), "Momentum": Momentum.get_converter(opset), } class GraphProto: """A helper class for handling Relay expression copying from pb2.GraphProto. Definition: https://github.com/onnx/onnx/blob/master/onnx/onnx.proto Parameters ---------- shape : dict of str to tuple, optional The input shape to the graph dtype : str or dict of str to str The input types to the graph freeze_params: bool If this parameter is true, the importer will take any provided onnx input values (weights, shapes, etc) and embed them into the relay model as Constants instead of variables. This allows more aggressive optimizations at compile time and helps in making models static if certain inputs represent attributes relay would traditionally consider compile-time constants. """ current = None def __init__(self, shape, dtype, freeze_params=False): self._nodes = {} self._params = {} self._inputs = {} self._renames = {} self._num_input = 0 self._num_param = 0 self._shape = shape.copy() if shape else {} self._input_names = [] self._dtype = dtype self.opset = None self._freeze_params = freeze_params def __enter__(self): self._old_manager = GraphProto.current GraphProto.current = self return self def __exit__(self, ptype, value, trace): GraphProto.current = self._old_manager def freeze(self, func, params): bind_map = {} for name in params.keys(): if name in self._nodes.keys(): bind_map[self._nodes[name]] = _expr.const(params[name]) body = _expr.bind(func.body, bind_map) fn = _function.Function(analysis.free_vars(body), body) return fn, {} def from_onnx(self, graph, opset, get_output_expr=False): """Construct Relay expression from ONNX graph. Onnx graph is a python protobuf object. The companion parameters will be handled automatically. However, the input names from onnx graph is vague, mixing inputs and network weights/bias such as "1", "2"... For convenience, we rename the `real` input names to "input_0", "input_1"... And renaming parameters to "param_0", "param_1"... Parameters ---------- graph : onnx protobuf object The loaded onnx graph opset : opset version get_output_expr: bool If set to true, this conversion will return each output expression rather than a packaged module. This can be useful when converting subgraphs to relay. Returns ------- mod : tvm.IRModule The returned relay module params : dict A dict of name: tvm.nd.array pairs, used as pretrained weights """ self.opset = opset # parse network inputs to relay, aka parameters for init_tensor in graph.initializer: if not init_tensor.name.strip(): raise ValueError("Tensor's name is required.") array = self._parse_array(init_tensor) if self._freeze_params: self._nodes[init_tensor.name] = _expr.const(array) else: self._params[init_tensor.name] = array self._nodes[init_tensor.name] = new_var( init_tensor.name, shape=self._params[init_tensor.name].shape, dtype=self._params[init_tensor.name].dtype, ) for i in graph.input: # from onnx v0.2, GraphProto.input has type ValueInfoProto, # and the name is 'i.name' i_name, i_shape, d_type, i_shape_name = get_info(i) if i_name in self._params: # i is a param instead of input self._num_param += 1 self._params[i_name] = self._params.pop(i_name) self._nodes[i_name] = new_var( i_name, shape=self._params[i_name].shape, dtype=self._params[i_name].dtype ) elif i_name in self._nodes: continue else: self._num_input += 1 self._input_names.append(i_name) if i_name in self._shape: i_shape = self._shape[i_name] else: if "?" in str(i_shape): warning_msg = ( "Input %s has unknown dimension shapes: %s. " "Specifying static values may improve performance" % (i_name, str(i_shape_name)) ) warnings.warn(warning_msg) if isinstance(self._dtype, dict): dtype = self._dtype[i_name] if i_name in self._dtype else d_type else: dtype = d_type self._nodes[i_name] = new_var(i_name, shape=i_shape, dtype=dtype) self._inputs[i_name] = self._nodes[i_name] # Only check user inputs in the outer-most graph scope. if self._old_manager is None: assert all( [name in self._input_names for name in self._shape.keys()] ), "User specified the shape for inputs that weren't found in the graph: " + str( self._shape ) # get list of unsupported ops convert_map = _get_convert_map(opset) unsupported_ops = set() for node in graph.node: op_name = node.op_type if ( op_name not in convert_map and op_name != "Constant" and op_name not in _identity_list ): unsupported_ops.add(op_name) if unsupported_ops: msg = "The following operators are not supported for frontend ONNX: " msg += ", ".join(unsupported_ops) raise tvm.error.OpNotImplemented(msg) # construct nodes, nodes are stored as directed acyclic graph for node in graph.node: op_name = node.op_type attr = self._parse_attr(node.attribute) # Create and populate input list. inputs = onnx_input() for i in node.input: if i != "": inputs.append(self._nodes[self._renames.get(i, i)]) else: inputs.append(None) i_name = self._parse_value_proto(node) node_output = self._fix_outputs(op_name, node.output) attr["tvm_custom"] = {} attr["tvm_custom"]["name"] = i_name attr["tvm_custom"]["num_outputs"] = len(node_output) op = self._convert_operator(op_name, inputs, attr, opset) if not isinstance(op, _expr.TupleWrapper): outputs_num = 1 else: outputs_num = len(op) if outputs_num == 1: op = fold_constant(op) else: op = _expr.TupleWrapper(fold_constant(op.astuple()), len(op)) if outputs_num > 1: # ONNX supports optional outputs for some nodes. # This block searches for missing outputs in the ONNX graph # and removes any unneeded ops valid_outputs = [False] * outputs_num for i, output in enumerate(node_output): if output != "": valid_outputs[i] = True # If we have outputs ONNX isn't expecting, we need to drop them if not all(valid_outputs): tup = op.astuple() # TupleWrapper can also wrap ops with TupleType outputs if isinstance(tup, _expr.Tuple): # For tuples, we extract the fields instead of using GetTupleItem outputs = [tup.fields[i] for i, valid in enumerate(valid_outputs) if valid] else: # For call nodes, we need to GetTupleItem outputs = [op[i] for i, valid in enumerate(valid_outputs) if valid] # Create the new op with valid outputs if len(outputs) == 1: op = outputs[0] elif len(outputs) != outputs_num: op = _expr.TupleWrapper(_expr.Tuple(outputs), len(outputs)) # Drop invalid outputs for the onnx node outputs_num = len(outputs) node_output = [output for output in node_output if output != ""] assert ( len(node_output) == outputs_num ), "Number of output mismatch {} vs {} in {}.".format( len(node_output), outputs_num, op_name ) if outputs_num == 1: self._nodes[node_output[0]] = op else: for k, i in zip(list(node_output), range(len(node_output))): self._nodes[k] = op[i] # now return the outputs outputs = [self._nodes[self._parse_value_proto(i)] for i in graph.output] outputs = outputs[0] if len(outputs) == 1 else _expr.Tuple(outputs) # If requested, directly return the converted expressions. if get_output_expr: return outputs ## Maintain the order of inputs and parameters from the ONNX graph, but only include ## those parameters that are needed to execute the relay graph free_vars = analysis.free_vars(outputs) nodes = {v: k for k, v in self._nodes.items()} free_vars = [nodes[var] for var in free_vars] for i_name in self._params: if i_name in free_vars and i_name not in self._inputs: self._inputs[i_name] = self._nodes[i_name] # Create a function from our output expression and all input variables. func = _function.Function([v for k, v in self._inputs.items()], outputs) return IRModule.from_expr(func), self._params def _parse_value_proto(self, value_proto): """Parse ValueProto or raw str.""" try: name = value_proto.name except AttributeError: name = value_proto return name def _parse_array(self, tensor_proto): np_array = get_numpy(tensor_proto).reshape(tuple(tensor_proto.dims)) return _nd.array(np_array) def _parse_attr(self, attr_proto): """Convert a list of AttributeProto to a dict, with names as keys.""" attrs = {} for a in attr_proto: for f in ["f", "i", "s", "g"]: if a.HasField(f): attrs[a.name] = getattr(a, f) for f in ["floats", "ints", "strings"]: if list(getattr(a, f)): assert a.name not in attrs, "Only one type of attr is allowed" attrs[a.name] = tuple(getattr(a, f)) for f in ["t"]: if a.HasField(f): attrs[a.name] = getattr(a, f) for f in ["tensors"]: if list(getattr(a, f)): assert a.name not in attrs, "Only one type of attr is allowed" attrs[a.name] = tuple(getattr(a, f)) for f in ["graphs"]: if list(getattr(a, f)): raise NotImplementedError("Field {} is not supported in relay.".format(f)) if a.name not in attrs: raise ValueError("Cannot parse attribute: \n{}\n.".format(a)) return attrs def _convert_operator(self, op_name, inputs, attrs, opset): """Convert ONNX operator into a Relay operator. The converter must specify conversions explicitly for incompatible name, and apply handlers to operator attributes. Parameters ---------- op_name : str Operator name, such as Convolution, FullyConnected inputs : list of tvm.relay.function.Function List of inputs. attrs : dict Dict of operator attributes opset : int Opset version Returns ------- sym : tvm.relay.function.Function Converted relay function """ convert_map = _get_convert_map(opset) if op_name in _identity_list: sym = get_relay_op(op_name)(*inputs, **attrs) elif op_name in convert_map: sym = convert_map[op_name](inputs, attrs, self._params) else: raise NotImplementedError("Operator {} not implemented.".format(op_name)) return sym def _fix_outputs(self, op_name, outputs): """A hack to handle dropout or similar operator that have more than one out in ONNX. """ if op_name == "Dropout": if len(outputs) == 1: return outputs # TODO(zhreshold): support dropout mask? outputs = outputs[:-1] return outputs def from_onnx( model, shape=None, dtype="float32", opset=None, freeze_params=False, convert_config=None ): """Convert a ONNX model into an equivalent Relay Function. ONNX graphs are represented as Python Protobuf objects. The companion parameters will be handled automatically. However, the input names from onnx graph is vague, mixing inputs and network weights/bias such as "1", "2"... For convenience, we rename the `real` input names to "input_0", "input_1"... And renaming parameters to "param_0", "param_1"... By default, ONNX defines models in terms of dynamic shapes. The ONNX importer retains that dynamism upon import, and the compiler attempts to convert the model into a static shapes at compile time. If this fails, there may still be dynamic operations in the model. Not all TVM kernels currently support dynamic shapes, please file an issue on discuss.tvm.apache.org if you hit an error with dynamic kernels. Parameters ---------- model : protobuf object ONNX ModelProto after ONNX v1.1.0 shape : dict of str to tuple, optional The input shape to the graph dtype : str or dict of str to str The input types to the graph opset : int, optional Override to autodetected opset. This can be helpful for some testing. freeze_params: bool If this parameter is true, the importer will take any provided onnx input values (weights, shapes, etc) and embed them into the relay model as Constants instead of variables. This allows more aggressive optimizations at compile time and helps in making models static if certain inputs represent attributes relay would traditionally consider compile-time constants. convert_config : Optional[Dict[str, Any]] Default config: use_nt_batch_matmul : bool = True True to convert qualified onnx `matmul` to `nn.batch_matmul` strict to NT format (transpose_a=False, transpose_b=True). Returns ------- mod : tvm.IRModule The relay module for compilation params : dict of str to tvm.nd.NDArray The parameter dict to be used by relay """ global ONNX_DEFAULT_CONFIGS if convert_config is not None: ONNX_DEFAULT_CONFIGS.update(convert_config) try: import onnx if hasattr(onnx.checker, "check_model"): # try use onnx's own model checker before converting any model try: onnx.checker.check_model(model) except Exception as e: # pylint: disable=c-extension-no-member, broad-except # the checker is a bit violent about errors, so simply print warnings here warnings.warn(str(e)) except ImportError: pass g = GraphProto(shape, dtype, freeze_params) graph = model.graph try: opset_in_model = model.opset_import[0].version if model.opset_import else 1 except AttributeError: opset_in_model = 1 if opset is None: opset = opset_in_model elif opset < opset_in_model: warnings.warn( "" f"You are overwritting original opset ver = {opset_in_model} by lower ver = {opset}. " f"That might cause model conversion errors." ) # Use the graph proto as a scope so that ops can access other nodes if needed. with g: mod, params = g.from_onnx(graph, opset) return mod, params
36.528687
120
0.585376
12df453648e15bf12d07e124dff7d1f97bad156c
15,955
py
Python
sim/multi_agent_power.py
mjycom/pensieve
b31cabf2742ad5f3d6ee67bf687704524b2ca9ea
[ "MIT" ]
null
null
null
sim/multi_agent_power.py
mjycom/pensieve
b31cabf2742ad5f3d6ee67bf687704524b2ca9ea
[ "MIT" ]
null
null
null
sim/multi_agent_power.py
mjycom/pensieve
b31cabf2742ad5f3d6ee67bf687704524b2ca9ea
[ "MIT" ]
null
null
null
import os import logging import numpy as np import multiprocessing as mp os.environ['CUDA_VISIBLE_DEVICES']='-1' import tensorflow as tf import env import a3c import load_trace S_INFO = 6 # bit_rate, buffer_size, next_chunk_size, bandwidth_measurement(throughput and time), chunk_til_video_end S_LEN = 8 # take how many frames in the past A_DIM = 6 ACTOR_LR_RATE = 0.0001 CRITIC_LR_RATE = 0.001 NUM_AGENTS = 16 TRAIN_SEQ_LEN = 100 # take as a train batch MODEL_SAVE_INTERVAL = 100 VIDEO_BIT_RATE = [300,750,1200,1850,2850,4300] # Kbps HD_REWARD = [1, 2, 3, 12, 15, 20] BUFFER_NORM_FACTOR = 10.0 CHUNK_TIL_VIDEO_END_CAP = 48.0 M_IN_K = 1000.0 REBUF_PENALTY = 4.3 # 1 sec rebuffering -> 3 Mbps SMOOTH_PENALTY = 1 DEFAULT_QUALITY = 1 # default video quality without agent RANDOM_SEED = 42 RAND_RANGE = 1000 SUMMARY_DIR = './results' LOG_FILE = './results/log' TEST_LOG_FOLDER = './test_results/' TRAIN_TRACES = './cooked_traces/' #NN_MODEL = './results/pretrain_linear_reward.ckpt' NN_MODEL = None pwr_base_table = [330, 330, 330, 330, 330, 330] # one-on-one match with video bit rate, which may not be correct net_model_coeff, net_model_intercept = 0.0031, 116.48 POWER_BUDGET = 450 MIN_REWARD = -999 def compute_power(bit_rate_pos, xput): base_pwr = pwr_base_table[bit_rate_pos] xput_pwr = net_model_coeff * xput + net_model_intercept pwr_bitrate = base_pwr + xput_pwr * VIDEO_BIT_RATE[bit_rate_pos] / xput #print ['compute_power:', VIDEO_BIT_RATE[bit_rate_pos], xput, pwr_bitrate] return pwr_bitrate def testing(epoch, nn_model, log_file): # clean up the test results folder os.system('rm -r ' + TEST_LOG_FOLDER) os.system('mkdir ' + TEST_LOG_FOLDER) # run test script os.system('python rl_test_power.py ' + nn_model) # append test performance to the log rewards = [] test_log_files = os.listdir(TEST_LOG_FOLDER) for test_log_file in test_log_files: reward = [] with open(TEST_LOG_FOLDER + test_log_file, 'r') as f: for line in f: parse = line.split() try: reward.append(float(parse[-1])) except IndexError: break rewards.append(np.sum(reward[1:])) rewards = np.array(rewards) rewards_min = np.min(rewards) rewards_5per = np.percentile(rewards, 5) rewards_mean = np.mean(rewards) rewards_median = np.percentile(rewards, 50) rewards_95per = np.percentile(rewards, 95) rewards_max = np.max(rewards) log_file.write(str(epoch) + '\t' + str(rewards_min) + '\t' + str(rewards_5per) + '\t' + str(rewards_mean) + '\t' + str(rewards_median) + '\t' + str(rewards_95per) + '\t' + str(rewards_max) + '\n') log_file.flush() def central_agent(net_params_queues, exp_queues): assert len(net_params_queues) == NUM_AGENTS assert len(exp_queues) == NUM_AGENTS logging.basicConfig(filename=LOG_FILE + '_central', filemode='w', level=logging.INFO) with tf.Session() as sess, open(LOG_FILE + '_test', 'w') as test_log_file: actor = a3c.ActorNetwork(sess, state_dim=[S_INFO, S_LEN], action_dim=A_DIM, learning_rate=ACTOR_LR_RATE) critic = a3c.CriticNetwork(sess, state_dim=[S_INFO, S_LEN], learning_rate=CRITIC_LR_RATE) summary_ops, summary_vars = a3c.build_summaries() sess.run(tf.global_variables_initializer()) writer = tf.summary.FileWriter(SUMMARY_DIR, sess.graph) # training monitor saver = tf.train.Saver() # save neural net parameters # restore neural net parameters nn_model = NN_MODEL if nn_model is not None: # nn_model is the path to file saver.restore(sess, nn_model) print("Model restored.") epoch = 0 # assemble experiences from agents, compute the gradients while True: # synchronize the network parameters of work agent actor_net_params = actor.get_network_params() critic_net_params = critic.get_network_params() for i in range(NUM_AGENTS): net_params_queues[i].put([actor_net_params, critic_net_params]) # Note: this is synchronous version of the parallel training, # which is easier to understand and probe. The framework can be # fairly easily modified to support asynchronous training. # Some practices of asynchronous training (lock-free SGD at # its core) are nicely explained in the following two papers: # https://arxiv.org/abs/1602.01783 # https://arxiv.org/abs/1106.5730 # record average reward and td loss change # in the experiences from the agents total_batch_len = 0.0 total_reward = 0.0 total_td_loss = 0.0 total_entropy = 0.0 total_agents = 0.0 # assemble experiences from the agents actor_gradient_batch = [] critic_gradient_batch = [] for i in range(NUM_AGENTS): s_batch, a_batch, r_batch, terminal, info = exp_queues[i].get() actor_gradient, critic_gradient, td_batch = \ a3c.compute_gradients( s_batch=np.stack(s_batch, axis=0), a_batch=np.vstack(a_batch), r_batch=np.vstack(r_batch), terminal=terminal, actor=actor, critic=critic) actor_gradient_batch.append(actor_gradient) critic_gradient_batch.append(critic_gradient) total_reward += np.sum(r_batch) total_td_loss += np.sum(td_batch) total_batch_len += len(r_batch) total_agents += 1.0 total_entropy += np.sum(info['entropy']) # compute aggregated gradient assert NUM_AGENTS == len(actor_gradient_batch) assert len(actor_gradient_batch) == len(critic_gradient_batch) # assembled_actor_gradient = actor_gradient_batch[0] # assembled_critic_gradient = critic_gradient_batch[0] # for i in range(len(actor_gradient_batch) - 1): # for j in range(len(assembled_actor_gradient)): # assembled_actor_gradient[j] += actor_gradient_batch[i][j] # assembled_critic_gradient[j] += critic_gradient_batch[i][j] # actor.apply_gradients(assembled_actor_gradient) # critic.apply_gradients(assembled_critic_gradient) for i in range(len(actor_gradient_batch)): actor.apply_gradients(actor_gradient_batch[i]) critic.apply_gradients(critic_gradient_batch[i]) # log training information epoch += 1 avg_reward = total_reward / total_agents avg_td_loss = total_td_loss / total_batch_len avg_entropy = total_entropy / total_batch_len logging.info('Epoch: ' + str(epoch) + ' TD_loss: ' + str(avg_td_loss) + ' Avg_reward: ' + str(avg_reward) + ' Avg_entropy: ' + str(avg_entropy)) summary_str = sess.run(summary_ops, feed_dict={ summary_vars[0]: avg_td_loss, summary_vars[1]: avg_reward, summary_vars[2]: avg_entropy }) writer.add_summary(summary_str, epoch) writer.flush() if epoch % MODEL_SAVE_INTERVAL == 0: # Save the neural net parameters to disk. save_path = saver.save(sess, SUMMARY_DIR + "/nn_model_ep_" + str(epoch) + ".ckpt") logging.info("Model saved in file: " + save_path) testing(epoch, SUMMARY_DIR + "/nn_model_ep_" + str(epoch) + ".ckpt", test_log_file) def agent(agent_id, all_cooked_time, all_cooked_bw, net_params_queue, exp_queue): net_env = env.Environment(all_cooked_time=all_cooked_time, all_cooked_bw=all_cooked_bw, random_seed=agent_id) with tf.Session() as sess, open(LOG_FILE + '_agent_' + str(agent_id), 'w') as log_file: actor = a3c.ActorNetwork(sess, state_dim=[S_INFO, S_LEN], action_dim=A_DIM, learning_rate=ACTOR_LR_RATE) critic = a3c.CriticNetwork(sess, state_dim=[S_INFO, S_LEN], learning_rate=CRITIC_LR_RATE) # initial synchronization of the network parameters from the coordinator actor_net_params, critic_net_params = net_params_queue.get() actor.set_network_params(actor_net_params) critic.set_network_params(critic_net_params) last_bit_rate = DEFAULT_QUALITY bit_rate = DEFAULT_QUALITY action_vec = np.zeros(A_DIM) action_vec[bit_rate] = 1 s_batch = [np.zeros((S_INFO, S_LEN))] a_batch = [action_vec] r_batch = [] entropy_record = [] time_stamp = 0 while True: # experience video streaming forever # the action is from the last decision # this is to make the framework similar to the real delay, sleep_time, buffer_size, rebuf, \ video_chunk_size, next_video_chunk_sizes, \ end_of_video, video_chunk_remain = \ net_env.get_video_chunk(bit_rate) time_stamp += delay # in ms time_stamp += sleep_time # in ms real_power = compute_power(bit_rate, float(video_chunk_size) / 1024.0 / float(delay) * 8 * M_IN_K) if real_power > POWER_BUDGET: reward = MIN_REWARD else: # -- linear reward -- # reward is video quality - rebuffer penalty - smoothness reward = VIDEO_BIT_RATE[bit_rate] / M_IN_K \ - REBUF_PENALTY * rebuf \ - SMOOTH_PENALTY * np.abs(VIDEO_BIT_RATE[bit_rate] - VIDEO_BIT_RATE[last_bit_rate]) / M_IN_K # -- log scale reward -- # log_bit_rate = np.log(VIDEO_BIT_RATE[bit_rate] / float(VIDEO_BIT_RATE[-1])) # log_last_bit_rate = np.log(VIDEO_BIT_RATE[last_bit_rate] / float(VIDEO_BIT_RATE[-1])) # reward = log_bit_rate \ # - REBUF_PENALTY * rebuf \ # - SMOOTH_PENALTY * np.abs(log_bit_rate - log_last_bit_rate) # -- HD reward -- # reward = HD_REWARD[bit_rate] \ # - REBUF_PENALTY * rebuf \ # - SMOOTH_PENALTY * np.abs(HD_REWARD[bit_rate] - HD_REWARD[last_bit_rate]) r_batch.append(reward) last_bit_rate = bit_rate # retrieve previous state if len(s_batch) == 0: state = [np.zeros((S_INFO, S_LEN))] else: state = np.array(s_batch[-1], copy=True) # dequeue history record state = np.roll(state, -1, axis=1) # this should be S_INFO number of terms state[0, -1] = VIDEO_BIT_RATE[bit_rate] / float(np.max(VIDEO_BIT_RATE)) # last quality state[1, -1] = buffer_size / BUFFER_NORM_FACTOR # 10 sec state[2, -1] = float(video_chunk_size) / float(delay) / M_IN_K # kilo byte / ms state[3, -1] = float(delay) / M_IN_K / BUFFER_NORM_FACTOR # 10 sec state[4, :A_DIM] = np.array(next_video_chunk_sizes) / M_IN_K / M_IN_K # mega byte state[5, -1] = np.minimum(video_chunk_remain, CHUNK_TIL_VIDEO_END_CAP) / float(CHUNK_TIL_VIDEO_END_CAP) # compute action probability vector action_prob = actor.predict(np.reshape(state, (1, S_INFO, S_LEN))) action_cumsum = np.cumsum(action_prob) bit_rate = (action_cumsum > np.random.randint(1, RAND_RANGE) / float(RAND_RANGE)).argmax() # Note: we need to discretize the probability into 1/RAND_RANGE steps, # because there is an intrinsic discrepancy in passing single state and batch states entropy_record.append(a3c.compute_entropy(action_prob[0])) # log time_stamp, bit_rate, buffer_size, reward log_file.write(str(time_stamp) + '\t' + str(VIDEO_BIT_RATE[bit_rate]) + '\t' + str(buffer_size) + '\t' + str(rebuf) + '\t' + str(video_chunk_size) + '\t' + str(delay) + '\t' + str(reward) + '\t' + str(real_power) + '\n') log_file.flush() # report experience to the coordinator if len(r_batch) >= TRAIN_SEQ_LEN or end_of_video: exp_queue.put([s_batch[1:], # ignore the first chuck a_batch[1:], # since we don't have the r_batch[1:], # control over it end_of_video, {'entropy': entropy_record}]) # synchronize the network parameters from the coordinator actor_net_params, critic_net_params = net_params_queue.get() actor.set_network_params(actor_net_params) critic.set_network_params(critic_net_params) del s_batch[:] del a_batch[:] del r_batch[:] del entropy_record[:] log_file.write('\n') # so that in the log we know where video ends # store the state and action into batches if end_of_video: last_bit_rate = DEFAULT_QUALITY bit_rate = DEFAULT_QUALITY # use the default action here action_vec = np.zeros(A_DIM) action_vec[bit_rate] = 1 s_batch.append(np.zeros((S_INFO, S_LEN))) a_batch.append(action_vec) else: s_batch.append(state) action_vec = np.zeros(A_DIM) action_vec[bit_rate] = 1 a_batch.append(action_vec) def main(): np.random.seed(RANDOM_SEED) assert len(VIDEO_BIT_RATE) == A_DIM # create result directory if not os.path.exists(SUMMARY_DIR): os.makedirs(SUMMARY_DIR) # inter-process communication queues net_params_queues = [] exp_queues = [] for i in range(NUM_AGENTS): net_params_queues.append(mp.Queue(1)) exp_queues.append(mp.Queue(1)) # create a coordinator and multiple agent processes # (note: threading is not desirable due to python GIL) coordinator = mp.Process(target=central_agent, args=(net_params_queues, exp_queues)) coordinator.start() all_cooked_time, all_cooked_bw, _ = load_trace.load_trace(TRAIN_TRACES) agents = [] for i in range(NUM_AGENTS): agents.append(mp.Process(target=agent, args=(i, all_cooked_time, all_cooked_bw, net_params_queues[i], exp_queues[i]))) for i in range(NUM_AGENTS): agents[i].start() # wait unit training is done coordinator.join() if __name__ == '__main__': main()
39.590571
117
0.575932
e58dd96af38b22b6b1659774a29e886f96cb63d3
6,019
py
Python
enaml/qt/qt_flow_area.py
ContinuumIO/enaml
15c20b035a73187e8e66fa20a43c3a4372d008bd
[ "BSD-3-Clause-Clear" ]
2
2017-09-17T18:05:55.000Z
2019-08-26T03:07:54.000Z
enaml/qt/qt_flow_area.py
ContinuumIO/enaml
15c20b035a73187e8e66fa20a43c3a4372d008bd
[ "BSD-3-Clause-Clear" ]
null
null
null
enaml/qt/qt_flow_area.py
ContinuumIO/enaml
15c20b035a73187e8e66fa20a43c3a4372d008bd
[ "BSD-3-Clause-Clear" ]
3
2021-02-23T09:19:14.000Z
2021-02-23T09:19:27.000Z
#------------------------------------------------------------------------------ # Copyright (c) 2013, Nucleic Development Team. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file COPYING.txt, distributed with this software. #------------------------------------------------------------------------------ from PyQt4.QtGui import QScrollArea, QFrame from atom.api import Typed from enaml.widgets.flow_area import ProxyFlowArea from .qt_constraints_widget import QtConstraintsWidget from .qt_flow_item import QtFlowItem from .q_flow_layout import QFlowLayout _DIRECTION_MAP = { 'left_to_right': QFlowLayout.LeftToRight, 'right_to_left': QFlowLayout.RightToLeft, 'top_to_bottom': QFlowLayout.TopToBottom, 'bottom_to_top': QFlowLayout.BottomToTop, } _ALIGN_MAP = { 'leading': QFlowLayout.AlignLeading, 'trailing': QFlowLayout.AlignTrailing, 'center': QFlowLayout.AlignCenter, 'justify': QFlowLayout.AlignJustify, } class QFlowArea(QScrollArea): """ A custom QScrollArea which implements a flowing layout. """ def __init__(self, parent=None): """ Initialize a QFlowArea. Parameters ---------- parent : QWidget, optional The parent widget of this widget. """ super(QFlowArea, self).__init__(parent) self._widget = QFrame(self) self._layout = QFlowLayout() self._widget.setLayout(self._layout) self.setWidgetResizable(True) self.setWidget(self._widget) def layout(self): """ Get the layout for this flow area. The majority of interaction for a QFlowArea takes place through its layout, rather than through the widget itself. Returns ------- result : QFlowLayout The flow layout for this flow area. """ return self._layout def setLayout(self, layout): """ A reimplemented method. Setting the layout on a QFlowArea is not supported. """ raise TypeError("Cannot set layout on a QFlowArea.") class QtFlowArea(QtConstraintsWidget, ProxyFlowArea): """ A Qt implementation of an Enaml ProxyFlowArea. """ #: A reference to the widget created by the proxy. widget = Typed(QFlowArea) #-------------------------------------------------------------------------- # Initialization API #-------------------------------------------------------------------------- def create_widget(self): """ Create the underlying widget. """ self.widget = QFlowArea(self.parent_widget()) def init_widget(self): """ Initialize the underlying control. """ super(QtFlowArea, self).init_widget() d = self.declaration self.set_direction(d.direction) self.set_align(d.align) self.set_horizontal_spacing(d.horizontal_spacing) self.set_vertical_spacing(d.vertical_spacing) self.set_margins(d.margins) def init_layout(self): """ Initialize the layout for the underlying control. """ super(QtFlowArea, self).init_layout() layout = self.widget.layout() for child in self.children(): if isinstance(child, QtFlowItem): layout.addWidget(child.widget) #-------------------------------------------------------------------------- # Child Events #-------------------------------------------------------------------------- def child_added(self, child): """ Handle the child added event for a QtMdiArea. """ super(QtFlowArea, self).child_added(child) if isinstance(child, QtFlowItem): for index, dchild in enumerate(self.children()): if dchild is child: self.widget.layout().insertWidget(index, child.widget) def child_removed(self, child): """ Handle the child removed event for a QtMdiArea. """ super(QtFlowArea, self).child_removed(child) if isinstance(child, QtFlowItem) and child.widget is not None: self.widget.layout().removeWidget(child.widget) #-------------------------------------------------------------------------- # ProxyFlowArea API #-------------------------------------------------------------------------- def set_direction(self, direction): """ Set the direction for the underlying control. """ self.widget.layout().setDirection(_DIRECTION_MAP[direction]) def set_align(self, align): """ Set the alignment for the underlying control. """ self.widget.layout().setAlignment(_ALIGN_MAP[align]) def set_horizontal_spacing(self, spacing): """ Set the horizontal spacing of the underyling control. """ self.widget.layout().setHorizontalSpacing(spacing) def set_vertical_spacing(self, spacing): """ Set the vertical spacing of the underlying control. """ self.widget.layout().setVerticalSpacing(spacing) def set_margins(self, margins): """ Set the margins of the underlying control. """ top, right, bottom, left = margins self.widget.layout().setContentsMargins(left, top, right, bottom) #-------------------------------------------------------------------------- # Overrides #-------------------------------------------------------------------------- def replace_constraints(self, old_cns, new_cns): """ A reimplemented QtConstraintsWidget layout method. Constraints layout may not cross the boundary of a FlowArea, so this method is no-op which stops the layout propagation. """ pass def clear_constraints(self, cns): """ A reimplemented QtConstraintsWidget layout method. Constraints layout may not cross the boundary of a FlowArea, so this method is no-op which stops the layout propagation. """ pass
31.678947
79
0.563216
f6075c7ce6c3cf4e6b930ef15253a603edaeeec6
7,205
py
Python
src/paper.py
aflaxman/performance_of_insilicova_replication_archive
6f02d2fda33c652f835ba2cf194ed9d9a1537d61
[ "MIT" ]
null
null
null
src/paper.py
aflaxman/performance_of_insilicova_replication_archive
6f02d2fda33c652f835ba2cf194ed9d9a1537d61
[ "MIT" ]
null
null
null
src/paper.py
aflaxman/performance_of_insilicova_replication_archive
6f02d2fda33c652f835ba2cf194ed9d9a1537d61
[ "MIT" ]
null
null
null
from __future__ import print_function from collections import namedtuple import re import os import sys import jinja2 import jinja2.meta import yaml from map_insilico import INSILICO_CAUSE_MAP from download import load_ghdx_data from annex_tables import prep_icds PAPER_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..', 'paper') SECTIONS = [ 'header', 'abstract', 'intro', 'methods', 'results', 'table_ccc', 'table_cccsmf', 'table_adult_ccc', 'table_child_ccc', 'table_neonate_ccc', 'table_sens_spec', 'discussion', 'footer', ] TABLES = [s for s in SECTIONS if s.startswith('table_')] FIGURES = [s for s in SECTIONS if s.startswith('figure_')] def get_adult_cause34_mapping(): df = load_ghdx_data('adult')[['gs_text34', 'gs_text46']].drop_duplicates() return dict(zip(df.gs_text46, df.gs_text34)) def render(): """Convert the multiple sections and tables into a single markdown file.""" print('Rendering markdown version of paper...', end='') sys.stdout.flush() templates_dir = os.path.join(PAPER_DIR, 'templates') loader = jinja2.FileSystemLoader(templates_dir) env = jinja2.Environment(loader=loader, undefined=jinja2.StrictUndefined) # Add the lists of tables and figures to the rendering environment. # Tables and figures are referenced by key (the string in the list) # and the number in the rendered text is calculated as the index of # the key in this list + 1 (since python is 0-indexed) env.globals['tables'] = TABLES env.globals['figures'] = FIGURES outfile = os.path.join(PAPER_DIR, 'paper.md') with open(outfile, 'w', encoding='utf8') as f: for section in SECTIONS: template = '{}.md'.format(section) if os.path.exists(os.path.join(PAPER_DIR, 'templates', template)): if section in ['header', 'footer']: context = get_metadata_context() else: context = get_section_context(section) # Fill values which are missing from the context dict with # a sentinel value to make drafts more readable. with open(os.path.join(templates_dir, template)) as t: tmpstring = t.read() ast = env.parse(tmpstring) keys = jinja2.meta.find_undeclared_variables(ast) for k in keys: if k not in context: context[k] = 'XXX' # Lancet requires decimal points be midline instead of baseline # post-process the rendered text f.write(env.get_template(template).render(context)) f.write('\n\n') else: print('{}.md not found'.format(section)) path = os.path.join(PAPER_DIR, 'additional_file1.md') adult_cause_map = get_adult_cause34_mapping() icds = prep_icds() with open(path, 'w', encoding='utf8') as f: context = {} for mod in ('adult', 'child', 'neonate'): context[mod] = [] icds_ = icds.loc[mod.title()].sort_values() order = icds_.index.tolist() causes = sorted(INSILICO_CAUSE_MAP[mod].items(), key=lambda x: order.index(x[0])) for cause46, cause_insilico in causes: if mod == 'adult': context[mod].append([ icds_.get(cause46, ''), cause46, adult_cause_map[cause46], cause_insilico ]) else: context[mod].append([ icds_.get(cause46, ''), cause46, cause_insilico, ]) f.write(env.get_template('additional_file1.md').render(context)) print(' done') """ pandoc --filter pandoc-citeproc --bibliography=paper\references.bib --csl paper\citation-style-vancouver-brackets.csl paper\paper.md paper\metadata.yml -o paper\drafts\paper.docx """ def get_metadata_context(): """Get the context dict for the header and footer sections.""" with open(os.path.join(PAPER_DIR, 'metadata.yml')) as f: metadata = yaml.load(f) authors, affiliations = format_author_list(metadata['authors'], metadata['affiliations']) corr_email, corr_initials = get_corresponding_author(metadata['authors']) return { 'title': metadata['title'], 'authors': authors, 'affiliations': affiliations, 'correspondance_email': corr_email, 'correspondance_initials': corr_initials, } def get_section_context(section): """Get the context dict for a section from a corresponding yaml file.""" datafile = os.path.join(PAPER_DIR, 'numbers', '{}.yml'.format(section)) if os.path.exists(datafile): with open(datafile) as f: context = yaml.load(f) return context else: return {} def format_author_list(authors, affiliations): """Format the author list for the jinja context. Args: authors (list of dicts): author records with name, affiliation, email affil (dict): mapping affiliation key to full instituation name Returns: * authors (list of tuples) * affilations (list of str) """ # Create a list of affiliations. These should appear in the same order as # the author and are used to add footnotes to authors. affils = [] for author in authors: affil = author['affiliation'] if affil not in affils: affils.append(affil) # Look up the position of the affiliated institution to add the # appropriate footnote Author = namedtuple('Author', ['name', 'notes', 'email']) auth_list = [] for author in authors: affil = author['affiliation'] affil_num = affils.index(affil) + 1 notes = '^{}^'.format(affil_num) if 'corresponding_author' in author and author['corresponding_author']: notes = '{}*'.format(notes) entry = Author(author['name'], notes, author['email']) auth_list.append(entry) # Create the list of affiliation footnotes affil_list = [] for i, affil in enumerate(affils): institution = affiliations[affil] entry = "^{}^ {}".format((i + 1), institution) affil_list.append(entry) return auth_list, affil_list def get_corresponding_author(authors): """Get the email and initials of the corresponding author.""" corr_author = [] for author in authors: if 'corresponding_author' in author and author['corresponding_author']: corr_author.append(author) assert len(corr_author) == 1 corr_author = corr_author[0] return corr_author['email'], get_initials(corr_author['name']) def get_initials(name): """Return the intials from a string.""" return ''.join([x[0].upper() for x in name.split()]) def get_contributions(authors): pass if __name__ == '__main__': render()
32.899543
79
0.606523
e1f0b526a164aaa08cebfec31c2eac154e561980
613
py
Python
lib/python3.8/site-packages/ansible_collections/cisco/asa/plugins/module_utils/network/asa/argspec/facts/facts.py
cjsteel/python3-venv-ansible-2.10.5
c95395c4cae844dc66fddde9b4343966f4b2ecd5
[ "Apache-1.1" ]
null
null
null
lib/python3.8/site-packages/ansible_collections/cisco/asa/plugins/module_utils/network/asa/argspec/facts/facts.py
cjsteel/python3-venv-ansible-2.10.5
c95395c4cae844dc66fddde9b4343966f4b2ecd5
[ "Apache-1.1" ]
null
null
null
lib/python3.8/site-packages/ansible_collections/cisco/asa/plugins/module_utils/network/asa/argspec/facts/facts.py
cjsteel/python3-venv-ansible-2.10.5
c95395c4cae844dc66fddde9b4343966f4b2ecd5
[ "Apache-1.1" ]
null
null
null
# # -*- coding: utf-8 -*- # Copyright 2019 Red Hat # GNU General Public License v3.0+ # (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """ The arg spec for the asa facts module. """ from __future__ import absolute_import, division, print_function __metaclass__ = type class FactsArgs(object): """ The arg spec for the asa facts module """ def __init__(self, **kwargs): pass argument_spec = { "gather_subset": dict( default=["!config"], type="list", elements="str" ), "gather_network_resources": dict(type="list", elements="str"), }
21.892857
70
0.628059
51552e7cad488c618f738d8077a6a2bf8a49b544
26,117
py
Python
pysilcam/__main__.py
Sondreab/PySilCam
a855f769fee8f86a364f9dc2c448c74a7a71c2a6
[ "BSD-3-Clause" ]
null
null
null
pysilcam/__main__.py
Sondreab/PySilCam
a855f769fee8f86a364f9dc2c448c74a7a71c2a6
[ "BSD-3-Clause" ]
null
null
null
pysilcam/__main__.py
Sondreab/PySilCam
a855f769fee8f86a364f9dc2c448c74a7a71c2a6
[ "BSD-3-Clause" ]
null
null
null
# -*- coding: utf-8 -*- import sys import time import datetime import logging from docopt import docopt import numpy as np from pysilcam import __version__ from pysilcam.acquisition import Acquire from pysilcam.background import backgrounder from pysilcam.process import statextract import pysilcam.oilgas as scog from pysilcam.config import PySilcamSettings import os import pysilcam.silcam_classify as sccl import multiprocessing from multiprocessing.managers import BaseManager from queue import LifoQueue import psutil from shutil import copyfile import warnings if not sys.warnoptions: warnings.simplefilter("ignore") title = ''' ____ ____ _ _ ____ | _ \ _ _/ ___|(_) |/ ___|__ _ _ __ ___ | |_) | | | \___ \| | | | / _` | '_ ` _ \ | __/| |_| |___) | | | |__| (_| | | | | | | |_| \__, |____/|_|_|\____\__,_|_| |_| |_| |___/ ''' def silcam(): '''Aquire/process images from the SilCam Usage: silcam acquire <configfile> <datapath> silcam process <configfile> <datapath> [--nbimages=<number of images>] [--nomultiproc] silcam realtime <configfile> <datapath> [--discwrite] [--nomultiproc] silcam -h | --help silcam --version Arguments: acquire Acquire images process Process images realtime Acquire images from the camera and process them in real time Options: --nbimages=<number of images> Number of images to process. --discwrite Write images to disc. --nomultiproc Deactivate multiprocessing. -h --help Show this screen. --version Show version. ''' print(title) print('') args = docopt(silcam.__doc__, version='PySilCam {0}'.format(__version__)) if args['<datapath>']: # The following is solving problems in transfering arguments from shell on windows # Remove ' characters datapath = os.path.normpath(args['<datapath>'].replace("'","")) # Remove " characters at the end (occurs when user give \" at the end) while datapath[-1] == '"': datapath = datapath[:-1] # this is the standard processing method under development now if args['process']: multiProcess = True if args['--nomultiproc']: multiProcess = False nbImages = args['--nbimages'] if (nbImages != None): try: nbImages = int(nbImages) except ValueError: print('Expected type int for --nbimages.') sys.exit(0) silcam_process(args['<configfile>'] ,datapath, multiProcess=multiProcess, realtime=False, nbImages=nbImages) elif args['acquire']: # this is the standard acquisition method under development now silcam_acquire(datapath, args['<configfile>'], writeToDisk=True) elif args['realtime']: discWrite = False if args['--discwrite']: discWrite = True multiProcess = True if args['--nomultiproc']: multiProcess = False silcam_process(args['<configfile>'], datapath, multiProcess=multiProcess, realtime=True, discWrite=discWrite) def silcam_acquire(datapath, config_filename, writeToDisk=True, gui=None): '''Aquire images from the SilCam Args: datapath (str) : Path to the image storage config_filename=None (str) : Camera config file writeToDisk=True (Bool) : True will enable writing of raw data to disc False will disable writing of raw data to disc gui=None (Class object) : Queue used to pass information between process thread and GUI initialised in ProcThread within guicals.py ''' #Load the configuration, create settings object settings = PySilcamSettings(config_filename) #Print configuration to screen print('---- CONFIGURATION ----\n') settings.config.write(sys.stdout) print('-----------------------\n') if (writeToDisk): # Copy config file configFile2Copy = datetime.datetime.now().strftime('D%Y%m%dT%H%M%S.%f') + os.path.basename(config_filename) copyfile(config_filename, os.path.join(datapath, configFile2Copy)) configure_logger(settings.General) logger = logging.getLogger(__name__ + '.silcam_acquire') # update path_length updatePathLength(settings, logger) acq = Acquire(USE_PYMBA=True) # ini class t1 = time.time() aqgen = acq.get_generator(datapath, camera_config_file=config_filename, writeToDisk=writeToDisk) for i, (timestamp, imraw) in enumerate(aqgen): t2 = time.time() aq_freq = np.round(1.0/(t2 - t1), 1) requested_freq = 16.0 rest_time = (1 / requested_freq) - (1 / aq_freq) rest_time = np.max([rest_time, 0.]) time.sleep(rest_time) actual_aq_freq = 1/(1/aq_freq + rest_time) print('Image {0} acquired at frequency {1:.1f} Hz'.format(i, actual_aq_freq)) t1 = time.time() if not gui==None: while (gui.qsize() > 0): try: gui.get_nowait() time.sleep(0.001) except: continue #try: rtdict = dict() rtdict = {'dias': 0, 'vd_oil': 0, 'vd_gas': 0, 'oil_d50': 0, 'gas_d50': 0, 'saturation': 0} gui.put_nowait((timestamp, imraw, imraw, rtdict)) # the standard processing method under active development def silcam_process(config_filename, datapath, multiProcess=True, realtime=False, discWrite=False, nbImages=None, gui=None, overwriteSTATS = True): '''Run processing of SilCam images Args: config_filename (str) : The filename (including path) of the config.ini file datapath (str) : Path to the data directory multiProcess=True (bool) : If True, multiprocessing is used realtime=False (bool) : If True, a faster but less accurate methods is used for segmentation and rts stats become active discWrite=False (bool) : True will enable writing of raw data to disc False will disable writing of raw data to disc nbImages=None (int) : Number of images to skip gui=None (Class object) : Queue used to pass information between process thread and GUI initialised in ProcThread within guicals.py ''' print(config_filename) print('') #---- SETUP ---- #Load the configuration, create settings object settings = PySilcamSettings(config_filename) #Print configuration to screen print('---- CONFIGURATION ----\n') settings.config.write(sys.stdout) print('-----------------------\n') #Configure logging configure_logger(settings.General) logger = logging.getLogger(__name__ + '.silcam_process') logger.info('Processing path: ' + datapath) if realtime: if discWrite: # copy config file into data path configFile2Copy = datetime.datetime.now().strftime('D%Y%m%dT%H%M%S.%f') + os.path.basename(config_filename) copyfile(config_filename, os.path.join(datapath, configFile2Copy)) # update path_length updatePathLength(settings, logger) #Initialize the image acquisition generator aq = Acquire(USE_PYMBA=realtime) aqgen = aq.get_generator(datapath, writeToDisk=discWrite, camera_config_file=config_filename) #Get number of images to use for background correction from config print('* Initializing background image handler') bggen = backgrounder(settings.Background.num_images, aqgen, bad_lighting_limit = settings.Process.bad_lighting_limit, real_time_stats=settings.Process.real_time_stats) # make datafilename autogenerated for easier batch processing if (not os.path.isdir(settings.General.datafile)): logger.info('Folder ' + settings.General.datafile + ' was not found and is created') os.mkdir(settings.General.datafile) procfoldername = os.path.split(datapath)[-1] datafilename = os.path.join(settings.General.datafile,procfoldername) logger.info('output stats to: ' + datafilename) if os.path.isfile(datafilename + '-STATS.csv') and overwriteSTATS: logger.info('removing: ' + datafilename + '-STATS.csv') print('Overwriting ' + datafilename + '-STATS.csv') os.remove(datafilename + '-STATS.csv') # Create export directory if needed if settings.ExportParticles.export_images: if (not os.path.isdir(settings.ExportParticles.outputpath)): logger.info('Export folder ' + settings.ExportParticles.outputpath + ' was not found and is created') os.mkdir(settings.ExportParticles.outputpath) #---- END SETUP ---- #---- RUN PROCESSING ---- # If only one core is available, no multiprocessing will be done multiProcess = multiProcess and (multiprocessing.cpu_count() > 1) print('* Commencing image acquisition and processing') # initialise realtime stats class regardless of whether it is used later rts = scog.rt_stats(settings) if (multiProcess): proc_list = [] mem = psutil.virtual_memory() memAvailableMb = mem.available >> 20 distributor_q_size = np.min([int(memAvailableMb / 2 * 1/15), np.copy(multiprocessing.cpu_count() * 4)]) logger.debug('setting up processing queues') inputQueue, outputQueue = defineQueues(realtime, distributor_q_size) logger.debug('setting up processing distributor') distributor(inputQueue, outputQueue, config_filename, proc_list, gui) # iterate on the bggen generator to obtain images logger.debug('Starting acquisition loop') t2 = time.time() for i, (timestamp, imc, imraw) in enumerate(bggen): t1 = np.copy(t2) t2 = time.time() print(t2-t1, 'Acquisition loop time') logger.debug('Corrected image ' + str(timestamp) + ' acquired from backgrounder') # handle errors if the loop function fails for any reason if (nbImages != None): if (nbImages <= i): break logger.debug('Adding image to processing queue: ' + str(timestamp)) addToQueue(realtime, inputQueue, i, timestamp, imc) # the tuple (i, timestamp, imc) is added to the inputQueue logger.debug('Processing queue updated') # write the images that are available for the moment into the csv file logger.debug('Running collector') collector(inputQueue, outputQueue, datafilename, proc_list, False, settings, rts=rts) logger.debug('Data collected') if not gui==None: logger.debug('Putting data on GUI Queue') while (gui.qsize() > 0): try: gui.get_nowait() time.sleep(0.001) except: continue #try: rtdict = dict() rtdict = {'dias': rts.dias, 'vd_oil': rts.vd_oil, 'vd_gas': rts.vd_gas, 'oil_d50': rts.oil_d50, 'gas_d50': rts.gas_d50, 'saturation': rts.saturation} gui.put_nowait((timestamp, imc, imraw, rtdict)) logger.debug('GUI queue updated') logger.debug('Acquisition loop completed') if (not realtime): logger.debug('Halting processes') for p in proc_list: inputQueue.put(None) # some images might still be waiting to be written to the csv file logger.debug('Running collector on left over data') collector(inputQueue, outputQueue, datafilename, proc_list, True, settings, rts=rts) logger.debug('All data collected') for p in proc_list: p.join() logger.info('%s.exitcode = %s' % (p.name, p.exitcode) ) else: # load the model for particle classification and keep it for later nnmodel = [] nnmodel, class_labels = sccl.load_model(model_path=settings.NNClassify.model_path) # iterate on the bggen generator to obtain images for i, (timestamp, imc, imraw) in enumerate(bggen): # handle errors if the loop function fails for any reason if (nbImages != None): if (nbImages <= i): break image = (i, timestamp, imc) # one single image is processed at a time stats_all = processImage(nnmodel, class_labels, image, settings, logger, gui) if (not stats_all is None): # if frame processed # write the image into the csv file writeCSV( datafilename, stats_all) print('PROCESSING COMPLETE.') #---- END ---- def addToQueue(realtime, inputQueue, i, timestamp, imc): ''' Put a new image into the Queue. Args: realtime (bool) : boolean indicating wether the processing is done in realtime inputQueue () : queue where the images are added for processing initilised using defineQueues() i (int) : index of the image acquired timestamp (timestamp): timestamp of the acquired image imc (uint8) : corrected image ''' if (realtime): try: inputQueue.put_nowait((i, timestamp, imc)) except: pass else: while True: try: inputQueue.put((i, timestamp, imc), True, 0.5) break except: pass def defineQueues(realtime, size): ''' Define the input and output queues depending on wether we are in realtime mode Args: realtime: boolean indicating whether the processing is done in realtime size: max size of the queue Returns: inputQueue outputQueue ''' createQueues = createLIFOQueues if realtime else createFIFOQueues return createQueues(size) def createLIFOQueues(size): ''' Create a LIFOQueue (Last In First Out) Args: size: max size of the queue Returns: inputQueue outputQueue ''' manager = MyManager() manager.start() inputQueue = manager.LifoQueue(size) outputQueue = manager.LifoQueue(size) return inputQueue, outputQueue def createFIFOQueues(size): ''' Create a FIFOQueue (First In First Out) Args: size: max size of the queue Returns: inputQueue outputQueue ''' inputQueue = multiprocessing.Queue(size) outputQueue = multiprocessing.Queue(size) return inputQueue, outputQueue class MyManager(BaseManager): ''' Customized manager class used to register LifoQueues ''' pass MyManager.register('LifoQueue', LifoQueue) def processImage(nnmodel, class_labels, image, settings, logger, gui): ''' Proceses an image Args: nnmodel (tensorflow model object) : loaded using sccl.load_model() class_labels (str) : loaded using sccl.load_model() image (tuple) : tuple contianing (i, timestamp, imc) where i is an int referring to the image number timestamp is the image timestamp obtained from passing the filename imc is the background-corrected image obtained using the backgrounder generator settings (PySilcamSettings) : Settings read from a .ini file logger (logger object) : logger object created using configure_logger() gui=None (Class object) : Queue used to pass information between process thread and GUI initialised in ProcThread within guicals.py Returns: stats_all (DataFrame) : stats dataframe containing particle statistics ''' try: i = image[0] timestamp = image[1] imc = image[2] #time the full acquisition and processing loop start_time = time.clock() logger.info('Processing time stamp {0}'.format(timestamp)) #Calculate particle statistics stats_all, imbw, saturation = statextract(imc, settings, timestamp, nnmodel, class_labels) # if there are not particles identified, assume zero concentration. # This means that the data should indicate that a 'good' image was # obtained, without any particles. Therefore fill all values with nans # and add the image timestamp if len(stats_all) == 0: print('ZERO particles identified') z = np.zeros(len(stats_all.columns)) * np.nan stats_all.loc[0] = z # 'export name' should not be nan because then this column of the # DataFrame will contain multiple types, so label with string instead if settings.ExportParticles.export_images: stats_all['export name'] = 'not_exported' # add timestamp to each row of particle statistics stats_all['timestamp'] = timestamp # add saturation to each row of particle statistics stats_all['saturation'] = saturation #Time the particle statistics processing step proc_time = time.clock() - start_time #Print timing information for this iteration infostr = ' Image {0} processed in {1:.2f} sec ({2:.1f} Hz). ' infostr = infostr.format(i, proc_time, 1.0/proc_time) print(infostr) #---- END MAIN PROCESSING LOOP ---- #---- DO SOME ADMIN ---- except: infostr = 'Failed to process frame {0}, skipping.'.format(i) logger.warning(infostr, exc_info=True) print(infostr) return None return stats_all def loop(config_filename, inputQueue, outputQueue, gui=None): ''' Main processing loop, run for each image Args: config_filename (str) : path of the config ini file inputQueue () : queue where the images are added for processing initilised using defineQueues() outputQueue () : queue where information is retrieved from processing initilised using defineQueues() gui=None (Class object) : Queue used to pass information between process thread and GUI initialised in ProcThread within guicals.py ''' settings = PySilcamSettings(config_filename) configure_logger(settings.General) logger = logging.getLogger(__name__ + '.silcam_process') # load the model for particle classification and keep it for later nnmodel = [] nnmodel, class_labels = sccl.load_model(model_path=settings.NNClassify.model_path) while True: task = inputQueue.get() if task is None: outputQueue.put(None) break stats_all = processImage(nnmodel, class_labels, task, settings, logger, gui) if (not stats_all is None): outputQueue.put(stats_all) else: logger.debug('No stats found. skipping image.') def distributor(inputQueue, outputQueue, config_filename, proc_list, gui=None): ''' distributes the images in the input queue to the different loop processes Args: inputQueue () : queue where the images are added for processing initilised using defineQueues() outputQueue () : queue where information is retrieved from processing initilised using defineQueues() proc_list (list) : list of multiprocessing objects gui=None (Class object) : Queue used to pass information between process thread and GUI initialised in ProcThread within guicals.py ''' numCores = max(1, multiprocessing.cpu_count() - 2) for nbCore in range(numCores): proc = multiprocessing.Process(target=loop, args=(config_filename, inputQueue, outputQueue, gui)) proc_list.append(proc) proc.start() def collector(inputQueue, outputQueue, datafilename, proc_list, testInputQueue, settings, rts=None): ''' collects all the results and write them into the stats.csv file Args: inputQueue () : queue where the images are added for processing initilised using defineQueues() outputQueue () : queue where information is retrieved from processing initilised using defineQueues() datafilename (str) : filename where processed data are written to csv proc_list (list) : list of multiprocessing objects testInputQueue (Bool) : if True function will keep collecting until inputQueue is empty settings (PySilcamSettings) : Settings read from a .ini file rts (Class): : Class for realtime stats ''' countProcessFinished = 0 while ((outputQueue.qsize()>0) or (testInputQueue and inputQueue.qsize()>0)): task = outputQueue.get() if (task is None): countProcessFinished = countProcessFinished + 1 if (len(proc_list) == 0): # no multiprocessing break # The collector can be stopped only after all loop processes are finished elif (countProcessFinished == len(proc_list)): break continue writeCSV(datafilename, task) collect_rts(settings, rts, task) def collect_rts(settings, rts, stats_all): ''' Updater for realtime statistics Args: settings (PySilcamSettings) : Settings read from a .ini file settings.logfile is optional settings.loglevel mest exist rts (Class) : Class for realtime stats initialised using scog.rt_stats() stats_all (DataFrame) : stats dataframe returned from processImage() ''' if settings.Process.real_time_stats: try: rts.stats = rts.stats().append(stats_all) except: rts.stats = rts.stats.append(stats_all) rts.update() filename = os.path.join(settings.General.datafile, 'OilGasd50.csv') rts.to_csv(filename) def writeCSV(datafilename, stats_all): ''' Writes particle stats into the csv ouput file Args: datafilename (str): filame prefix for -STATS.csv file that may or may not include a path stats_all (DataFrame): stats dataframe returned from processImage() ''' # create or append particle statistics to output file # if the output file does not already exist, create it # otherwise data will be appended # @todo accidentally appending to an existing file could be dangerous # because data will be duplicated (and concentrations would therefore # double) GUI promts user regarding this - directly-run functions are more dangerous. if not os.path.isfile(datafilename + '-STATS.csv'): stats_all.to_csv(datafilename + '-STATS.csv', index_label='particle index') else: stats_all.to_csv(datafilename + '-STATS.csv', mode='a', header=False) def check_path(filename): '''Check if a path exists, and create it if not Args: filename (str): filame that may or may not include a path ''' file = os.path.normpath(filename) path = os.path.dirname(file) if path: if not os.path.isdir(path): try: os.makedirs(path) except: print('Could not create catalog:',path) def configure_logger(settings): '''Configure a logger according to the settings. Args: settings (PySilcamSettings): Settings read from a .ini file settings.logfile is optional settings.loglevel mest exist ''' if settings.logfile: check_path(settings.logfile) logging.basicConfig(filename=settings.logfile, level=getattr(logging, settings.loglevel)) else: logging.basicConfig(level=getattr(logging, settings.loglevel)) def updatePathLength(settings, logger): '''Adjusts the path length of systems with the actuator installed and RS232 connected. Args: settings (PySilcamSettings): Settings read from a .ini file settings.logfile is optional settings.loglevel mest exist logger (logger object) : logger object created using configure_logger() ''' try: logger.info('Updating path length') pl = scog.PathLength(settings.PostProcess.com_port) pl.gap_to_mm(settings.PostProcess.path_length) pl.finish() except: logger.warning('Could not open port. Path length will not be adjusted.')
38.127007
143
0.596929
5a05eda1241a4bae5182a5c74c06173201e6a21e
14,337
py
Python
dev_scripts/git/git_hooks/utils.py
alphamatic/amp
5018137097159415c10eaa659a2e0de8c4e403d4
[ "BSD-3-Clause" ]
5
2021-08-10T23:16:44.000Z
2022-03-17T17:27:00.000Z
dev_scripts/git/git_hooks/utils.py
alphamatic/amp
5018137097159415c10eaa659a2e0de8c4e403d4
[ "BSD-3-Clause" ]
330
2021-06-10T17:28:22.000Z
2022-03-31T00:55:48.000Z
dev_scripts/git/git_hooks/utils.py
alphamatic/amp
5018137097159415c10eaa659a2e0de8c4e403d4
[ "BSD-3-Clause" ]
6
2021-06-10T17:20:32.000Z
2022-03-28T08:08:03.000Z
""" Import as: import dev_scripts.git.git_hooks.utils as dsgghout """ # NOTE: This file should depend only on Python standard libraries. import compileall import inspect import logging import os import re import string import subprocess import sys from typing import Any, List, Optional, Tuple _LOG = logging.getLogger(__name__) # TODO(gp): Check these hooks # https://github.com/pre-commit/pre-commit-hooks/tree/master/pre_commit_hooks # https://github.com/pre-commit/pre-commit-hooks/blob/master/pre_commit_hooks/check_ast.py # https://github.com/pre-commit/pre-commit-hooks/blob/master/pre_commit_hooks/check_added_large_files.py # https://github.com/pre-commit/pre-commit-hooks/blob/master/pre_commit_hooks/check_merge_conflict.py # https://code-maven.com/enforcing-commit-message-format-in-git # TODO(gp): Add a check for "Do not commit" or "Do not merge". # The path to the git-binary: _GIT_BINARY_PATH = "git" # Stat copy-paste from helpers/printing.py _COLOR_MAP = { "blue": 94, "green": 92, "white": 0, "purple": 95, "red": 91, "yellow": 33, # Blu. "DEBUG": 34, # Cyan. "INFO": 36, # Yellow. "WARNING": 33, # Red. "ERROR": 31, # White on red background. "CRITICAL": 41, } def color_highlight(text: str, color: str) -> str: """ Return a colored string. """ prefix = "\033[" suffix = "\033[0m" assert color in _COLOR_MAP color_code = _COLOR_MAP[color] txt = f"{prefix}{color_code}m{text}{suffix}" return txt # End copy-paste. # Start copy-paste from helpers/introspection.py def get_function_name(count: int = 0) -> str: """ Return the name of the function calling this function, i.e., the name of the function calling `get_function_name()`. """ ptr = inspect.currentframe() # count=0 corresponds to the calling function, so we need to add an extra # step walking the call stack. count += 1 for _ in range(count): assert ptr is not None ptr = ptr.f_back func_name = ptr.f_code.co_name # type: ignore return func_name # End copy-paste. # Start copy-paste from helpers/system_interaction.py def _system_to_string( cmd: str, abort_on_error: bool = True, verbose: bool = False ) -> Tuple[int, str]: assert isinstance(cmd, str), "Type of '%s' is %s" % (str(cmd), type(cmd)) if verbose: print(f"> {cmd}") stdout = subprocess.PIPE stderr = subprocess.STDOUT with subprocess.Popen( cmd, shell=True, executable="/bin/bash", stdout=stdout, stderr=stderr ) as p: output = "" while True: line = p.stdout.readline().decode("utf-8") # type: ignore if not line: break # print((line.rstrip("\n"))) output += line p.stdout.close() # type: ignore rc = p.wait() if abort_on_error and rc != 0: msg = ( "cmd='%s' failed with rc='%s'" % (cmd, rc) ) + "\nOutput of the failing command is:\n%s" % output _LOG.error(msg) sys.exit(-1) return rc, output # End copy-paste. # ############################################################################# # Utils. # ############################################################################# def _get_files() -> List[str]: """ Get all the files to process. """ # Check all files staged and modified, i.e., skipping only un-tracked files. # TODO(gp): In reality we should check only staged files. # > git status --porcelain -uno # M dev_scripts/git/git_hooks/pre-commit.py cmd = f"{_GIT_BINARY_PATH} status --porcelain --untracked-files=no" rc, txt = _system_to_string(cmd) _ = rc file_list: List[str] = txt.splitlines() # Remove the Git codes (in the first 3 characters) leaving only the file name. file_list = [file_name[3:] for file_name in file_list] return file_list def _report() -> str: func_name = get_function_name(count=1) print("\n" + color_highlight(f"##### {func_name} ######", "purple")) return func_name def _handle_error(func_name: str, error: bool, abort_on_error: bool) -> None: """ Abort depending on the error code `error` and on the desired behavior `abort_on_error`. """ if error: print("\n" + color_highlight(f"'{func_name}' failed", "red")) if abort_on_error: sys.exit(-1) else: print(color_highlight(f"'{func_name}' passed", "green")) # ############################################################################# # check_master # ############################################################################# def check_master(abort_on_error: bool = True) -> None: """ Check if we are committing directly to master, instead of a branch. """ func_name = _report() # Print some information. verbose = True cmd = "git rev-parse --abbrev-ref HEAD" rc, branch_name = _system_to_string(cmd, verbose=verbose) _ = rc branch_name = branch_name.lstrip().rstrip() print(f"Branch is '{branch_name}'") if branch_name == "master": msg = ( "You shouldn't merge into `master`: please do a PR and then merge it" ) _LOG.error(msg) error = True else: error = False # Handle error. _handle_error(func_name, error, abort_on_error) # ############################################################################# # check_author # ############################################################################# def check_author(abort_on_error: bool = True) -> None: """ Ensure that the committer use a gmail and not a corporate account. Extremely custom but effective invariant. """ func_name = _report() # Print some information. verbose = True var = "user.name" cmd = f"{_GIT_BINARY_PATH} config {var}" _system_to_string(cmd, verbose=verbose) cmd = f"{_GIT_BINARY_PATH} config --show-origin {var}" _system_to_string(cmd, verbose=verbose) # var = "user.email" cmd = f"{_GIT_BINARY_PATH} config {var}" rc, user_email = _system_to_string(cmd, verbose=verbose) _ = rc user_email = user_email.lstrip().rstrip() cmd = f"{_GIT_BINARY_PATH} config --show-origin {var}" _system_to_string(cmd, verbose=verbose) print(f"user_email='{user_email}") # Check. error = False if not user_email.endswith("@gmail.com"): _LOG.error("user_email='%s' is incorrect", user_email) error = True # Handle error. _handle_error(func_name, error, abort_on_error) # ############################################################################# # check_file_size # ############################################################################# # Start copy-paste From helpers/introspection.py def _sizeof_fmt(num: float) -> str: """ Return a human-readable string for a filesize (e.g., "3.5 MB"). """ # From http://stackoverflow.com/questions/1094841 for x in ["bytes", "KB", "MB", "GB", "TB"]: if num < 1024.0: return "%3.1f %s" % (num, x) num /= 1024.0 assert 0, "Invalid num='%s'" % num # End copy-paste. # The maximum file-size in KB for a file (not notebook) to be committed. _MAX_FILE_SIZE_IN_KB = 512 def check_file_size( abort_on_error: bool = True, file_list: Optional[List[str]] = None ) -> None: """ Ensure that (not notebook) files are not larger than a certain size. The goal is to avoid to check in a 100MB file. """ func_name = _report() print(f"max file size={_MAX_FILE_SIZE_IN_KB} KB") if file_list is None: file_list = _get_files() _LOG.info("Files:\n%s", "\n".join(file_list)) # Check all files: error = False for file_name in file_list: if not os.path.exists(file_name): _LOG.warning("'%s' doesn't exist", file_name) continue _LOG.info(file_name) stat = os.stat(file_name) size = stat.st_size size_as_str = _sizeof_fmt(stat.st_size) _LOG.debug("%s: %s", file_name, size_as_str) if not file_name.endswith(".ipynb"): if size > _MAX_FILE_SIZE_IN_KB * 1024: # File is to big, abort the commit. msg = ( f"Filename '{file_name}' is too big to be committed" + f": {size_as_str} > {_MAX_FILE_SIZE_IN_KB} KB" ) _LOG.error(msg) error = True # Handle error. _handle_error(func_name, error, abort_on_error) # ############################################################################# # check_words # ############################################################################# _CAESAR_STEP = 7 def caesar(text: str, step: int) -> str: def shift(alphabet: str) -> str: return alphabet[step:] + alphabet[:step] alphabets = (string.ascii_lowercase, string.ascii_uppercase, string.digits) shifted_alphabets = tuple(map(shift, alphabets)) joined_alphabets = "".join(alphabets) joined_shifted_alphabets = "".join(shifted_alphabets) table = str.maketrans(joined_alphabets, joined_shifted_alphabets) return text.translate(table) def _get_regex(decaesarify: bool) -> Any: # Prepare the regex. words = "ln lnpk sptl sltvuhkl slt jyfwav" if decaesarify: words = caesar(words, -_CAESAR_STEP) words_as_regex = "(" + "|".join(words.split()) + ")" regex = fr""" (?<![^\W_]) # The preceding char should not be a letter or digit char. {words_as_regex} (?![^\W_]) # The next char cannot be a letter or digit. """ # regex = re.compile(r"\b(%s)\b" % "|".join(words.split())) # _LOG.debug("regex=%s", regex) regex = re.compile(regex, re.IGNORECASE | re.VERBOSE) # _LOG.debug("regex=%s", regex) return regex def _check_words_in_text( file_name: str, lines: List[str], decaesarify: bool = True ) -> List[str]: """ Look for words in the content `lines` of `file_name`. :return: violations in cfile format """ regex = _get_regex(decaesarify) # Search for violations. violations = [] for i, line in enumerate(lines): _LOG.debug("%s: %s", i + 1, line) m = regex.search(line) if m: # Remove some false positive. if file_name.endswith(".ipynb") and "image/png" in line: continue if file_name.endswith(".html") and '<td class="ms' in line: continue if file_name.endswith("git.py") and "return _is_repo" in line: continue if file_name.endswith("ack") and "compressed" in line: continue if file_name.endswith("helpers/git.py") and "def is_" in line: continue # Found a violation. val = m.group(1) _LOG.debug(" -> found '%s'", val) val = caesar(val, _CAESAR_STEP) violation = f"{file_name}:{i+1}: Found '{val}'" violations.append(violation) return violations def _check_words_files(file_list: List[str]) -> bool: """ Look for words in the passed files. :return: error """ _LOG.debug("Processing %d files", len(file_list)) # Scan all the files. violations = [] for file_name in file_list: if any(file_name.endswith(ext) for ext in "jpg png zip pkl gz".split()): _LOG.warning("Skipping '%s'", file_name) continue if not os.path.exists(file_name): _LOG.warning("Skipping '%s' since it doesn't exist", file_name) continue if os.path.isdir(file_name): _LOG.warning("Skipping '%s' since it is a dir", file_name) continue _LOG.info(file_name) with open(file_name) as f: lines = f.readlines() violations.extend(_check_words_in_text(file_name, lines)) # error = False if violations: file_content = "\n".join(map(str, violations)) _LOG.error("There are %d violations:\n%s", len(violations), file_content) # Write file. file_name = "cfile" with open(file_name, "w") as f: f.write(file_content) _LOG.warning("Saved cfile in '%s'", file_name) error = True return error def check_words( abort_on_error: bool = True, file_list: Optional[List[str]] = None ) -> None: """ Check that certain words are not used in the staged files. """ func_name = _report() # Get the files. if file_list is None: file_list = _get_files() _LOG.info("Files:\n%s", "\n".join(file_list)) # error = _check_words_files(file_list) # Handle error. _handle_error(func_name, error, abort_on_error) # ############################################################################# # Python compile # ############################################################################# def _check_python_compile(file_list: List[str]) -> bool: """ Run `compileall.compile_file()` on the files. :return: error """ _LOG.debug("Processing %d files", len(file_list)) # Scan all the files. violations = [] for file_name in file_list: success = compileall.compile_file(file_name, force=True, quiet=0) _LOG.debug("%s -> success=%s", file_name, success) if not success: _LOG.error("file_name='%s' doesn't compile correctly", file_name) violations.append(file_name) _LOG.debug("violations=%s", len(violations)) error = len(violations) > 0 return error def check_python_compile( abort_on_error: bool = True, file_list: Optional[List[str]] = None ) -> None: """ Check that code can be compiled. This is not as thorough as executing it. """ func_name = _report() # Get the files. if file_list is None: file_list = _get_files() _LOG.info("Files:\n%s", "\n".join(file_list)) # Keep only the python files. file_list = [f for f in file_list if f.endswith(".py")] _LOG.info("Python files:\n%s", "\n".join(file_list)) # error = _check_python_compile(file_list) # Handle error. _handle_error(func_name, error, abort_on_error)
31.099783
104
0.575295
ab2b782cb321e33fc5f2462049b3c6c1c0cb402e
10,820
py
Python
demo/vww/mobilenet_tinyml.py
wei2374/model_compression
bf3e9a11396ace3c6845f44f6aa02b38364e2ec8
[ "MIT" ]
null
null
null
demo/vww/mobilenet_tinyml.py
wei2374/model_compression
bf3e9a11396ace3c6845f44f6aa02b38364e2ec8
[ "MIT" ]
null
null
null
demo/vww/mobilenet_tinyml.py
wei2374/model_compression
bf3e9a11396ace3c6845f44f6aa02b38364e2ec8
[ "MIT" ]
1
2022-02-13T06:28:35.000Z
2022-02-13T06:28:35.000Z
import tensorflow as tf from tensorflow.keras.applications.mobilenet import MobileNet from tensorflow.keras.layers import Dense, GlobalAveragePooling2D, Dropout from tensorflow.keras.optimizers import SGD from tensorflow.keras.regularizers import l2 from tensorflow.keras.models import Model from tensorflow.keras.layers import Input, Dense, Activation, Flatten, BatchNormalization from tensorflow.keras.layers import Conv2D, DepthwiseConv2D, AveragePooling2D, MaxPooling2D from tensorflow.keras.regularizers import l2 def MobileNet_tinyml(input_shape, num_classes=20): # Mobilenet parameters num_filters = 8 # normally 32, but running with alpha=.25 per EEMBC requirement inputs = Input(shape=input_shape) x = inputs # Keras model uses ZeroPadding2D() # 1st layer, pure conv # Keras 2.2 model has padding='valid' and disables bias x = Conv2D(num_filters, kernel_size=3, strides=2, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # Keras uses ReLU6 instead of pure ReLU # 2nd layer, depthwise separable conv # Filter size is always doubled before the pointwise conv # Keras uses ZeroPadding2D() and padding='valid' x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) num_filters = 2*num_filters x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 3rd layer, depthwise separable conv x = DepthwiseConv2D(kernel_size=3, strides=2, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) num_filters = 2*num_filters x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 4th layer, depthwise separable conv x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 5th layer, depthwise separable conv x = DepthwiseConv2D(kernel_size=3, strides=2, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) num_filters = 2*num_filters x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 6th layer, depthwise separable conv x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 7th layer, depthwise separable conv x = DepthwiseConv2D(kernel_size=3, strides=2, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) num_filters = 2*num_filters x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 8th-12th layers, identical depthwise separable convs # 8th x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 9th x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 10th x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 11th x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 12th x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 13th layer, depthwise separable conv x = DepthwiseConv2D(kernel_size=3, strides=2, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) num_filters = 2*num_filters x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # 14th layer, depthwise separable conv x = DepthwiseConv2D(kernel_size=3, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Conv2D(num_filters, kernel_size=1, strides=1, padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(1e-4))(x) x = BatchNormalization()(x) x = Activation('relu')(x) # Average pooling, max polling may be used also # Keras employs GlobalAveragePooling2D x = AveragePooling2D(pool_size=x.shape[1:3])(x) #x = MaxPooling2D(pool_size=x.shape[1:3])(x) # Keras inserts Dropout() and a pointwise Conv2D() here # We are staying with the paper base structure # Flatten, FC layer and classify x = Flatten()(x) outputs = Dense(num_classes, activation='softmax')(x) # Instantiate model. model = Model(inputs=inputs, outputs=outputs) acc1 = tf.keras.metrics.TopKCategoricalAccuracy( k=1, name="top1", dtype=None) optimizer = tf.keras.optimizers.Adam(0.001) model.compile( optimizer=optimizer, loss='categorical_crossentropy', metrics=[acc1] ) return model def MobileNetV1( input_shape, num_classes, models_filename=None, lr=1e-3): feature_extractor = MobileNet(weights='imagenet', include_top=False, input_shape=input_shape) x = feature_extractor.output x = GlobalAveragePooling2D()(x) x = Dense(256,activation='relu')(x) x = Dense(128,activation='relu')(x) x = Dropout(0.2)(x) predictions = Dense(num_classes, kernel_regularizer=l2(0.005), activation='softmax')(x) model = tf.keras.Model(inputs=feature_extractor.input, outputs=predictions) model.compile(optimizer=SGD(learning_rate=0.0001, momentum=0.9), loss='categorical_crossentropy', metrics=['accuracy']) if models_filename is not None: original_model = tf.keras.models.load_model(models_filename, compile=False) model.load_weights(models_filename) return model
33.8125
97
0.554067
e3c864273e9fbed05f866d9caf5a53bedc117d5e
369
py
Python
channels/migrations/0007_auto_20141118_1554.py
CMU-Robotics-Club/roboticsclub.org
5f2ad4a15dc62160c6d03c87c121e934cacb8228
[ "MIT" ]
null
null
null
channels/migrations/0007_auto_20141118_1554.py
CMU-Robotics-Club/roboticsclub.org
5f2ad4a15dc62160c6d03c87c121e934cacb8228
[ "MIT" ]
16
2015-01-01T03:42:36.000Z
2016-06-21T05:14:16.000Z
channels/migrations/0007_auto_20141118_1554.py
CMU-Robotics-Club/roboticsclub.org
5f2ad4a15dc62160c6d03c87c121e934cacb8228
[ "MIT" ]
2
2015-07-23T14:37:16.000Z
2021-09-11T01:23:25.000Z
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('channels', '0006_auto_20141020_1226'), ] operations = [ migrations.AlterModelOptions( name='channel', options={'ordering': ['id']}, ), ]
19.421053
48
0.598916
36bfefe6333d2a2fb63912876a488b0187846518
803
py
Python
AnnotationLocalisationSegmentationWebApp/user.py
SocioRecSys/FashionRec_DataCollection
8bb97beda01b34fa1eaab06d003faa95b2b2808f
[ "RSA-MD" ]
2
2020-05-03T00:51:41.000Z
2020-08-23T17:19:59.000Z
AnnotationLocalisationSegmentationWebApp/user.py
SocioRecSys/FashionRec_DataCollection
8bb97beda01b34fa1eaab06d003faa95b2b2808f
[ "RSA-MD" ]
5
2021-06-08T22:55:28.000Z
2022-03-12T00:33:42.000Z
AnnotationLocalisationSegmentationWebApp/user.py
SocioRecSys/FashionRec_DataCollection
8bb97beda01b34fa1eaab06d003faa95b2b2808f
[ "RSA-MD" ]
null
null
null
#!/usr/bin/python from werkzeug.security import check_password_hash #from flask_wtf import Form from wtforms import Form, StringField, PasswordField from wtforms.validators import DataRequired class User(): def __init__(self, username): self.username = username def is_authenticated(self): return True def is_active(self): return True def is_anonymous(self): return False def get_id(self): return self.username @staticmethod def validate_login(password_hash, password): return check_password_hash(password_hash, password) class LoginForm(Form): """Login form to access """ username = StringField('username', validators=[DataRequired()]) password = PasswordField('password', validators=[DataRequired()])
22.305556
69
0.706102
ef35eabc973a528c19861855ab7e4398ac8498e8
32,640
py
Python
cmd2/argparse_completer.py
jedie/cmd2
8f981f37eddcccc919329245b85fd44d5975a6a7
[ "MIT" ]
null
null
null
cmd2/argparse_completer.py
jedie/cmd2
8f981f37eddcccc919329245b85fd44d5975a6a7
[ "MIT" ]
null
null
null
cmd2/argparse_completer.py
jedie/cmd2
8f981f37eddcccc919329245b85fd44d5975a6a7
[ "MIT" ]
null
null
null
# coding=utf-8 # flake8: noqa C901 # NOTE: Ignoring flake8 cyclomatic complexity in this file """ This module defines the ArgparseCompleter class which provides argparse-based tab completion to cmd2 apps. See the header of argparse_custom.py for instructions on how to use these features. """ import argparse import inspect import numbers from collections import ( deque, ) from typing import ( Dict, List, Optional, Union, ) from . import ( ansi, cmd2, constants, ) from .argparse_custom import ( ATTR_CHOICES_CALLABLE, ATTR_DESCRIPTIVE_COMPLETION_HEADER, ATTR_NARGS_RANGE, ATTR_SUPPRESS_TAB_HINT, ChoicesCallable, CompletionItem, generate_range_error, ) from .command_definition import ( CommandSet, ) from .exceptions import ( CompletionError, ) from .table_creator import ( Column, SimpleTable, ) # If no descriptive header is supplied, then this will be used instead DEFAULT_DESCRIPTIVE_HEADER = 'Description' # Name of the choice/completer function argument that, if present, will be passed a dictionary of # command line tokens up through the token being completed mapped to their argparse destination name. ARG_TOKENS = 'arg_tokens' # noinspection PyProtectedMember def _build_hint(parser: argparse.ArgumentParser, arg_action: argparse.Action) -> str: """Build tab completion hint for a given argument""" # Check if hinting is disabled for this argument suppress_hint = getattr(arg_action, ATTR_SUPPRESS_TAB_HINT, False) if suppress_hint or arg_action.help == argparse.SUPPRESS: return '' else: # Use the parser's help formatter to display just this action's help text formatter = parser._get_formatter() formatter.start_section("Hint") formatter.add_argument(arg_action) formatter.end_section() return formatter.format_help() def _single_prefix_char(token: str, parser: argparse.ArgumentParser) -> bool: """Returns if a token is just a single flag prefix character""" return len(token) == 1 and token[0] in parser.prefix_chars # noinspection PyProtectedMember def _looks_like_flag(token: str, parser: argparse.ArgumentParser) -> bool: """ Determine if a token looks like a flag. Unless an argument has nargs set to argparse.REMAINDER, then anything that looks like a flag can't be consumed as a value for it. Based on argparse._parse_optional(). """ # Flags have to be at least characters if len(token) < 2: return False # Flags have to start with a prefix character if not token[0] in parser.prefix_chars: return False # If it looks like a negative number, it is not a flag unless there are negative-number-like flags if parser._negative_number_matcher.match(token): if not parser._has_negative_number_optionals: return False # Flags can't have a space if ' ' in token: return False # Starts like a flag return True class _ArgumentState: """Keeps state of an argument being parsed""" def __init__(self, arg_action: argparse.Action) -> None: self.action = arg_action self.min = None self.max = None self.count = 0 self.is_remainder = self.action.nargs == argparse.REMAINDER # Check if nargs is a range nargs_range = getattr(self.action, ATTR_NARGS_RANGE, None) if nargs_range is not None: self.min = nargs_range[0] self.max = nargs_range[1] # Otherwise check against argparse types elif self.action.nargs is None: self.min = 1 self.max = 1 elif self.action.nargs == argparse.OPTIONAL: self.min = 0 self.max = 1 elif self.action.nargs == argparse.ZERO_OR_MORE or self.action.nargs == argparse.REMAINDER: self.min = 0 self.max = constants.INFINITY elif self.action.nargs == argparse.ONE_OR_MORE: self.min = 1 self.max = constants.INFINITY else: self.min = self.action.nargs self.max = self.action.nargs # noinspection PyProtectedMember class _UnfinishedFlagError(CompletionError): def __init__(self, flag_arg_state: _ArgumentState) -> None: """ CompletionError which occurs when the user has not finished the current flag :param flag_arg_state: information about the unfinished flag action """ error = "Error: argument {}: {} ({} entered)".format( argparse._get_action_name(flag_arg_state.action), generate_range_error(flag_arg_state.min, flag_arg_state.max), flag_arg_state.count, ) super().__init__(error) class _NoResultsError(CompletionError): def __init__(self, parser: argparse.ArgumentParser, arg_action: argparse.Action) -> None: """ CompletionError which occurs when there are no results. If hinting is allowed, then its message will be a hint about the argument being tab completed. :param parser: ArgumentParser instance which owns the action being tab completed :param arg_action: action being tab completed """ # Set apply_style to False because we don't want hints to look like errors super().__init__(_build_hint(parser, arg_action), apply_style=False) # noinspection PyProtectedMember class ArgparseCompleter: """Automatic command line tab completion based on argparse parameters""" def __init__( self, parser: argparse.ArgumentParser, cmd2_app: cmd2.Cmd, *, parent_tokens: Optional[Dict[str, List[str]]] = None ) -> None: """ Create an ArgparseCompleter :param parser: ArgumentParser instance :param cmd2_app: reference to the Cmd2 application that owns this ArgparseCompleter :param parent_tokens: optional dictionary mapping parent parsers' arg names to their tokens This is only used by ArgparseCompleter when recursing on subcommand parsers Defaults to None """ self._parser = parser self._cmd2_app = cmd2_app if parent_tokens is None: parent_tokens = dict() self._parent_tokens = parent_tokens self._flags = [] # all flags in this command self._flag_to_action = {} # maps flags to the argparse action object self._positional_actions = [] # actions for positional arguments (by position index) self._subcommand_action = None # this will be set if self._parser has subcommands # Start digging through the argparse structures. # _actions is the top level container of parameter definitions for action in self._parser._actions: # if the parameter is flag based, it will have option_strings if action.option_strings: # record each option flag for option in action.option_strings: self._flags.append(option) self._flag_to_action[option] = action # Otherwise this is a positional parameter else: self._positional_actions.append(action) # Check if this action defines subcommands if isinstance(action, argparse._SubParsersAction): self._subcommand_action = action def complete( self, text: str, line: str, begidx: int, endidx: int, tokens: List[str], *, cmd_set: Optional[CommandSet] = None ) -> List[str]: """ Complete text using argparse metadata :param text: the string prefix we are attempting to match (all matches must begin with it) :param line: the current input line with leading whitespace removed :param begidx: the beginning index of the prefix text :param endidx: the ending index of the prefix text :param tokens: list of argument tokens being passed to the parser :param cmd_set: if tab completing a command, the CommandSet the command's function belongs to, if applicable. Defaults to None. :raises: CompletionError for various types of tab completion errors """ if not tokens: return [] # Positionals args that are left to parse remaining_positionals = deque(self._positional_actions) # This gets set to True when flags will no longer be processed as argparse flags # That can happen when -- is used or an argument with nargs=argparse.REMAINDER is used skip_remaining_flags = False # _ArgumentState of the current positional pos_arg_state = None # _ArgumentState of the current flag flag_arg_state = None # Non-reusable flags that we've parsed matched_flags = [] # Keeps track of arguments we've seen and any tokens they consumed consumed_arg_values = dict() # dict(arg_name -> List[tokens]) # Completed mutually exclusive groups completed_mutex_groups = dict() # dict(argparse._MutuallyExclusiveGroup -> Action which completed group) def consume_argument(arg_state: _ArgumentState) -> None: """Consuming token as an argument""" arg_state.count += 1 consumed_arg_values.setdefault(arg_state.action.dest, []) consumed_arg_values[arg_state.action.dest].append(token) def update_mutex_groups(arg_action: argparse.Action) -> None: """ Check if an argument belongs to a mutually exclusive group and either mark that group as complete or print an error if the group has already been completed :param arg_action: the action of the argument :raises: CompletionError if the group is already completed """ # Check if this action is in a mutually exclusive group for group in self._parser._mutually_exclusive_groups: if arg_action in group._group_actions: # Check if the group this action belongs to has already been completed if group in completed_mutex_groups: # If this is the action that completed the group, then there is no error # since it's allowed to appear on the command line more than once. completer_action = completed_mutex_groups[group] if arg_action == completer_action: return error = "Error: argument {}: not allowed with argument {}".format( argparse._get_action_name(arg_action), argparse._get_action_name(completer_action) ) raise CompletionError(error) # Mark that this action completed the group completed_mutex_groups[group] = arg_action # Don't tab complete any of the other args in the group for group_action in group._group_actions: if group_action == arg_action: continue elif group_action in self._flag_to_action.values(): matched_flags.extend(group_action.option_strings) elif group_action in remaining_positionals: remaining_positionals.remove(group_action) # Arg can only be in one group, so we are done break ############################################################################################# # Parse all but the last token ############################################################################################# for token_index, token in enumerate(tokens[:-1]): # If we're in a positional REMAINDER arg, force all future tokens to go to that if pos_arg_state is not None and pos_arg_state.is_remainder: consume_argument(pos_arg_state) continue # If we're in a flag REMAINDER arg, force all future tokens to go to that until a double dash is hit elif flag_arg_state is not None and flag_arg_state.is_remainder: if token == '--': flag_arg_state = None else: consume_argument(flag_arg_state) continue # Handle '--' which tells argparse all remaining arguments are non-flags elif token == '--' and not skip_remaining_flags: # Check if there is an unfinished flag if flag_arg_state is not None and flag_arg_state.count < flag_arg_state.min: raise _UnfinishedFlagError(flag_arg_state) # Otherwise end the current flag else: flag_arg_state = None skip_remaining_flags = True continue # Check the format of the current token to see if it can be an argument's value if _looks_like_flag(token, self._parser) and not skip_remaining_flags: # Check if there is an unfinished flag if flag_arg_state is not None and flag_arg_state.count < flag_arg_state.min: raise _UnfinishedFlagError(flag_arg_state) # Reset flag arg state but not positional tracking because flags can be # interspersed anywhere between positionals flag_arg_state = None action = None # Does the token match a known flag? if token in self._flag_to_action: action = self._flag_to_action[token] elif self._parser.allow_abbrev: candidates_flags = [flag for flag in self._flag_to_action if flag.startswith(token)] if len(candidates_flags) == 1: action = self._flag_to_action[candidates_flags[0]] if action is not None: update_mutex_groups(action) if isinstance(action, (argparse._AppendAction, argparse._AppendConstAction, argparse._CountAction)): # Flags with action set to append, append_const, and count can be reused # Therefore don't erase any tokens already consumed for this flag consumed_arg_values.setdefault(action.dest, []) else: # This flag is not reusable, so mark that we've seen it matched_flags.extend(action.option_strings) # It's possible we already have consumed values for this flag if it was used # earlier in the command line. Reset them now for this use of it. consumed_arg_values[action.dest] = [] new_arg_state = _ArgumentState(action) # Keep track of this flag if it can receive arguments if new_arg_state.max > 0: flag_arg_state = new_arg_state skip_remaining_flags = flag_arg_state.is_remainder # Check if we are consuming a flag elif flag_arg_state is not None: consume_argument(flag_arg_state) # Check if we have finished with this flag if flag_arg_state.count >= flag_arg_state.max: flag_arg_state = None # Otherwise treat as a positional argument else: # If we aren't current tracking a positional, then get the next positional arg to handle this token if pos_arg_state is None: # Make sure we are still have positional arguments to parse if remaining_positionals: action = remaining_positionals.popleft() # Are we at a subcommand? If so, forward to the matching completer if action == self._subcommand_action: if token in self._subcommand_action.choices: # Merge self._parent_tokens and consumed_arg_values parent_tokens = {**self._parent_tokens, **consumed_arg_values} # Include the subcommand name if its destination was set if action.dest != argparse.SUPPRESS: parent_tokens[action.dest] = [token] completer = ArgparseCompleter( self._subcommand_action.choices[token], self._cmd2_app, parent_tokens=parent_tokens ) return completer.complete( text, line, begidx, endidx, tokens[token_index + 1 :], cmd_set=cmd_set ) else: # Invalid subcommand entered, so no way to complete remaining tokens return [] # Otherwise keep track of the argument else: pos_arg_state = _ArgumentState(action) # Check if we have a positional to consume this token if pos_arg_state is not None: update_mutex_groups(pos_arg_state.action) consume_argument(pos_arg_state) # No more flags are allowed if this is a REMAINDER argument if pos_arg_state.is_remainder: skip_remaining_flags = True # Check if we have finished with this positional elif pos_arg_state.count >= pos_arg_state.max: pos_arg_state = None # Check if the next positional has nargs set to argparse.REMAINDER. # At this point argparse allows no more flags to be processed. if remaining_positionals and remaining_positionals[0].nargs == argparse.REMAINDER: skip_remaining_flags = True ############################################################################################# # We have parsed all but the last token and have enough information to complete it ############################################################################################# # Check if we are completing a flag name. This check ignores strings with a length of one, like '-'. # This is because that could be the start of a negative number which may be a valid completion for # the current argument. We will handle the completion of flags that start with only one prefix # character (-f) at the end. if _looks_like_flag(text, self._parser) and not skip_remaining_flags: if flag_arg_state is not None and flag_arg_state.count < flag_arg_state.min: raise _UnfinishedFlagError(flag_arg_state) return self._complete_flags(text, line, begidx, endidx, matched_flags) completion_results = [] # Check if we are completing a flag's argument if flag_arg_state is not None: completion_results = self._complete_arg( text, line, begidx, endidx, flag_arg_state, consumed_arg_values, cmd_set=cmd_set ) # If we have results, then return them if completion_results: # Don't overwrite an existing hint if not self._cmd2_app.completion_hint: self._cmd2_app.completion_hint = _build_hint(self._parser, flag_arg_state.action) return completion_results # Otherwise, print a hint if the flag isn't finished or text isn't possibly the start of a flag elif ( flag_arg_state.count < flag_arg_state.min or not _single_prefix_char(text, self._parser) or skip_remaining_flags ): raise _NoResultsError(self._parser, flag_arg_state.action) # Otherwise check if we have a positional to complete elif pos_arg_state is not None or remaining_positionals: # If we aren't current tracking a positional, then get the next positional arg to handle this token if pos_arg_state is None: action = remaining_positionals.popleft() pos_arg_state = _ArgumentState(action) completion_results = self._complete_arg( text, line, begidx, endidx, pos_arg_state, consumed_arg_values, cmd_set=cmd_set ) # If we have results, then return them if completion_results: # Don't overwrite an existing hint if not self._cmd2_app.completion_hint: self._cmd2_app.completion_hint = _build_hint(self._parser, pos_arg_state.action) return completion_results # Otherwise, print a hint if text isn't possibly the start of a flag elif not _single_prefix_char(text, self._parser) or skip_remaining_flags: raise _NoResultsError(self._parser, pos_arg_state.action) # Handle case in which text is a single flag prefix character that # didn't complete against any argument values. if _single_prefix_char(text, self._parser) and not skip_remaining_flags: return self._complete_flags(text, line, begidx, endidx, matched_flags) return completion_results def _complete_flags(self, text: str, line: str, begidx: int, endidx: int, matched_flags: List[str]) -> List[str]: """Tab completion routine for a parsers unused flags""" # Build a list of flags that can be tab completed match_against = [] for flag in self._flags: # Make sure this flag hasn't already been used if flag not in matched_flags: # Make sure this flag isn't considered hidden action = self._flag_to_action[flag] if action.help != argparse.SUPPRESS: match_against.append(flag) matches = self._cmd2_app.basic_complete(text, line, begidx, endidx, match_against) # Build a dictionary linking actions with their matched flag names matched_actions: Dict[argparse.Action, List[str]] = dict() for flag in matches: action = self._flag_to_action[flag] matched_actions.setdefault(action, []) matched_actions[action].append(flag) # For tab completion suggestions, group matched flags by action for action, option_strings in matched_actions.items(): flag_text = ', '.join(option_strings) # Mark optional flags with brackets if not action.required: flag_text = '[' + flag_text + ']' self._cmd2_app.display_matches.append(flag_text) return matches def _format_completions(self, arg_state: _ArgumentState, completions: List[Union[str, CompletionItem]]) -> List[str]: # Check if the results are CompletionItems and that there aren't too many to display if 1 < len(completions) <= self._cmd2_app.max_completion_items and isinstance(completions[0], CompletionItem): four_spaces = 4 * ' ' # If the user has not already sorted the CompletionItems, then sort them before appending the descriptions if not self._cmd2_app.matches_sorted: completions.sort(key=self._cmd2_app.default_sort_key) self._cmd2_app.matches_sorted = True # If a metavar was defined, use that instead of the dest field destination = arg_state.action.metavar if arg_state.action.metavar else arg_state.action.dest # Handle case where metavar was a tuple if isinstance(destination, tuple): # Figure out what string in the tuple to use based on how many of the arguments have been completed. # Use min() to avoid going passed the end of the tuple to support nargs being ZERO_OR_MORE and # ONE_OR_MORE. In those cases, argparse limits metavar tuple to 2 elements but we may be completing # the 3rd or more argument here. tuple_index = min(len(destination) - 1, arg_state.count) destination = destination[tuple_index] desc_header = getattr(arg_state.action, ATTR_DESCRIPTIVE_COMPLETION_HEADER, None) if desc_header is None: desc_header = DEFAULT_DESCRIPTIVE_HEADER # Replace tabs with 4 spaces so we can calculate width desc_header = desc_header.replace('\t', four_spaces) # Calculate needed widths for the token and description columns of the table token_width = ansi.style_aware_wcswidth(destination) desc_width = ansi.widest_line(desc_header) for item in completions: token_width = max(ansi.style_aware_wcswidth(item), token_width) # Replace tabs with 4 spaces so we can calculate width item.description = item.description.replace('\t', four_spaces) desc_width = max(ansi.widest_line(item.description), desc_width) cols = list() cols.append(Column(destination.upper(), width=token_width)) cols.append(Column(desc_header, width=desc_width)) hint_table = SimpleTable(cols, divider_char=None) table_data = [[item, item.description] for item in completions] self._cmd2_app.formatted_completions = hint_table.generate_table(table_data, row_spacing=0) return completions def complete_subcommand_help(self, text: str, line: str, begidx: int, endidx: int, tokens: List[str]) -> List[str]: """ Supports cmd2's help command in the completion of subcommand names :param text: the string prefix we are attempting to match (all matches must begin with it) :param line: the current input line with leading whitespace removed :param begidx: the beginning index of the prefix text :param endidx: the ending index of the prefix text :param tokens: arguments passed to command/subcommand :return: List of subcommand completions """ # If our parser has subcommands, we must examine the tokens and check if they are subcommands # If so, we will let the subcommand's parser handle the rest of the tokens via another ArgparseCompleter. if self._subcommand_action is not None: for token_index, token in enumerate(tokens): if token in self._subcommand_action.choices: completer = ArgparseCompleter(self._subcommand_action.choices[token], self._cmd2_app) return completer.complete_subcommand_help(text, line, begidx, endidx, tokens[token_index + 1 :]) elif token_index == len(tokens) - 1: # Since this is the last token, we will attempt to complete it return self._cmd2_app.basic_complete(text, line, begidx, endidx, self._subcommand_action.choices) else: break return [] def format_help(self, tokens: List[str]) -> str: """ Supports cmd2's help command in the retrieval of help text :param tokens: arguments passed to help command :return: help text of the command being queried """ # If our parser has subcommands, we must examine the tokens and check if they are subcommands # If so, we will let the subcommand's parser handle the rest of the tokens via another ArgparseCompleter. if self._subcommand_action is not None: for token_index, token in enumerate(tokens): if token in self._subcommand_action.choices: completer = ArgparseCompleter(self._subcommand_action.choices[token], self._cmd2_app) return completer.format_help(tokens[token_index + 1 :]) else: break return self._parser.format_help() def _complete_arg( self, text: str, line: str, begidx: int, endidx: int, arg_state: _ArgumentState, consumed_arg_values: Dict[str, List[str]], *, cmd_set: Optional[CommandSet] = None ) -> List[str]: """ Tab completion routine for an argparse argument :return: list of completions :raises: CompletionError if the completer or choices function this calls raises one """ # Check if the arg provides choices to the user if arg_state.action.choices is not None: arg_choices = list(arg_state.action.choices) if not arg_choices: return [] # If these choices are numbers, then sort them now if all(isinstance(x, numbers.Number) for x in arg_choices): arg_choices.sort() self._cmd2_app.matches_sorted = True # Since choices can be various types, make sure they are all strings for index, choice in enumerate(arg_choices): # Prevent converting anything that is already a str (i.e. CompletionItem) if not isinstance(choice, str): arg_choices[index] = str(choice) else: arg_choices = getattr(arg_state.action, ATTR_CHOICES_CALLABLE, None) if arg_choices is None: return [] # If we are going to call a completer/choices function, then set up the common arguments args = [] kwargs = {} if isinstance(arg_choices, ChoicesCallable): # The completer may or may not be defined in the same class as the command. Since completer # functions are registered with the command argparser before anything is instantiated, we # need to find an instance at runtime that matches the types during declaration self_arg = self._cmd2_app._resolve_func_self(arg_choices.to_call, cmd_set) if self_arg is None: # No cases matched, raise an error raise CompletionError('Could not find CommandSet instance matching defining type for completer') args.append(self_arg) # Check if arg_choices.to_call expects arg_tokens to_call_params = inspect.signature(arg_choices.to_call).parameters if ARG_TOKENS in to_call_params: # Merge self._parent_tokens and consumed_arg_values arg_tokens = {**self._parent_tokens, **consumed_arg_values} # Include the token being completed arg_tokens.setdefault(arg_state.action.dest, []) arg_tokens[arg_state.action.dest].append(text) # Add the namespace to the keyword arguments for the function we are calling kwargs[ARG_TOKENS] = arg_tokens # Check if the argument uses a specific tab completion function to provide its choices if isinstance(arg_choices, ChoicesCallable) and arg_choices.is_completer: args.extend([text, line, begidx, endidx]) results = arg_choices.to_call(*args, **kwargs) # Otherwise use basic_complete on the choices else: # Check if the choices come from a function if isinstance(arg_choices, ChoicesCallable) and not arg_choices.is_completer: arg_choices = arg_choices.to_call(*args, **kwargs) # Filter out arguments we already used used_values = consumed_arg_values.get(arg_state.action.dest, []) arg_choices = [choice for choice in arg_choices if choice not in used_values] # Do tab completion on the choices results = self._cmd2_app.basic_complete(text, line, begidx, endidx, arg_choices) if not results: # Reset the value for matches_sorted. This is because completion of flag names # may still be attempted after we return and they haven't been sorted yet. self._cmd2_app.matches_sorted = False return [] return self._format_completions(arg_state, results)
46.232295
122
0.616575
44e20ac3cda777ce90eb06baac0e1f8f416bd2a0
1,370
py
Python
sceptre/cli/launch.py
ACenterA/sceptre
9749486298bb603f0527fec76b36b8bc29e6a694
[ "Apache-2.0" ]
null
null
null
sceptre/cli/launch.py
ACenterA/sceptre
9749486298bb603f0527fec76b36b8bc29e6a694
[ "Apache-2.0" ]
null
null
null
sceptre/cli/launch.py
ACenterA/sceptre
9749486298bb603f0527fec76b36b8bc29e6a694
[ "Apache-2.0" ]
null
null
null
import click from sceptre.context import SceptreContext from sceptre.cli.helpers import catch_exceptions from sceptre.cli.helpers import confirmation from sceptre.cli.helpers import stack_status_exit_code from sceptre.plan.plan import SceptrePlan @click.command(name="launch", short_help="Launch a Stack or StackGroup.") @click.argument("path") @click.option( "-y", "--yes", is_flag=True, help="Assume yes to all questions." ) @click.option( "--wait", type=click.Choice(["yes", "no", "wait_only"]), default="yes", help="Wait for status completion.") @click.pass_context @catch_exceptions def launch_command(ctx, path, yes, wait): """ Launch a Stack or StackGroup for a given config PATH. \f :param path: The path to launch. Can be a Stack or StackGroup. :type path: str :param yes: A flag to answer 'yes' to all CLI questions. :type yes: bool """ context = SceptreContext( command_path=path, project_path=ctx.obj.get("project_path"), user_variables=ctx.obj.get("user_variables"), options=ctx.obj.get("options"), ignore_dependencies=ctx.obj.get("ignore_dependencies"), wait=wait ) plan = SceptrePlan(context) confirmation(plan.launch.__name__, yes, command_path=path) responses = plan.launch(wait) exit(stack_status_exit_code(responses.values()))
29.782609
75
0.70146
8ae234e2f73ef0f27857f6a40facb53c11ca8ccc
5,304
py
Python
tests/test_cwl.py
anastasiia-zolochevska/cloud-custodian
f25315a01bec808c16ab0e2d433d6151cf5769e4
[ "Apache-2.0" ]
2
2020-01-20T19:46:28.000Z
2020-08-19T14:20:27.000Z
tests/test_cwl.py
anastasiia-zolochevska/cloud-custodian
f25315a01bec808c16ab0e2d433d6151cf5769e4
[ "Apache-2.0" ]
79
2019-03-20T12:27:06.000Z
2019-08-14T14:07:04.000Z
tests/test_cwl.py
anastasiia-zolochevska/cloud-custodian
f25315a01bec808c16ab0e2d433d6151cf5769e4
[ "Apache-2.0" ]
3
2017-09-21T13:36:46.000Z
2021-09-20T16:38:29.000Z
# Copyright 2016-2017 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from __future__ import absolute_import, division, print_function, unicode_literals from .common import BaseTest, functional class LogGroupTest(BaseTest): def test_cross_account(self): factory = self.replay_flight_data("test_log_group_cross_account") p = self.load_policy( { "name": "cross-log", "resource": "log-group", "filters": [{"type": "cross-account"}], }, session_factory=factory, ) resources = p.run() self.assertEqual(len(resources), 1) self.assertEqual(resources[0]["c7n:CrossAccountViolations"], ["1111111111111"]) def test_age_normalize(self): factory = self.replay_flight_data("test_log_group_age_normalize") p = self.load_policy({ 'name': 'log-age', 'resource': 'aws.log-group', 'filters': [{ 'type': 'value', 'value_type': 'age', 'value': 30, 'op': 'greater-than', 'key': 'creationTime'}]}, session_factory=factory, config={'region': 'us-west-2'}) resources = p.run() self.assertEqual(len(resources), 1) self.assertEqual(resources[0]['creationTime'], 1548368507.441) def test_last_write(self): factory = self.replay_flight_data("test_log_group_last_write") p = self.load_policy( { "name": "set-retention", "resource": "log-group", "filters": [ {"logGroupName": "/aws/lambda/ec2-instance-type"}, {"type": "last-write", "days": 0.1}, ], }, session_factory=factory, ) resources = p.run() self.assertEqual(len(resources), 1) self.assertEqual(resources[0]["logGroupName"], "/aws/lambda/ec2-instance-type") @functional def test_retention(self): log_group = "c7n-test-a" factory = self.replay_flight_data("test_log_group_retention") client = factory().client("logs") client.create_log_group(logGroupName=log_group) self.addCleanup(client.delete_log_group, logGroupName=log_group) p = self.load_policy( { "name": "set-retention", "resource": "log-group", "filters": [{"logGroupName": log_group}], "actions": [{"type": "retention", "days": 14}], }, session_factory=factory, ) resources = p.run() self.assertEqual(len(resources), 1) self.assertEqual( client.describe_log_groups(logGroupNamePrefix=log_group)["logGroups"][0][ "retentionInDays" ], 14, ) @functional def test_delete(self): log_group = "c7n-test-b" factory = self.replay_flight_data("test_log_group_delete") client = factory().client("logs") client.create_log_group(logGroupName=log_group) p = self.load_policy( { "name": "delete-log-group", "resource": "log-group", "filters": [{"logGroupName": log_group}], "actions": ["delete"], }, session_factory=factory, ) resources = p.run() self.assertEqual(len(resources), 1) self.assertEqual(resources[0]["logGroupName"], log_group) self.assertEqual(client.describe_log_groups( logGroupNamePrefix=log_group)['logGroups'], []) @functional def test_encrypt(self): log_group = 'c7n-encrypted' session_factory = self.replay_flight_data('test_log_group_encrypt') client = session_factory(region='us-west-2').client('logs') client.create_log_group(logGroupName=log_group) self.addCleanup(client.delete_log_group, logGroupName=log_group) p = self.load_policy( {'name': 'encrypt-log-group', 'resource': 'log-group', 'filters': [{'logGroupName': log_group}], 'actions': [{ 'type': 'set-encryption', 'kms-key': 'alias/app-logs'}]}, config={'region': 'us-west-2'}, session_factory=session_factory) resources = p.run() self.assertEqual(len(resources), 1) self.assertEqual(resources[0]['logGroupName'], log_group) results = client.describe_log_groups( logGroupNamePrefix=log_group)['logGroups'] self.assertEqual( results[0]['kmsKeyId'], 'arn:aws:kms:us-west-2:644160558196:key/6f13fc53-8da0-46f2-9c69-c1f9fbf471d7')
37.885714
90
0.581825
a2f96690b70422d32922d11ace6abbe30b152817
2,341
py
Python
modin/experimental/cloud/base.py
Rubtsowa/modin
6550939753c76e896ef2bfd65bb9468d6ad161d7
[ "ECL-2.0", "Apache-2.0" ]
7,258
2018-06-21T21:39:15.000Z
2022-03-31T23:09:20.000Z
modin/experimental/cloud/base.py
Rubtsowa/modin
6550939753c76e896ef2bfd65bb9468d6ad161d7
[ "ECL-2.0", "Apache-2.0" ]
4,125
2018-06-22T18:04:48.000Z
2022-03-31T17:13:19.000Z
modin/experimental/cloud/base.py
Rubtsowa/modin
6550939753c76e896ef2bfd65bb9468d6ad161d7
[ "ECL-2.0", "Apache-2.0" ]
547
2018-06-21T23:23:00.000Z
2022-03-27T09:04:56.000Z
# Licensed to Modin Development Team under one or more contributor license agreements. # See the NOTICE file distributed with this work for additional information regarding # copyright ownership. The Modin Development Team licenses this file to you under the # Apache License, Version 2.0 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under # the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific language # governing permissions and limitations under the License. from typing import NamedTuple import os import sys from modin.config import SocksProxy class ClusterError(Exception): """ Generic cluster operating exception """ def __init__(self, *args, cause: BaseException = None, traceback: str = None, **kw): self.cause = cause self.traceback = traceback super().__init__(*args, **kw) def __str__(self): if self.cause: return f"cause: {self.cause}\n{super().__str__()}" return super().__str__() class CannotSpawnCluster(ClusterError): """ Raised when cluster cannot be spawned in the cloud """ class CannotDestroyCluster(ClusterError): """ Raised when cluster cannot be destroyed in the cloud """ class ConnectionDetails(NamedTuple): user_name: str = "modin" key_file: str = None address: str = None port: int = 22 _EXT = (".exe", ".com", ".cmd", ".bat", "") if sys.platform == "win32" else ("",) def _which(prog): for entry in os.environ["PATH"].split(os.pathsep): for ext in _EXT: path = os.path.join(entry, prog + ext) if os.access(path, os.X_OK): return path return None def _get_ssh_proxy_command(): socks_proxy = SocksProxy.get() if socks_proxy is None: return None if _which("nc"): return f"nc -x {socks_proxy} %h %p" elif _which("connect"): return f"connect -S {socks_proxy} %h %p" raise ClusterError( "SSH through proxy required but no supported proxying tools found" )
29.632911
88
0.673217
6c74a3a90764d81fd510f8af9c11a2d772ecf73e
4,811
py
Python
animus/torch/engine.py
Scitator/animus
7c80dba79d9cac87455f5bc61c8bd4110dfb26f8
[ "Apache-2.0" ]
8
2022-01-12T23:21:55.000Z
2022-03-22T13:26:05.000Z
animus/torch/engine.py
Scitator/animus
7c80dba79d9cac87455f5bc61c8bd4110dfb26f8
[ "Apache-2.0" ]
1
2022-02-09T14:54:08.000Z
2022-02-09T14:54:08.000Z
animus/torch/engine.py
Scitator/animus
7c80dba79d9cac87455f5bc61c8bd4110dfb26f8
[ "Apache-2.0" ]
1
2022-01-21T19:51:35.000Z
2022-01-21T19:51:35.000Z
# Date: 12/12/2021 # Author: Sergey Kolesnikov (scitator@gmail.com) # Licence: Apache 2.0 from typing import Any, Callable, Dict, Optional, Union import os from accelerate import Accelerator from accelerate.state import DistributedType import numpy as np import torch import torch.distributed as dist import torch.multiprocessing as mp from animus.torch import IS_TORCH_XLA_AVAILABLE if IS_TORCH_XLA_AVAILABLE: import torch_xla.core.xla_model as xm import torch_xla.distributed.xla_multiprocessing as xmp def _ddp_sum_reduce(tensor: torch.Tensor) -> torch.Tensor: cloned = tensor.clone() dist.all_reduce(cloned, dist.ReduceOp.SUM) return cloned def _ddp_mean_reduce(tensor: torch.Tensor, world_size: int) -> torch.Tensor: reduced = _ddp_sum_reduce(tensor) / world_size return reduced class Engine(Accelerator): def spawn(self, fn: Callable, *args, **kwargs): return fn(*args, **kwargs) def setup(self, local_rank: int, world_size: int): pass def cleanup(self): pass def mean_reduce_ddp_metrics(self, metrics: Dict) -> Dict: if self.state.distributed_type in [ DistributedType.MULTI_CPU, DistributedType.MULTI_GPU, ]: metrics = { k: _ddp_mean_reduce( torch.tensor(v, device=self.device), world_size=self.state.num_processes, ) for k, v in metrics.items() } elif self.state.distributed_type == DistributedType.TPU: metrics = { k: xm.mesh_reduce( k, v.item() if isinstance(v, torch.Tensor) else v, np.mean ) for k, v in metrics.items() } return metrics class CPUEngine(Engine): def __init__(self, *args, **kwargs) -> None: super().__init__(*args, cpu=True, **kwargs) class GPUEngine(Engine): def __init__(self, *args, **kwargs) -> None: super().__init__(*args, cpu=False, **kwargs) class DPEngine(Engine): def __init__(self, *args, **kwargs) -> None: super().__init__(*args, cpu=False, **kwargs) def prepare_model(self, model): model = torch.nn.DataParallel(model) model = super().prepare_model(model) return model class DDPEngine(Engine): def __init__( self, *args, address: str = "127.0.0.1", port: Union[str, int] = 2112, world_size: Optional[int] = None, process_group_kwargs: Dict[str, Any] = None, **kwargs ): self._address = os.environ.get("MASTER_ADDR", address) self._port = os.environ.get("MASTER_PORT", port) self._world_size = world_size self._process_group_kwargs = process_group_kwargs or {} self._args = args self._kwargs = kwargs def spawn(self, fn: Callable, *args, **kwargs): world_size: int = self._world_size or torch.cuda.device_count() return mp.spawn( fn, args=(world_size,), nprocs=world_size, join=True, ) def setup(self, local_rank: int, world_size: int): process_group_kwargs = { "backend": "nccl", "world_size": world_size, **self._process_group_kwargs, } os.environ["MASTER_ADDR"] = str(self._address) os.environ["MASTER_PORT"] = str(self._port) os.environ["WORLD_SIZE"] = str(world_size) os.environ["RANK"] = str(local_rank) os.environ["LOCAL_RANK"] = str(local_rank) dist.init_process_group(**process_group_kwargs) super().__init__(self, *self._args, **self._kwargs) def cleanup(self): dist.destroy_process_group() def mean_reduce_ddp_metrics(self, metrics: Dict) -> Dict: metrics = { k: _ddp_mean_reduce( torch.tensor(v, device=self.device), world_size=self.state.num_processes, ) for k, v in metrics.items() } return metrics class XLAEngine(Engine): def __init__(self, *args, **kwargs): self._args = args self._kwargs = kwargs def spawn(self, fn: Callable, *args, **kwargs): world_size: int = 8 return xmp.spawn(fn, args=(world_size,), nprocs=world_size, start_method="fork") def setup(self, local_rank: int, world_size: int): super().__init__(self, *self._args, **self._kwargs) def mean_reduce_ddp_metrics(self, metrics: Dict) -> Dict: metrics = { k: xm.mesh_reduce(k, v.item() if isinstance(v, torch.Tensor) else v, np.mean) for k, v in metrics.items() } return metrics __all__ = [Engine, CPUEngine, GPUEngine, DPEngine, DDPEngine, XLAEngine]
30.257862
89
0.609021
eb7071f86be1070aada2f874d84224118ca31267
31,079
py
Python
tests/test_models/test_backbones.py
ddayzzz/mmdetection
b9940c56cc19b3dda7468a5fd858b9683e93a486
[ "Apache-2.0" ]
77
2021-07-30T03:05:36.000Z
2022-03-31T11:02:33.000Z
tests/test_models/test_backbones.py
ddayzzz/mmdetection
b9940c56cc19b3dda7468a5fd858b9683e93a486
[ "Apache-2.0" ]
7
2021-08-04T07:03:41.000Z
2021-12-21T16:08:52.000Z
tests/test_models/test_backbones.py
ddayzzz/mmdetection
b9940c56cc19b3dda7468a5fd858b9683e93a486
[ "Apache-2.0" ]
24
2021-08-03T07:16:54.000Z
2022-03-27T12:41:17.000Z
import pytest import torch from mmcv.ops import DeformConv2dPack from torch.nn.modules import AvgPool2d, GroupNorm from torch.nn.modules.batchnorm import _BatchNorm from mmdet.models.backbones import (RegNet, Res2Net, ResNeSt, ResNet, ResNetV1d, ResNeXt) from mmdet.models.backbones.hourglass import HourglassNet from mmdet.models.backbones.res2net import Bottle2neck from mmdet.models.backbones.resnest import Bottleneck as BottleneckS from mmdet.models.backbones.resnet import BasicBlock, Bottleneck from mmdet.models.backbones.resnext import Bottleneck as BottleneckX from mmdet.models.utils import ResLayer def is_block(modules): """Check if is ResNet building block.""" if isinstance(modules, (BasicBlock, Bottleneck, BottleneckX, Bottle2neck)): return True return False def is_norm(modules): """Check if is one of the norms.""" if isinstance(modules, (GroupNorm, _BatchNorm)): return True return False def all_zeros(modules): """Check if the weight(and bias) is all zero.""" weight_zero = torch.allclose(modules.weight.data, torch.zeros_like(modules.weight.data)) if hasattr(modules, 'bias'): bias_zero = torch.allclose(modules.bias.data, torch.zeros_like(modules.bias.data)) else: bias_zero = True return weight_zero and bias_zero def check_norm_state(modules, train_state): """Check if norm layer is in correct train state.""" for mod in modules: if isinstance(mod, _BatchNorm): if mod.training != train_state: return False return True def test_resnet_basic_block(): with pytest.raises(AssertionError): # Not implemented yet. dcn = dict(type='DCN', deform_groups=1, fallback_on_stride=False) BasicBlock(64, 64, dcn=dcn) with pytest.raises(AssertionError): # Not implemented yet. plugins = [ dict( cfg=dict(type='ContextBlock', ratio=1. / 16), position='after_conv3') ] BasicBlock(64, 64, plugins=plugins) with pytest.raises(AssertionError): # Not implemented yet plugins = [ dict( cfg=dict( type='GeneralizedAttention', spatial_range=-1, num_heads=8, attention_type='0010', kv_stride=2), position='after_conv2') ] BasicBlock(64, 64, plugins=plugins) # test BasicBlock structure and forward block = BasicBlock(64, 64) assert block.conv1.in_channels == 64 assert block.conv1.out_channels == 64 assert block.conv1.kernel_size == (3, 3) assert block.conv2.in_channels == 64 assert block.conv2.out_channels == 64 assert block.conv2.kernel_size == (3, 3) x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) # Test BasicBlock with checkpoint forward block = BasicBlock(64, 64, with_cp=True) assert block.with_cp x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) def test_resnet_bottleneck(): with pytest.raises(AssertionError): # Style must be in ['pytorch', 'caffe'] Bottleneck(64, 64, style='tensorflow') with pytest.raises(AssertionError): # Allowed positions are 'after_conv1', 'after_conv2', 'after_conv3' plugins = [ dict( cfg=dict(type='ContextBlock', ratio=1. / 16), position='after_conv4') ] Bottleneck(64, 16, plugins=plugins) with pytest.raises(AssertionError): # Need to specify different postfix to avoid duplicate plugin name plugins = [ dict( cfg=dict(type='ContextBlock', ratio=1. / 16), position='after_conv3'), dict( cfg=dict(type='ContextBlock', ratio=1. / 16), position='after_conv3') ] Bottleneck(64, 16, plugins=plugins) with pytest.raises(KeyError): # Plugin type is not supported plugins = [dict(cfg=dict(type='WrongPlugin'), position='after_conv3')] Bottleneck(64, 16, plugins=plugins) # Test Bottleneck with checkpoint forward block = Bottleneck(64, 16, with_cp=True) assert block.with_cp x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) # Test Bottleneck style block = Bottleneck(64, 64, stride=2, style='pytorch') assert block.conv1.stride == (1, 1) assert block.conv2.stride == (2, 2) block = Bottleneck(64, 64, stride=2, style='caffe') assert block.conv1.stride == (2, 2) assert block.conv2.stride == (1, 1) # Test Bottleneck DCN dcn = dict(type='DCN', deform_groups=1, fallback_on_stride=False) with pytest.raises(AssertionError): Bottleneck(64, 64, dcn=dcn, conv_cfg=dict(type='Conv')) block = Bottleneck(64, 64, dcn=dcn) assert isinstance(block.conv2, DeformConv2dPack) # Test Bottleneck forward block = Bottleneck(64, 16) x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) # Test Bottleneck with 1 ContextBlock after conv3 plugins = [ dict( cfg=dict(type='ContextBlock', ratio=1. / 16), position='after_conv3') ] block = Bottleneck(64, 16, plugins=plugins) assert block.context_block.in_channels == 64 x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) # Test Bottleneck with 1 GeneralizedAttention after conv2 plugins = [ dict( cfg=dict( type='GeneralizedAttention', spatial_range=-1, num_heads=8, attention_type='0010', kv_stride=2), position='after_conv2') ] block = Bottleneck(64, 16, plugins=plugins) assert block.gen_attention_block.in_channels == 16 x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) # Test Bottleneck with 1 GeneralizedAttention after conv2, 1 NonLocal2D # after conv2, 1 ContextBlock after conv3 plugins = [ dict( cfg=dict( type='GeneralizedAttention', spatial_range=-1, num_heads=8, attention_type='0010', kv_stride=2), position='after_conv2'), dict(cfg=dict(type='NonLocal2d'), position='after_conv2'), dict( cfg=dict(type='ContextBlock', ratio=1. / 16), position='after_conv3') ] block = Bottleneck(64, 16, plugins=plugins) assert block.gen_attention_block.in_channels == 16 assert block.nonlocal_block.in_channels == 16 assert block.context_block.in_channels == 64 x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) # Test Bottleneck with 1 ContextBlock after conv2, 2 ContextBlock after # conv3 plugins = [ dict( cfg=dict(type='ContextBlock', ratio=1. / 16, postfix=1), position='after_conv2'), dict( cfg=dict(type='ContextBlock', ratio=1. / 16, postfix=2), position='after_conv3'), dict( cfg=dict(type='ContextBlock', ratio=1. / 16, postfix=3), position='after_conv3') ] block = Bottleneck(64, 16, plugins=plugins) assert block.context_block1.in_channels == 16 assert block.context_block2.in_channels == 64 assert block.context_block3.in_channels == 64 x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) def test_resnet_res_layer(): # Test ResLayer of 3 Bottleneck w\o downsample layer = ResLayer(Bottleneck, 64, 16, 3) assert len(layer) == 3 assert layer[0].conv1.in_channels == 64 assert layer[0].conv1.out_channels == 16 for i in range(1, len(layer)): assert layer[i].conv1.in_channels == 64 assert layer[i].conv1.out_channels == 16 for i in range(len(layer)): assert layer[i].downsample is None x = torch.randn(1, 64, 56, 56) x_out = layer(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) # Test ResLayer of 3 Bottleneck with downsample layer = ResLayer(Bottleneck, 64, 64, 3) assert layer[0].downsample[0].out_channels == 256 for i in range(1, len(layer)): assert layer[i].downsample is None x = torch.randn(1, 64, 56, 56) x_out = layer(x) assert x_out.shape == torch.Size([1, 256, 56, 56]) # Test ResLayer of 3 Bottleneck with stride=2 layer = ResLayer(Bottleneck, 64, 64, 3, stride=2) assert layer[0].downsample[0].out_channels == 256 assert layer[0].downsample[0].stride == (2, 2) for i in range(1, len(layer)): assert layer[i].downsample is None x = torch.randn(1, 64, 56, 56) x_out = layer(x) assert x_out.shape == torch.Size([1, 256, 28, 28]) # Test ResLayer of 3 Bottleneck with stride=2 and average downsample layer = ResLayer(Bottleneck, 64, 64, 3, stride=2, avg_down=True) assert isinstance(layer[0].downsample[0], AvgPool2d) assert layer[0].downsample[1].out_channels == 256 assert layer[0].downsample[1].stride == (1, 1) for i in range(1, len(layer)): assert layer[i].downsample is None x = torch.randn(1, 64, 56, 56) x_out = layer(x) assert x_out.shape == torch.Size([1, 256, 28, 28]) # Test ResLayer of 3 BasicBlock with stride=2 and downsample_first=False layer = ResLayer(BasicBlock, 64, 64, 3, stride=2, downsample_first=False) assert layer[2].downsample[0].out_channels == 64 assert layer[2].downsample[0].stride == (2, 2) for i in range(len(layer) - 1): assert layer[i].downsample is None x = torch.randn(1, 64, 56, 56) x_out = layer(x) assert x_out.shape == torch.Size([1, 64, 28, 28]) def test_resnest_stem(): # Test default stem_channels model = ResNet(50) assert model.stem_channels == 64 assert model.conv1.out_channels == 64 assert model.norm1.num_features == 64 # Test default stem_channels, with base_channels=32 model = ResNet(50, base_channels=32) assert model.stem_channels == 32 assert model.conv1.out_channels == 32 assert model.norm1.num_features == 32 assert model.layer1[0].conv1.in_channels == 32 # Test stem_channels=64 model = ResNet(50, stem_channels=64) assert model.stem_channels == 64 assert model.conv1.out_channels == 64 assert model.norm1.num_features == 64 assert model.layer1[0].conv1.in_channels == 64 # Test stem_channels=64, with base_channels=32 model = ResNet(50, stem_channels=64, base_channels=32) assert model.stem_channels == 64 assert model.conv1.out_channels == 64 assert model.norm1.num_features == 64 assert model.layer1[0].conv1.in_channels == 64 # Test stem_channels=128 model = ResNet(depth=50, stem_channels=128) model.init_weights() model.train() assert model.conv1.out_channels == 128 assert model.layer1[0].conv1.in_channels == 128 # Test V1d stem_channels model = ResNetV1d(depth=50, stem_channels=128) model.init_weights() model.train() assert model.stem[0].out_channels == 64 assert model.stem[1].num_features == 64 assert model.stem[3].out_channels == 64 assert model.stem[4].num_features == 64 assert model.stem[6].out_channels == 128 assert model.stem[7].num_features == 128 assert model.layer1[0].conv1.in_channels == 128 def test_resnet_backbone(): """Test resnet backbone.""" with pytest.raises(KeyError): # ResNet depth should be in [18, 34, 50, 101, 152] ResNet(20) with pytest.raises(AssertionError): # In ResNet: 1 <= num_stages <= 4 ResNet(50, num_stages=0) with pytest.raises(AssertionError): # len(stage_with_dcn) == num_stages dcn = dict(type='DCN', deform_groups=1, fallback_on_stride=False) ResNet(50, dcn=dcn, stage_with_dcn=(True, )) with pytest.raises(AssertionError): # len(stage_with_plugin) == num_stages plugins = [ dict( cfg=dict(type='ContextBlock', ratio=1. / 16), stages=(False, True, True), position='after_conv3') ] ResNet(50, plugins=plugins) with pytest.raises(AssertionError): # In ResNet: 1 <= num_stages <= 4 ResNet(50, num_stages=5) with pytest.raises(AssertionError): # len(strides) == len(dilations) == num_stages ResNet(50, strides=(1, ), dilations=(1, 1), num_stages=3) with pytest.raises(TypeError): # pretrained must be a string path model = ResNet(50) model.init_weights(pretrained=0) with pytest.raises(AssertionError): # Style must be in ['pytorch', 'caffe'] ResNet(50, style='tensorflow') # Test ResNet50 norm_eval=True model = ResNet(50, norm_eval=True) model.init_weights() model.train() assert check_norm_state(model.modules(), False) # Test ResNet50 with torchvision pretrained weight model = ResNet(depth=50, norm_eval=True) model.init_weights('torchvision://resnet50') model.train() assert check_norm_state(model.modules(), False) # Test ResNet50 with first stage frozen frozen_stages = 1 model = ResNet(50, frozen_stages=frozen_stages) model.init_weights() model.train() assert model.norm1.training is False for layer in [model.conv1, model.norm1]: for param in layer.parameters(): assert param.requires_grad is False for i in range(1, frozen_stages + 1): layer = getattr(model, f'layer{i}') for mod in layer.modules(): if isinstance(mod, _BatchNorm): assert mod.training is False for param in layer.parameters(): assert param.requires_grad is False # Test ResNet50V1d with first stage frozen model = ResNetV1d(depth=50, frozen_stages=frozen_stages) assert len(model.stem) == 9 model.init_weights() model.train() check_norm_state(model.stem, False) for param in model.stem.parameters(): assert param.requires_grad is False for i in range(1, frozen_stages + 1): layer = getattr(model, f'layer{i}') for mod in layer.modules(): if isinstance(mod, _BatchNorm): assert mod.training is False for param in layer.parameters(): assert param.requires_grad is False # Test ResNet18 forward model = ResNet(18) model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 64, 56, 56]) assert feat[1].shape == torch.Size([1, 128, 28, 28]) assert feat[2].shape == torch.Size([1, 256, 14, 14]) assert feat[3].shape == torch.Size([1, 512, 7, 7]) # Test ResNet18 with checkpoint forward model = ResNet(18, with_cp=True) for m in model.modules(): if is_block(m): assert m.with_cp # Test ResNet50 with BatchNorm forward model = ResNet(50) for m in model.modules(): if is_norm(m): assert isinstance(m, _BatchNorm) model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) # Test ResNet50 with layers 1, 2, 3 out forward model = ResNet(50, out_indices=(0, 1, 2)) model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 3 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) # Test ResNet50 with checkpoint forward model = ResNet(50, with_cp=True) for m in model.modules(): if is_block(m): assert m.with_cp model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) # Test ResNet50 with GroupNorm forward model = ResNet( 50, norm_cfg=dict(type='GN', num_groups=32, requires_grad=True)) for m in model.modules(): if is_norm(m): assert isinstance(m, GroupNorm) model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) # Test ResNet50 with 1 GeneralizedAttention after conv2, 1 NonLocal2D # after conv2, 1 ContextBlock after conv3 in layers 2, 3, 4 plugins = [ dict( cfg=dict( type='GeneralizedAttention', spatial_range=-1, num_heads=8, attention_type='0010', kv_stride=2), stages=(False, True, True, True), position='after_conv2'), dict(cfg=dict(type='NonLocal2d'), position='after_conv2'), dict( cfg=dict(type='ContextBlock', ratio=1. / 16), stages=(False, True, True, False), position='after_conv3') ] model = ResNet(50, plugins=plugins) for m in model.layer1.modules(): if is_block(m): assert not hasattr(m, 'context_block') assert not hasattr(m, 'gen_attention_block') assert m.nonlocal_block.in_channels == 64 for m in model.layer2.modules(): if is_block(m): assert m.nonlocal_block.in_channels == 128 assert m.gen_attention_block.in_channels == 128 assert m.context_block.in_channels == 512 for m in model.layer3.modules(): if is_block(m): assert m.nonlocal_block.in_channels == 256 assert m.gen_attention_block.in_channels == 256 assert m.context_block.in_channels == 1024 for m in model.layer4.modules(): if is_block(m): assert m.nonlocal_block.in_channels == 512 assert m.gen_attention_block.in_channels == 512 assert not hasattr(m, 'context_block') model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) # Test ResNet50 with 1 ContextBlock after conv2, 1 ContextBlock after # conv3 in layers 2, 3, 4 plugins = [ dict( cfg=dict(type='ContextBlock', ratio=1. / 16, postfix=1), stages=(False, True, True, False), position='after_conv3'), dict( cfg=dict(type='ContextBlock', ratio=1. / 16, postfix=2), stages=(False, True, True, False), position='after_conv3') ] model = ResNet(50, plugins=plugins) for m in model.layer1.modules(): if is_block(m): assert not hasattr(m, 'context_block') assert not hasattr(m, 'context_block1') assert not hasattr(m, 'context_block2') for m in model.layer2.modules(): if is_block(m): assert not hasattr(m, 'context_block') assert m.context_block1.in_channels == 512 assert m.context_block2.in_channels == 512 for m in model.layer3.modules(): if is_block(m): assert not hasattr(m, 'context_block') assert m.context_block1.in_channels == 1024 assert m.context_block2.in_channels == 1024 for m in model.layer4.modules(): if is_block(m): assert not hasattr(m, 'context_block') assert not hasattr(m, 'context_block1') assert not hasattr(m, 'context_block2') model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) # Test ResNet50 zero initialization of residual model = ResNet(50, zero_init_residual=True) model.init_weights() for m in model.modules(): if isinstance(m, Bottleneck): assert all_zeros(m.norm3) elif isinstance(m, BasicBlock): assert all_zeros(m.norm2) model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) # Test ResNetV1d forward model = ResNetV1d(depth=50) model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) def test_renext_bottleneck(): with pytest.raises(AssertionError): # Style must be in ['pytorch', 'caffe'] BottleneckX(64, 64, groups=32, base_width=4, style='tensorflow') # Test ResNeXt Bottleneck structure block = BottleneckX( 64, 64, groups=32, base_width=4, stride=2, style='pytorch') assert block.conv2.stride == (2, 2) assert block.conv2.groups == 32 assert block.conv2.out_channels == 128 # Test ResNeXt Bottleneck with DCN dcn = dict(type='DCN', deform_groups=1, fallback_on_stride=False) with pytest.raises(AssertionError): # conv_cfg must be None if dcn is not None BottleneckX( 64, 64, groups=32, base_width=4, dcn=dcn, conv_cfg=dict(type='Conv')) BottleneckX(64, 64, dcn=dcn) # Test ResNeXt Bottleneck forward block = BottleneckX(64, 16, groups=32, base_width=4) x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) def test_resnext_backbone(): with pytest.raises(KeyError): # ResNeXt depth should be in [50, 101, 152] ResNeXt(depth=18) # Test ResNeXt with group 32, base_width 4 model = ResNeXt(depth=50, groups=32, base_width=4) for m in model.modules(): if is_block(m): assert m.conv2.groups == 32 model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) regnet_test_data = [ ('regnetx_400mf', dict(w0=24, wa=24.48, wm=2.54, group_w=16, depth=22, bot_mul=1.0), [32, 64, 160, 384]), ('regnetx_800mf', dict(w0=56, wa=35.73, wm=2.28, group_w=16, depth=16, bot_mul=1.0), [64, 128, 288, 672]), ('regnetx_1.6gf', dict(w0=80, wa=34.01, wm=2.25, group_w=24, depth=18, bot_mul=1.0), [72, 168, 408, 912]), ('regnetx_3.2gf', dict(w0=88, wa=26.31, wm=2.25, group_w=48, depth=25, bot_mul=1.0), [96, 192, 432, 1008]), ('regnetx_4.0gf', dict(w0=96, wa=38.65, wm=2.43, group_w=40, depth=23, bot_mul=1.0), [80, 240, 560, 1360]), ('regnetx_6.4gf', dict(w0=184, wa=60.83, wm=2.07, group_w=56, depth=17, bot_mul=1.0), [168, 392, 784, 1624]), ('regnetx_8.0gf', dict(w0=80, wa=49.56, wm=2.88, group_w=120, depth=23, bot_mul=1.0), [80, 240, 720, 1920]), ('regnetx_12gf', dict(w0=168, wa=73.36, wm=2.37, group_w=112, depth=19, bot_mul=1.0), [224, 448, 896, 2240]), ] @pytest.mark.parametrize('arch_name,arch,out_channels', regnet_test_data) def test_regnet_backbone(arch_name, arch, out_channels): with pytest.raises(AssertionError): # ResNeXt depth should be in [50, 101, 152] RegNet(arch_name + '233') # Test RegNet with arch_name model = RegNet(arch_name) model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, out_channels[0], 56, 56]) assert feat[1].shape == torch.Size([1, out_channels[1], 28, 28]) assert feat[2].shape == torch.Size([1, out_channels[2], 14, 14]) assert feat[3].shape == torch.Size([1, out_channels[3], 7, 7]) # Test RegNet with arch model = RegNet(arch) assert feat[0].shape == torch.Size([1, out_channels[0], 56, 56]) assert feat[1].shape == torch.Size([1, out_channels[1], 28, 28]) assert feat[2].shape == torch.Size([1, out_channels[2], 14, 14]) assert feat[3].shape == torch.Size([1, out_channels[3], 7, 7]) def test_res2net_bottle2neck(): with pytest.raises(AssertionError): # Style must be in ['pytorch', 'caffe'] Bottle2neck(64, 64, base_width=26, scales=4, style='tensorflow') with pytest.raises(AssertionError): # Scale must be larger than 1 Bottle2neck(64, 64, base_width=26, scales=1, style='pytorch') # Test Res2Net Bottle2neck structure block = Bottle2neck( 64, 64, base_width=26, stride=2, scales=4, style='pytorch') assert block.scales == 4 # Test Res2Net Bottle2neck with DCN dcn = dict(type='DCN', deform_groups=1, fallback_on_stride=False) with pytest.raises(AssertionError): # conv_cfg must be None if dcn is not None Bottle2neck( 64, 64, base_width=26, scales=4, dcn=dcn, conv_cfg=dict(type='Conv')) Bottle2neck(64, 64, dcn=dcn) # Test Res2Net Bottle2neck forward block = Bottle2neck(64, 16, base_width=26, scales=4) x = torch.randn(1, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([1, 64, 56, 56]) def test_res2net_backbone(): with pytest.raises(KeyError): # Res2Net depth should be in [50, 101, 152] Res2Net(depth=18) # Test Res2Net with scales 4, base_width 26 model = Res2Net(depth=50, scales=4, base_width=26) for m in model.modules(): if is_block(m): assert m.scales == 4 model.init_weights() model.train() imgs = torch.randn(1, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([1, 256, 56, 56]) assert feat[1].shape == torch.Size([1, 512, 28, 28]) assert feat[2].shape == torch.Size([1, 1024, 14, 14]) assert feat[3].shape == torch.Size([1, 2048, 7, 7]) def test_hourglass_backbone(): with pytest.raises(AssertionError): # HourglassNet's num_stacks should larger than 0 HourglassNet(num_stacks=0) with pytest.raises(AssertionError): # len(stage_channels) should equal len(stage_blocks) HourglassNet( stage_channels=[256, 256, 384, 384, 384], stage_blocks=[2, 2, 2, 2, 2, 4]) with pytest.raises(AssertionError): # len(stage_channels) should lagrer than downsample_times HourglassNet( downsample_times=5, stage_channels=[256, 256, 384, 384, 384], stage_blocks=[2, 2, 2, 2, 2]) # Test HourglassNet-52 model = HourglassNet(num_stacks=1) model.init_weights() model.train() imgs = torch.randn(1, 3, 511, 511) feat = model(imgs) assert len(feat) == 1 assert feat[0].shape == torch.Size([1, 256, 128, 128]) # Test HourglassNet-104 model = HourglassNet(num_stacks=2) model.init_weights() model.train() imgs = torch.randn(1, 3, 511, 511) feat = model(imgs) assert len(feat) == 2 assert feat[0].shape == torch.Size([1, 256, 128, 128]) assert feat[1].shape == torch.Size([1, 256, 128, 128]) def test_resnest_bottleneck(): with pytest.raises(AssertionError): # Style must be in ['pytorch', 'caffe'] BottleneckS(64, 64, radix=2, reduction_factor=4, style='tensorflow') # Test ResNeSt Bottleneck structure block = BottleneckS( 64, 256, radix=2, reduction_factor=4, stride=2, style='pytorch') assert block.avd_layer.stride == 2 assert block.conv2.channels == 256 # Test ResNeSt Bottleneck forward block = BottleneckS(64, 16, radix=2, reduction_factor=4) x = torch.randn(2, 64, 56, 56) x_out = block(x) assert x_out.shape == torch.Size([2, 64, 56, 56]) def test_resnest_backbone(): with pytest.raises(KeyError): # ResNeSt depth should be in [50, 101, 152, 200] ResNeSt(depth=18) # Test ResNeSt with radix 2, reduction_factor 4 model = ResNeSt( depth=50, radix=2, reduction_factor=4, out_indices=(0, 1, 2, 3)) model.init_weights() model.train() imgs = torch.randn(2, 3, 224, 224) feat = model(imgs) assert len(feat) == 4 assert feat[0].shape == torch.Size([2, 256, 56, 56]) assert feat[1].shape == torch.Size([2, 512, 28, 28]) assert feat[2].shape == torch.Size([2, 1024, 14, 14]) assert feat[3].shape == torch.Size([2, 2048, 7, 7])
34.647715
79
0.612536
908c0c3a883c213145b1d3fbb6cef12589c895b2
351
py
Python
awacs/mobileanalytics.py
craigbruce/awacs
e1d0699409291f0ad586b86d6c55cfc54af70778
[ "BSD-2-Clause" ]
null
null
null
awacs/mobileanalytics.py
craigbruce/awacs
e1d0699409291f0ad586b86d6c55cfc54af70778
[ "BSD-2-Clause" ]
null
null
null
awacs/mobileanalytics.py
craigbruce/awacs
e1d0699409291f0ad586b86d6c55cfc54af70778
[ "BSD-2-Clause" ]
null
null
null
# Copyright (c) 2012-2013, Mark Peek <mark@peek.org> # All rights reserved. # # See LICENSE file for full license. from aws import Action service_name = 'Amazon Mobile Analytics' prefix = 'mobileanalytics' PutEvents = Action(prefix, 'PutEvents') GetReports = Action(prefix, 'GetReports') GetFinancialReports = Action(prefix, 'GetFinancialReports')
25.071429
59
0.760684
a9a8fb8e70cbd435b756c66e1304424357147515
9,838
py
Python
tests/test_parser.py
Tordek/modl
1cd862479eff44541919c0a4a0cd274963f12d58
[ "MIT" ]
20
2019-02-12T15:50:08.000Z
2021-11-19T23:05:15.000Z
tests/test_parser.py
Tordek/modl
1cd862479eff44541919c0a4a0cd274963f12d58
[ "MIT" ]
null
null
null
tests/test_parser.py
Tordek/modl
1cd862479eff44541919c0a4a0cd274963f12d58
[ "MIT" ]
null
null
null
import unittest from modl.parser import Parser from modl.scanner import Scanner from modl import expr class PrimaryTests(unittest.TestCase): literals = {"5;": 5, '"five";': "five", "5.0;": 5.0} def test_literals(self): for string, literal in self.literals.items(): with self.subTest(i=string): scanner = Scanner(string) parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Literal) self.assertEqual(statement.value, literal) def test_builtin(self): scanner = Scanner("{#print};") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Builtin) self.assertEqual(statement.name, "print") def test_identifier(self): scanner = Scanner("ident;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Identifier) self.assertEqual(statement.name, "ident") def test_symbols_cant_be_used_alone(self): scanner = Scanner("+;") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() def test_symbols_can_be_wrapped_in_parentheses(self): scanner = Scanner("(+);") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Identifier) self.assertEqual(statement.name, "+") def test_symbols_can_be_part_of_an_expression(self): scanner = Scanner("1 + 2;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Symchain) self.assertIsInstance(statement.op, expr.Identifier) self.assertEqual(statement.op.name, "+") self.assertIsInstance(statement.left, expr.Literal) self.assertEqual(statement.left.value, 1) self.assertIsInstance(statement.right, expr.Literal) self.assertEqual(statement.right.value, 2) def test_parentheses_are_invisible(self): scanner = Scanner("(ident);") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Identifier) self.assertEqual(statement.name, "ident") def test_lambda(self): scanner = Scanner("{ x | x; };") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Function) self.assertEqual(len(statement.args), 1) self.assertEqual(len(statement.body), 1) def test_lambda_longer(self): scanner = Scanner("{ x y | x y; y x; x y;};") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Function) self.assertEqual(len(statement.args), 2) self.assertEqual(len(statement.body), 3) def test_lambda_cant_have_empty_parameter_list(self): scanner = Scanner("{ | 1; };") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() def test_lambda_cant_have_empty_body(self): scanner = Scanner("{ x | };") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() def test_cond(self): scanner = Scanner("cond | 1 -> 1; ;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Conditional) def test_cond_with_many_actions(self): scanner = Scanner("cond | x -> f x; 3; ;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Conditional) def test_cond_cant_be_empty(self): scanner = Scanner("cond ;") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() def test_cond_condition_cant_be_empty(self): scanner = Scanner("cond | -> x; ;") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() def test_cond_action_cant_be_empty(self): scanner = Scanner("cond | x -> ;") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() def test_bangs_are_special(self): scanner = Scanner("!;") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() print(statement) def test_things_can_have_types(self): scanner = Scanner("ident : Integer;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertEqual(len(statement.types), 1) self.assertEqual(statement.types[0], "Integer") def test_lambdas_can_have_types(self): scanner = Scanner("{ x | x; } : Integer -> Integer;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertEqual(len(statement.types), 2) self.assertEqual(statement.types[0], "Integer") self.assertEqual(statement.types[1], "Integer") def things_can_have_types_in_the_middle_of_other_things(self): scanner = Scanner("ident : Integer + 5;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Expression) self.assertEqual(statement[0].name, "ident") self.assertEqual(len(statement[0].types), 1) self.assertEqual(statement[0].types[0], "Integer") class FuncallTests(unittest.TestCase): def test_simple_call(self): scanner = Scanner("call par1 2;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Expression) self.assertEqual(len(statement.call), 3) self.assertIsInstance(statement.call[0], expr.Identifier) self.assertEqual(statement.call[0].name, "call") self.assertIsInstance(statement.call[1], expr.Identifier) self.assertEqual(statement.call[1].name, "par1") self.assertIsInstance(statement.call[2], expr.Literal) self.assertEqual(statement.call[2].value, 2) def test_bang_words_are_magic(self): scanner = Scanner("print!;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Expression) self.assertEqual(len(statement.call), 2) self.assertIsInstance(statement.call[0], expr.Identifier) self.assertEqual(statement.call[0].name, "print!") self.assertIsInstance(statement.call[1], expr.Identifier) self.assertEqual(statement.call[1].name, "!") def test_complete_your_function(self): scanner = Scanner("{ x | x; ") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() def test_simplest_program(self): scanner = Scanner("1;") parser = Parser(scanner.scan_tokens()) program = parser.program() self.assertEqual(len(program), 1) statement = program[0] self.assertIsInstance(statement, expr.Literal) self.assertEqual(statement.value, 1) class StatementTests(unittest.TestCase): def test_use(self): scanner = Scanner('use "potato";') parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Use) self.assertEqual(statement.filename, "potato") def test_single(self): scanner = Scanner("let a <- 1;") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Let) self.assertEqual(len(statement.assignments), 1) name, value = statement.assignments[0] self.assertIsInstance(name, expr.Identifier) self.assertIsInstance(value, expr.Literal) def test_multiple(self): scanner = Scanner("let a <- 1, + <- { x y | x y; };") parser = Parser(scanner.scan_tokens()) statement = parser.statement() self.assertIsInstance(statement, expr.Let) self.assertEqual(len(statement.assignments), 2) name, value = statement.assignments[0] self.assertIsInstance(name, expr.Identifier) self.assertIsInstance(value, expr.Literal) name, value = statement.assignments[1] self.assertIsInstance(name, expr.Identifier) self.assertIsInstance(value, expr.Function) def test_cant_assign_to_a_function(self): scanner = Scanner("let { x | x; }; <- 1;") parser = Parser(scanner.scan_tokens()) with self.assertRaises(Exception): statement = parser.statement() class GreenspunTest(unittest.TestCase): program = """ use "std.dl"; let x <- 1 : Integer, f <- { a | {#add} x + a; }; f (+) x; cond | a -> f x 1; | b -> print! "B"; (+); ; """ output = """USE 'std.dl' (DEFINE x 1 f (LAMBDA (a) (+ (#add x) a))) (f + x) (COND (a (f x 1)) (b(progn (print! ! 'B') +)) )""" def test_hey_this_looks_like_lisp_lol(self): scanner = Scanner(self.program) parser = Parser(scanner.scan_tokens()) program = parser.program() self.assertEqual("\n".join(repr(st) for st in program), self.output)
36.984962
76
0.63702
5572d051407640a523696e2ac071b42421db1afe
126
py
Python
eduu/__init__.py
Keys-007/EduuRobot
13d75fee3b3c08cd6f1f0c6dcec5df0f542ba851
[ "MIT" ]
null
null
null
eduu/__init__.py
Keys-007/EduuRobot
13d75fee3b3c08cd6f1f0c6dcec5df0f542ba851
[ "MIT" ]
null
null
null
eduu/__init__.py
Keys-007/EduuRobot
13d75fee3b3c08cd6f1f0c6dcec5df0f542ba851
[ "MIT" ]
null
null
null
"""EduuRobot core package.""" # SPDX-License-Identifier: MIT # Copyright (c) 2018-2022 Amano Team __version__ = "2.0.0-beta"
21
36
0.706349
ccffe38fd8a077bc8d91e714ab4c4bb06873e046
1,321
py
Python
cogs/commands.py
Manoj-Paramsetti/corona-discord-bot
5ff6e27f818885387b9f1ed954bea7c0281fbf6e
[ "BSD-3-Clause" ]
3
2021-08-19T08:36:30.000Z
2022-01-03T14:35:57.000Z
cogs/commands.py
Manoj-Paramsetti/discord-bot
5ff6e27f818885387b9f1ed954bea7c0281fbf6e
[ "BSD-3-Clause" ]
4
2021-04-29T03:25:43.000Z
2021-04-29T03:32:49.000Z
cogs/commands.py
Manoj-Paramsetti/discord-bot
5ff6e27f818885387b9f1ed954bea7c0281fbf6e
[ "BSD-3-Clause" ]
null
null
null
from discord.ext import commands from assets.getcorona import getcorona from assets.embed import * class commander(commands.Cog): def __init__(self, bot): self.bot = bot @commands.command(name="check") async def chack_corona(self, ctx, arg): if arg == 'corona': await ctx.channel.send(embed = EmbedSymtoms()) elif arg == "cogs": await ctx.channel.send(f"<@!{str(ctx.message.author.id)}> roger that!") @commands.command(name="hello", aliases=["Hello","hi","Hi"]) async def hello_command(self, ctx): msg = f"Hello <@!{str(ctx.message.author.id)}>, Type `!help` to see more information" await ctx.channel.send(msg) @commands.command(name="corona") async def corona_command(self, ctx): await ctx.channel.send(embed = getcorona(ctx.message.content)) @commands.command(name="list") async def list_pages(self, ctx, arg="1"): await ctx.channel.send(embed = EmbedList(arg)) @commands.command(name="help") async def help(self, ctx): await ctx.channel.send(embed = EmbedHelp()) @commands.command(name="go") async def go_corona(self, ctx, arg): if arg == "corona": await ctx.channel.send(embed = EmbedSafety()) def setup(bot): bot.add_cog(commander(bot))
32.219512
93
0.635882
1091e211a9cabc9e80bc3e29c5b11908eef7218c
13,262
py
Python
event/io/dataset/nombank.py
edvisees/DDSemantics
9044e4afa6f9d6d7504de028633295f30679278d
[ "Apache-2.0" ]
null
null
null
event/io/dataset/nombank.py
edvisees/DDSemantics
9044e4afa6f9d6d7504de028633295f30679278d
[ "Apache-2.0" ]
null
null
null
event/io/dataset/nombank.py
edvisees/DDSemantics
9044e4afa6f9d6d7504de028633295f30679278d
[ "Apache-2.0" ]
null
null
null
import logging import xml.etree.ElementTree as ET from collections import defaultdict from nltk.corpus import ( NombankCorpusReader, BracketParseCorpusReader, ) from nltk.corpus.reader.nombank import ( NombankChainTreePointer, NombankSplitTreePointer, NombankTreePointer, ) from nltk.data import FileSystemPathPointer from event.io.dataset.base import ( Span, DataLoader, DEDocument, ) from event.io.dataset import utils from collections import Counter import os import sys class NomBank(DataLoader): """Loading Nombank data and implicit argument annotations.""" def __init__(self, params, corpus, with_doc=False): super().__init__(params, corpus, with_doc) self.wsj_treebank = BracketParseCorpusReader( root=params.wsj_path, fileids=params.wsj_file_pattern, tagset='wsj', encoding='ascii' ) logging.info( 'Found {} treebank files.'.format( len(self.wsj_treebank.fileids())) ) self.nombank = NombankCorpusReader( root=FileSystemPathPointer(params.nombank_path), nomfile=params.nomfile, framefiles=params.frame_file_pattern, nounsfile=params.nombank_nouns_file, parse_fileid_xform=lambda s: s[4:], parse_corpus=self.wsj_treebank ) logging.info("Loading G&C annotations.") self.gc_annos = self.load_gc_annotations() num_gc_preds = sum([len(preds) for (d, preds) in self.gc_annos.items()]) logging.info(f"Loaded {num_gc_preds} predicates") logging.info("Loading Nombank annotations") self.nombank_annos = defaultdict(list) for nb_instance in self.nombank.instances(): docid = nb_instance.fileid.split('/')[-1] self.nombank_annos[docid].append(nb_instance) self.stats = { 'target_pred_count': Counter(), 'predicates_with_implicit': Counter(), 'implicit_slots': Counter(), } self.stat_dir = params.stat_dir class NomElement: def __init__(self, article_id, sent_num, tree_pointer): self.article_id = article_id self.sent_num = int(sent_num) self.pointer = tree_pointer @staticmethod def from_text(pointer_text): parts = pointer_text.split(':') if len(parts) != 4: raise ValueError("Invalid pointer text.") read_id = parts[0] full_id = read_id.split('_')[1][:2] + '/' + read_id + '.mrg' return NomBank.NomElement( full_id, int(parts[1]), NombankTreePointer(int(parts[2]), int(parts[3])) ) def __str__(self): return 'Node-%s-%s:%s' % ( self.article_id, self.sent_num, self.pointer.__repr__()) def __hash__(self): return hash( (self.article_id, self.sent_num, self.pointer.__repr__()) ) def __eq__(self, other): return other and other.__str__() == self.__str__() __repr__ = __str__ def load_gc_annotations(self): tree = ET.parse(self.params.implicit_path) root = tree.getroot() gc_annotations = defaultdict(dict) def merge_split_pointers(pointers): all_pointers = [] split_pointers = [] for pointer, is_split in pointers: if is_split: split_pointers.append(pointer) else: all_pointers.append(pointer) if len(split_pointers) > 0: sorted(split_pointers, key=lambda t: t.wordnum) all_pointers.append(NombankChainTreePointer(split_pointers)) return all_pointers total_implicit_count = 0 total_preds = 0 for annotations in root: pred_node_pos = annotations.attrib['for_node'] predicate = NomBank.NomElement.from_text(pred_node_pos) article_id = predicate.article_id total_preds += 1 explicit_roles = set() arg_annos = defaultdict(list) for annotation in annotations: arg_type = annotation.attrib['value'] arg_node_pos = annotation.attrib['node'] (arg_article_id, arg_sent_id, arg_terminal_id, arg_height) = arg_node_pos.split(':') is_split = False is_explicit = False for attribute in annotation[0]: if attribute.text == 'Split': is_split = True elif attribute.text == 'Explicit': is_explicit = True if pred_node_pos == arg_node_pos: # Incorporated nodes are explicit. is_explicit = True if is_explicit: explicit_roles.add(arg_type) else: p = NombankTreePointer(int(arg_terminal_id), int(arg_height)) # Arguments are group by their sentences. arg_annos[(arg_sent_id, arg_type)].append((p, is_split)) all_args = defaultdict(list) implicit_role_here = set() for (arg_sent_id, arg_type), l_pointers in arg_annos.items(): if int(arg_sent_id) > predicate.sent_num: # Ignoring annotations after the sentence. continue if arg_type not in explicit_roles: for p in merge_split_pointers(l_pointers): arg_element = NomBank.NomElement( article_id, arg_sent_id, p) if not predicate.pointer == arg_element.pointer: # Ignoring incorporated ones. all_args[arg_type].append(arg_element) implicit_role_here.add(arg_type) gc_annotations[article_id.split('/')[-1]][predicate] = all_args total_implicit_count += len(implicit_role_here) logging.info(f"Loaded {total_preds} predicates, " f"{total_implicit_count} implicit arguments.") return gc_annotations def add_predicate(self, doc, parsed_sents, predicate_node): pred_node_repr = "%s:%d:%s" % ( doc.docid, predicate_node.sent_num, predicate_node.pointer) p_tree = parsed_sents[predicate_node.sent_num] p_word_idx = utils.make_words_from_pointer( p_tree, predicate_node.pointer) predicate_span = utils.get_nltk_span( doc.token_spans, predicate_node.sent_num, p_word_idx) if len(predicate_span) == 0: logging.warning("Zero length predicate found") return p = doc.add_predicate(None, predicate_span, frame_type='NOMBANK') if p: p.add_meta('node', pred_node_repr) return p def add_nombank_arg(self, doc, parsed_sents, wsj_spans, arg_type, predicate, arg_node, implicit=False): arg_type = arg_type.lower() a_tree = parsed_sents[arg_node.sent_num] a_word_idx = utils.make_words_from_pointer(a_tree, arg_node.pointer) arg_node_repr = "%s:%d:%s" % ( doc.docid, arg_node.sent_num, arg_node.pointer) argument_span = utils.get_nltk_span(wsj_spans, arg_node.sent_num, a_word_idx) if len(argument_span) == 0: # Some arguments are empty nodes, they will be ignored. return em = doc.add_entity_mention(None, argument_span) if em: if implicit: arg_type = 'i_' + arg_type arg_mention = doc.add_argument_mention(predicate, em.aid, arg_type) arg_mention.add_meta('node', arg_node_repr) if implicit: arg_mention.add_meta('implicit', True) arg_mention.add_meta('sent_num', arg_node.sent_num) arg_mention.add_meta('text', em.text) return arg_mention def get_predicate_text(self, p): p_text = p.text.lower() if p_text == 'losses' or p_text == 'loss' or p_text == 'tax-loss': p_text = 'loss' else: p_text = p_text.rstrip('s') if p_text == 'savings-and-loan': p_text = 'loan' if '-' in p_text: p_text = p_text.split('-')[1] return p_text def add_all_annotations(self, doc, parsed_sents): logging.info("Adding Nombank annotation for " + doc.docid) nb_instances = self.nombank_annos[doc.docid] for nb_instance in nb_instances: predicate_node = NomBank.NomElement( doc.docid, nb_instance.sentnum, nb_instance.predicate ) p = self.add_predicate(doc, parsed_sents, predicate_node) for argloc, argid in nb_instance.arguments: arg_node = NomBank.NomElement( doc.docid, nb_instance.sentnum, argloc ) arg = self.add_nombank_arg( doc, parsed_sents, doc.token_spans, argid, p, arg_node) if arg_node.pointer == predicate_node.pointer: arg.add_meta('incorporated', True) if not self.params.explicit_only and doc.docid in self.gc_annos: for predicate_node, gc_args in self.gc_annos[doc.docid].items(): added_args = defaultdict(list) p = self.add_predicate(doc, parsed_sents, predicate_node) p_text = utils.normalize_pred_text(p.text) p.add_meta('from_gc', True) self.stats['target_pred_count'][p_text] += 1 for arg_type, arg_nodes in gc_args.items(): for arg_node in arg_nodes: arg = self.add_nombank_arg( doc, parsed_sents, doc.token_spans, arg_type, p, arg_node, True ) added_args[arg_type].append(arg) # The following should be useless already. if arg_node.pointer == predicate_node.pointer: arg.add_meta('incorporated', True) if arg_node.sent_num > predicate_node.sent_num: arg.add_meta('succeeding', True) if len(added_args) > 0: self.stats['predicates_with_implicit'][p_text] += 1 self.stats['implicit_slots'][p_text] += len(added_args) def set_wsj_text(self, doc, fileid): text = '' w_start = 0 spans = [] for tagged_sent in self.wsj_treebank.tagged_sents(fileid): word_spans = [] for word, tag in tagged_sent: if not tag == '-NONE-': text += word + ' ' word_spans.append((w_start, w_start + len(word))) w_start += len(word) + 1 else: # Ignoring these words. word_spans.append(None) text += '\n' w_start += 1 spans.append(word_spans) doc.set_text(text) return spans def load_nombank(self): all_annos = defaultdict(list) for nb_instance in self.nombank.instances(): all_annos[nb_instance.fileid].append(nb_instance) return all_annos def get_doc(self): for docid, instances in self.nombank_annos.items(): if self.params.gc_only and docid not in self.gc_annos: continue doc = DEDocument(self.corpus) doc.set_id(docid) fileid = docid.split('_')[-1][:2] + '/' + docid parsed_sents = self.wsj_treebank.parsed_sents(fileids=fileid) doc.set_parsed_sents(parsed_sents) token_spans = self.set_wsj_text(doc, fileid) doc.set_token_spans(token_spans) self.add_all_annotations(doc, parsed_sents) yield doc def print_stats(self): logging.info("Corpus statistics from Nombank") keys = self.stats.keys() headline = 'predicate\t' + '\t'.join(keys) sums = Counter() if not os.path.exists(self.stat_dir): os.makedirs(self.stat_dir) preds = sorted(self.stats['predicates_with_implicit'].keys()) with open(os.path.join(self.stat_dir, 'counts.txt'), 'w') as out: print(headline) out.write(f'{headline}\n') for pred in preds: line = f"{pred}:" for key in keys: line += f"\t{self.stats[key][pred]}" sums[key] += self.stats[key][pred] print(line) out.write(f'{line}\n') sum_line = 'Total\t' + '\t'.join([str(sums[k]) for k in keys]) print(sum_line) out.write(f'{sum_line}\n')
33.574684
80
0.558588
57cf7130d420d9ea7ac339598f88e6849e420141
1,219
py
Python
authors/apps/articles/migrations/0002_auto_20190222_1139.py
bryan-munene/ah-bird-box
b36bb4ff7584d49ecf9fec0095c6fd59da14733e
[ "BSD-3-Clause" ]
3
2019-01-28T16:19:00.000Z
2019-02-07T11:38:58.000Z
authors/apps/articles/migrations/0002_auto_20190222_1139.py
bryan-munene/ah-bird-box
b36bb4ff7584d49ecf9fec0095c6fd59da14733e
[ "BSD-3-Clause" ]
20
2019-01-29T08:37:37.000Z
2022-03-11T23:40:32.000Z
authors/apps/articles/migrations/0002_auto_20190222_1139.py
bryan-munene/ah-bird-box
b36bb4ff7584d49ecf9fec0095c6fd59da14733e
[ "BSD-3-Clause" ]
6
2019-03-09T19:12:19.000Z
2019-10-23T07:53:51.000Z
# Generated by Django 2.1.5 on 2019-02-22 11:39 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('articles', '0001_initial'), ] operations = [ migrations.AddField( model_name='article', name='author', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='article', to=settings.AUTH_USER_MODEL), ), migrations.AddField( model_name='article', name='disliked_by', field=models.ManyToManyField(blank=True, related_name='dislikes', to=settings.AUTH_USER_MODEL), ), migrations.AddField( model_name='article', name='liked_by', field=models.ManyToManyField(blank=True, related_name='likes', to=settings.AUTH_USER_MODEL), ), migrations.AddField( model_name='article', name='tags', field=models.ManyToManyField(related_name='articles', to='articles.Tag'), ), ]
31.25641
134
0.629204
3c65066f425d00fe112d38cd7792db25f663beb0
3,132
py
Python
main.py
FrankWSamuelson/merge-sort
524b3f355228f97e3b4ac8b10b993e8558a20cd9
[ "CC0-1.0" ]
null
null
null
main.py
FrankWSamuelson/merge-sort
524b3f355228f97e3b4ac8b10b993e8558a20cd9
[ "CC0-1.0" ]
null
null
null
main.py
FrankWSamuelson/merge-sort
524b3f355228f97e3b4ac8b10b993e8558a20cd9
[ "CC0-1.0" ]
null
null
null
#!/usr/bin/python3.6 import pickle import os import sys import numpy as np from tqdm import tqdm from time import sleep from multiprocessing import Pool from warnings import filterwarnings filterwarnings('ignore') from DylComp import Comparator from DylMath import genSep from DylSort import treeMergeSort from DylData import continuousScale def sort(args) -> list: """Performs a sort based on the given args. Args is of the format (dist, auc, n0, n1) and is one tuple/list. Throws an error if the array did not sort correctly. Returns the results.""" dist, auc, n0, n1 = args results = list() data, D0, D1 = continuousScale(n0, n1) comp = Comparator(data, level=0, rand=True) sep = genSep(dist, auc) comp.genRand(n0, n1, sep, dist) for arr, stats in treeMergeSort(data, comp, [(D0, D1), dist, auc], n=2): stats.extend([len(comp), comp.genSeps(), comp.pc[-1]]) comp.resetPC() results.append(stats) if arr != sorted(arr, key=lambda x: comp.getLatentScore(x)[0]): print(arr) print(sorted(arr, key=lambda x: comp.getLatentScore(x)[0])) raise AssertionError("did not sort") return results def multiRunner(sorter, sorterName: str, distributions: list=None, aucs: list=None): """Calls the given sorter for either the provided distributions and aucs or the command line arguments: command line args as: distributions and aucs each separated by commas no spaces, separated by a space sorter must take: one argument that equals (unique threadID, distribution, auc, n0, n1) sorter must return: a list of results to be pickled and appended to the file""" if distributions == None: if len(sys.argv) == 6: #distributions and AUCs given distributions = sys.argv[2].split(',') else: distributions = ['normal', 'exponential'] if aucs == None: if len(sys.argv) == 6: #distributions and AUCs given aucs = [float(auc) for auc in sys.argv[3].split(',')] else: aucs = [0.65, 0.85, 0.95] for dist in distributions: for AUC in aucs: results = list() iters = int(sys.argv[1]) if len(sys.argv) == 6: ids = [(dist, AUC, int(sys.argv[4]), int(sys.argv[5])) for _ in range(iters)] else: ids = [(dist, AUC, 128, 128) for _ in range(iters)] topBar = tqdm(total=iters, smoothing=0, bar_format="{percentage:3.0f}% {n_fmt}/{total_fmt} {remaining}, {rate_fmt}") botBar = tqdm(total=iters, smoothing=0, bar_format="{bar}") with Pool(initializer=np.random.seed) as p: for result in p.imap_unordered(sorter, ids): topBar.update() botBar.update() results.append(pickle.dumps(result)) botBar.close() topBar.close() print('\n') #change output file if requested to do so print("waiting for lock") locked = False while not locked: try: lock = open(".lock", "x") print("made lock") locked = True except FileExistsError: sleep(0.1) try: with open(f'results{sorterName}{dist.title()}{int(AUC*100)}','ab') as f: print("have lock") f.writelines(results) except BaseException as err: print(err) finally: lock.close() os.remove(".lock") if __name__ == "__main__": multiRunner(sort, "Merge")
34.043478
119
0.686462
d5d39e159efe90080325bda07624da871ff63da6
3,535
py
Python
modules/api/functional_test/conftest.py
exoego/vinyldns
aac4c2afe4c599ac8c96ad3a826f3a6dff887104
[ "Apache-2.0" ]
null
null
null
modules/api/functional_test/conftest.py
exoego/vinyldns
aac4c2afe4c599ac8c96ad3a826f3a6dff887104
[ "Apache-2.0" ]
1
2019-02-06T21:38:12.000Z
2019-02-06T21:38:12.000Z
modules/api/functional_test/conftest.py
exoego/vinyldns
aac4c2afe4c599ac8c96ad3a826f3a6dff887104
[ "Apache-2.0" ]
null
null
null
import os import pytest import boto.dynamodb2 from boto.dynamodb2.table import Table from boto.dynamodb2.fields import HashKey from boto.dynamodb2.fields import GlobalAllIndex from vinyldns_context import VinylDNSTestContext def pytest_addoption(parser): """ Adds additional options that we can parse when we run the tests, stores them in the parser / py.test context """ parser.addoption("--url", dest="url", action="store", default="http://localhost:9000", help="URL for application to root") parser.addoption("--dns-ip", dest="dns_ip", action="store", default="127.0.0.1:19001", help="The ip address for the dns server to use for the tests") parser.addoption("--dns-zone", dest="dns_zone", action="store", default="vinyldns.", help="The zone name that will be used for testing") parser.addoption("--dns-key-name", dest="dns_key_name", action="store", default="vinyldns.", help="The name of the key used to sign updates for the zone") parser.addoption("--dns-key", dest="dns_key", action="store", default="nzisn+4G2ldMn0q1CV3vsg==", help="The tsig key") # optional parser.addoption("--basic-auth", dest="basic_auth_creds", help="Basic auth credentials in 'user:pass' format") parser.addoption("--basic-auth-realm", dest="basic_auth_realm", help="Basic auth realm to use with credentials supplied by \"-b\"") parser.addoption("--iauth-creds", dest="iauth_creds", help="Intermediary auth (codebig style) in 'key:secret' format") parser.addoption("--oauth-creds", dest="oauth_creds", help="OAuth credentials in consumer:secret format") parser.addoption("--environment", dest="cim_env", action="store", default="test", help="CIM_ENV that we are testing against.") parser.addoption("--log-level", dest="logging_level", help="logging level should be CRITICAL, ERROR, WARNING, INFO or DEBUG") def pytest_configure(config): """ Loads the test context since we are no longer using run.py """ # Monkey patch ssl so we do not verify ssl certs import ssl try: _create_unverified_https_context = ssl._create_unverified_context except AttributeError: # Legacy Python that doesn't verify HTTPS certificates by default pass else: # Handle target environment that doesn't support HTTPS verification ssl._create_default_https_context = _create_unverified_https_context url = config.getoption("url", default="http://localhost:9000/") if not url.endswith('/'): url += '/' import sys sys.dont_write_bytecode = True VinylDNSTestContext.configure(config.getoption("dns_ip"), config.getoption("dns_zone"), config.getoption("dns_key_name"), config.getoption("dns_key"), config.getoption("url")) def pytest_report_header(config): """ Overrides the test result header like we do in pyfunc test """ header = "Testing against CIM_ENV " + config.getoption("cim_env") header += "\r\nURL: " + config.getoption("url") header += "\r\nRunning from directory " + os.getcwd() header += '\r\nTest shim directory ' + os.path.dirname(__file__) header += "\r\nDNS IP: " + config.getoption("dns_ip") return header
44.746835
112
0.637058
d2505f2e87f3affa37d8d3a3d90923756f1dcc87
430
py
Python
Mundo03/016-Tuplas/desafios/ex073.py
Maycon13PB/Python3
8a1d55d6ae8ab67c80fffd11736422b98320a3d2
[ "MIT" ]
null
null
null
Mundo03/016-Tuplas/desafios/ex073.py
Maycon13PB/Python3
8a1d55d6ae8ab67c80fffd11736422b98320a3d2
[ "MIT" ]
null
null
null
Mundo03/016-Tuplas/desafios/ex073.py
Maycon13PB/Python3
8a1d55d6ae8ab67c80fffd11736422b98320a3d2
[ "MIT" ]
null
null
null
Times = ("Palmeiras", "Atlético-MG", "Fortaleza", "Bragantino", "Flamengo", "Athletico-PR", "Ceará", "Santos", "Atlético-GO", "Bahia", "Corinthians", "Fluminense", "Juventude", "Internacional", "Sport", "Cuiabá", "São Paulo", "América-MG", "Grêmio", "Chapecoense") print("="*50) print(Times[:5]) print("="*50) print(Times [-4:]) print("="*50) print(sorted(Times)) print("="*50) print(Times.index("América-MG") + 1 ) print("="*50)
39.090909
264
0.637209
37072e77944b2a0676c2bc31aeee35a5eae74a31
2,658
py
Python
scripts/ensembl_gtf_to_tss_bed.py
thehyve/genetics-v2g-data
96544d075955282ab0f8bef287a11bb782942cf7
[ "Apache-2.0" ]
7
2019-01-30T01:08:15.000Z
2022-03-07T20:43:53.000Z
scripts/ensembl_gtf_to_tss_bed.py
thehyve/genetics-v2g-data
96544d075955282ab0f8bef287a11bb782942cf7
[ "Apache-2.0" ]
null
null
null
scripts/ensembl_gtf_to_tss_bed.py
thehyve/genetics-v2g-data
96544d075955282ab0f8bef287a11bb782942cf7
[ "Apache-2.0" ]
5
2019-07-11T09:37:58.000Z
2021-07-30T23:05:37.000Z
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' Ed Mountjoy (June 2018) Converts Ensembl GTF to bed of Gene TSS. Notes: - Keeps protein coding transcripts only. ''' import argparse import pandas as pd def main(): # Parse args args = parse_args() # Read gtf in chunks to save RAM iter_csv = pd.read_csv(args.inf, sep='\t', header=None, comment='#', iterator=True, chunksize=100000, low_memory=False) # Only keep transcripts df = pd.concat([chunk[chunk.iloc[:, 2] == 'transcript'] for chunk in iter_csv]) # Only keep protein coding transcripts if args.protein_coding: to_keep = df.iloc[:, 8].str.contains('transcript_biotype "protein_coding"') df = df.loc[to_keep, :] # Convert rows to bed format bed = df.apply(gtf_row_to_bed, axis=1) bed.columns = ['chrom', 'start', 'end', 'name', 'score'] bed.chrom = bed.chrom.astype(str) bed.start = bed.start.astype(int) bed.end = bed.end.astype(int) bed = bed.sort_values(['chrom', 'start', 'end']) # Drop duplicate rows (multiple transcripts) bed = bed.drop_duplicates() bed.to_csv(args.outf, sep='\t', header=None, index=None, compression='gzip') return 0 def gtf_row_to_bed(row): """ Converts gtf row to bed format: Args: row (pd.Series): One GTF row Returns: pd.Series([chrom, start, end, ensID, "."]) """ # Extract required fields chrom = str(row[0]) strand = row[6] # Take end of transcript for forward/reverse strand if strand == "+": end = int(row[3]) elif strand == "-": end = int(row[4]) # Bed files are 0-indexed (whereas GTF are 1-index) so start should be end-1 start = end - 1 ensID = parse_gtf_info_field(row[8])['gene_id'] return pd.Series([chrom, start, end, ensID, "."]) def parse_gtf_info_field(info_str): """ Parse gtf info string into a dictionary Args: info_str (str): info field from gtf Return: {key, value for field in info} """ d = {} for pair in info_str.split('; '): key, value = pair.split(' ') d[key] = value.strip('"') return d def parse_args(): """ Load command line args """ parser = argparse.ArgumentParser() parser.add_argument('--inf', metavar="<file>", help=('Input file'), type=str, required=True) parser.add_argument('--outf', metavar="<file>", help=("Output file"), type=str, required=True) parser.add_argument('--protein_coding', help=("Protein coding only"), action='store_true') args = parser.parse_args() return args if __name__ == '__main__': main()
28.276596
98
0.615877
5a9365a9336b27f17cbe8643f11208fb9fe3c3f9
21
py
Python
src/qutip_qip/transpiler/__init__.py
bopardikarsoham/qutip-qip
5b8416255c48b66c41d304f78fe39ec5c1ae3bf3
[ "BSD-3-Clause" ]
36
2020-05-22T10:51:13.000Z
2022-03-07T05:41:08.000Z
src/qutip_qip/transpiler/__init__.py
bopardikarsoham/qutip-qip
5b8416255c48b66c41d304f78fe39ec5c1ae3bf3
[ "BSD-3-Clause" ]
73
2020-07-14T07:26:48.000Z
2022-03-25T08:00:43.000Z
src/qutip_qip/transpiler/__init__.py
BoxiLi/qutip-qip
04962ded1f6f21620f06f52869b61c4f392e9dea
[ "BSD-3-Clause" ]
24
2020-06-18T22:59:20.000Z
2022-03-12T05:11:59.000Z
from .chain import *
10.5
20
0.714286
71fce56b35456194cf98fd09b08c3aa51bce4c32
4,892
py
Python
model.py
brianadit24/AIGymTracker
b4c428733a09de0c171712c7fbebe1f0a9fa087d
[ "MIT" ]
3
2021-07-22T12:39:50.000Z
2022-02-26T18:53:37.000Z
model.py
brianadit24/AIGymTracker
b4c428733a09de0c171712c7fbebe1f0a9fa087d
[ "MIT" ]
null
null
null
model.py
brianadit24/AIGymTracker
b4c428733a09de0c171712c7fbebe1f0a9fa087d
[ "MIT" ]
null
null
null
import cv2 import numpy as np import mediapipe as mp from src import calculate_angle as ca # Mediapipe Tools mp_drawing = mp.solutions.drawing_utils mp_pose = mp.solutions.pose cap = cv2.VideoCapture(-1) # Curl Counter Variables counter = 0 stage = None ## Setup Mediapipe Instance with mp_pose.Pose(min_detection_confidence=0.5, min_tracking_confidence=0.5) as pose: while cap.isOpened(): ret, frame = cap.read() # ReColor Image to RGB image = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) image.flags.writeable = False # Make Detection results = pose.process(image) # Recoloring Back to BGR image.flags.writeable = True image = cv2.cvtColor(image, cv2.COLOR_RGB2BGR) # Extract Landmarks try: landmarks = results.pose_landmarks.landmark # Get Coordinates (Left) shoulder_left = [ landmarks[mp_pose.PoseLandmark.LEFT_SHOULDER.value].x, landmarks[mp_pose.PoseLandmark.LEFT_SHOULDER.value].y ] elbow_left = [ landmarks[mp_pose.PoseLandmark.LEFT_ELBOW.value].x, landmarks[mp_pose.PoseLandmark.LEFT_ELBOW.value].y ] wrist_left = [ landmarks[mp_pose.PoseLandmark.LEFT_WRIST.value].x, landmarks[mp_pose.PoseLandmark.LEFT_WRIST.value].y ] # Get Coordinates (Right) shoulder_right = [ landmarks[mp_pose.PoseLandmark.RIGHT_SHOULDER.value].x, landmarks[mp_pose.PoseLandmark.RIGHT_SHOULDER.value].y ] elbow_right = [ landmarks[mp_pose.PoseLandmark.RIGHT_ELBOW.value].x, landmarks[mp_pose.PoseLandmark.RIGHT_ELBOW.value].y ] wrist_right = [ landmarks[mp_pose.PoseLandmark.RIGHT_WRIST.value].x, landmarks[mp_pose.PoseLandmark.RIGHT_WRIST.value].y ] # Calculate Angle angle_left = ca.calculate_angle(shoulder_left, elbow_left, wrist_left) angle_right = ca.calculate_angle(shoulder_right, elbow_right, wrist_right) # Visualize Angle cv2.putText(image, str(angle_left), tuple(np.multiply(elbow_left, [640, 480]).astype(int)), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 255, 255), 2, cv2.LINE_AA) cv2.putText(image, str(angle_right), tuple(np.multiply(elbow_right, [640, 480]).astype(int)), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 255, 255), 2, cv2.LINE_AA) # Curl Counter Logic if angle_left > 160 and angle_right > 160: stage = 'down' if (angle_left < 35 or angle_right < 35) and stage == 'down': stage = 'up' counter += 1 except: pass # Render Curl Counter # Setup Status Box cv2.rectangle(image, (0,0), (225, 73), (245, 117, 16), -1) # Rep Data cv2.putText(image, 'REPS', (15, 12), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 0), 1, cv2.LINE_AA) cv2.putText(image, str(counter), (10, 60), cv2.FONT_HERSHEY_SIMPLEX, 2, (255, 255, 255), 2, cv2.LINE_AA) # Stage Data cv2.putText(image, 'STAGE', (130, 12), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 0), 1, cv2.LINE_AA) cv2.putText(image, stage, (100, 60), cv2.FONT_HERSHEY_SIMPLEX, 1.5, (255, 255, 255), 2, cv2.LINE_AA) # Render Detections mp_drawing.draw_landmarks(image, results.pose_landmarks, mp_pose.POSE_CONNECTIONS, mp_drawing.DrawingSpec(color=(245, 117, 66), thickness=2, circle_radius=2), mp_drawing.DrawingSpec(color=(245, 66, 230), thickness=2, circle_radius=2)) cv2.imshow('AI Gym Tracker', image) if cv2.waitKey(10) & 0xFF == ord('q'): break cap.release() cv2.destroyAllWindows()
35.708029
86
0.484056
6cb40a02079f21e22a68ab8d9996551944ec534c
2,024
py
Python
autogen/openapi_server/models/pm25.py
jeanyjean/locatitude-api
b36759f372060a3726c63edb35516303d0e85d81
[ "MIT" ]
null
null
null
autogen/openapi_server/models/pm25.py
jeanyjean/locatitude-api
b36759f372060a3726c63edb35516303d0e85d81
[ "MIT" ]
null
null
null
autogen/openapi_server/models/pm25.py
jeanyjean/locatitude-api
b36759f372060a3726c63edb35516303d0e85d81
[ "MIT" ]
null
null
null
# coding: utf-8 from __future__ import absolute_import from datetime import date, datetime # noqa: F401 from typing import List, Dict # noqa: F401 from openapi_server.models.base_model_ import Model from openapi_server import util class PM25(Model): """NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). Do not edit the class manually. """ def __init__(self, time_stamp=None, pm=None): # noqa: E501 """PM25 - a model defined in OpenAPI :param time_stamp: The time_stamp of this PM25. # noqa: E501 :type time_stamp: str :param pm: The pm of this PM25. # noqa: E501 :type pm: int """ self.openapi_types = { 'time_stamp': str, 'pm': int } self.attribute_map = { 'time_stamp': 'timeStamp', 'pm': 'pm' } self._time_stamp = time_stamp self._pm = pm @classmethod def from_dict(cls, dikt) -> 'PM25': """Returns the dict as a model :param dikt: A dict. :type: dict :return: The PM25 of this PM25. # noqa: E501 :rtype: PM25 """ return util.deserialize_model(dikt, cls) @property def time_stamp(self): """Gets the time_stamp of this PM25. :return: The time_stamp of this PM25. :rtype: str """ return self._time_stamp @time_stamp.setter def time_stamp(self, time_stamp): """Sets the time_stamp of this PM25. :param time_stamp: The time_stamp of this PM25. :type time_stamp: str """ self._time_stamp = time_stamp @property def pm(self): """Gets the pm of this PM25. :return: The pm of this PM25. :rtype: int """ return self._pm @pm.setter def pm(self, pm): """Sets the pm of this PM25. :param pm: The pm of this PM25. :type pm: int """ self._pm = pm
22.241758
96
0.5667
5c19d7a9d002fe10593520301b62597e3fa21717
9,824
py
Python
forms/ui_receivePage.py
beyondcoin-project/lightning-qt
dc48fbc35b452f4149d1b601159e8f1806d4ba13
[ "BSD-3-Clause-Clear" ]
1
2020-03-28T00:17:34.000Z
2020-03-28T00:17:34.000Z
forms/ui_receivePage.py
beyondcoin-project/lightning-qt
dc48fbc35b452f4149d1b601159e8f1806d4ba13
[ "BSD-3-Clause-Clear" ]
null
null
null
forms/ui_receivePage.py
beyondcoin-project/lightning-qt
dc48fbc35b452f4149d1b601159e8f1806d4ba13
[ "BSD-3-Clause-Clear" ]
null
null
null
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'forms/receivepage.ui' # # Created by: PyQt5 UI code generator 5.12.2 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_ReceivePage(object): def setupUi(self, ReceivePage): ReceivePage.setObjectName("ReceivePage") ReceivePage.resize(750, 350) self.verticalLayout = QtWidgets.QVBoxLayout(ReceivePage) self.verticalLayout.setObjectName("verticalLayout") self.verticalLayout_2 = QtWidgets.QVBoxLayout() self.verticalLayout_2.setObjectName("verticalLayout_2") self.formLayout = QtWidgets.QFormLayout() self.formLayout.setObjectName("formLayout") self.label = QtWidgets.QLabel(ReceivePage) self.label.setLayoutDirection(QtCore.Qt.LeftToRight) self.label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) self.label.setObjectName("label") self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label) self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.spinValue = QtWidgets.QSpinBox(ReceivePage) self.spinValue.setSuffix("") self.spinValue.setMinimum(1) self.spinValue.setMaximum(1680000000) self.spinValue.setObjectName("spinValue") self.horizontalLayout_2.addWidget(self.spinValue) self.labelUnit = QtWidgets.QLabel(ReceivePage) font = QtGui.QFont() font.setBold(True) font.setWeight(75) self.labelUnit.setFont(font) self.labelUnit.setCursor(QtGui.QCursor(QtCore.Qt.IBeamCursor)) self.labelUnit.setText("MBYND") self.labelUnit.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) self.labelUnit.setTextInteractionFlags(QtCore.Qt.LinksAccessibleByMouse|QtCore.Qt.TextSelectableByKeyboard|QtCore.Qt.TextSelectableByMouse) self.labelUnit.setObjectName("labelUnit") self.horizontalLayout_2.addWidget(self.labelUnit) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_2.addItem(spacerItem) self.formLayout.setLayout(1, QtWidgets.QFormLayout.FieldRole, self.horizontalLayout_2) self.label_2 = QtWidgets.QLabel(ReceivePage) self.label_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) self.label_2.setObjectName("label_2") self.formLayout.setWidget(3, QtWidgets.QFormLayout.LabelRole, self.label_2) self.label_3 = QtWidgets.QLabel(ReceivePage) self.label_3.setMidLineWidth(0) self.label_3.setTextFormat(QtCore.Qt.AutoText) self.label_3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) self.label_3.setObjectName("label_3") self.formLayout.setWidget(5, QtWidgets.QFormLayout.LabelRole, self.label_3) self.lineDescription = QtWidgets.QLineEdit(ReceivePage) self.lineDescription.setObjectName("lineDescription") self.formLayout.setWidget(5, QtWidgets.QFormLayout.FieldRole, self.lineDescription) self.label_4 = QtWidgets.QLabel(ReceivePage) self.label_4.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) self.label_4.setObjectName("label_4") self.formLayout.setWidget(7, QtWidgets.QFormLayout.LabelRole, self.label_4) self.horizontalLayout_3 = QtWidgets.QHBoxLayout() self.horizontalLayout_3.setObjectName("horizontalLayout_3") self.spinExpiry = QtWidgets.QSpinBox(ReceivePage) self.spinExpiry.setMinimum(1) self.spinExpiry.setMaximum(999999) self.spinExpiry.setProperty("value", 604800) self.spinExpiry.setObjectName("spinExpiry") self.horizontalLayout_3.addWidget(self.spinExpiry) self.label_6 = QtWidgets.QLabel(ReceivePage) self.label_6.setObjectName("label_6") self.horizontalLayout_3.addWidget(self.label_6) self.label_5 = QtWidgets.QLabel(ReceivePage) self.label_5.setObjectName("label_5") self.horizontalLayout_3.addWidget(self.label_5) spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_3.addItem(spacerItem1) self.formLayout.setLayout(7, QtWidgets.QFormLayout.FieldRole, self.horizontalLayout_3) self.horizontalLayout_4 = QtWidgets.QHBoxLayout() self.horizontalLayout_4.setObjectName("horizontalLayout_4") spacerItem2 = QtWidgets.QSpacerItem(150, 20, QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_4.addItem(spacerItem2) self.buttonGenerate = QtWidgets.QPushButton(ReceivePage) self.buttonGenerate.setObjectName("buttonGenerate") self.horizontalLayout_4.addWidget(self.buttonGenerate) self.buttonClear = QtWidgets.QPushButton(ReceivePage) self.buttonClear.setObjectName("buttonClear") self.horizontalLayout_4.addWidget(self.buttonClear) spacerItem3 = QtWidgets.QSpacerItem(150, 20, QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_4.addItem(spacerItem3) self.formLayout.setLayout(9, QtWidgets.QFormLayout.FieldRole, self.horizontalLayout_4) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.lineLabel = QtWidgets.QLineEdit(ReceivePage) self.lineLabel.setObjectName("lineLabel") self.horizontalLayout.addWidget(self.lineLabel) spacerItem4 = QtWidgets.QSpacerItem(260, 20, QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem4) self.formLayout.setLayout(3, QtWidgets.QFormLayout.FieldRole, self.horizontalLayout) spacerItem5 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.formLayout.setItem(8, QtWidgets.QFormLayout.FieldRole, spacerItem5) self.verticalLayout_2.addLayout(self.formLayout) self.verticalLayout.addLayout(self.verticalLayout_2) spacerItem6 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem6) self.verticalLayout_3 = QtWidgets.QVBoxLayout() self.verticalLayout_3.setObjectName("verticalLayout_3") self.label_7 = QtWidgets.QLabel(ReceivePage) font = QtGui.QFont() font.setBold(True) font.setWeight(75) self.label_7.setFont(font) self.label_7.setObjectName("label_7") self.verticalLayout_3.addWidget(self.label_7) self.textResultInvoice = QtWidgets.QTextEdit(ReceivePage) self.textResultInvoice.setMaximumSize(QtCore.QSize(16777215, 60)) self.textResultInvoice.setAcceptRichText(False) self.textResultInvoice.setTextInteractionFlags(QtCore.Qt.TextSelectableByKeyboard|QtCore.Qt.TextSelectableByMouse) self.textResultInvoice.setObjectName("textResultInvoice") self.verticalLayout_3.addWidget(self.textResultInvoice) self.verticalLayout.addLayout(self.verticalLayout_3) self.retranslateUi(ReceivePage) QtCore.QMetaObject.connectSlotsByName(ReceivePage) ReceivePage.setTabOrder(self.lineLabel, self.lineDescription) ReceivePage.setTabOrder(self.lineDescription, self.buttonGenerate) ReceivePage.setTabOrder(self.buttonGenerate, self.buttonClear) ReceivePage.setTabOrder(self.buttonClear, self.textResultInvoice) def retranslateUi(self, ReceivePage): _translate = QtCore.QCoreApplication.translate ReceivePage.setWindowTitle(_translate("ReceivePage", "Form")) self.label.setToolTip(_translate("ReceivePage", "Value in millibeyondcoins of invoice to request.")) self.label.setText(_translate("ReceivePage", "Value :")) self.spinValue.setToolTip(_translate("ReceivePage", "Value in millibeyondcoins of invoice to request.")) self.labelUnit.setToolTip(_translate("ReceivePage", "Your current on channels balance")) self.label_2.setToolTip(_translate("ReceivePage", "A unique string or number (never revealed to other nodes on the lightning network), used to query the status of this invoice.")) self.label_2.setText(_translate("ReceivePage", "Label :")) self.label_3.setToolTip(_translate("ReceivePage", "A short description of the payment purpose, e.g. \"1 flat glob and 2 dogecoins\".")) self.label_3.setText(_translate("ReceivePage", "Description :")) self.lineDescription.setToolTip(_translate("ReceivePage", "A short description of the payment purpose, e.g. \"1 flat glob and 2 dogecoins\".")) self.label_4.setToolTip(_translate("ReceivePage", "The time the invoice is valid for")) self.label_4.setText(_translate("ReceivePage", "Expiry :")) self.spinExpiry.setToolTip(_translate("ReceivePage", "The time the invoice is valid for.")) self.label_6.setText(_translate("ReceivePage", "seconds")) self.label_5.setText(_translate("ReceivePage", "(Optional, defaults to 1 week)")) self.buttonGenerate.setText(_translate("ReceivePage", "Generate invoice")) self.buttonClear.setText(_translate("ReceivePage", "Clear")) self.lineLabel.setToolTip(_translate("ReceivePage", "A unique string or number (never revealed to other nodes on the lightning network), used to query the status of this invoice.")) self.label_7.setText(_translate("ReceivePage", "Invoice :"))
62.573248
189
0.739719
9ee89e26215ee7aec4c8453a56f745997c7a011a
311
py
Python
controle_colaboradores_api/wsgi.py
helderlgoliveira/controle-colaboradores-api
def3f77ef547e87b6f827cb711fd0f7d1099d987
[ "BSD-3-Clause" ]
1
2021-10-17T04:28:31.000Z
2021-10-17T04:28:31.000Z
controle_colaboradores_api/wsgi.py
helderlgoliveira/controle-colaboradores-api
def3f77ef547e87b6f827cb711fd0f7d1099d987
[ "BSD-3-Clause" ]
null
null
null
controle_colaboradores_api/wsgi.py
helderlgoliveira/controle-colaboradores-api
def3f77ef547e87b6f827cb711fd0f7d1099d987
[ "BSD-3-Clause" ]
null
null
null
""" WSGI config for projeto project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ """ from django.core.wsgi import get_wsgi_application application = get_wsgi_application()
23.923077
78
0.78135
99a493e851047f04ec16ebea53711920350a979a
1,274
py
Python
tests/unit_test/app_test.py
sidhukumar/AWS-MLOps-Abalone
8fd3609c537f538d002cc43edef8838f02bd0809
[ "MIT-0" ]
null
null
null
tests/unit_test/app_test.py
sidhukumar/AWS-MLOps-Abalone
8fd3609c537f538d002cc43edef8838f02bd0809
[ "MIT-0" ]
null
null
null
tests/unit_test/app_test.py
sidhukumar/AWS-MLOps-Abalone
8fd3609c537f538d002cc43edef8838f02bd0809
[ "MIT-0" ]
null
null
null
import json from urllib import request base_url='http://localhost:8080' headers={"Content-type": "text/csv"} # Toy request payload: `str()` payload = "6.550000000000000266e-01,5.200000000000000178e-01,1.900000000000000022e-01,\ 1.454499999999999904e+00,5.999999999999999778e-01,3.865000000000000102e-01,\ 3.829999999999999516e-01,1.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00" # Encode payload to Bytes for `request() payload = payload.encode('utf-8') def predict(payload, headers): """ Description: ----------- Prediction request to the local API. :payload: (Bytes) Bytes encoded string of `abalone` features for a single observation. :headers: (dict) Dictionary specifying the request content type. """ req = request.Request("%s/invocations" % base_url, data=payload, headers=headers) resp = request.urlopen(req) print("API Response code: %d \nPrediction Response: %s" % (resp.getcode(), resp.read().decode('utf-8'))) def main(): for x in range(1, 4): print("\nStarting Test {} ...".format(x)) resp = request.urlopen("%s/ping" % base_url) print("\nPING Response code: %d" % resp.getcode()) predict(payload, headers) if __name__ == "__main__": main()
32.666667
108
0.686813
a14706bf8bf882d7f80a2dcdf53e1a9e94b2c589
4,479
py
Python
google/ads/google_ads/v5/proto/errors/access_invitation_error_pb2.py
arammaliachi/google-ads-python
a4fe89567bd43eb784410523a6306b5d1dd9ee67
[ "Apache-2.0" ]
1
2021-04-09T04:28:47.000Z
2021-04-09T04:28:47.000Z
google/ads/google_ads/v5/proto/errors/access_invitation_error_pb2.py
arammaliachi/google-ads-python
a4fe89567bd43eb784410523a6306b5d1dd9ee67
[ "Apache-2.0" ]
null
null
null
google/ads/google_ads/v5/proto/errors/access_invitation_error_pb2.py
arammaliachi/google-ads-python
a4fe89567bd43eb784410523a6306b5d1dd9ee67
[ "Apache-2.0" ]
null
null
null
# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/ads/googleads_v5/proto/errors/access_invitation_error.proto from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection from google.protobuf import symbol_database as _symbol_database # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2 DESCRIPTOR = _descriptor.FileDescriptor( name='google/ads/googleads_v5/proto/errors/access_invitation_error.proto', package='google.ads.googleads.v5.errors', syntax='proto3', serialized_options=b'\n\"com.google.ads.googleads.v5.errorsB\032AccessInvitationErrorProtoP\001ZDgoogle.golang.org/genproto/googleapis/ads/googleads/v5/errors;errors\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V5.Errors\312\002\036Google\\Ads\\GoogleAds\\V5\\Errors\352\002\"Google::Ads::GoogleAds::V5::Errors', create_key=_descriptor._internal_create_key, serialized_pb=b'\nBgoogle/ads/googleads_v5/proto/errors/access_invitation_error.proto\x12\x1egoogle.ads.googleads.v5.errors\x1a\x1cgoogle/api/annotations.proto\"\x93\x01\n\x19\x41\x63\x63\x65ssInvitationErrorEnum\"v\n\x15\x41\x63\x63\x65ssInvitationError\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x0b\n\x07UNKNOWN\x10\x01\x12\x19\n\x15INVALID_EMAIL_ADDRESS\x10\x02\x12$\n EMAIL_ADDRESS_ALREADY_HAS_ACCESS\x10\x03\x42\xf5\x01\n\"com.google.ads.googleads.v5.errorsB\x1a\x41\x63\x63\x65ssInvitationErrorProtoP\x01ZDgoogle.golang.org/genproto/googleapis/ads/googleads/v5/errors;errors\xa2\x02\x03GAA\xaa\x02\x1eGoogle.Ads.GoogleAds.V5.Errors\xca\x02\x1eGoogle\\Ads\\GoogleAds\\V5\\Errors\xea\x02\"Google::Ads::GoogleAds::V5::Errorsb\x06proto3' , dependencies=[google_dot_api_dot_annotations__pb2.DESCRIPTOR,]) _ACCESSINVITATIONERRORENUM_ACCESSINVITATIONERROR = _descriptor.EnumDescriptor( name='AccessInvitationError', full_name='google.ads.googleads.v5.errors.AccessInvitationErrorEnum.AccessInvitationError', filename=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key, values=[ _descriptor.EnumValueDescriptor( name='UNSPECIFIED', index=0, number=0, serialized_options=None, type=None, create_key=_descriptor._internal_create_key), _descriptor.EnumValueDescriptor( name='UNKNOWN', index=1, number=1, serialized_options=None, type=None, create_key=_descriptor._internal_create_key), _descriptor.EnumValueDescriptor( name='INVALID_EMAIL_ADDRESS', index=2, number=2, serialized_options=None, type=None, create_key=_descriptor._internal_create_key), _descriptor.EnumValueDescriptor( name='EMAIL_ADDRESS_ALREADY_HAS_ACCESS', index=3, number=3, serialized_options=None, type=None, create_key=_descriptor._internal_create_key), ], containing_type=None, serialized_options=None, serialized_start=162, serialized_end=280, ) _sym_db.RegisterEnumDescriptor(_ACCESSINVITATIONERRORENUM_ACCESSINVITATIONERROR) _ACCESSINVITATIONERRORENUM = _descriptor.Descriptor( name='AccessInvitationErrorEnum', full_name='google.ads.googleads.v5.errors.AccessInvitationErrorEnum', filename=None, file=DESCRIPTOR, containing_type=None, create_key=_descriptor._internal_create_key, fields=[ ], extensions=[ ], nested_types=[], enum_types=[ _ACCESSINVITATIONERRORENUM_ACCESSINVITATIONERROR, ], serialized_options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=133, serialized_end=280, ) _ACCESSINVITATIONERRORENUM_ACCESSINVITATIONERROR.containing_type = _ACCESSINVITATIONERRORENUM DESCRIPTOR.message_types_by_name['AccessInvitationErrorEnum'] = _ACCESSINVITATIONERRORENUM _sym_db.RegisterFileDescriptor(DESCRIPTOR) AccessInvitationErrorEnum = _reflection.GeneratedProtocolMessageType('AccessInvitationErrorEnum', (_message.Message,), { 'DESCRIPTOR' : _ACCESSINVITATIONERRORENUM, '__module__' : 'google.ads.googleads_v5.proto.errors.access_invitation_error_pb2' , '__doc__': """Container for enum describing possible AccessInvitation errors.""", # @@protoc_insertion_point(class_scope:google.ads.googleads.v5.errors.AccessInvitationErrorEnum) }) _sym_db.RegisterMessage(AccessInvitationErrorEnum) DESCRIPTOR._options = None # @@protoc_insertion_point(module_scope)
42.254717
736
0.801518
8d0917e8de3ab495247127c7fbe4dd25bd8de252
3,219
py
Python
invenio_app_ils/patrons/views.py
NRodriguezcuellar/invenio-app-ils
144a25a6c56330b214c6fd0b832220fa71f2e68a
[ "MIT" ]
41
2018-09-04T13:00:46.000Z
2022-03-24T20:45:56.000Z
invenio_app_ils/patrons/views.py
NRodriguezcuellar/invenio-app-ils
144a25a6c56330b214c6fd0b832220fa71f2e68a
[ "MIT" ]
720
2017-03-10T08:02:41.000Z
2022-01-14T15:36:37.000Z
invenio_app_ils/patrons/views.py
NRodriguezcuellar/invenio-app-ils
144a25a6c56330b214c6fd0b832220fa71f2e68a
[ "MIT" ]
54
2017-03-09T16:05:29.000Z
2022-03-17T08:34:51.000Z
# -*- coding: utf-8 -*- # # Copyright (C) 2019 CERN. # # invenio-app-ils is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. """Invenio App ILS Patrons views.""" from elasticsearch import VERSION as ES_VERSION from flask import Blueprint, current_app from flask_login import current_user from invenio_circulation.search.api import search_by_patron_item_or_document from webargs import fields from webargs.flaskparser import use_kwargs from invenio_app_ils.circulation.search import get_loans_aggregated_by_states from invenio_app_ils.permissions import need_permissions lt_es7 = ES_VERSION[0] < 7 def get_user_loan_information_blueprint(_): """Add patron views to the blueprint.""" blueprint = Blueprint("invenio_app_ils_patrons", __name__) @blueprint.route("/me/loans") @use_kwargs({"document_pid": fields.Str(required=True)}) @need_permissions("patron-loans") def get_user_information(document_pid): patron_pid = str(current_user.id) return retrieve_user_loans_information(patron_pid, document_pid) return blueprint def retrieve_user_loans_information(patron_pid, document_pid): """Retrieves patron loans for the given patron.""" active_requested_loan_states = ( current_app.config["CIRCULATION_STATES_LOAN_REQUEST"] + current_app.config["CIRCULATION_STATES_LOAN_ACTIVE"] ) past_loan_states = current_app.config["CIRCULATION_STATES_LOAN_COMPLETED"] user_information = { "is_requested": False, "has_active_loan": False, "last_loan": None, } loans_search = get_loans_aggregated_by_states( document_pid, active_requested_loan_states + past_loan_states, patron_pid, ) # No need for the loan hits loans_search = loans_search[:0] loan_result = loans_search.execute() for bucket in loan_result.aggregations.states.buckets: if ( bucket["key"] in current_app.config["CIRCULATION_STATES_LOAN_ACTIVE"] and bucket["doc_count"] > 0 ): user_information["has_active_loan"] = True elif ( bucket["key"] in current_app.config["CIRCULATION_STATES_LOAN_REQUEST"] and bucket["doc_count"] > 0 ): user_information["is_requested"] = True elif ( bucket["key"] in current_app.config["CIRCULATION_STATES_LOAN_COMPLETED"] and bucket["doc_count"] > 0 ): search = search_by_patron_item_or_document( patron_pid=patron_pid, document_pid=document_pid, filter_states=past_loan_states, ) search = search.sort({"end_date": {"order": "desc"}}) search_result = search.execute() has_past_loans = ( search_result.hits.total > 0 if lt_es7 else search_result.hits.total.value > 0 ) if has_past_loans: last_loan = search_result.hits[0] user_information["last_loan"] = last_loan["end_date"] return user_information
33.884211
78
0.665113
6b83add93c44cfa14b7ec8987a7ca53e702918e5
3,053
py
Python
rptk/web.py
wolcomm/rptk
fe6c1b597741ff14e4c89519458bb0950f0aa955
[ "Apache-2.0" ]
15
2017-11-30T01:28:11.000Z
2021-08-12T09:17:36.000Z
rptk/web.py
wolcomm/rptk
fe6c1b597741ff14e4c89519458bb0950f0aa955
[ "Apache-2.0" ]
71
2018-06-22T09:54:50.000Z
2020-10-21T07:10:54.000Z
rptk/web.py
wolcomm/rptk
fe6c1b597741ff14e4c89519458bb0950f0aa955
[ "Apache-2.0" ]
2
2019-08-31T20:45:19.000Z
2019-10-02T18:26:58.000Z
# Copyright (c) 2018 Workonline Communications (Pty) Ltd. All rights reserved. # # The contents of this file are licensed under the Apache License version 2.0 # (the "License"); you may not use this file except in compliance with the # License. # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations under # the License. """rptk web module.""" from __future__ import print_function from __future__ import unicode_literals import json import logging import flask from rptk import RptkAPI app = flask.Flask(__name__) @app.route("/formats") def get_formats(): """Return json doc describing the available output formats.""" rptk = RptkAPI() formats = rptk.format_class_loader.class_info response = flask.make_response(json.dumps(formats)) response.headers['Content-Type'] = "application/json" response.headers['Server'] = "rptk-web/{}".format(rptk.version) return response @app.route("/policies") def get_policies(): """Return json doc listing the available resolution policies.""" rptk = RptkAPI() policies = rptk.available_policies response = flask.make_response(json.dumps(policies)) response.headers['Content-Type'] = "application/json" response.headers['Server'] = "rptk-web/{}".format(rptk.version) return response @app.route("/query") @app.route("/<string:format>/query") @app.route("/<string:format>/<string:obj>") @app.route("/<string:format>/<string:obj>/<string:policy>") def get_prefix_list(format=None, obj=None, policy=None): """Return prefix-lists for the requested object.""" app.logger.debug(msg="got args: {}".format(flask.request.args)) objects = flask.request.args.getlist("objects") if obj: objects.append(obj) objects = set(objects) if not format: format = flask.request.args.get("format") if not policy: policy = flask.request.args.get("policy") rptk = RptkAPI(query_policy=policy, format_class_name=format) result = rptk.query(*objects) output = rptk.format(result=result) response = flask.make_response(output) response.headers['Content-Type'] = rptk.format_class.content_type response.headers['Server'] = "rptk-web/{}".format(rptk.version) return response def main(): # pragma: no cover """Run the development server.""" import argparse parser = argparse.ArgumentParser() parser.add_argument("-d", "--debug", action="store_true", default=False, help="enable debug mode") args = parser.parse_args() logger = logging.getLogger() for h in app.logger.handlers: logger.addHandler(h) if args.debug: logger.setLevel(logging.DEBUG) else: logger.setLevel(logging.WARNING) app.run(host='::', port=8080, debug=args.debug) if __name__ == "__main__": main()
33.184783
79
0.699312
d0b70a78826c76f6042f0345456bcc35907179e5
4,769
py
Python
sisjuridico/apps/matenimiento/views.py
AnthonyWainer/sistemaJuridico
83acf42fd20793ea05d6bff57322e17355893fc9
[ "MIT" ]
null
null
null
sisjuridico/apps/matenimiento/views.py
AnthonyWainer/sistemaJuridico
83acf42fd20793ea05d6bff57322e17355893fc9
[ "MIT" ]
null
null
null
sisjuridico/apps/matenimiento/views.py
AnthonyWainer/sistemaJuridico
83acf42fd20793ea05d6bff57322e17355893fc9
[ "MIT" ]
null
null
null
from django.shortcuts import render,get_object_or_404,redirect from django.http import HttpResponse from django.contrib.auth.decorators import login_required from apps.seguridad.models import permisos from .forms import formOficina, formAccion from .models import oficina, accion # Crea tus vista aqui. def permi(request,url): idp = request.user.idperfil_id mod = permisos.objects.filter(idmodulo__url=url, idperfil_id=idp).values('idmodulo__url','buscar','eliminar','editar','insertar','imprimir','ver') return mod @login_required(login_url='/') def registro_oficina(request): oficinas = oficina.objects.all().order_by('id') estado = permi(request, "registro_oficina") if request.method == 'POST' and request.is_ajax(): formu = formOficina(request.POST) if formu.is_valid(): formu.save() return render(request,'mantenimiento/oficina/ajax_oficina.html',{'oficina':oficinas,'n':'oficinaU','estado':estado}) else: return render(request,'mantenimiento/oficina/form_of.html',{'formu':formu}) else: formu = formOficina() return render(request,'mantenimiento/oficina/oficina.html',{'formu':formu,'oficina':oficinas, 'url':'registro_oficina/','n':'oficinaU','estado':estado}) @login_required(login_url='/') def eliminar_oficina(request): oficinas = oficina.objects.all().order_by('id') estado = permi(request, "registro_oficina") if request.method == 'GET' and request.is_ajax(): idb = request.GET.get("id","") get_object_or_404(oficina,pk=idb).delete() return render(request,'mantenimiento/oficina/ajax_oficina.html',{'oficina':oficinas,'n':'oficinaU','estado':estado}) @login_required(login_url='/') def actualizar_oficina(request): oficinas = oficina.objects.all().order_by('id') estado = permi(request, "registro_oficina") if request.method == 'POST' and request.is_ajax(): idp = request.POST.get("id","") a=get_object_or_404(oficina,pk=idp) form=formOficina(request.POST, instance=a) if form.is_valid(): form.save() return render(request,'mantenimiento/oficina/ajax_oficina.html',{'oficina':oficinas,'n':'oficinaU','estado':estado}) else: return render(request,'mantenimiento/oficina/form_of.html',{'formu':form}) else: idp = request.GET.get("id","") a=get_object_or_404(oficina,pk=idp) form= formOficina(instance=a) return render(request,'seguridad/modal.html',{'nombre':form,'url':'actualizar_oficina/','n':'oficinaU','u':'oficinaU','estado':estado}) @login_required(login_url='/') def registro_accion(request): accions = accion.objects.all().order_by('id') estado = permi(request, "registro_accion") if request.method == 'POST' and request.is_ajax(): formu = formAccion(request.POST) if formu.is_valid(): formu.save() return render(request,'mantenimiento/accion/ajax_accion.html',{'accion':accions,'n':'accionU','estado':estado}) else: return render(request,'mantenimiento/accion/form_ac.html',{'formu':formu}) else: formu = formAccion() return render(request,'mantenimiento/accion/accion.html',{'formu':formu,'accion':accions, 'url':'registro_accion/','n':'accionU','estado':estado}) @login_required(login_url='/') def eliminar_accion(request): accions = accion.objects.all().order_by('id') estado = permi(request, "registro_accion") if request.method == 'GET' and request.is_ajax(): idb = request.GET.get("id","") get_object_or_404(accion,pk=idb).delete() return render(request,'mantenimiento/accion/ajax_accion.html',{'accion':accions,'n':'accionU','estado':estado}) @login_required(login_url='/') def actualizar_accion(request): accions = accion.objects.all().order_by('id') estado = permi(request, "registro_accion") if request.method == 'POST' and request.is_ajax(): idp = request.POST.get("id","") a=get_object_or_404(accion,pk=idp) form=formAccion(request.POST, instance=a) if form.is_valid(): form.save() return render(request,'mantenimiento/accion/ajax_accion.html',{'accion':accions,'n':'accionU','estado':estado}) else: return render(request,'mantenimiento/accion/form_ac.html',{'formu':form}) else: idp = request.GET.get("id","") a=get_object_or_404(accion,pk=idp) form= formAccion(instance=a) return render(request,'seguridad/modal.html',{'nombre':form,'url':'actualizar_accion/','n':'accionU','u':'accionU','estado':estado})
48.663265
160
0.658419
1c1c40a156ff09b4f3775134367af495862bb94c
71,398
py
Python
selfdrive/car/toyota/values.py
hankteng19650323/dragonpilot
35f5828690d0e98eb605661354b50d59a8b190ba
[ "MIT" ]
1
2019-09-19T12:23:26.000Z
2019-09-19T12:23:26.000Z
selfdrive/car/toyota/values.py
hankteng19650323/dragonpilot
35f5828690d0e98eb605661354b50d59a8b190ba
[ "MIT" ]
null
null
null
selfdrive/car/toyota/values.py
hankteng19650323/dragonpilot
35f5828690d0e98eb605661354b50d59a8b190ba
[ "MIT" ]
null
null
null
# flake8: noqa from cereal import car from selfdrive.car import dbc_dict from selfdrive.config import Conversions as CV Ecu = car.CarParams.Ecu MIN_ACC_SPEED = 19. * CV.MPH_TO_MS PEDAL_TRANSITION = 10. * CV.MPH_TO_MS class CarControllerParams: ACCEL_MAX = 1.5 # m/s2, lower than allowed 2.0 m/s2 for tuning reasons ACCEL_MIN = -3.5 # m/s2 STEER_MAX = 1500 STEER_DELTA_UP = 10 # 1.5s time to peak torque STEER_DELTA_DOWN = 25 # always lower than 45 otherwise the Rav4 faults (Prius seems ok with 50) STEER_ERROR_MAX = 350 # max delta between torque cmd and torque motor class CAR: # Toyota ALPHARD_TSS2 = "TOYOTA ALPHARD 2020" AVALON = "TOYOTA AVALON 2016" AVALON_2019 = "TOYOTA AVALON 2019" AVALONH_2019 = "TOYOTA AVALON HYBRID 2019" CAMRY = "TOYOTA CAMRY 2018" CAMRYH = "TOYOTA CAMRY HYBRID 2018" CAMRY_TSS2 = "TOYOTA CAMRY 2021" # TSS 2.5 CAMRYH_TSS2 = "TOYOTA CAMRY HYBRID 2021" CHR = "TOYOTA C-HR 2018" CHRH = "TOYOTA C-HR HYBRID 2018" COROLLA = "TOYOTA COROLLA 2017" COROLLA_TSS2 = "TOYOTA COROLLA TSS2 2019" # LSS2 Lexus UX Hybrid is same as a TSS2 Corolla Hybrid COROLLAH_TSS2 = "TOYOTA COROLLA HYBRID TSS2 2019" HIGHLANDER = "TOYOTA HIGHLANDER 2017" HIGHLANDER_TSS2 = "TOYOTA HIGHLANDER 2020" HIGHLANDERH = "TOYOTA HIGHLANDER HYBRID 2018" HIGHLANDERH_TSS2 = "TOYOTA HIGHLANDER HYBRID 2020" PRIUS = "TOYOTA PRIUS 2017" PRIUS_TSS2 = "TOYOTA PRIUS TSS2 2021" RAV4 = "TOYOTA RAV4 2017" RAV4H = "TOYOTA RAV4 HYBRID 2017" RAV4_TSS2 = "TOYOTA RAV4 2019" RAV4H_TSS2 = "TOYOTA RAV4 HYBRID 2019" MIRAI = "TOYOTA MIRAI 2021" # TSS 2.5 SIENNA = "TOYOTA SIENNA 2018" # Lexus LEXUS_CTH = "LEXUS CT HYBRID 2018" LEXUS_ESH = "LEXUS ES HYBRID 2018" LEXUS_ES_TSS2 = "LEXUS ES 2019" LEXUS_ESH_TSS2 = "LEXUS ES HYBRID 2019" LEXUS_IS = "LEXUS IS 2018" LEXUS_NX = "LEXUS NX 2018" LEXUS_NXH = "LEXUS NX HYBRID 2018" LEXUS_NX_TSS2 = "LEXUS NX 2020" LEXUS_RC = "LEXUS RC 2020" LEXUS_RX = "LEXUS RX 2016" LEXUS_RXH = "LEXUS RX HYBRID 2017" LEXUS_RX_TSS2 = "LEXUS RX 2020" LEXUS_RXH_TSS2 = "LEXUS RX HYBRID 2020" # dp LEXUS_ISH = "LEXUS ISH 2017" PRIUS_ALPHA = "TOYOTA PRIUS ALPHA 2017" LEXUS_GSH = "LEXUS GS450h 2017" LEXUS_NXT = "LEXUS NX200T 2015" # (addr, cars, bus, 1/freq*100, vl) STATIC_DSU_MSGS = [ (0x128, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.RAV4, CAR.COROLLA, CAR.AVALON), 1, 3, b'\xf4\x01\x90\x83\x00\x37'), (0x128, (CAR.HIGHLANDER, CAR.HIGHLANDERH, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH), 1, 3, b'\x03\x00\x20\x00\x00\x52'), (0x141, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.RAV4, CAR.COROLLA, CAR.HIGHLANDER, CAR.HIGHLANDERH, CAR.AVALON, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH, CAR.LEXUS_RX), 1, 2, b'\x00\x00\x00\x46'), (0x160, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.RAV4, CAR.COROLLA, CAR.HIGHLANDER, CAR.HIGHLANDERH, CAR.AVALON, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH, CAR.LEXUS_RX), 1, 7, b'\x00\x00\x08\x12\x01\x31\x9c\x51'), (0x161, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.RAV4, CAR.COROLLA, CAR.AVALON, CAR.LEXUS_RX), 1, 7, b'\x00\x1e\x00\x00\x00\x80\x07'), (0X161, (CAR.HIGHLANDERH, CAR.HIGHLANDER, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH), 1, 7, b'\x00\x1e\x00\xd4\x00\x00\x5b'), (0x283, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.RAV4, CAR.COROLLA, CAR.HIGHLANDER, CAR.HIGHLANDERH, CAR.AVALON, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH, CAR.LEXUS_RX), 0, 3, b'\x00\x00\x00\x00\x00\x00\x8c'), (0x2E6, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH), 0, 3, b'\xff\xf8\x00\x08\x7f\xe0\x00\x4e'), (0x2E7, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH), 0, 3, b'\xa8\x9c\x31\x9c\x00\x00\x00\x02'), (0x33E, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH), 0, 20, b'\x0f\xff\x26\x40\x00\x1f\x00'), (0x344, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.RAV4, CAR.COROLLA, CAR.HIGHLANDER, CAR.HIGHLANDERH, CAR.AVALON, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH, CAR.LEXUS_RX), 0, 5, b'\x00\x00\x01\x00\x00\x00\x00\x50'), (0x365, (CAR.PRIUS, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.HIGHLANDERH), 0, 20, b'\x00\x00\x00\x80\x03\x00\x08'), (0x365, (CAR.RAV4, CAR.RAV4H, CAR.COROLLA, CAR.HIGHLANDER, CAR.AVALON, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH, CAR.LEXUS_RX), 0, 20, b'\x00\x00\x00\x80\xfc\x00\x08'), (0x366, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.HIGHLANDERH), 0, 20, b'\x00\x00\x4d\x82\x40\x02\x00'), (0x366, (CAR.RAV4, CAR.COROLLA, CAR.HIGHLANDER, CAR.AVALON, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH, CAR.LEXUS_RX), 0, 20, b'\x00\x72\x07\xff\x09\xfe\x00'), (0x470, (CAR.PRIUS, CAR.LEXUS_RXH), 1, 100, b'\x00\x00\x02\x7a'), (0x470, (CAR.HIGHLANDER, CAR.HIGHLANDERH, CAR.RAV4H, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH), 1, 100, b'\x00\x00\x01\x79'), (0x4CB, (CAR.PRIUS, CAR.RAV4H, CAR.LEXUS_RXH, CAR.LEXUS_NXH, CAR.LEXUS_NX, CAR.RAV4, CAR.COROLLA, CAR.HIGHLANDERH, CAR.HIGHLANDER, CAR.AVALON, CAR.SIENNA, CAR.LEXUS_CTH, CAR.LEXUS_ESH, CAR.LEXUS_RX), 0, 100, b'\x0c\x00\x00\x00\x00\x00\x00\x00'), ] FW_VERSIONS = { CAR.LEXUS_ISH: {(Ecu.esp, 0xfff, None): [b'\x00']}, CAR.LEXUS_GSH: {(Ecu.esp, 0xfff, None): [b'\x00']}, CAR.LEXUS_NXT: {(Ecu.esp, 0xfff, None): [b'\x00']}, CAR.AVALON: { (Ecu.esp, 0x7b0, None): [ b'F152607060\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881510701300\x00\x00\x00\x00', b'881510705100\x00\x00\x00\x00', b'881510705200\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B41051\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x0230721100\x00\x00\x00\x00\x00\x00\x00\x00A0C01000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230721200\x00\x00\x00\x00\x00\x00\x00\x00A0C01000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702000\x00\x00\x00\x00', b'8821F4702100\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0701100\x00\x00\x00\x00', b'8646F0703000\x00\x00\x00\x00', ], }, CAR.AVALON_2019: { (Ecu.esp, 0x7b0, None): [ b'F152607140\x00\x00\x00\x00\x00\x00', b'F152607171\x00\x00\x00\x00\x00\x00', b'F152607110\x00\x00\x00\x00\x00\x00', b'F152607180\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881510703200\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B41080\x00\x00\x00\x00\x00\x00', b'8965B07010\x00\x00\x00\x00\x00\x00', b'8965B41090\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x700, None): [ b'\x01896630725200\x00\x00\x00\x00', b'\x01896630725300\x00\x00\x00\x00', b'\x01896630735100\x00\x00\x00\x00', b'\x01896630738000\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0702100\x00\x00\x00\x00', ], }, CAR.AVALONH_2019: { (Ecu.esp, 0x7b0, None): [ b'F152641040\x00\x00\x00\x00\x00\x00', b'F152641061\x00\x00\x00\x00\x00\x00', b'F152641050\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881510704200\x00\x00\x00\x00', b'881514107100\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B07010\x00\x00\x00\x00\x00\x00', b'8965B41090\x00\x00\x00\x00\x00\x00', b'8965B41070\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x700, None): [ b'\x02896630724000\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x02896630737000\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x02896630728000\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0702100\x00\x00\x00\x00', ], }, CAR.CAMRY: { (Ecu.engine, 0x700, None): [ b'\x018966306L3100\x00\x00\x00\x00', b'\x018966306L4200\x00\x00\x00\x00', b'\x018966306L5200\x00\x00\x00\x00', b'\x018966306P8000\x00\x00\x00\x00', b'\x018966306Q3100\x00\x00\x00\x00', b'\x018966306Q4000\x00\x00\x00\x00', b'\x018966306Q4100\x00\x00\x00\x00', b'\x018966306Q4200\x00\x00\x00\x00', b'\x018966333Q9200\x00\x00\x00\x00', b'\x018966333P3100\x00\x00\x00\x00', b'\x018966333P3200\x00\x00\x00\x00', b'\x018966333P4200\x00\x00\x00\x00', b'\x018966333P4300\x00\x00\x00\x00', b'\x018966333P4400\x00\x00\x00\x00', b'\x018966333P4500\x00\x00\x00\x00', b'\x018966333P4700\x00\x00\x00\x00', b'\x018966333P4900\x00\x00\x00\x00', b'\x018966333Q6000\x00\x00\x00\x00', b'\x018966333Q6200\x00\x00\x00\x00', b'\x018966333Q6300\x00\x00\x00\x00', b'\x018966333W6000\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x02333P1100\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'8821F0601200 ', b'8821F0601300 ', b'8821F0602000 ', b'8821F0603300 ', b'8821F0604100 ', b'8821F0605200 ', b'8821F0607200 ', b'8821F0608000 ', b'8821F0608200 ', b'8821F0609100 ', ], (Ecu.esp, 0x7b0, None): [ b'F152606210\x00\x00\x00\x00\x00\x00', b'F152606230\x00\x00\x00\x00\x00\x00', b'F152606270\x00\x00\x00\x00\x00\x00', b'F152606290\x00\x00\x00\x00\x00\x00', b'F152606410\x00\x00\x00\x00\x00\x00', b'F152633540\x00\x00\x00\x00\x00\x00', b'F152633A10\x00\x00\x00\x00\x00\x00', b'F152633A20\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B33540\x00\x00\x00\x00\x00\x00', b'8965B33542\x00\x00\x00\x00\x00\x00', b'8965B33580\x00\x00\x00\x00\x00\x00', b'8965B33581\x00\x00\x00\x00\x00\x00', b'8965B33621\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ # Same as 0x791 b'8821F0601200 ', b'8821F0601300 ', b'8821F0602000 ', b'8821F0603300 ', b'8821F0604100 ', b'8821F0605200 ', b'8821F0607200 ', b'8821F0608000 ', b'8821F0608200 ', b'8821F0609100 ', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0601200 ', b'8646F0601300 ', b'8646F0601400 ', b'8646F0603400 ', b'8646F0604100 ', b'8646F0605000 ', b'8646F0606000 ', b'8646F0606100 ', b'8646F0607100 ', ], }, CAR.CAMRYH: { (Ecu.engine, 0x700, None): [ b'\x018966306Q6000\x00\x00\x00\x00', b'\x018966333N1100\x00\x00\x00\x00', b'\x018966333N4300\x00\x00\x00\x00', b'\x018966333X0000\x00\x00\x00\x00', b'\x018966333X4000\x00\x00\x00\x00', b'\x01896633T16000\x00\x00\x00\x00', b'\x028966306B2100\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306B2300\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306B2500\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306N8100\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306N8200\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306N8300\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306N8400\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306R5000\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306R5000\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x028966306R6000\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966306R6000\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x028966306S0000\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x028966306S0100\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x028966306S1100\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152633214\x00\x00\x00\x00\x00\x00', b'F152633660\x00\x00\x00\x00\x00\x00', b'F152633712\x00\x00\x00\x00\x00\x00', b'F152633713\x00\x00\x00\x00\x00\x00', b'F152633B51\x00\x00\x00\x00\x00\x00', b'F152633B60\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'8821F0601200 ', b'8821F0601300 ', b'8821F0603400 ', b'8821F0604000 ', b'8821F0604100 ', b'8821F0604200 ', b'8821F0605200 ', b'8821F0606200 ', b'8821F0607200 ', b'8821F0608000 ', b'8821F0608200 ', b'8821F0609000 ', b'8821F0609100 ', ], (Ecu.eps, 0x7a1, None): [ b'8965B33540\x00\x00\x00\x00\x00\x00', b'8965B33542\x00\x00\x00\x00\x00\x00', b'8965B33550\x00\x00\x00\x00\x00\x00', b'8965B33551\x00\x00\x00\x00\x00\x00', b'8965B33580\x00\x00\x00\x00\x00\x00', b'8965B33581\x00\x00\x00\x00\x00\x00', b'8965B33611\x00\x00\x00\x00\x00\x00', b'8965B33621\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ # Same as 0x791 b'8821F0601200 ', b'8821F0601300 ', b'8821F0603400 ', b'8821F0604000 ', b'8821F0604100 ', b'8821F0604200 ', b'8821F0605200 ', b'8821F0606200 ', b'8821F0607200 ', b'8821F0608000 ', b'8821F0608200 ', b'8821F0609000 ', b'8821F0609100 ', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0601200 ', b'8646F0601300 ', b'8646F0601400 ', b'8646F0603400 ', b'8646F0603500 ', b'8646F0604100 ', b'8646F0605000 ', b'8646F0606000 ', b'8646F0606100 ', b'8646F0607000 ', b'8646F0607100 ', ], }, CAR.CAMRY_TSS2: { (Ecu.eps, 0x7a1, None): [ b'8965B33630\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F152606370\x00\x00\x00\x00\x00\x00', b'\x01F152606390\x00\x00\x00\x00\x00\x00', b'\x01F152606400\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x700, None): [ b'\x018966306Q5000\x00\x00\x00\x00', b'\x018966306T3100\x00\x00\x00\x00', b'\x018966306T3200\x00\x00\x00\x00', b'\x018966306T4100\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F6201200\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F0602200\x00\x00\x00\x008646G5301200\x00\x00\x00\x00', b'\x028646F3305200\x00\x00\x00\x008646G5301200\x00\x00\x00\x00', b'\x028646F3305300\x00\x00\x00\x008646G5301200\x00\x00\x00\x00', ], }, CAR.CAMRYH_TSS2: { (Ecu.eps, 0x7a1, None): [ b'8965B33630\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152633D00\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x700, None): [ b'\x018966306Q6000\x00\x00\x00\x00', b'\x018966306Q7000\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 15): [ b'\x018821F6201200\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 109): [ b'\x028646F3305200\x00\x00\x00\x008646G5301200\x00\x00\x00\x00', b'\x028646F3305300\x00\x00\x00\x008646G5301200\x00\x00\x00\x00', ], }, CAR.CHR: { (Ecu.engine, 0x700, None): [ b'\x01896631017100\x00\x00\x00\x00', b'\x01896631017200\x00\x00\x00\x00', b'\x0189663F413100\x00\x00\x00\x00', b'\x0189663F414100\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'8821F0W01000 ', b'8821F0W01100 ', b'8821FF401600 ', b'8821FF404000 ', b'8821FF404100 ', b'8821FF405100 ', b'8821FF406000 ', b'8821FF407100 ', ], (Ecu.esp, 0x7b0, None): [ b'F152610020\x00\x00\x00\x00\x00\x00', b'F152610153\x00\x00\x00\x00\x00\x00', b'F152610210\x00\x00\x00\x00\x00\x00', b'F1526F4034\x00\x00\x00\x00\x00\x00', b'F1526F4044\x00\x00\x00\x00\x00\x00', b'F1526F4073\x00\x00\x00\x00\x00\x00', b'F1526F4121\x00\x00\x00\x00\x00\x00', b'F1526F4122\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B10011\x00\x00\x00\x00\x00\x00', b'8965B10040\x00\x00\x00\x00\x00\x00', b'8965B10070\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x0331024000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203202\x00\x00\x00\x00', b'\x0331024000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203302\x00\x00\x00\x00', b'\x0331036000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203302\x00\x00\x00\x00', b'\x033F401100\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203102\x00\x00\x00\x00', b'\x033F401200\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203202\x00\x00\x00\x00', b'\x033F424000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203202\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F0W01000 ', b'8821FF401600 ', b'8821FF404000 ', b'8821FF404100 ', b'8821FF405100 ', b'8821FF406000 ', b'8821FF407100 ', b'8821F0W01100 ', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646FF401700 ', b'8646FF401800 ', b'8646FF404000 ', b'8646FF406000 ', b'8646FF407000 ', ], }, CAR.CHRH: { (Ecu.engine, 0x700, None): [ b'\x0289663F405100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896631013200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x0289663F405000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x0289663F418000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x0289663F423000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x0289663F431000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x0189663F438000\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152610012\x00\x00\x00\x00\x00\x00', b'F152610013\x00\x00\x00\x00\x00\x00', b'F152610014\x00\x00\x00\x00\x00\x00', b'F152610040\x00\x00\x00\x00\x00\x00', b'F152610190\x00\x00\x00\x00\x00\x00', b'F152610200\x00\x00\x00\x00\x00\x00', b'F152610230\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'8821F0W01000 ', b'8821FF402300 ', b'8821FF402400 ', b'8821FF404000 ', b'8821FF404100 ', b'8821FF405000 ', b'8821FF406000 ', b'8821FF407100 ', ], (Ecu.eps, 0x7a1, None): [ b'8965B10011\x00\x00\x00\x00\x00\x00', b'8965B10020\x00\x00\x00\x00\x00\x00', b'8965B10040\x00\x00\x00\x00\x00\x00', b'8965B10050\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F0W01000 ', b'8821FF402300 ', b'8821FF402400 ', b'8821FF404000 ', b'8821FF404100 ', b'8821FF405000 ', b'8821FF406000 ', b'8821FF407100 ', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646FF401700 ', b'8646FF402100 ', b'8646FF404000 ', b'8646FF406000 ', b'8646FF407000 ', ], }, CAR.COROLLA: { (Ecu.engine, 0x7e0, None): [ b'\x0230ZC2000\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZC2100\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZC2200\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZC2300\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZC3000\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZC3100\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZC3200\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZC3300\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0330ZC1200\x00\x00\x00\x00\x00\x00\x00\x0050212000\x00\x00\x00\x00\x00\x00\x00\x00895231203202\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881510201100\x00\x00\x00\x00', b'881510201200\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152602190\x00\x00\x00\x00\x00\x00', b'F152602191\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B02181\x00\x00\x00\x00\x00\x00', b'8965B02191\x00\x00\x00\x00\x00\x00', b'8965B48150\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702100\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0201101\x00\x00\x00\x00', b'8646F0201200\x00\x00\x00\x00', ], }, CAR.COROLLA_TSS2: { (Ecu.engine, 0x700, None): [ b'\x01896630ZG2000\x00\x00\x00\x00', b'\x01896630ZG5000\x00\x00\x00\x00', b'\x01896630ZG5100\x00\x00\x00\x00', b'\x01896630ZG5200\x00\x00\x00\x00', b'\x01896630ZG5300\x00\x00\x00\x00', b'\x01896630ZP2000\x00\x00\x00\x00', b'\x01896630ZQ5000\x00\x00\x00\x00', b'\x018966312L8000\x00\x00\x00\x00', b'\x018966312M0000\x00\x00\x00\x00', b'\x018966312M9000\x00\x00\x00\x00', b'\x018966312P9000\x00\x00\x00\x00', b'\x018966312P9100\x00\x00\x00\x00', b'\x018966312P9200\x00\x00\x00\x00', b'\x018966312P9300\x00\x00\x00\x00', b'\x018966312Q2300\x00\x00\x00\x00', b'\x018966312R0000\x00\x00\x00\x00', b'\x018966312R0100\x00\x00\x00\x00', b'\x018966312R1000\x00\x00\x00\x00', b'\x018966312R1100\x00\x00\x00\x00', b'\x018966312R3100\x00\x00\x00\x00', b'\x018966312S5000\x00\x00\x00\x00', b'\x018966312S7000\x00\x00\x00\x00', b'\x018966312W3000\x00\x00\x00\x00', b'\x018966312W9000\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x0230A10000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230A11000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230ZN4000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x03312K7000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203402\x00\x00\x00\x00', b'\x03312M3000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203402\x00\x00\x00\x00', b'\x03312N6000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203202\x00\x00\x00\x00', b'\x03312N6000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203302\x00\x00\x00\x00', b'\x03312N6000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203402\x00\x00\x00\x00', b'\x03312N6100\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203302\x00\x00\x00\x00', b'\x03312N6100\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00895231203402\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'\x018965B12350\x00\x00\x00\x00\x00\x00', b'\x018965B12470\x00\x00\x00\x00\x00\x00', b'\x018965B12490\x00\x00\x00\x00\x00\x00', b'\x018965B12500\x00\x00\x00\x00\x00\x00', b'\x018965B12520\x00\x00\x00\x00\x00\x00', b'\x018965B12530\x00\x00\x00\x00\x00\x00', b'\x018965B1255000\x00\x00\x00\x00', b'8965B12361\x00\x00\x00\x00\x00\x00', b'8965B16011\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F152602280\x00\x00\x00\x00\x00\x00', b'\x01F152602560\x00\x00\x00\x00\x00\x00', b'\x01F152602590\x00\x00\x00\x00\x00\x00', b'\x01F152602650\x00\x00\x00\x00\x00\x00', b"\x01F15260A010\x00\x00\x00\x00\x00\x00", b'\x01F15260A050\x00\x00\x00\x00\x00\x00', b'\x01F152612641\x00\x00\x00\x00\x00\x00', b'\x01F152612651\x00\x00\x00\x00\x00\x00', b'\x01F152612B10\x00\x00\x00\x00\x00\x00', b'\x01F152612B51\x00\x00\x00\x00\x00\x00', b'\x01F152612B60\x00\x00\x00\x00\x00\x00', b'\x01F152612B61\x00\x00\x00\x00\x00\x00', b'\x01F152612B71\x00\x00\x00\x00\x00\x00', b'\x01F152612B90\x00\x00\x00\x00\x00\x00', b'\x01F152612C00\x00\x00\x00\x00\x00\x00', b'F152602191\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301100\x00\x00\x00\x00', b'\x018821F3301200\x00\x00\x00\x00', b'\x018821F3301300\x00\x00\x00\x00', b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F12010D0\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F1201100\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F1201200\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F1201300\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F1201400\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', b'\x028646F1202000\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F1202100\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F1202200\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', b'\x028646F1601100\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', ], }, CAR.COROLLAH_TSS2: { (Ecu.engine, 0x700, None): [ b'\x01896630ZJ1000\x00\x00\x00\x00', b'\x01896630ZU8000\x00\x00\x00\x00', b'\x01896637621000\x00\x00\x00\x00', b'\x01896637624000\x00\x00\x00\x00', b'\x01896637626000\x00\x00\x00\x00', b'\x01896637648000\x00\x00\x00\x00', b'\x02896630ZJ5000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896630ZN8000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896630ZQ3000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896630ZR2000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896630ZT8000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896630ZT9000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966312K6000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966312L0000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966312Q3000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966312Q4000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x038966312L7000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF1205001\x00\x00\x00\x00', b'\x038966312N1000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF1203001\x00\x00\x00\x00', b'\x038966312T3000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF1205001\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B12361\x00\x00\x00\x00\x00\x00', b'8965B12451\x00\x00\x00\x00\x00\x00', b'8965B76012\x00\x00\x00\x00\x00\x00', b'8965B76050\x00\x00\x00\x00\x00\x00', b'\x018965B12350\x00\x00\x00\x00\x00\x00', b'\x018965B12470\x00\x00\x00\x00\x00\x00', b'\x018965B12490\x00\x00\x00\x00\x00\x00', b'\x018965B12500\x00\x00\x00\x00\x00\x00', b'\x018965B12510\x00\x00\x00\x00\x00\x00', b'\x018965B12520\x00\x00\x00\x00\x00\x00', b'\x018965B12530\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152612590\x00\x00\x00\x00\x00\x00', b'F152612691\x00\x00\x00\x00\x00\x00', b'F152612692\x00\x00\x00\x00\x00\x00', b'F152612700\x00\x00\x00\x00\x00\x00', b'F152612710\x00\x00\x00\x00\x00\x00', b'F152612790\x00\x00\x00\x00\x00\x00', b'F152612800\x00\x00\x00\x00\x00\x00', b'F152612820\x00\x00\x00\x00\x00\x00', b'F152612840\x00\x00\x00\x00\x00\x00', b'F152612890\x00\x00\x00\x00\x00\x00', b'F152612A00\x00\x00\x00\x00\x00\x00', b'F152612A10\x00\x00\x00\x00\x00\x00', b'F152642540\x00\x00\x00\x00\x00\x00', b'F152676293\x00\x00\x00\x00\x00\x00', b'F152676303\x00\x00\x00\x00\x00\x00', b'F152676304\x00\x00\x00\x00\x00\x00', b'F152612D00\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301100\x00\x00\x00\x00', b'\x018821F3301200\x00\x00\x00\x00', b'\x018821F3301300\x00\x00\x00\x00', b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F12010D0\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F1201100\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F1201300\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F1201400\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', b'\x028646F1202000\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F1202100\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F1202200\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', b"\x028646F1601300\x00\x00\x00\x008646G2601400\x00\x00\x00\x00", b'\x028646F4203400\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F76020C0\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F7603100\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F7603200\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', ], }, CAR.HIGHLANDER: { (Ecu.engine, 0x700, None): [ b'\x01896630E09000\x00\x00\x00\x00', b'\x01896630E43000\x00\x00\x00\x00', b'\x01896630E43100\x00\x00\x00\x00', b'\x01896630E43200\x00\x00\x00\x00', b'\x01896630E44200\x00\x00\x00\x00', b'\x01896630E45000\x00\x00\x00\x00', b'\x01896630E45100\x00\x00\x00\x00', b'\x01896630E45200\x00\x00\x00\x00', b'\x01896630E46000\x00\x00\x00\x00', b'\x01896630E46200\x00\x00\x00\x00', b'\x01896630E74000\x00\x00\x00\x00', b'\x01896630E75000\x00\x00\x00\x00', b'\x01896630E76000\x00\x00\x00\x00', b'\x01896630E77000\x00\x00\x00\x00', b'\x01896630E83000\x00\x00\x00\x00', b'\x01896630E84000\x00\x00\x00\x00', b'\x01896630E85000\x00\x00\x00\x00', b'\x01896630E86000\x00\x00\x00\x00', b'\x01896630E88000\x00\x00\x00\x00', b'\x01896630EA0000\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B48140\x00\x00\x00\x00\x00\x00', b'8965B48150\x00\x00\x00\x00\x00\x00', b'8965B48210\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [b'F15260E011\x00\x00\x00\x00\x00\x00'], (Ecu.dsu, 0x791, None): [ b'881510E01100\x00\x00\x00\x00', b'881510E01200\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702100\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0E01200\x00\x00\x00\x00', b'8646F0E01300\x00\x00\x00\x00', ], }, CAR.HIGHLANDERH: { (Ecu.eps, 0x7a1, None): [ b'8965B48160\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152648541\x00\x00\x00\x00\x00\x00', b'F152648542\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x0230E40000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230E40100\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230EA2000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0230EA2100\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702100\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0E01200\x00\x00\x00\x00', b'8646F0E01300\x00\x00\x00\x00', ], }, CAR.HIGHLANDER_TSS2: { (Ecu.eps, 0x7a1, None): [ b'8965B48241\x00\x00\x00\x00\x00\x00', b'8965B48310\x00\x00\x00\x00\x00\x00', b'8965B48320\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F15260E051\x00\x00\x00\x00\x00\x00', b'\x01F15260E061\x00\x00\x00\x00\x00\x00', b'\x01F15260E110\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x700, None): [ b'\x01896630E62100\x00\x00\x00\x00', b'\x01896630E62200\x00\x00\x00\x00', b'\x01896630E64100\x00\x00\x00\x00', b'\x01896630E64200\x00\x00\x00\x00', b'\x01896630EB1000\x00\x00\x00\x00', b'\x01896630EB1100\x00\x00\x00\x00', b'\x01896630EB1200\x00\x00\x00\x00', b'\x01896630EB2000\x00\x00\x00\x00', b'\x01896630EB2100\x00\x00\x00\x00', b'\x01896630EB2200\x00\x00\x00\x00', b'\x01896630EC4000\x00\x00\x00\x00', b'\x01896630EE1000\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301400\x00\x00\x00\x00', b'\x018821F6201200\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F0E02100\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F4803000\x00\x00\x00\x008646G5301200\x00\x00\x00\x00', ], }, CAR.HIGHLANDERH_TSS2: { (Ecu.eps, 0x7a1, None): [ b'8965B48241\x00\x00\x00\x00\x00\x00', b'8965B48310\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F15264872300\x00\x00\x00\x00', b'\x01F15264872400\x00\x00\x00\x00', b'\x01F15264872500\x00\x00\x00\x00', b'\x01F152648C6300\x00\x00\x00\x00', ], (Ecu.engine, 0x700, None): [ b'\x01896630EA1000\x00\x00\x00\x00', b'\x01896630EE4000\x00\x00\x00\x00', b'\x01896630EA1000\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', b'\x02896630E66000\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', b'\x02896630EB3000\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', b'\x02896630EB3100\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301400\x00\x00\x00\x00', b'\x018821F6201200\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F0E02100\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F4803000\x00\x00\x00\x008646G5301200\x00\x00\x00\x00', ], }, CAR.LEXUS_IS: { (Ecu.engine, 0x700, None): [ b'\x018966353M7000\x00\x00\x00\x00', b'\x018966353M7100\x00\x00\x00\x00', b'\x018966353Q2000\x00\x00\x00\x00', b'\x018966353Q2300\x00\x00\x00\x00', b'\x018966353Q4000\x00\x00\x00\x00', b'\x018966353R1100\x00\x00\x00\x00', b'\x018966353R7100\x00\x00\x00\x00', b'\x018966353R8100\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x0232480000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02353P7000\x00\x00\x00\x00\x00\x00\x00\x00530J5000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02353P9000\x00\x00\x00\x00\x00\x00\x00\x00553C1000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152653300\x00\x00\x00\x00\x00\x00', b'F152653301\x00\x00\x00\x00\x00\x00', b'F152653310\x00\x00\x00\x00\x00\x00', b'F152653330\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881515306200\x00\x00\x00\x00', b'881515306400\x00\x00\x00\x00', b'881515306500\x00\x00\x00\x00', b'881515307400\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B53270\x00\x00\x00\x00\x00\x00', b'8965B53271\x00\x00\x00\x00\x00\x00', b'8965B53280\x00\x00\x00\x00\x00\x00', b'8965B53281\x00\x00\x00\x00\x00\x00', b'8965B53311\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702300\x00\x00\x00\x00', b'8821F4702100\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F5301101\x00\x00\x00\x00', b'8646F5301200\x00\x00\x00\x00', b'8646F5301300\x00\x00\x00\x00', b'8646F5301400\x00\x00\x00\x00', ], }, CAR.PRIUS: { (Ecu.engine, 0x700, None): [ b'\x02896634761000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634761100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634761200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634762000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634763000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634763100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634765000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634765100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634769000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634769100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634769200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634770000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634774000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634774100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634774200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634782000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x02896634784000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966347A0000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966347A5000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966347A8000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966347B0000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x03896634759100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701003\x00\x00\x00\x00', b'\x03896634759200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701003\x00\x00\x00\x00', b'\x03896634759200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701004\x00\x00\x00\x00', b'\x03896634759300\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701004\x00\x00\x00\x00', b'\x03896634760000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701002\x00\x00\x00\x00', b'\x03896634760000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701003\x00\x00\x00\x00', b'\x03896634760000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701004\x00\x00\x00\x00', b'\x03896634760100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701003\x00\x00\x00\x00', b'\x03896634760200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701003\x00\x00\x00\x00', b'\x03896634760200\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701004\x00\x00\x00\x00', b'\x03896634760300\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701004\x00\x00\x00\x00', b'\x03896634768000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4703001\x00\x00\x00\x00', b'\x03896634768000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4703002\x00\x00\x00\x00', b'\x03896634768100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4703002\x00\x00\x00\x00', b'\x03896634785000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4705001\x00\x00\x00\x00', b'\x03896634785000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4710001\x00\x00\x00\x00', b'\x03896634786000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4705001\x00\x00\x00\x00', b'\x03896634786000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4710001\x00\x00\x00\x00', b'\x03896634789000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4703002\x00\x00\x00\x00', b'\x038966347A3000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4701003\x00\x00\x00\x00', b'\x038966347A3000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4707001\x00\x00\x00\x00', b'\x038966347B6000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4710001\x00\x00\x00\x00', b'\x038966347B7000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4710001\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B47021\x00\x00\x00\x00\x00\x00', b'8965B47022\x00\x00\x00\x00\x00\x00', b'8965B47023\x00\x00\x00\x00\x00\x00', b'8965B47050\x00\x00\x00\x00\x00\x00', b'8965B47060\x00\x00\x00\x00\x00\x00', # This is the EPS with good angle sensor ], (Ecu.esp, 0x7b0, None): [ b'F152647290\x00\x00\x00\x00\x00\x00', b'F152647300\x00\x00\x00\x00\x00\x00', b'F152647310\x00\x00\x00\x00\x00\x00', b'F152647414\x00\x00\x00\x00\x00\x00', b'F152647415\x00\x00\x00\x00\x00\x00', b'F152647416\x00\x00\x00\x00\x00\x00', b'F152647417\x00\x00\x00\x00\x00\x00', b'F152647470\x00\x00\x00\x00\x00\x00', b'F152647490\x00\x00\x00\x00\x00\x00', b'F152647682\x00\x00\x00\x00\x00\x00', b'F152647683\x00\x00\x00\x00\x00\x00', b'F152647684\x00\x00\x00\x00\x00\x00', b'F152647862\x00\x00\x00\x00\x00\x00', b'F152647863\x00\x00\x00\x00\x00\x00', b'F152647864\x00\x00\x00\x00\x00\x00', b'F152647865\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881514702300\x00\x00\x00\x00', b'881514702400\x00\x00\x00\x00', b'881514703100\x00\x00\x00\x00', b'881514704100\x00\x00\x00\x00', b'881514706000\x00\x00\x00\x00', b'881514706100\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702000\x00\x00\x00\x00', b'8821F4702100\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F4701300\x00\x00\x00\x00', b'8646F4702001\x00\x00\x00\x00', b'8646F4702100\x00\x00\x00\x00', b'8646F4702200\x00\x00\x00\x00', b'8646F4705000\x00\x00\x00\x00', b'8646F4705200\x00\x00\x00\x00', ], }, CAR.RAV4: { (Ecu.engine, 0x7e0, None): [ b'\x02342Q1000\x00\x00\x00\x00\x00\x00\x00\x0054212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342Q1100\x00\x00\x00\x00\x00\x00\x00\x0054212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342Q1200\x00\x00\x00\x00\x00\x00\x00\x0054212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342Q1300\x00\x00\x00\x00\x00\x00\x00\x0054212000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342Q2000\x00\x00\x00\x00\x00\x00\x00\x0054213000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342Q2100\x00\x00\x00\x00\x00\x00\x00\x0054213000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342Q2200\x00\x00\x00\x00\x00\x00\x00\x0054213000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342Q4000\x00\x00\x00\x00\x00\x00\x00\x0054215000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B42063\x00\x00\x00\x00\x00\x00', b'8965B42073\x00\x00\x00\x00\x00\x00', b'8965B42082\x00\x00\x00\x00\x00\x00', b'8965B42083\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F15260R102\x00\x00\x00\x00\x00\x00', b'F15260R103\x00\x00\x00\x00\x00\x00', b'F152642493\x00\x00\x00\x00\x00\x00', b'F152642492\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881514201200\x00\x00\x00\x00', b'881514201300\x00\x00\x00\x00', b'881514201400\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702000\x00\x00\x00\x00', b'8821F4702100\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F4201100\x00\x00\x00\x00', b'8646F4201200\x00\x00\x00\x00', b'8646F4202001\x00\x00\x00\x00', b'8646F4202100\x00\x00\x00\x00', b'8646F4204000\x00\x00\x00\x00', ], }, CAR.RAV4H: { (Ecu.engine, 0x7e0, None): [ b'\x02342N9000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342N9100\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02342P0000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B42102\x00\x00\x00\x00\x00\x00', b'8965B42103\x00\x00\x00\x00\x00\x00', b'8965B42112\x00\x00\x00\x00\x00\x00', b'8965B42162\x00\x00\x00\x00\x00\x00', b'8965B42163\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152642090\x00\x00\x00\x00\x00\x00', b'F152642110\x00\x00\x00\x00\x00\x00', b'F152642120\x00\x00\x00\x00\x00\x00', b'F152642400\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881514202200\x00\x00\x00\x00', b'881514202300\x00\x00\x00\x00', b'881514202400\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702000\x00\x00\x00\x00', b'8821F4702100\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F4201100\x00\x00\x00\x00', b'8646F4201200\x00\x00\x00\x00', b'8646F4202001\x00\x00\x00\x00', b'8646F4202100\x00\x00\x00\x00', b'8646F4204000\x00\x00\x00\x00', ], }, CAR.RAV4_TSS2: { (Ecu.engine, 0x700, None): [ b'\x01896630R58000\x00\x00\x00\x00', b'\x01896630R58100\x00\x00\x00\x00', b'\x018966342E2000\x00\x00\x00\x00', b'\x018966342M8000\x00\x00\x00\x00', b'\x018966342S9000\x00\x00\x00\x00', b'\x018966342T1000\x00\x00\x00\x00', b'\x018966342T6000\x00\x00\x00\x00', b'\x018966342T9000\x00\x00\x00\x00', b'\x018966342U4000\x00\x00\x00\x00', b'\x018966342U4100\x00\x00\x00\x00', b'\x018966342U5100\x00\x00\x00\x00', b'\x018966342V0000\x00\x00\x00\x00', b'\x018966342V3000\x00\x00\x00\x00', b'\x018966342V3100\x00\x00\x00\x00', b'\x018966342V3200\x00\x00\x00\x00', b'\x01896634A05000\x00\x00\x00\x00', b'\x01896634A19000\x00\x00\x00\x00', b'\x01896634A19100\x00\x00\x00\x00', b'\x01896634A20000\x00\x00\x00\x00', b'\x01896634A20100\x00\x00\x00\x00', b'\x01896634A22000\x00\x00\x00\x00', b'\x01896634A22100\x00\x00\x00\x00', b'\x01896634A30000\x00\x00\x00\x00', b'\x01896634A44000\x00\x00\x00\x00', b'\x01896634A45000\x00\x00\x00\x00', b'\x01896634A46000\x00\x00\x00\x00', b'\x028966342M7000\x00\x00\x00\x00897CF1201001\x00\x00\x00\x00', b'\x028966342T0000\x00\x00\x00\x00897CF1201001\x00\x00\x00\x00', b'\x028966342V1000\x00\x00\x00\x00897CF1202001\x00\x00\x00\x00', b'\x028966342Y8000\x00\x00\x00\x00897CF1201001\x00\x00\x00\x00', b'\x02896634A18000\x00\x00\x00\x00897CF1201001\x00\x00\x00\x00', b'\x02896634A18100\x00\x00\x00\x00897CF1201001\x00\x00\x00\x00', b'\x02896634A43000\x00\x00\x00\x00897CF4201001\x00\x00\x00\x00', b'\x02896634A47000\x00\x00\x00\x00897CF4201001\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F15260R210\x00\x00\x00\x00\x00\x00', b'\x01F15260R220\x00\x00\x00\x00\x00\x00', b'\x01F15260R290\x00\x00\x00\x00\x00\x00', b'\x01F15260R300\x00\x00\x00\x00\x00\x00', b'\x01F152642551\x00\x00\x00\x00\x00\x00', b'\x01F152642561\x00\x00\x00\x00\x00\x00', b'\x01F152642700\x00\x00\x00\x00\x00\x00', b'\x01F152642701\x00\x00\x00\x00\x00\x00', b'\x01F152642710\x00\x00\x00\x00\x00\x00', b'\x01F152642711\x00\x00\x00\x00\x00\x00', b'\x01F152642750\x00\x00\x00\x00\x00\x00', b'\x01F152642751\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B42170\x00\x00\x00\x00\x00\x00', b'8965B42171\x00\x00\x00\x00\x00\x00', b'8965B42180\x00\x00\x00\x00\x00\x00', b'8965B42181\x00\x00\x00\x00\x00\x00', b'\x028965B0R01200\x00\x00\x00\x008965B0R02200\x00\x00\x00\x00', b'\x028965B0R01300\x00\x00\x00\x008965B0R02300\x00\x00\x00\x00', b'\x028965B0R01400\x00\x00\x00\x008965B0R02400\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301100\x00\x00\x00\x00', b'\x018821F3301200\x00\x00\x00\x00', b'\x018821F3301300\x00\x00\x00\x00', b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F4203200\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F4203300\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F4203400\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F4203500\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F4203700\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F4203800\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', ], }, CAR.RAV4H_TSS2: { (Ecu.engine, 0x700, None): [ b'\x01896634A15000\x00\x00\x00\x00', b'\x018966342M5000\x00\x00\x00\x00', b'\x018966342W8000\x00\x00\x00\x00', b'\x018966342X5000\x00\x00\x00\x00', b'\x018966342X6000\x00\x00\x00\x00', b'\x01896634A25000\x00\x00\x00\x00', b'\x018966342W5000\x00\x00\x00\x00', b'\x028966342W4001\x00\x00\x00\x00897CF1203001\x00\x00\x00\x00', b'\x02896634A13000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02896634A13001\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', b'\x02896634A13101\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', b'\x02896634A14001\x00\x00\x00\x00897CF1203001\x00\x00\x00\x00', b'\x02896634A23000\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02896634A23001\x00\x00\x00\x00897CF1203001\x00\x00\x00\x00', b'\x02896634A14001\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', b'\x02896634A14101\x00\x00\x00\x00897CF4801001\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152642291\x00\x00\x00\x00\x00\x00', b'F152642290\x00\x00\x00\x00\x00\x00', b'F152642322\x00\x00\x00\x00\x00\x00', b'F152642330\x00\x00\x00\x00\x00\x00', b'F152642331\x00\x00\x00\x00\x00\x00', b'F152642531\x00\x00\x00\x00\x00\x00', b'F152642532\x00\x00\x00\x00\x00\x00', b'F152642520\x00\x00\x00\x00\x00\x00', b'F152642521\x00\x00\x00\x00\x00\x00', b'F152642540\x00\x00\x00\x00\x00\x00', b'F152642541\x00\x00\x00\x00\x00\x00', b'F152642542\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B42170\x00\x00\x00\x00\x00\x00', b'8965B42171\x00\x00\x00\x00\x00\x00', b'8965B42180\x00\x00\x00\x00\x00\x00', b'8965B42181\x00\x00\x00\x00\x00\x00', b'\x028965B0R01200\x00\x00\x00\x008965B0R02200\x00\x00\x00\x00', b'\x028965B0R01300\x00\x00\x00\x008965B0R02300\x00\x00\x00\x00', b'\x028965B0R01400\x00\x00\x00\x008965B0R02400\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301100\x00\x00\x00\x00', b'\x018821F3301200\x00\x00\x00\x00', b'\x018821F3301300\x00\x00\x00\x00', b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F4203200\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F4203300\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F4203400\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F4203500\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F4203700\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F4203800\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', ], }, CAR.SIENNA: { (Ecu.engine, 0x700, None): [ b'\x01896630832100\x00\x00\x00\x00', b'\x01896630832200\x00\x00\x00\x00', b'\x01896630838000\x00\x00\x00\x00', b'\x01896630838100\x00\x00\x00\x00', b'\x01896630842000\x00\x00\x00\x00', b'\x01896630843000\x00\x00\x00\x00', b'\x01896630851000\x00\x00\x00\x00', b'\x01896630851100\x00\x00\x00\x00', b'\x01896630851200\x00\x00\x00\x00', b'\x01896630852000\x00\x00\x00\x00', b'\x01896630852100\x00\x00\x00\x00', b'\x01896630859000\x00\x00\x00\x00', b'\x01896630860000\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B45070\x00\x00\x00\x00\x00\x00', b'8965B45080\x00\x00\x00\x00\x00\x00', b'8965B45082\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152608130\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881510801100\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702100\x00\x00\x00\x00', b'8821F4702200\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F0801100\x00\x00\x00\x00', ], }, CAR.LEXUS_CTH: { (Ecu.dsu, 0x791, None): [ b'881517601100\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152676144\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x0237635000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F7601100\x00\x00\x00\x00', ], }, CAR.LEXUS_ES_TSS2: { (Ecu.engine, 0x700, None): [ b'\x01896630EC9100\x00\x00\x00\x00', b'\x018966333T5000\x00\x00\x00\x00', b'\x018966333T5100\x00\x00\x00\x00', b'\x018966333X6000\x00\x00\x00\x00', b'\x01896633T07000\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F152606281\x00\x00\x00\x00\x00\x00', b'\x01F152606340\x00\x00\x00\x00\x00\x00', b'\x01F152606461\x00\x00\x00\x00\x00\x00', b'\x01F15260E031\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B33252\x00\x00\x00\x00\x00\x00', b'8965B33590\x00\x00\x00\x00\x00\x00', b'8965B33690\x00\x00\x00\x00\x00\x00', b'8965B48271\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301100\x00\x00\x00\x00', b'\x018821F3301200\x00\x00\x00\x00', b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F33030D0\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F3303200\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F3304100\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F3304300\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', b'\x028646F4810200\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', ], }, CAR.LEXUS_ESH_TSS2: { (Ecu.engine, 0x700, None): [ b'\x028966333S8000\x00\x00\x00\x00897CF3302002\x00\x00\x00\x00', b'\x028966333S8000\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x028966333T0100\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x028966333V4000\x00\x00\x00\x00897CF3305001\x00\x00\x00\x00', b'\x02896633T09000\x00\x00\x00\x00897CF3307001\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152633423\x00\x00\x00\x00\x00\x00', b'F152633680\x00\x00\x00\x00\x00\x00', b'F152633681\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B33252\x00\x00\x00\x00\x00\x00', b'8965B33590\x00\x00\x00\x00\x00\x00', b'8965B33690\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301100\x00\x00\x00\x00', b'\x018821F3301200\x00\x00\x00\x00', b'\x018821F3301300\x00\x00\x00\x00', b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F33030D0\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F3303100\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F3303200\x00\x00\x00\x008646G26011A0\x00\x00\x00\x00', b'\x028646F3304100\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F3304200\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F3304300\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', ], }, CAR.LEXUS_ESH: { (Ecu.engine, 0x7e0, None): [ b'\x02333M4200\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152633171\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881513310400\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B33512\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4701100\x00\x00\x00\x00', b'8821F4701300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F3302001\x00\x00\x00\x00', b'8646F3302200\x00\x00\x00\x00', ], }, CAR.LEXUS_NX: { (Ecu.engine, 0x700, None): [ b'\x01896637850000\x00\x00\x00\x00', b'\x01896637851000\x00\x00\x00\x00', b'\x01896637852000\x00\x00\x00\x00', b'\x01896637854000\x00\x00\x00\x00', b'\x01896637878000\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152678130\x00\x00\x00\x00\x00\x00', b'F152678140\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881517803100\x00\x00\x00\x00', b'881517803300\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B78060\x00\x00\x00\x00\x00\x00', b'8965B78080\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702100\x00\x00\x00\x00', b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F7801100\x00\x00\x00\x00', b'8646F7801300\x00\x00\x00\x00', ], }, CAR.LEXUS_NX_TSS2: { (Ecu.engine, 0x700, None): [ b'\x018966378B2100\x00\x00\x00\x00', b'\x018966378G3000\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F152678221\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B78120\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b"\x018821F3301400\x00\x00\x00\x00", ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F78030A0\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', b'\x028646F7803100\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', ], }, CAR.PRIUS_ALPHA: { (Ecu.esp, 0x7b0, None): [ b'F152647280\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'\x0234781000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881514705100\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F4703300\x00\x00\x00\x00', ], }, CAR.LEXUS_NXH: { (Ecu.engine, 0x7e0, None): [ b'\x0237841000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0237842000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0237880000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0237882000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0237886000\x00\x00\x00\x00\x00\x00\x00\x00A4701000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152678160\x00\x00\x00\x00\x00\x00', b'F152678170\x00\x00\x00\x00\x00\x00', b'F152678171\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881517804300\x00\x00\x00\x00', b'881517804100\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B78060\x00\x00\x00\x00\x00\x00', b'8965B78080\x00\x00\x00\x00\x00\x00', b'8965B78100\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702300\x00\x00\x00\x00', b'8821F4702100\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F7801300\x00\x00\x00\x00', b'8646F7801100\x00\x00\x00\x00', ], }, CAR.LEXUS_RC: { (Ecu.engine, 0x7e0, None): [ b'\x0232484000\x00\x00\x00\x00\x00\x00\x00\x0052422000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152624221\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881512409100\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B24081\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4702300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F2402200\x00\x00\x00\x00', ], }, CAR.LEXUS_RX: { (Ecu.engine, 0x700, None): [ b'\x01896630E36200\x00\x00\x00\x00', b'\x01896630E36300\x00\x00\x00\x00', b'\x01896630E37200\x00\x00\x00\x00', b'\x01896630E37300\x00\x00\x00\x00', b'\x01896630E41000\x00\x00\x00\x00', b'\x01896630E41100\x00\x00\x00\x00', b'\x01896630E41200\x00\x00\x00\x00', b'\x01896630E41500\x00\x00\x00\x00', b'\x01896630EA3100\x00\x00\x00\x00', b'\x01896630EA3400\x00\x00\x00\x00', b'\x01896630EA4100\x00\x00\x00\x00', b'\x01896630EA4300\x00\x00\x00\x00', b'\x01896630EA4400\x00\x00\x00\x00', b'\x01896630EA6300\x00\x00\x00\x00', b'\x018966348R1300\x00\x00\x00\x00', b'\x018966348R8500\x00\x00\x00\x00', b'\x018966348W1300\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152648472\x00\x00\x00\x00\x00\x00', b'F152648473\x00\x00\x00\x00\x00\x00', b'F152648492\x00\x00\x00\x00\x00\x00', b'F152648493\x00\x00\x00\x00\x00\x00', b'F152648474\x00\x00\x00\x00\x00\x00', b'F152648630\x00\x00\x00\x00\x00\x00', b'F152648494\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881514810300\x00\x00\x00\x00', b'881514810500\x00\x00\x00\x00', b'881514810700\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B0E011\x00\x00\x00\x00\x00\x00', b'8965B0E012\x00\x00\x00\x00\x00\x00', b'8965B48102\x00\x00\x00\x00\x00\x00', b'8965B48111\x00\x00\x00\x00\x00\x00', b'8965B48112\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4701000\x00\x00\x00\x00', b'8821F4701100\x00\x00\x00\x00', b'8821F4701200\x00\x00\x00\x00', b'8821F4701300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F4801100\x00\x00\x00\x00', b'8646F4801200\x00\x00\x00\x00', b'8646F4802001\x00\x00\x00\x00', b'8646F4802100\x00\x00\x00\x00', b'8646F4802200\x00\x00\x00\x00', b'8646F4809000\x00\x00\x00\x00', ], }, CAR.LEXUS_RXH: { (Ecu.engine, 0x7e0, None): [ b'\x02348J7000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02348N0000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02348Q4000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02348Q4100\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02348T1100\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02348T3000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02348V6000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x02348Z3000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152648361\x00\x00\x00\x00\x00\x00', b'F152648501\x00\x00\x00\x00\x00\x00', b'F152648502\x00\x00\x00\x00\x00\x00', b'F152648504\x00\x00\x00\x00\x00\x00', b'F152648740\x00\x00\x00\x00\x00\x00', b'F152648A30\x00\x00\x00\x00\x00\x00', ], (Ecu.dsu, 0x791, None): [ b'881514811300\x00\x00\x00\x00', b'881514811500\x00\x00\x00\x00', b'881514811700\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B0E011\x00\x00\x00\x00\x00\x00', b'8965B0E012\x00\x00\x00\x00\x00\x00', b'8965B48111\x00\x00\x00\x00\x00\x00', b'8965B48112\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'8821F4701000\x00\x00\x00\x00', b'8821F4701100\x00\x00\x00\x00', b'8821F4701200\x00\x00\x00\x00', b'8821F4701300\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'8646F4801200\x00\x00\x00\x00', b'8646F4802001\x00\x00\x00\x00', b'8646F4802100\x00\x00\x00\x00', b'8646F4802200\x00\x00\x00\x00', b'8646F4809000\x00\x00\x00\x00', ], }, CAR.LEXUS_RX_TSS2: { (Ecu.engine, 0x700, None): [ b'\x01896630EC9000\x00\x00\x00\x00', b'\x01896634D12000\x00\x00\x00\x00', b'\x01896630EB0000\x00\x00\x00\x00', b'\x01896630EA9000\x00\x00\x00\x00', b'\x01896630ED0000\x00\x00\x00\x00', b'\x018966348W5100\x00\x00\x00\x00', b'\x018966348W9000\x00\x00\x00\x00', b'\x01896634D12100\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'\x01F152648801\x00\x00\x00\x00\x00\x00', b'\x01F15260E031\x00\x00\x00\x00\x00\x00', b'\x01F15260E041\x00\x00\x00\x00\x00\x00', b'\x01F152648781\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B48261\x00\x00\x00\x00\x00\x00', b'8965B48271\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301100\x00\x00\x00\x00', b'\x018821F3301300\x00\x00\x00\x00', b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F4810200\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F4810100\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', ], }, CAR.LEXUS_RXH_TSS2: { (Ecu.engine, 0x7e0, None): [ b'\x02348X8000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0234D14000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', b'\x0234D16000\x00\x00\x00\x00\x00\x00\x00\x00A4802000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152648831\x00\x00\x00\x00\x00\x00', b'F152648D00\x00\x00\x00\x00\x00\x00', b'F152648D60\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B48271\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F4810200\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F4810100\x00\x00\x00\x008646G2601200\x00\x00\x00\x00', ], }, CAR.PRIUS_TSS2: { (Ecu.engine, 0x700, None): [ b'\x028966347C6000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x028966347C8000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00', b'\x038966347C0000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4710101\x00\x00\x00\x00', b'\x038966347C1000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4710101\x00\x00\x00\x00', b'\x038966347C5000\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4707101\x00\x00\x00\x00', b'\x038966347C5100\x00\x00\x00\x008966A4703000\x00\x00\x00\x00897CF4707101\x00\x00\x00\x00', ], (Ecu.esp, 0x7b0, None): [ b'F152647500\x00\x00\x00\x00\x00\x00', b'F152647510\x00\x00\x00\x00\x00\x00', b'F152647520\x00\x00\x00\x00\x00\x00', b'F152647521\x00\x00\x00\x00\x00\x00', ], (Ecu.eps, 0x7a1, None): [ b'8965B47070\x00\x00\x00\x00\x00\x00', ], (Ecu.fwdRadar, 0x750, 0xf): [ b'\x018821F3301400\x00\x00\x00\x00', ], (Ecu.fwdCamera, 0x750, 0x6d): [ b'\x028646F4707000\x00\x00\x00\x008646G2601400\x00\x00\x00\x00', b'\x028646F4710000\x00\x00\x00\x008646G2601500\x00\x00\x00\x00', ], }, CAR.MIRAI: { (Ecu.esp, 0x7D1, None): [b'\x01898A36203000\x00\x00\x00\x00',], (Ecu.esp, 0x7B0, None): [b'\x01F15266203200\x00\x00\x00\x00',], # a second ESP ECU (Ecu.eps, 0x7A1, None): [b'\x028965B6204100\x00\x00\x00\x008965B6203100\x00\x00\x00\x00',], (Ecu.fwdRadar, 0x750, 0xf): [b'\x018821F6201200\x00\x00\x00\x00',], (Ecu.fwdCamera, 0x750, 0x6d): [b'\x028646F6201400\x00\x00\x00\x008646G5301200\x00\x00\x00\x00',], }, CAR.ALPHARD_TSS2: { (Ecu.engine, 0x7e0, None): [b'\x0235883000\x00\x00\x00\x00\x00\x00\x00\x00A0202000\x00\x00\x00\x00\x00\x00\x00\x00',], (Ecu.eps, 0x7a1, None): [b'8965B58040\x00\x00\x00\x00\x00\x00',], (Ecu.fwdRadar, 0x750, 0xf): [b'\x018821F3301400\x00\x00\x00\x00',], (Ecu.fwdCamera, 0x750, 0x6d): [b'\x028646F5803200\x00\x00\x00\x008646G2601400\x00\x00\x00\x00',], }, } STEER_THRESHOLD = 100 DBC = { CAR.RAV4H: dbc_dict('toyota_rav4_hybrid_2017_pt_generated', 'toyota_adas'), CAR.RAV4: dbc_dict('toyota_rav4_2017_pt_generated', 'toyota_adas'), CAR.PRIUS: dbc_dict('toyota_prius_2017_pt_generated', 'toyota_adas'), CAR.COROLLA: dbc_dict('toyota_corolla_2017_pt_generated', 'toyota_adas'), CAR.LEXUS_RC: dbc_dict('lexus_is_2018_pt_generated', 'toyota_adas'), CAR.LEXUS_RX: dbc_dict('lexus_rx_350_2016_pt_generated', 'toyota_adas'), CAR.LEXUS_RXH: dbc_dict('lexus_rx_hybrid_2017_pt_generated', 'toyota_adas'), CAR.LEXUS_RX_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), CAR.LEXUS_RXH_TSS2: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.CHR: dbc_dict('toyota_nodsu_pt_generated', 'toyota_adas'), CAR.CHRH: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_adas'), CAR.CAMRY: dbc_dict('toyota_nodsu_pt_generated', 'toyota_adas'), CAR.CAMRYH: dbc_dict('toyota_camry_hybrid_2018_pt_generated', 'toyota_adas'), CAR.CAMRY_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), CAR.CAMRYH_TSS2: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.HIGHLANDER: dbc_dict('toyota_highlander_2017_pt_generated', 'toyota_adas'), CAR.HIGHLANDER_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), CAR.HIGHLANDERH: dbc_dict('toyota_highlander_hybrid_2018_pt_generated', 'toyota_adas'), CAR.HIGHLANDERH_TSS2: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.AVALON: dbc_dict('toyota_avalon_2017_pt_generated', 'toyota_adas'), CAR.AVALON_2019: dbc_dict('toyota_nodsu_pt_generated', 'toyota_adas'), CAR.AVALONH_2019: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_adas'), CAR.RAV4_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), CAR.COROLLA_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), CAR.COROLLAH_TSS2: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.LEXUS_ES_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), CAR.LEXUS_ESH_TSS2: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.LEXUS_ESH: dbc_dict('lexus_ct200h_2018_pt_generated', 'toyota_adas'), CAR.SIENNA: dbc_dict('toyota_sienna_xle_2018_pt_generated', 'toyota_adas'), CAR.LEXUS_IS: dbc_dict('lexus_is_2018_pt_generated', 'toyota_adas'), CAR.LEXUS_CTH: dbc_dict('lexus_ct200h_2018_pt_generated', 'toyota_adas'), CAR.RAV4H_TSS2: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.LEXUS_NXH: dbc_dict('lexus_nx300h_2018_pt_generated', 'toyota_adas'), CAR.LEXUS_NX: dbc_dict('lexus_nx300_2018_pt_generated', 'toyota_adas'), CAR.LEXUS_NX_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), CAR.PRIUS_TSS2: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.MIRAI: dbc_dict('toyota_nodsu_hybrid_pt_generated', 'toyota_tss2_adas'), CAR.ALPHARD_TSS2: dbc_dict('toyota_nodsu_pt_generated', 'toyota_tss2_adas'), # dp CAR.LEXUS_ISH: dbc_dict('lexus_is300h_2017_pt_generated', 'toyota_adas'), CAR.PRIUS_ALPHA: dbc_dict('toyota_prius_alpha_2017_pt_generated', 'toyota_adas'), CAR.LEXUS_GSH: dbc_dict('lexus_is300h_2017_pt_generated', 'toyota_adas'), CAR.LEXUS_NXT: dbc_dict('lexus_nxt_2015_pt_generated', 'toyota_adas'), } # Toyota/Lexus Safety Sense 2.0 and 2.5 TSS2_CAR = set([CAR.RAV4_TSS2, CAR.COROLLA_TSS2, CAR.COROLLAH_TSS2, CAR.LEXUS_ES_TSS2, CAR.LEXUS_ESH_TSS2, CAR.RAV4H_TSS2, CAR.LEXUS_RX_TSS2, CAR.LEXUS_RXH_TSS2, CAR.HIGHLANDER_TSS2, CAR.HIGHLANDERH_TSS2, CAR.PRIUS_TSS2, CAR.CAMRY_TSS2, CAR.CAMRYH_TSS2, CAR.MIRAI, CAR.LEXUS_NX_TSS2, CAR.ALPHARD_TSS2]) NO_DSU_CAR = TSS2_CAR | set([CAR.CHR, CAR.CHRH, CAR.CAMRY, CAR.CAMRYH]) # no resume button press required NO_STOP_TIMER_CAR = TSS2_CAR | set([CAR.PRIUS_ALPHA, CAR.RAV4H, CAR.HIGHLANDERH, CAR.HIGHLANDER, CAR.SIENNA, CAR.LEXUS_ESH])
42.574836
247
0.651867
00f56b0beeb687cea45819acad656c9af1f1cef7
50,640
py
Python
pycorrector/transformers/file_utils.py
xinjianlv/pycorrector
697fc09032d129b2777cf686bb05663f2fc3c04f
[ "Apache-2.0" ]
null
null
null
pycorrector/transformers/file_utils.py
xinjianlv/pycorrector
697fc09032d129b2777cf686bb05663f2fc3c04f
[ "Apache-2.0" ]
null
null
null
pycorrector/transformers/file_utils.py
xinjianlv/pycorrector
697fc09032d129b2777cf686bb05663f2fc3c04f
[ "Apache-2.0" ]
null
null
null
# Copyright 2020 The HuggingFace Team, the AllenNLP library authors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """ Utilities for working with the local dataset cache. Parts of this file is adapted from the AllenNLP library at https://github.com/allenai/allennlp. """ import copy import fnmatch import io import json import os import re import shutil import sys import tarfile import tempfile from collections import OrderedDict from contextlib import contextmanager from dataclasses import fields from functools import partial, wraps from hashlib import sha256 from pathlib import Path from typing import Any, BinaryIO, Dict, Optional, Tuple, Union from urllib.parse import urlparse from zipfile import ZipFile, is_zipfile import numpy as np import requests from filelock import FileLock from tqdm.auto import tqdm from pycorrector.utils.logger import logger ENV_VARS_TRUE_VALUES = {"1", "ON", "YES"} ENV_VARS_TRUE_AND_AUTO_VALUES = ENV_VARS_TRUE_VALUES.union({"AUTO"}) import torch _torch_available = True # pylint: disable=invalid-name logger.info("PyTorch version {} available.".format(torch.__version__)) _tf_available = False try: USE_JAX = os.environ.get("USE_FLAX", "AUTO").upper() if USE_JAX in ENV_VARS_TRUE_AND_AUTO_VALUES: import flax import jax logger.info("JAX version {}, Flax: available".format(jax.__version__)) logger.info("Flax available: {}".format(flax)) _flax_available = True else: _flax_available = False except ImportError: _flax_available = False # pylint: disable=invalid-name try: import datasets # noqa: F401 # Check we're not importing a "datasets" directory somewhere _datasets_available = hasattr(datasets, "__version__") and hasattr(datasets, "load_dataset") if _datasets_available: logger.debug(f"Successfully imported datasets version {datasets.__version__}") else: logger.debug("Imported a datasets object but this doesn't seem to be the 🤗 datasets library.") except ImportError: _datasets_available = False try: from torch.hub import _get_torch_home torch_cache_home = _get_torch_home() except ImportError: torch_cache_home = os.path.expanduser( os.getenv("TORCH_HOME", os.path.join(os.getenv("XDG_CACHE_HOME", "~/.cache"), "torch")) ) try: import torch_xla.core.xla_model as xm # noqa: F401 if _torch_available: _torch_tpu_available = True # pylint: disable= else: _torch_tpu_available = False except ImportError: _torch_tpu_available = False try: import psutil # noqa: F401 _psutil_available = True except ImportError: _psutil_available = False try: import py3nvml # noqa: F401 _py3nvml_available = True except ImportError: _py3nvml_available = False try: from apex import amp # noqa: F401 _has_apex = True except ImportError: _has_apex = False try: import faiss # noqa: F401 _faiss_available = True logger.debug(f"Successfully imported faiss version {faiss.__version__}") except ImportError: _faiss_available = False try: import sklearn.metrics # noqa: F401 import scipy.stats # noqa: F401 _has_sklearn = True except (AttributeError, ImportError): _has_sklearn = False try: # Test copied from tqdm.autonotebook: https://github.com/tqdm/tqdm/blob/master/tqdm/autonotebook.py get_ipython = sys.modules["IPython"].get_ipython if "IPKernelApp" not in get_ipython().config: raise ImportError("console") if "VSCODE_PID" in os.environ: raise ImportError("vscode") import IPython # noqa: F401 _in_notebook = True except (AttributeError, ImportError, KeyError): _in_notebook = False try: import sentencepiece # noqa: F401 _sentencepiece_available = True except ImportError: _sentencepiece_available = False try: import google.protobuf # noqa: F401 _protobuf_available = True except ImportError: _protobuf_available = False try: import tokenizers # noqa: F401 _tokenizers_available = True except ImportError: _tokenizers_available = False try: import pandas # noqa: F401 _pandas_available = True except ImportError: _pandas_available = False try: import torch_scatter # Check we're not importing a "torch_scatter" directory somewhere _scatter_available = hasattr(torch_scatter, "__version__") and hasattr(torch_scatter, "scatter") if _scatter_available: logger.debug(f"Succesfully imported torch-scatter version {torch_scatter.__version__}") else: logger.debug("Imported a torch_scatter object but this doesn't seem to be the torch-scatter library.") except ImportError: _scatter_available = False old_default_cache_path = os.path.join(torch_cache_home, "transformers") # New default cache, shared with the Datasets library hf_cache_home = os.path.expanduser( os.getenv("HF_HOME", os.path.join(os.getenv("XDG_CACHE_HOME", "~/.cache"), "huggingface")) ) default_cache_path = os.path.join(hf_cache_home, "transformers") # Onetime move from the old location to the new one if no ENV variable has been set. if ( os.path.isdir(old_default_cache_path) and not os.path.isdir(default_cache_path) and "PYTORCH_PRETRAINED_BERT_CACHE" not in os.environ and "PYTORCH_TRANSFORMERS_CACHE" not in os.environ and "TRANSFORMERS_CACHE" not in os.environ ): logger.warn( "In Transformers v4.0.0, the default path to cache downloaded model_files changed from " "'~/.cache/torch/transformers' to '~/.cache/huggingface/transformers'. Since you don't seem to have overridden " "and '~/.cache/torch/transformers' is a directory that exists, we're moving it to " "'~/.cache/huggingface/transformers' to avoid redownloading model_files you have already in the cache. You should " "only see this message once." ) shutil.move(old_default_cache_path, default_cache_path) PYTORCH_PRETRAINED_BERT_CACHE = os.getenv("PYTORCH_PRETRAINED_BERT_CACHE", default_cache_path) PYTORCH_TRANSFORMERS_CACHE = os.getenv("PYTORCH_TRANSFORMERS_CACHE", PYTORCH_PRETRAINED_BERT_CACHE) TRANSFORMERS_CACHE = os.getenv("TRANSFORMERS_CACHE", PYTORCH_TRANSFORMERS_CACHE) WEIGHTS_NAME = "pytorch_model.bin" TF2_WEIGHTS_NAME = "tf_model.h5" TF_WEIGHTS_NAME = "model.ckpt" FLAX_WEIGHTS_NAME = "flax_model.msgpack" CONFIG_NAME = "config.json" MODEL_CARD_NAME = "modelcard.json" SENTENCEPIECE_UNDERLINE = "▁" SPIECE_UNDERLINE = SENTENCEPIECE_UNDERLINE # Kept for backward compatibility MULTIPLE_CHOICE_DUMMY_INPUTS = [ [[0, 1, 0, 1], [1, 0, 0, 1]] ] * 2 # Needs to have 0s and 1s only since XLM uses it for langs too. DUMMY_INPUTS = [[7, 6, 0, 0, 1], [1, 2, 3, 0, 0], [0, 0, 0, 4, 5]] DUMMY_MASK = [[1, 1, 1, 1, 1], [1, 1, 1, 0, 0], [0, 0, 0, 1, 1]] S3_BUCKET_PREFIX = "https://s3.amazonaws.com/model_files.huggingface.co/bert" CLOUDFRONT_DISTRIB_PREFIX = "https://cdn.huggingface.co" HUGGINGFACE_CO_PREFIX = "https://huggingface.co/{model_id}/resolve/{revision}/{filename}" PRESET_MIRROR_DICT = { "tuna": "https://mirrors.tuna.tsinghua.edu.cn/hugging-face-model_files", "bfsu": "https://mirrors.bfsu.edu.cn/hugging-face-model_files", } def is_torch_available(): return _torch_available def is_tf_available(): return _tf_available def is_flax_available(): return _flax_available def is_torch_tpu_available(): return _torch_tpu_available def is_datasets_available(): return _datasets_available def is_psutil_available(): return _psutil_available def is_py3nvml_available(): return _py3nvml_available def is_apex_available(): return _has_apex def is_faiss_available(): return _faiss_available def is_sklearn_available(): return _has_sklearn def is_sentencepiece_available(): return _sentencepiece_available def is_protobuf_available(): return _protobuf_available def is_tokenizers_available(): return _tokenizers_available def is_in_notebook(): return _in_notebook def is_scatter_available(): return _scatter_available def is_pandas_available(): return _pandas_available def torch_only_method(fn): def wrapper(*args, **kwargs): if not _torch_available: raise ImportError( "You need to install pytorch to use this method or class, " "or activate it with environment variables USE_TORCH=1 and USE_TF=0." ) else: return fn(*args, **kwargs) return wrapper # docstyle-ignore DATASETS_IMPORT_ERROR = """ {0} requires the 🤗 Datasets library but it was not found in your environment. You can install it with: ``` pip install datasets ``` In a notebook or a colab, you can install it by executing a cell with ``` !pip install datasets ``` then restarting your kernel. Note that if you have a local folder named `datasets` or a local python file named `datasets.py` in your current working directory, python may try to import this instead of the 🤗 Datasets library. You should rename this folder or that python file if that's the case. """ # docstyle-ignore TOKENIZERS_IMPORT_ERROR = """ {0} requires the 🤗 Tokenizers library but it was not found in your environment. You can install it with: ``` pip install tokenizers ``` In a notebook or a colab, you can install it by executing a cell with ``` !pip install tokenizers ``` """ # docstyle-ignore SENTENCEPIECE_IMPORT_ERROR = """ {0} requires the SentencePiece library but it was not found in your environment. Checkout the instructions on the installation page of its repo: https://github.com/google/sentencepiece#installation and follow the ones that match your environment. """ # docstyle-ignore PROTOBUF_IMPORT_ERROR = """ {0} requires the protobuf library but it was not found in your environment. Checkout the instructions on the installation page of its repo: https://github.com/protocolbuffers/protobuf/tree/master/python#installation and follow the ones that match your environment. """ # docstyle-ignore FAISS_IMPORT_ERROR = """ {0} requires the faiss library but it was not found in your environment. Checkout the instructions on the installation page of its repo: https://github.com/facebookresearch/faiss/blob/master/INSTALL.md and follow the ones that match your environment. """ # docstyle-ignore PYTORCH_IMPORT_ERROR = """ {0} requires the PyTorch library but it was not found in your environment. Checkout the instructions on the installation page: https://pytorch.org/get-started/locally/ and follow the ones that match your environment. """ # docstyle-ignore SKLEARN_IMPORT_ERROR = """ {0} requires the scikit-learn library but it was not found in your environment. You can install it with: ``` pip install -U scikit-learn ``` In a notebook or a colab, you can install it by executing a cell with ``` !pip install -U scikit-learn ``` """ # docstyle-ignore TENSORFLOW_IMPORT_ERROR = """ {0} requires the TensorFlow library but it was not found in your environment. Checkout the instructions on the installation page: https://www.tensorflow.org/install and follow the ones that match your environment. """ # docstyle-ignore FLAX_IMPORT_ERROR = """ {0} requires the FLAX library but it was not found in your environment. Checkout the instructions on the installation page: https://github.com/google/flax and follow the ones that match your environment. """ # docstyle-ignore SCATTER_IMPORT_ERROR = """ {0} requires the torch-scatter library but it was not found in your environment. You can install it with pip as explained here: https://github.com/rusty1s/pytorch_scatter. """ # docstyle-ignore PANDAS_IMPORT_ERROR = """ {0} requires the pandas library but it was not found in your environment. You can install it with pip as explained here: https://pandas.pydata.org/pandas-docs/stable/getting_started/install.html. """ def requires_datasets(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_datasets_available(): raise ImportError(DATASETS_IMPORT_ERROR.format(name)) def requires_faiss(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_faiss_available(): raise ImportError(FAISS_IMPORT_ERROR.format(name)) def requires_pytorch(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_torch_available(): raise ImportError(PYTORCH_IMPORT_ERROR.format(name)) def requires_sklearn(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_sklearn_available(): raise ImportError(SKLEARN_IMPORT_ERROR.format(name)) def requires_tf(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_tf_available(): raise ImportError(TENSORFLOW_IMPORT_ERROR.format(name)) def requires_flax(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_flax_available(): raise ImportError(FLAX_IMPORT_ERROR.format(name)) def requires_tokenizers(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_tokenizers_available(): raise ImportError(TOKENIZERS_IMPORT_ERROR.format(name)) def requires_sentencepiece(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_sentencepiece_available(): raise ImportError(SENTENCEPIECE_IMPORT_ERROR.format(name)) def requires_protobuf(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_protobuf_available(): raise ImportError(PROTOBUF_IMPORT_ERROR.format(name)) def requires_pandas(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_pandas_available(): raise ImportError(PANDAS_IMPORT_ERROR.format(name)) def requires_scatter(obj): name = obj.__name__ if hasattr(obj, "__name__") else obj.__class__.__name__ if not is_scatter_available(): raise ImportError(SCATTER_IMPORT_ERROR.format(name)) def add_start_docstrings(*docstr): def docstring_decorator(fn): fn.__doc__ = "".join(docstr) + (fn.__doc__ if fn.__doc__ is not None else "") return fn return docstring_decorator def add_start_docstrings_to_model_forward(*docstr): def docstring_decorator(fn): class_name = ":class:`~transformers.{}`".format(fn.__qualname__.split(".")[0]) intro = " The {} forward method, overrides the :func:`__call__` special method.".format(class_name) note = r""" .. note:: Although the recipe for forward pass needs to be defined within this function, one should call the :class:`Module` instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them. """ fn.__doc__ = intro + note + "".join(docstr) + (fn.__doc__ if fn.__doc__ is not None else "") return fn return docstring_decorator def add_end_docstrings(*docstr): def docstring_decorator(fn): fn.__doc__ = fn.__doc__ + "".join(docstr) return fn return docstring_decorator PT_RETURN_INTRODUCTION = r""" Returns: :class:`~{full_output_type}` or :obj:`tuple(torch.FloatTensor)`: A :class:`~{full_output_type}` (if ``return_dict=True`` is passed or when ``config.return_dict=True``) or a tuple of :obj:`torch.FloatTensor` comprising various elements depending on the configuration (:class:`~transformers.{config_class}`) and inputs. """ TF_RETURN_INTRODUCTION = r""" Returns: :class:`~{full_output_type}` or :obj:`tuple(tf.Tensor)`: A :class:`~{full_output_type}` (if ``return_dict=True`` is passed or when ``config.return_dict=True``) or a tuple of :obj:`tf.Tensor` comprising various elements depending on the configuration (:class:`~transformers.{config_class}`) and inputs. """ def _get_indent(t): """Returns the indentation in the first line of t""" search = re.search(r"^(\s*)\S", t) return "" if search is None else search.groups()[0] def _convert_output_args_doc(output_args_doc): """Convert output_args_doc to display properly.""" # Split output_arg_doc in blocks argument/description indent = _get_indent(output_args_doc) blocks = [] current_block = "" for line in output_args_doc.split("\n"): # If the indent is the same as the beginning, the line is the name of new arg. if _get_indent(line) == indent: if len(current_block) > 0: blocks.append(current_block[:-1]) current_block = f"{line}\n" else: # Otherwise it's part of the description of the current arg. # We need to remove 2 spaces to the indentation. current_block += f"{line[2:]}\n" blocks.append(current_block[:-1]) # Format each block for proper rendering for i in range(len(blocks)): blocks[i] = re.sub(r"^(\s+)(\S+)(\s+)", r"\1- **\2**\3", blocks[i]) blocks[i] = re.sub(r":\s*\n\s*(\S)", r" -- \1", blocks[i]) return "\n".join(blocks) def _prepare_output_docstrings(output_type, config_class): """ Prepares the return part of the docstring using `output_type`. """ docstrings = output_type.__doc__ # Remove the head of the docstring to keep the list of args only lines = docstrings.split("\n") i = 0 while i < len(lines) and re.search(r"^\s*(Args|Parameters):\s*$", lines[i]) is None: i += 1 if i < len(lines): docstrings = "\n".join(lines[(i + 1):]) docstrings = _convert_output_args_doc(docstrings) # Add the return introduction full_output_type = f"{output_type.__module__}.{output_type.__name__}" intro = TF_RETURN_INTRODUCTION if output_type.__name__.startswith("TF") else PT_RETURN_INTRODUCTION intro = intro.format(full_output_type=full_output_type, config_class=config_class) return intro + docstrings PT_TOKEN_CLASSIFICATION_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import torch >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="pt") >>> labels = torch.tensor([1] * inputs["input_ids"].size(1)).unsqueeze(0) # Batch size 1 >>> outputs = model(**inputs, labels=labels) >>> loss = outputs.loss >>> logits = outputs.logits """ PT_QUESTION_ANSWERING_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import torch >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> question, text = "Who was Jim Henson?", "Jim Henson was a nice puppet" >>> inputs = tokenizer(question, text, return_tensors='pt') >>> start_positions = torch.tensor([1]) >>> end_positions = torch.tensor([3]) >>> outputs = model(**inputs, start_positions=start_positions, end_positions=end_positions) >>> loss = outputs.loss >>> start_scores = outputs.start_logits >>> end_scores = outputs.end_logits """ PT_SEQUENCE_CLASSIFICATION_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import torch >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="pt") >>> labels = torch.tensor([1]).unsqueeze(0) # Batch size 1 >>> outputs = model(**inputs, labels=labels) >>> loss = outputs.loss >>> logits = outputs.logits """ PT_MASKED_LM_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import torch >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("The capital of France is {mask}.", return_tensors="pt") >>> labels = tokenizer("The capital of France is Paris.", return_tensors="pt")["input_ids"] >>> outputs = model(**inputs, labels=labels) >>> loss = outputs.loss >>> logits = outputs.logits """ PT_BASE_MODEL_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import torch >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="pt") >>> outputs = model(**inputs) >>> last_hidden_states = outputs.last_hidden_state """ PT_MULTIPLE_CHOICE_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import torch >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> prompt = "In Italy, pizza served in formal settings, such as at a restaurant, is presented unsliced." >>> choice0 = "It is eaten with a fork and a knife." >>> choice1 = "It is eaten while held in the hand." >>> labels = torch.tensor(0).unsqueeze(0) # choice0 is correct (according to Wikipedia ;)), batch size 1 >>> encoding = tokenizer([[prompt, prompt], [choice0, choice1]], return_tensors='pt', padding=True) >>> outputs = model(**{{k: v.unsqueeze(0) for k,v in encoding.items()}}, labels=labels) # batch size is 1 >>> # the linear classifier still needs to be trained >>> loss = outputs.loss >>> logits = outputs.logits """ PT_CAUSAL_LM_SAMPLE = r""" Example:: >>> import torch >>> from transformers import {tokenizer_class}, {model_class} >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="pt") >>> outputs = model(**inputs, labels=inputs["input_ids"]) >>> loss = outputs.loss >>> logits = outputs.logits """ TF_TOKEN_CLASSIFICATION_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import tensorflow as tf >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="tf") >>> input_ids = inputs["input_ids"] >>> inputs["labels"] = tf.reshape(tf.constant([1] * tf.size(input_ids).numpy()), (-1, tf.size(input_ids))) # Batch size 1 >>> outputs = model(inputs) >>> loss = outputs.loss >>> logits = outputs.logits """ TF_QUESTION_ANSWERING_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import tensorflow as tf >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> question, text = "Who was Jim Henson?", "Jim Henson was a nice puppet" >>> input_dict = tokenizer(question, text, return_tensors='tf') >>> outputs = model(input_dict) >>> start_logits = outputs.start_logits >>> end_logits = outputs.end_logits >>> all_tokens = tokenizer.convert_ids_to_tokens(input_dict["input_ids"].numpy()[0]) >>> answer = ' '.join(all_tokens[tf.math.argmax(start_logits, 1)[0] : tf.math.argmax(end_logits, 1)[0]+1]) """ TF_SEQUENCE_CLASSIFICATION_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import tensorflow as tf >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="tf") >>> inputs["labels"] = tf.reshape(tf.constant(1), (-1, 1)) # Batch size 1 >>> outputs = model(inputs) >>> loss = outputs.loss >>> logits = outputs.logits """ TF_MASKED_LM_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import tensorflow as tf >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("The capital of France is {mask}.", return_tensors="tf") >>> inputs["labels"] = tokenizer("The capital of France is Paris.", return_tensors="tf")["input_ids"] >>> outputs = model(inputs) >>> loss = outputs.loss >>> logits = outputs.logits """ TF_BASE_MODEL_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import tensorflow as tf >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="tf") >>> outputs = model(inputs) >>> last_hidden_states = outputs.last_hidden_states """ TF_MULTIPLE_CHOICE_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import tensorflow as tf >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> prompt = "In Italy, pizza served in formal settings, such as at a restaurant, is presented unsliced." >>> choice0 = "It is eaten with a fork and a knife." >>> choice1 = "It is eaten while held in the hand." >>> encoding = tokenizer([[prompt, prompt], [choice0, choice1]], return_tensors='tf', padding=True) >>> inputs = {{k: tf.expand_dims(v, 0) for k, v in encoding.items()}} >>> outputs = model(inputs) # batch size is 1 >>> # the linear classifier still needs to be trained >>> logits = outputs.logits """ TF_CAUSAL_LM_SAMPLE = r""" Example:: >>> from transformers import {tokenizer_class}, {model_class} >>> import tensorflow as tf >>> tokenizer = {tokenizer_class}.from_pretrained('{checkpoint}') >>> model = {model_class}.from_pretrained('{checkpoint}') >>> inputs = tokenizer("Hello, my dog is cute", return_tensors="tf") >>> outputs = model(inputs) >>> logits = outputs.logits """ def add_code_sample_docstrings( *docstr, tokenizer_class=None, checkpoint=None, output_type=None, config_class=None, mask=None ): def docstring_decorator(fn): model_class = fn.__qualname__.split(".")[0] is_tf_class = model_class[:2] == "TF" doc_kwargs = dict(model_class=model_class, tokenizer_class=tokenizer_class, checkpoint=checkpoint) if "SequenceClassification" in model_class: code_sample = TF_SEQUENCE_CLASSIFICATION_SAMPLE if is_tf_class else PT_SEQUENCE_CLASSIFICATION_SAMPLE elif "QuestionAnswering" in model_class: code_sample = TF_QUESTION_ANSWERING_SAMPLE if is_tf_class else PT_QUESTION_ANSWERING_SAMPLE elif "TokenClassification" in model_class: code_sample = TF_TOKEN_CLASSIFICATION_SAMPLE if is_tf_class else PT_TOKEN_CLASSIFICATION_SAMPLE elif "MultipleChoice" in model_class: code_sample = TF_MULTIPLE_CHOICE_SAMPLE if is_tf_class else PT_MULTIPLE_CHOICE_SAMPLE elif "MaskedLM" in model_class or model_class in ["FlaubertWithLMHeadModel", "XLMWithLMHeadModel"]: doc_kwargs["mask"] = "[MASK]" if mask is None else mask code_sample = TF_MASKED_LM_SAMPLE if is_tf_class else PT_MASKED_LM_SAMPLE elif "LMHead" in model_class or "CausalLM" in model_class: code_sample = TF_CAUSAL_LM_SAMPLE if is_tf_class else PT_CAUSAL_LM_SAMPLE elif "Model" in model_class or "Encoder" in model_class: code_sample = TF_BASE_MODEL_SAMPLE if is_tf_class else PT_BASE_MODEL_SAMPLE else: raise ValueError(f"Docstring can't be built for model {model_class}") output_doc = _prepare_output_docstrings(output_type, config_class) if output_type is not None else "" built_doc = code_sample.format(**doc_kwargs) fn.__doc__ = (fn.__doc__ or "") + "".join(docstr) + output_doc + built_doc return fn return docstring_decorator def replace_return_docstrings(output_type=None, config_class=None): def docstring_decorator(fn): docstrings = fn.__doc__ lines = docstrings.split("\n") i = 0 while i < len(lines) and re.search(r"^\s*Returns?:\s*$", lines[i]) is None: i += 1 if i < len(lines): lines[i] = _prepare_output_docstrings(output_type, config_class) docstrings = "\n".join(lines) else: raise ValueError( f"The function {fn} should have an empty 'Return:' or 'Returns:' in its docstring as placeholder, current docstring is:\n{docstrings}" ) fn.__doc__ = docstrings return fn return docstring_decorator def is_remote_url(url_or_filename): parsed = urlparse(url_or_filename) return parsed.scheme in ("http", "https") def hf_bucket_url( model_id: str, filename: str, subfolder: Optional[str] = None, revision: Optional[str] = None, mirror=None ) -> str: """ Resolve a model identifier, a file name, and an optional revision id, to a huggingface.co-hosted url, redirecting to Cloudfront (a Content Delivery Network, or CDN) for large files. Cloudfront is replicated over the globe so downloads are way faster for the end user (and it also lowers our bandwidth costs). Cloudfront aggressively caches files by default (default TTL is 24 hours), however this is not an issue here because we migrated to a git-based versioning system on huggingface.co, so we now store the files on S3/Cloudfront in a content-addressable way (i.e., the file name is its hash). Using content-addressable filenames means cache can't ever be stale. In terms of client-side caching from this library, we base our caching on the objects' ETag. An object' ETag is: its sha1 if stored in git, or its sha256 if stored in git-lfs. Files cached locally from transformers before v3.5.0 are not shared with those new files, because the cached file's name contains a hash of the url (which changed). """ if subfolder is not None: filename = f"{subfolder}/{filename}" if mirror: endpoint = PRESET_MIRROR_DICT.get(mirror, mirror) legacy_format = "/" not in model_id if legacy_format: return f"{endpoint}/{model_id}-{filename}" else: return f"{endpoint}/{model_id}/{filename}" if revision is None: revision = "main" return HUGGINGFACE_CO_PREFIX.format(model_id=model_id, revision=revision, filename=filename) def url_to_filename(url: str, etag: Optional[str] = None) -> str: """ Convert `url` into a hashed filename in a repeatable way. If `etag` is specified, append its hash to the url's, delimited by a period. If the url ends with .h5 (Keras HDF5 weights) adds '.h5' to the name so that TF 2.0 can identify it as a HDF5 file (see https://github.com/tensorflow/tensorflow/blob/00fad90125b18b80fe054de1055770cfb8fe4ba3/tensorflow/python/keras/engine/network.py#L1380) """ url_bytes = url.encode("utf-8") filename = sha256(url_bytes).hexdigest() if etag: etag_bytes = etag.encode("utf-8") filename += "." + sha256(etag_bytes).hexdigest() if url.endswith(".h5"): filename += ".h5" return filename def filename_to_url(filename, cache_dir=None): """ Return the url and etag (which may be ``None``) stored for `filename`. Raise ``EnvironmentError`` if `filename` or its stored metadata do not exist. """ if cache_dir is None: cache_dir = TRANSFORMERS_CACHE if isinstance(cache_dir, Path): cache_dir = str(cache_dir) cache_path = os.path.join(cache_dir, filename) if not os.path.exists(cache_path): raise EnvironmentError("file {} not found".format(cache_path)) meta_path = cache_path + ".json" if not os.path.exists(meta_path): raise EnvironmentError("file {} not found".format(meta_path)) with open(meta_path, encoding="utf-8") as meta_file: metadata = json.load(meta_file) url = metadata["url"] etag = metadata["etag"] return url, etag def cached_path( url_or_filename, cache_dir=None, force_download=False, proxies=None, resume_download=False, user_agent: Union[Dict, str, None] = None, extract_compressed_file=False, force_extract=False, use_auth_token: Union[bool, str, None] = None, local_files_only=False, ) -> Optional[str]: """ Given something that might be a URL (or might be a local path), determine which. If it's a URL, download the file and cache it, and return the path to the cached file. If it's already a local path, make sure the file exists and then return the path Args: cache_dir: specify a cache directory to save the file to (overwrite the default cache dir). force_download: if True, re-download the file even if it's already cached in the cache dir. resume_download: if True, resume the download if incompletely received file is found. user_agent: Optional string or dict that will be appended to the user-agent on remote requests. use_auth_token: Optional string or boolean to use as Bearer token for remote files. If True, will get token from ~/.huggingface. extract_compressed_file: if True and the path point to a zip or tar file, extract the compressed file in a folder along the archive. force_extract: if True when extract_compressed_file is True and the archive was already extracted, re-extract the archive and override the folder where it was extracted. Return: Local path (string) of file or if networking is off, last version of file cached on disk. Raises: In case of non-recoverable file (non-existent or inaccessible url + no cache on disk). """ if cache_dir is None: cache_dir = TRANSFORMERS_CACHE if isinstance(url_or_filename, Path): url_or_filename = str(url_or_filename) if isinstance(cache_dir, Path): cache_dir = str(cache_dir) if is_remote_url(url_or_filename): # URL, so get it from the cache (downloading if necessary) output_path = get_from_cache( url_or_filename, cache_dir=cache_dir, force_download=force_download, proxies=proxies, resume_download=resume_download, user_agent=user_agent, use_auth_token=use_auth_token, local_files_only=local_files_only, ) elif os.path.exists(url_or_filename): # File, and it exists. output_path = url_or_filename elif urlparse(url_or_filename).scheme == "": # File, but it doesn't exist. raise EnvironmentError("file {} not found".format(url_or_filename)) else: # Something unknown raise ValueError("unable to parse {} as a URL or as a local path".format(url_or_filename)) if extract_compressed_file: if not is_zipfile(output_path) and not tarfile.is_tarfile(output_path): return output_path # Path where we extract compressed archives # We avoid '.' in dir name and add "-extracted" at the end: "./model.zip" => "./model-zip-extracted/" output_dir, output_file = os.path.split(output_path) output_extract_dir_name = output_file.replace(".", "-") + "-extracted" output_path_extracted = os.path.join(output_dir, output_extract_dir_name) if os.path.isdir(output_path_extracted) and os.listdir(output_path_extracted) and not force_extract: return output_path_extracted # Prevent parallel extractions lock_path = output_path + ".lock" with FileLock(lock_path): shutil.rmtree(output_path_extracted, ignore_errors=True) os.makedirs(output_path_extracted) if is_zipfile(output_path): with ZipFile(output_path, "r") as zip_file: zip_file.extractall(output_path_extracted) zip_file.close() elif tarfile.is_tarfile(output_path): tar_file = tarfile.open(output_path) tar_file.extractall(output_path_extracted) tar_file.close() else: raise EnvironmentError("Archive format of {} could not be identified".format(output_path)) return output_path_extracted return output_path def http_user_agent(user_agent: Union[Dict, str, None] = None) -> str: """ Formats a user-agent string with basic info about a request. """ ua = "python/{}".format(sys.version.split()[0]) if is_torch_available(): ua += "; torch/{}".format(torch.__version__) if is_tf_available(): import tensorflow as tf ua += "; tensorflow/{}".format(tf.__version__) if isinstance(user_agent, dict): ua += "; " + "; ".join("{}/{}".format(k, v) for k, v in user_agent.items()) elif isinstance(user_agent, str): ua += "; " + user_agent return ua def http_get(url: str, temp_file: BinaryIO, proxies=None, resume_size=0, headers: Optional[Dict[str, str]] = None): """ Donwload remote file. Do not gobble up errors. """ headers = copy.deepcopy(headers) if resume_size > 0: headers["Range"] = "bytes=%d-" % (resume_size,) r = requests.get(url, stream=True, proxies=proxies, headers=headers) r.raise_for_status() content_length = r.headers.get("Content-Length") total = resume_size + int(content_length) if content_length is not None else None progress = tqdm( unit="B", unit_scale=True, total=total, initial=resume_size, desc="Downloading", ) for chunk in r.iter_content(chunk_size=1024): if chunk: # filter out keep-alive new chunks progress.update(len(chunk)) temp_file.write(chunk) progress.close() def get_from_cache( url: str, cache_dir=None, force_download=False, proxies=None, etag_timeout=10, resume_download=False, user_agent: Union[Dict, str, None] = None, use_auth_token: Union[bool, str, None] = None, local_files_only=False, ) -> Optional[str]: """ Given a URL, look for the corresponding file in the local cache. If it's not there, download it. Then return the path to the cached file. Return: Local path (string) of file or if networking is off, last version of file cached on disk. Raises: In case of non-recoverable file (non-existent or inaccessible url + no cache on disk). """ if cache_dir is None: cache_dir = TRANSFORMERS_CACHE if isinstance(cache_dir, Path): cache_dir = str(cache_dir) os.makedirs(cache_dir, exist_ok=True) headers = {"user-agent": http_user_agent(user_agent)} if isinstance(use_auth_token, str): headers["authorization"] = "Bearer {}".format(use_auth_token) url_to_download = url etag = None if not local_files_only: try: r = requests.head(url, headers=headers, allow_redirects=False, proxies=proxies, timeout=etag_timeout) r.raise_for_status() etag = r.headers.get("X-Linked-Etag") or r.headers.get("ETag") # We favor a custom header indicating the etag of the linked resource, and # we fallback to the regular etag header. # If we don't have any of those, raise an error. if etag is None: raise OSError( "Distant resource does not have an ETag, we won't be able to reliably ensure reproducibility." ) # In case of a redirect, # save an extra redirect on the request.get call, # and ensure we download the exact atomic version even if it changed # between the HEAD and the GET (unlikely, but hey). if 300 <= r.status_code <= 399: url_to_download = r.headers["Location"] except (requests.exceptions.ConnectionError, requests.exceptions.Timeout): # etag is already None pass filename = url_to_filename(url, etag) # get cache path to put the file cache_path = os.path.join(cache_dir, filename) # etag is None == we don't have a connection or we passed local_files_only. # try to get the last downloaded one if etag is None: if os.path.exists(cache_path): return cache_path else: matching_files = [ file for file in fnmatch.filter(os.listdir(cache_dir), filename.split(".")[0] + ".*") if not file.endswith(".json") and not file.endswith(".lock") ] if len(matching_files) > 0: return os.path.join(cache_dir, matching_files[-1]) else: # If files cannot be found and local_files_only=True, # the model_files might've been found if local_files_only=False # Notify the user about that if local_files_only: raise ValueError( "Cannot find the requested files in the cached path and outgoing traffic has been" " disabled. To enable model look-ups and downloads online, set 'local_files_only'" " to False." ) else: raise ValueError( "Connection error, and we cannot find the requested files in the cached path." " Please try again or make sure your Internet connection is on." ) # From now on, etag is not None. if os.path.exists(cache_path) and not force_download: return cache_path # Prevent parallel downloads of the same file with a lock. lock_path = cache_path + ".lock" with FileLock(lock_path): # If the download just completed while the lock was activated. if os.path.exists(cache_path) and not force_download: # Even if returning early like here, the lock will be released. return cache_path if resume_download: incomplete_path = cache_path + ".incomplete" @contextmanager def _resumable_file_manager() -> "io.BufferedWriter": with open(incomplete_path, "ab") as f: yield f temp_file_manager = _resumable_file_manager if os.path.exists(incomplete_path): resume_size = os.stat(incomplete_path).st_size else: resume_size = 0 else: temp_file_manager = partial(tempfile.NamedTemporaryFile, mode="wb", dir=cache_dir, delete=False) resume_size = 0 # Download to temporary file, then copy to cache dir once finished. # Otherwise you get corrupt cache entries if the download gets interrupted. with temp_file_manager() as temp_file: logger.info("%s not found in cache or force_download set to True, downloading to %s", url, temp_file.name) http_get(url_to_download, temp_file, proxies=proxies, resume_size=resume_size, headers=headers) logger.info("storing %s in cache at %s", url, cache_path) os.replace(temp_file.name, cache_path) logger.info("creating metadata file for %s", cache_path) meta = {"url": url, "etag": etag} meta_path = cache_path + ".json" with open(meta_path, "w") as meta_file: json.dump(meta, meta_file) return cache_path class cached_property(property): """ Descriptor that mimics @property but caches output in member variable. From tensorflow_datasets Built-in in functools from Python 3.8. """ def __get__(self, obj, objtype=None): # See docs.python.org/3/howto/descriptor.html#properties if obj is None: return self if self.fget is None: raise AttributeError("unreadable attribute") attr = "__cached_" + self.fget.__name__ cached = getattr(obj, attr, None) if cached is None: cached = self.fget(obj) setattr(obj, attr, cached) return cached def torch_required(func): # Chose a different decorator name than in tests so it's clear they are not the same. @wraps(func) def wrapper(*args, **kwargs): if is_torch_available(): return func(*args, **kwargs) else: raise ImportError(f"Method `{func.__name__}` requires PyTorch.") return wrapper def tf_required(func): # Chose a different decorator name than in tests so it's clear they are not the same. @wraps(func) def wrapper(*args, **kwargs): if is_tf_available(): return func(*args, **kwargs) else: raise ImportError(f"Method `{func.__name__}` requires TF.") return wrapper def is_tensor(x): """ Tests if ``x`` is a :obj:`torch.Tensor`, :obj:`tf.Tensor` or :obj:`np.ndarray`. """ if is_torch_available(): import torch if isinstance(x, torch.Tensor): return True if is_tf_available(): import tensorflow as tf if isinstance(x, tf.Tensor): return True return isinstance(x, np.ndarray) class ModelOutput(OrderedDict): """ Base class for all model outputs as dataclass. Has a ``__getitem__`` that allows indexing by integer or slice (like a tuple) or strings (like a dictionary) that will ignore the ``None`` attributes. Otherwise behaves like a regular python dictionary. .. warning:: You can't unpack a :obj:`ModelOutput` directly. Use the :meth:`~transformers.file_utils.ModelOutput.to_tuple` method to convert it to a tuple before. """ def __post_init__(self): class_fields = fields(self) # Safety and consistency checks assert len(class_fields), f"{self.__class__.__name__} has no fields." assert all( field.default is None for field in class_fields[1:] ), f"{self.__class__.__name__} should not have more than one required field." first_field = getattr(self, class_fields[0].name) other_fields_are_none = all(getattr(self, field.name) is None for field in class_fields[1:]) if other_fields_are_none and not is_tensor(first_field): try: iterator = iter(first_field) first_field_iterator = True except TypeError: first_field_iterator = False # if we provided an iterator as first field and the iterator is a (key, value) iterator # set the associated fields if first_field_iterator: for element in iterator: if ( not isinstance(element, (list, tuple)) or not len(element) == 2 or not isinstance(element[0], str) ): break setattr(self, element[0], element[1]) if element[1] is not None: self[element[0]] = element[1] elif first_field is not None: self[class_fields[0].name] = first_field else: for field in class_fields: v = getattr(self, field.name) if v is not None: self[field.name] = v def __delitem__(self, *args, **kwargs): raise Exception(f"You cannot use ``__delitem__`` on a {self.__class__.__name__} instance.") def setdefault(self, *args, **kwargs): raise Exception(f"You cannot use ``setdefault`` on a {self.__class__.__name__} instance.") def pop(self, *args, **kwargs): raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") def update(self, *args, **kwargs): raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") def __getitem__(self, k): if isinstance(k, str): inner_dict = {k: v for (k, v) in self.items()} return inner_dict[k] else: return self.to_tuple()[k] def __setattr__(self, name, value): if name in self.keys() and value is not None: # Don't call self.__setitem__ to avoid recursion errors super().__setitem__(name, value) super().__setattr__(name, value) def __setitem__(self, key, value): # Will raise a KeyException if needed super().__setitem__(key, value) # Don't call self.__setattr__ to avoid recursion errors super().__setattr__(key, value) def to_tuple(self) -> Tuple[Any]: """ Convert self to a tuple containing all the attributes/keys that are not ``None``. """ return tuple(self[k] for k in self.keys())
36.01707
150
0.66329
50dbbb6d9f849bc73f254c38b6fe8ca6e37c0e81
1,595
py
Python
pypayd/config.py
pik/pypayd
f64ef7ff90cda8f5da8844a2520aa604fbd6a9ff
[ "MIT" ]
4
2015-03-02T04:01:51.000Z
2020-01-12T04:06:34.000Z
pypayd/config.py
pik/pypayd
f64ef7ff90cda8f5da8844a2520aa604fbd6a9ff
[ "MIT" ]
12
2015-03-02T06:07:17.000Z
2016-01-19T00:43:11.000Z
pypayd/config.py
pik/pypayd
f64ef7ff90cda8f5da8844a2520aa604fbd6a9ff
[ "MIT" ]
4
2015-04-30T01:49:09.000Z
2019-06-14T11:25:50.000Z
#Defaults - overridable via. pypayd.conf or command-line arguments DEFAULT_KEYPATH = '0/0/1' DEFAULT_TICKER = 'dummy' DEFAULT_CURRENCY = 'USD' DEFAULT_WALLET_FILE = 'wallet.txt' DEFAULT_WALLET_PASSWORD = "foobar" DEFAULT_MNEMONIC_TYPE = "electrumseed" DB = None DEFAULT_DB = "pypayd.db" DEFAULT_TESTNET_DB = "pypayd_testnet.db" #Pypay server settings RPC_HOST ='127.0.0.1' RPC_PORT = 3080 VERSION = 0.1 AUTH_REQUIRED = True #Blockchain TESTNET = False BLOCKCHAIN_CONNECT = 'http://localhost:3001' #'https://test-insight.bitpay.com' #None LOCAL_BLOCKCHAIN = False BLOCKCHAIN_SERVICE = 'insight' #generate a new address for every order if gen_new == True GEN_NEW = False #delay between requests to the blockchain service for new transactions POLLING_DELAY = 30 #maximum time a leaf (address) is used to process orders before a new one is generated MAX_LEAF_LIFE = 604800 #maximum number of transactions per address before a new one is generated MAX_LEAF_TX = 9999 #maximum amount of time an order received for generated amount will be considered valid ORDER_LIFE = 86400 #time from last order creation, after which an adress is considered stale and no longer polled LEAF_POLL_LIFE = ORDER_LIFE*2 #log file settings LOG = None MAX_LOG_SIZE = 16*1024*1024 UPDATE_ON_CONFIRM = 6 #can also take a list, such as [6, 20, 100] DATA_DIR = "" DB = None KEYPATH = None LAST_USED_KEYPATH = None RPC_USER = 'user' RPC_PASSWORD= 'password' # INTERNAL STATE = {"last_order_updates": {"order_id":None, "timestamp": None}} # UNUSED ZMQ_BIND = None ZMQ_FEED = False SOCKETIO_BIND = None SOCKETIO_FEED = False
29
94
0.774922
0ec3ba56c43776087ae529562178739f1b219f07
1,234
py
Python
app/fme/fme_god_agent.py
yt7589/aqp
c9c1c79facdea7ace73e2421e8a5868d87fb58dd
[ "Apache-2.0" ]
null
null
null
app/fme/fme_god_agent.py
yt7589/aqp
c9c1c79facdea7ace73e2421e8a5868d87fb58dd
[ "Apache-2.0" ]
null
null
null
app/fme/fme_god_agent.py
yt7589/aqp
c9c1c79facdea7ace73e2421e8a5868d87fb58dd
[ "Apache-2.0" ]
null
null
null
import numpy as np import pandas as pd #from stable_baselines.common.vec_env import DummyVecEnv from app.fme.fme_env import FmeEnv class FmeGodAgent(object): def __init__(self): self.name = 'FmeGodAgent' self.test_size = 500 self.df = None self.fme_env = None def choose_action(self, idx, obs): commission = self.fme_env.commission time_span = 15 recs = self.df.iloc[idx:idx+time_span] datas = np.array(recs) close_idx = 5 current_price = datas[0][close_idx] action = np.array([2,0]) # 判断未来涨跌 for i in range(1, time_span): if datas[i][close_idx] > current_price*(1+commission): # 空仓时买入;满仓时持有 if self.fme_env.btc_held <= 0.00000001: action = np.array([0, 10]) # 买入 break else: break elif datas[i][close_idx] < current_price*(1-commission): if self.fme_env.btc_held > 0.00000001: action = np.array([1, 10]) break else: break return action #return self.fme_env.action_space.sample()
32.473684
68
0.537277
ad150a2b03359c8288fd2ad134c06bb6fc56d519
2,497
py
Python
compiler/tests/02_library_lvs_test.py
mguthaus/OpenRAM
46c86d3bb3df82e150532ede75cbf6180a697cfd
[ "BSD-3-Clause" ]
43
2016-11-06T20:53:46.000Z
2021-09-03T18:57:39.000Z
compiler/tests/02_library_lvs_test.py
mguthaus/OpenRAM
46c86d3bb3df82e150532ede75cbf6180a697cfd
[ "BSD-3-Clause" ]
27
2016-11-15T19:28:25.000Z
2018-02-20T19:23:52.000Z
compiler/tests/02_library_lvs_test.py
mguthaus/OpenRAM
46c86d3bb3df82e150532ede75cbf6180a697cfd
[ "BSD-3-Clause" ]
30
2016-11-09T16:02:45.000Z
2018-02-23T17:07:59.000Z
#!/usr/bin/env python3 # See LICENSE for licensing information. # # Copyright (c) 2016-2019 Regents of the University of California and The Board # of Regents for the Oklahoma Agricultural and Mechanical College # (acting for and on behalf of Oklahoma State University) # All rights reserved. # import unittest from testutils import * import sys,os,re sys.path.append(os.getenv("OPENRAM_HOME")) import globals from globals import OPTS import debug class library_lvs_test(openram_test): def runTest(self): globals.init_openram("config_{0}".format(OPTS.tech_name)) import verify (gds_dir, sp_dir, allnames) = setup_files() drc_errors = 0 lvs_errors = 0 debug.info(1, "Performing LVS on: " + ", ".join(allnames)) for f in allnames: gds_name = "{0}/{1}.gds".format(gds_dir, f) sp_name = "{0}/{1}.sp".format(sp_dir, f) name = re.sub('\.gds$', '', f) if not os.path.isfile(gds_name): lvs_errors += 1 debug.error("Missing GDS file {}".format(gds_name)) if not os.path.isfile(sp_name): lvs_errors += 1 debug.error("Missing SPICE file {}".format(gds_name)) drc_errors += verify.run_drc(name, gds_name) lvs_errors += verify.run_lvs(f, gds_name, sp_name) # fail if the error count is not zero self.assertEqual(drc_errors+lvs_errors, 0) globals.end_openram() def setup_files(): gds_dir = OPTS.openram_tech + "/gds_lib" sp_dir = OPTS.openram_tech + "/sp_lib" files = os.listdir(gds_dir) nametest = re.compile("\.gds$", re.IGNORECASE) gds_files = list(filter(nametest.search, files)) files = os.listdir(sp_dir) nametest = re.compile("\.sp$", re.IGNORECASE) sp_files = filter(nametest.search, files) # make a list of all the gds and spice files tempnames = gds_files tempnames.extend(sp_files) # remove the .gds and .sp suffixes for i in range(len(tempnames)): tempnames[i] = re.sub('\.gds$', '', tempnames[i]) tempnames[i] = re.sub('\.sp$', '', tempnames[i]) # remove duplicate base names nameset = set(tempnames) allnames = list(nameset) return (gds_dir, sp_dir, allnames) # run the test from the command line if __name__ == "__main__": (OPTS, args) = globals.parse_args() del sys.argv[1:] header(__file__, OPTS.tech_name) unittest.main(testRunner=debugTestRunner())
32.855263
79
0.637165
864797b5f2e1a871f46710b6fb3f280a5f979d83
831
py
Python
generate_time_images.py
eVoloshchak/telegramTimeAvatar
0a43a8725941fb3f7433ae1fb2abd21cfb95eccf
[ "MIT" ]
null
null
null
generate_time_images.py
eVoloshchak/telegramTimeAvatar
0a43a8725941fb3f7433ae1fb2abd21cfb95eccf
[ "MIT" ]
null
null
null
generate_time_images.py
eVoloshchak/telegramTimeAvatar
0a43a8725941fb3f7433ae1fb2abd21cfb95eccf
[ "MIT" ]
null
null
null
from utils import * from config import * import cv2 import os.path import numpy as np from datetime import datetime, timedelta def get_black_background(): return np.zeros((500, 500)) start_time = datetime.strptime("2019-01-01", "%Y-%m-%d") end_time = start_time + timedelta(days=1) def generate_image_with_text(text): image = get_black_background() font = cv2.FONT_HERSHEY_SIMPLEX cv2.putText(image, text, (int(image.shape[0]*0.15), int(image.shape[1]*0.5)), font, 4, (255, 255, 0), 20, cv2.LINE_AA) return image while start_time < end_time: if not os.path.exists(images_dir): os.mkdir(images_dir) text = convert_time_to_string(start_time) image = generate_image_with_text(text) cv2.imwrite(f"{images_dir}/{text.replace(':', '-')}.jpg", image) start_time += timedelta(minutes=1)
30.777778
122
0.705174
f6a73dfe472b40977087877e59438893eb4a92ca
706
py
Python
slack_bolt/workflows/step/utilities/async_configure.py
korymath/bolt-python
67e0286d756ba92510315d044303f43b03380b52
[ "MIT" ]
1
2021-05-02T16:06:44.000Z
2021-05-02T16:06:44.000Z
slack_bolt/workflows/step/utilities/async_configure.py
korymath/bolt-python
67e0286d756ba92510315d044303f43b03380b52
[ "MIT" ]
1
2021-02-23T21:05:57.000Z
2021-02-23T21:05:57.000Z
slack_bolt/workflows/step/utilities/async_configure.py
korymath/bolt-python
67e0286d756ba92510315d044303f43b03380b52
[ "MIT" ]
null
null
null
from typing import Optional, Union, Sequence from slack_sdk.web.async_client import AsyncWebClient from slack_sdk.models.blocks import Block class AsyncConfigure: def __init__(self, *, callback_id: str, client: AsyncWebClient, body: dict): self.callback_id = callback_id self.client = client self.body = body async def __call__( self, *, blocks: Optional[Sequence[Union[dict, Block]]] = None, ) -> None: await self.client.views_open( trigger_id=self.body["trigger_id"], view={ "type": "workflow_step", "callback_id": self.callback_id, "blocks": blocks, }, )
29.416667
80
0.604816
fe2df9a3293e295977fe3e91f4233a3432c4ee57
2,011
py
Python
projectmanager/migrations/0001_initial.py
AbhijithGanesh/Django-Custom-Authentication
ea2fdac47eabe09e22de586dc16f0adaedf08b3a
[ "BSD-3-Clause" ]
null
null
null
projectmanager/migrations/0001_initial.py
AbhijithGanesh/Django-Custom-Authentication
ea2fdac47eabe09e22de586dc16f0adaedf08b3a
[ "BSD-3-Clause" ]
null
null
null
projectmanager/migrations/0001_initial.py
AbhijithGanesh/Django-Custom-Authentication
ea2fdac47eabe09e22de586dc16f0adaedf08b3a
[ "BSD-3-Clause" ]
null
null
null
# Generated by Django 3.2.4 on 2021-06-19 16:11 from django.db import migrations, models import django.db.models.deletion import projectmanager.models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Employee', fields=[ ('Name', models.CharField(max_length=200, primary_key=True, serialize=False)), ('EmployeeID', models.CharField(default=projectmanager.models.EmployeeIDGenerator, max_length=100, unique=True)), ('EMail', models.EmailField(max_length=254, unique=True)), ('Contact', models.IntegerField()), ('Manager_Status', models.BooleanField(default=False)), ], ), migrations.CreateModel( name='Project', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('Time_and_Date_Created', models.DateField(auto_now_add=True)), ('Project_Title', models.CharField(max_length=100)), ('Project_Description', models.TextField()), ('Project_Link', models.URLField(unique=True)), ('Project_Gravatar', models.URLField()), ('Project_Manager', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='projectmanager.employee')), ], ), migrations.CreateModel( name='ProjectTask', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('Time_Created', models.TimeField(auto_now_add=True)), ('Task', models.TextField()), ('Subtasks', models.TextField()), ('Task_Reference', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='projectmanager.project')), ], ), ]
41.040816
130
0.594232
c1b7b5219ebc79488daddd744b34bb02759459c4
4,433
py
Python
setup.py
coppelia517/stve
dd23cc83e7a516e3f2ea9984aabb0cb407a30647
[ "MIT" ]
null
null
null
setup.py
coppelia517/stve
dd23cc83e7a516e3f2ea9984aabb0cb407a30647
[ "MIT" ]
9
2021-03-18T20:25:04.000Z
2022-01-13T00:44:11.000Z
setup.py
coppelia517/stve
dd23cc83e7a516e3f2ea9984aabb0cb407a30647
[ "MIT" ]
null
null
null
import os import sys import codecs from distutils.util import convert_path from fnmatch import fnmatchcase from setuptools import setup, find_packages def read(filename): return codecs.open(os.path.join(os.path.dirname(__file__), filename)).read() standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"] standard_exclude_directories = [ ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "./test", "./doc", "./sample", "vendor" ] def find_package_data ( where=".", package="", exclude=standard_exclude, exclude_directories=standard_exclude_directories, only_in_packages=True, show_ignored=False): """ Return a dictionary suitable for use in ``package_data`` in a distutils ``setup.py`` file. The dictionary looks like:: {"package": [files]} Where ``files`` is a list of all the files in that package that don"t match anything in ``exclude``. If ``only_in_packages`` is true, then top-level directories that are not packages won"t be included (but directories under packages will). Directories matching any pattern in ``exclude_directories`` will be ignored; by default directories with leading ``.``, ``CVS``, and ``_darcs`` will be ignored. If ``show_ignored`` is true, then all the files that aren"t included in package data are shown on stderr (for debugging purposes). Note patterns use wildcards, or can be exact paths (including leading ``./``), and all searching is case-insensitive. """ out = {} stack = [(convert_path(where), "", package, only_in_packages)] while stack: where, prefix, package, only_in_packages = stack.pop(0) for name in os.listdir(where): fn = os.path.join(where, name) if os.path.isdir(fn): bad_name = False for pattern in exclude_directories: if (fnmatchcase(name, pattern) or fn.lower() == pattern.lower()): bad_name = True if show_ignored: print >> sys.stderr, ( "Directory %s ignored by pattern %s" % (fn, pattern)) break if bad_name: continue if (os.path.isfile(os.path.join(fn, "__init__.py")) and not prefix): if not package: new_package = name else: new_package = package + "." + name stack.append((fn, "", new_package, False)) else: stack.append((fn, prefix + name + "/", package, only_in_packages)) elif package or not only_in_packages: # is a file bad_name = False for pattern in exclude: if (fnmatchcase(name, pattern) or fn.lower() == pattern.lower()): bad_name = True if show_ignored: print >> sys.stderr, ( "File %s ignored by pattern %s" % (fn, pattern)) break if bad_name: continue out.setdefault(package, []).append(prefix+name) return out PACKAGE = "stve" NAME = "stve" DESCRIPTION = "" AUTHOR = "Toshiaki.Tanaka" AUTHOR_EMAIL = "dev.coppelia@gmail.com" URL = "https://github.com/coppelia517/stve" VERSION = __import__(PACKAGE).__version__ setup( name=NAME, version=VERSION, description=DESCRIPTION, long_description=read("README.md"), author=AUTHOR, author_email=AUTHOR_EMAIL, license="MIT", url=URL, packages=find_packages(exclude=["test.*", "test", "doc.*", "doc", "sample.*", "sample", "vendor"]), package_data=find_package_data(PACKAGE, only_in_packages=False), classifiers=[ "Development Status :: 0.1 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", ], zip_safe=False, test_suite = 'tests' )
38.215517
114
0.540041
09091c4effc170b3f7b20bf1ce1dd5c92a1158c3
1,276
py
Python
SC101_Assignment0/coin_flip_runs.py
hanklee2023/stanCode101
69d6a2cc575b037b17f3b77d13ef61a712d9049e
[ "MIT" ]
null
null
null
SC101_Assignment0/coin_flip_runs.py
hanklee2023/stanCode101
69d6a2cc575b037b17f3b77d13ef61a712d9049e
[ "MIT" ]
null
null
null
SC101_Assignment0/coin_flip_runs.py
hanklee2023/stanCode101
69d6a2cc575b037b17f3b77d13ef61a712d9049e
[ "MIT" ]
null
null
null
""" File: coin_flip_runs.py Name: ----------------------- This program should simulate coin flip(s) with the number of runs input by users. A 'run' is defined as consecutive results on either 'H' or 'T'. For example, 'HHHHHTHTT' is regarded as a 2-run result. Your program should stop immediately after your coin flip results reach the runs! """ import random as r def main(): print("Let's flip a conin!") c = int(input("Number of runs: ")) # num_run = total assigned run times # last_coin is the last result of coin # consecutive_coin is consecutive result for the same coin = 1 # random coin 0 = H, 1 = T num_run = c last_coin = -1 consecutive_coin = 0 while num_run != 0: result = r.randint(0,1) if last_coin == -1: last_coin = result if result == 0: print("H", end='') else: print("T", end='') elif last_coin == result and consecutive_coin != 1: consecutive_coin = 1 if result == 0: print("H", end='') else: print("T", end='') num_run = num_run - 1 elif last_coin != result: consecutive_coin = 0 last_coin = result if result == 0: print("H", end='') else: print("T", end='') else: pass print("") ###### DO NOT EDIT CODE BELOW THIS LINE ###### if __name__ == "__main__": main()
19.630769
63
0.623041
da1c4785d7a20d5ed60ed7d1a25490b7c75bc9df
627
py
Python
backend/manage.py
mbranko/webshop
b7c2ebb8720922f5277fee98fe826e54760b29d2
[ "MIT" ]
null
null
null
backend/manage.py
mbranko/webshop
b7c2ebb8720922f5277fee98fe826e54760b29d2
[ "MIT" ]
5
2021-03-19T01:53:49.000Z
2022-03-02T08:11:51.000Z
backend/manage.py
mbranko/webshop
b7c2ebb8720922f5277fee98fe826e54760b29d2
[ "MIT" ]
null
null
null
#!/usr/bin/env python """Django's command-line utility for administrative tasks.""" import os import sys def main(): os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'webshop.settings') try: from django.core.management import execute_from_command_line except ImportError as exc: raise ImportError( "Couldn't import Django. Are you sure it's installed and " "available on your PYTHONPATH environment variable? Did you " "forget to activate a virtual environment?" ) from exc execute_from_command_line(sys.argv) if __name__ == '__main__': main()
28.5
73
0.682616
4da13b923d4a807e312d8b5a111f4e1366657894
8,811
py
Python
neutron/tests/unit/extensions/test_external_net.py
kklimonda/neutron
ccdddad358a4bf802d59b3fbbfe88a1e9881c96c
[ "Apache-2.0" ]
4
2018-08-05T00:43:03.000Z
2021-10-13T00:45:45.000Z
neutron/tests/unit/extensions/test_external_net.py
kklimonda/neutron
ccdddad358a4bf802d59b3fbbfe88a1e9881c96c
[ "Apache-2.0" ]
8
2018-06-14T14:50:16.000Z
2018-11-13T16:30:42.000Z
neutron/tests/unit/extensions/test_external_net.py
kklimonda/neutron
ccdddad358a4bf802d59b3fbbfe88a1e9881c96c
[ "Apache-2.0" ]
7
2018-06-12T18:57:04.000Z
2019-05-09T15:42:30.000Z
# Copyright (c) 2013 OpenStack Foundation. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. import mock from neutron_lib import constants from neutron_lib import context from neutron_lib.plugins import constants as plugin_constants from neutron_lib.plugins import directory from oslo_utils import uuidutils import testtools from webob import exc from neutron.db import external_net_db from neutron.db import models_v2 from neutron.extensions import external_net as external_net from neutron.tests.unit.api.v2 import test_base from neutron.tests.unit.db import test_db_base_plugin_v2 _uuid = uuidutils.generate_uuid _get_path = test_base._get_path class ExtNetTestExtensionManager(object): def get_resources(self): return [] def get_actions(self): return [] def get_request_extensions(self): return [] class ExtNetDBTestCase(test_db_base_plugin_v2.NeutronDbPluginV2TestCase): def _create_network(self, fmt, name, admin_state_up, **kwargs): """Override the routine for allowing the router:external attribute.""" # attributes containing a colon should be passed with # a double underscore new_args = dict(zip(map(lambda x: x.replace('__', ':'), kwargs), kwargs.values())) arg_list = new_args.pop('arg_list', ()) + (external_net.EXTERNAL,) return super(ExtNetDBTestCase, self)._create_network( fmt, name, admin_state_up, arg_list=arg_list, **new_args) def setUp(self): plugin = 'neutron.tests.unit.extensions.test_l3.TestNoL3NatPlugin' ext_mgr = ExtNetTestExtensionManager() super(ExtNetDBTestCase, self).setUp(plugin=plugin, ext_mgr=ext_mgr) def _set_net_external(self, net_id): self._update('networks', net_id, {'network': {external_net.EXTERNAL: True}}) def test_list_nets_external(self): with self.network() as n1: self._set_net_external(n1['network']['id']) with self.network(): body = self._list('networks') self.assertEqual(2, len(body['networks'])) body = self._list('networks', query_params="%s=True" % external_net.EXTERNAL) self.assertEqual(1, len(body['networks'])) body = self._list('networks', query_params="%s=False" % external_net.EXTERNAL) self.assertEqual(1, len(body['networks'])) def test_list_nets_external_pagination(self): if self._skip_native_pagination: self.skipTest("Skip test for not implemented pagination feature") with self.network(name='net1') as n1, self.network(name='net3') as n3: self._set_net_external(n1['network']['id']) self._set_net_external(n3['network']['id']) with self.network(name='net2') as n2: self._test_list_with_pagination( 'network', (n1, n3), ('name', 'asc'), 1, 3, query_params='router:external=True') self._test_list_with_pagination( 'network', (n2, ), ('name', 'asc'), 1, 2, query_params='router:external=False') def test_get_network_succeeds_without_filter(self): plugin = directory.get_plugin() ctx = context.Context(None, None, is_admin=True) result = plugin.get_networks(ctx, filters=None) self.assertEqual([], result) def test_update_network_set_external_non_admin_fails(self): # Assert that a non-admin user cannot update the # router:external attribute with self.network(tenant_id='noadmin') as network: data = {'network': {'router:external': True}} req = self.new_update_request('networks', data, network['network']['id']) req.environ['neutron.context'] = context.Context('', 'noadmin') res = req.get_response(self.api) self.assertEqual(exc.HTTPForbidden.code, res.status_int) def test_update_network_external_net_with_ports_set_not_shared(self): with self.network(router__external=True, shared=True) as ext_net,\ self.subnet(network=ext_net) as ext_subnet, \ self.port(subnet=ext_subnet, tenant_id='', device_owner=constants.DEVICE_OWNER_ROUTER_SNAT): data = {'network': {'shared': False}} req = self.new_update_request('networks', data, ext_net['network']['id']) res = req.get_response(self.api) self.assertEqual(exc.HTTPOk.code, res.status_int) ctx = context.Context(None, None, is_admin=True) plugin = directory.get_plugin() result = plugin.get_networks(ctx) self.assertFalse(result[0]['shared']) def test_network_filter_hook_admin_context(self): ctx = context.Context(None, None, is_admin=True) model = models_v2.Network conditions = external_net_db._network_filter_hook(ctx, model, []) self.assertEqual([], conditions) def test_network_filter_hook_nonadmin_context(self): ctx = context.Context('edinson', 'cavani') model = models_v2.Network txt = ("networkrbacs.action = :action_1 AND " "networkrbacs.target_tenant = :target_tenant_1 OR " "networkrbacs.target_tenant = :target_tenant_2") conditions = external_net_db._network_filter_hook(ctx, model, []) self.assertEqual(conditions.__str__(), txt) # Try to concatenate conditions txt2 = (txt.replace('tenant_1', 'tenant_3'). replace('tenant_2', 'tenant_4'). replace('action_1', 'action_2')) conditions = external_net_db._network_filter_hook(ctx, model, conditions) self.assertEqual(conditions.__str__(), "%s OR %s" % (txt, txt2)) def test_create_port_external_network_non_admin_fails(self): with self.network(router__external=True) as ext_net: with self.subnet(network=ext_net) as ext_subnet: with testtools.ExpectedException( exc.HTTPClientError) as ctx_manager: with self.port(subnet=ext_subnet, set_context='True', tenant_id='noadmin'): pass self.assertEqual(403, ctx_manager.exception.code) def test_create_port_external_network_admin_succeeds(self): with self.network(router__external=True) as ext_net: with self.subnet(network=ext_net) as ext_subnet: with self.port(subnet=ext_subnet) as port: self.assertEqual(port['port']['network_id'], ext_net['network']['id']) def test_create_external_network_non_admin_fails(self): with testtools.ExpectedException(exc.HTTPClientError) as ctx_manager: with self.network(router__external=True, set_context='True', tenant_id='noadmin'): pass self.assertEqual(403, ctx_manager.exception.code) def test_create_external_network_admin_succeeds(self): with self.network(router__external=True) as ext_net: self.assertTrue(ext_net['network'][external_net.EXTERNAL]) def test_delete_network_check_disassociated_floatingips(self): l3_mock = mock.Mock() directory.add_plugin(plugin_constants.L3, l3_mock) with self.network() as net: req = self.new_delete_request('networks', net['network']['id']) res = req.get_response(self.api) self.assertEqual(exc.HTTPNoContent.code, res.status_int) (l3_mock.delete_disassociated_floatingips .assert_called_once_with(mock.ANY, net['network']['id']))
44.954082
78
0.615367
98a1db7fe1a989394505a20157f8a16c9c511ad0
12,498
py
Python
tensorflow/python/ops/control_flow_util_v2.py
joshz123/tensorflow
7841ca029060ab78e221e757d4b1ee6e3e0ffaa4
[ "Apache-2.0" ]
3
2019-04-01T09:22:17.000Z
2020-01-20T16:33:22.000Z
tensorflow/python/ops/control_flow_util_v2.py
joshz123/tensorflow
7841ca029060ab78e221e757d4b1ee6e3e0ffaa4
[ "Apache-2.0" ]
3
2019-03-21T17:56:51.000Z
2019-11-13T21:02:35.000Z
tensorflow/python/ops/control_flow_util_v2.py
joshz123/tensorflow
7841ca029060ab78e221e757d4b1ee6e3e0ffaa4
[ "Apache-2.0" ]
3
2019-04-01T09:22:18.000Z
2019-06-21T06:47:12.000Z
# Copyright 2018 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """Utilities for V2 control flow.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function from tensorflow.core.framework import attr_value_pb2 from tensorflow.python.distribute import distribution_strategy_context from tensorflow.python.eager import context from tensorflow.python.eager import function from tensorflow.python.framework import function_def_to_graph from tensorflow.python.framework import ops from tensorflow.python.framework.func_graph import FuncGraph from tensorflow.python.ops import control_flow_util from tensorflow.python.ops import control_flow_v2_func_graphs from tensorflow.python.util import tf_contextlib _EXPERIMENTAL_OUTPUT_ALL_INTERMEDIATES_OVERRIDE = None _KERAS_LAYER_CONTEXT_FUNCTION = None _DISABLE_LOWER_USING_SWITCH_MERGE = False CondBranchFuncGraph = control_flow_v2_func_graphs.CondBranchFuncGraph WhileCondFuncGraph = control_flow_v2_func_graphs.WhileCondFuncGraph WhileBodyFuncGraph = control_flow_v2_func_graphs.WhileBodyFuncGraph def in_defun(): """Returns if the current graph is, or is nested in, a defun.""" if context.executing_eagerly(): return False graph = ops.get_default_graph() while (isinstance(graph, CondBranchFuncGraph) or isinstance(graph, WhileBodyFuncGraph) or isinstance(graph, WhileCondFuncGraph)): graph = graph.outer_graph return isinstance(graph, FuncGraph) def in_while_loop_defun(graph): """Returns if the graph is a while loop FuncGraph.""" if context.executing_eagerly(): return False return (isinstance(graph, WhileCondFuncGraph) or isinstance(graph, WhileBodyFuncGraph)) def create_new_tf_function(func_graph): """Converts func_graph to a TF_Function and adds it to the current graph. Args: func_graph: FuncGraph Returns: The name of the new TF_Function. """ func = function._EagerDefinedFunction( # pylint: disable=protected-access func_graph.name, func_graph, func_graph.inputs, func_graph.outputs, {}) func.add_to_graph(func_graph.outer_graph) return func_graph.name def unique_fn_name(scope, name): """Returns a unique name to use for a control flow function. Args: scope: A name scope string. name: An identifier for this function (e.g. "true", "body"). Returns: A string, the name to use for the function. """ return ("%s%s_%s" % (scope, name, ops.uid())).replace("/", "_") def unique_grad_fn_name(forward_name): return "%s_grad_%s" % (forward_name, ops.uid()) def maybe_set_lowering_attr(op): """Sets the flag to enable lowering on `op` if necessary. Lowering allows cond_v2 and while_v2 to avoid some of the limitations of Functions, allowing users to specify devices & colocation inside of cond_v2 and while_v2 input functions, and enabling non-strict evaluation & partial pruning. This brings v2 control flow closer to feature parity with v1 control flow. However, we do not lower in the following cases: - When the `If` or `While` ops are in the XLA context. Because it is easier for XLA to apply its own optimizations when dealing with un-lowered control flow operators than with low-level control flow primitives. - When the eager execution context specifies the executor of functions to be the single threaded executor (see context.function_executor_type()). Because the single threaded executor does not support v1 control flow ops. Args: op: An `If` or `While` Operation. """ if (not _DISABLE_LOWER_USING_SWITCH_MERGE and not control_flow_util.GraphOrParentsInXlaContext(op.graph) and context.context().function_call_options.executor_type != "SINGLE_THREADED_EXECUTOR"): # pylint: disable=protected-access op._set_attr("_lower_using_switch_merge", attr_value_pb2.AttrValue(b=True)) # pylint: enable=protected-access def maybe_propagate_compile_time_consts_in_xla(op): """Tells XLA whether to propagate compile-time consts in the loop body. This is needed to make compile time constants available to ops, for example `max_num_elements` in `EmptyTensorList`, inside the loop body. Ideally this would always be turned on, but that doesn't work with legacy functionalized while_loops. Args: op: A `While` Operation. """ if control_flow_util.GraphOrParentsInXlaContext(op.graph): # pylint: disable=protected-access op._set_attr("_xla_propagate_compile_time_consts", attr_value_pb2.AttrValue(b=True)) # pylint: enable=protected-access def resource_input_index(tensor_name, input_names, node_defs, functions): """Returns the index of the input corresponding to `tensor_name`. This method is used to find the corresponding index of an arbitrary resource tensor in a function (the function could be a loop body). We assume that resource handles are never created in functions, so that every resource tensor can be traced back to a function input. The awkward signature of this method is to make it work with both FuncGraphs and FunctionDefs. This is so we can recurse on function call ops without building the corresponding FuncGraph (note that even if a FuncGraph for a FunctionDef already exists, the input/output/node names may have been changed when the FuncGraph was serialized to the FunctionDef, which makes it unusable with this algorithm). Args: tensor_name: the name of the resource tensor to be resolved to an input. input_names: a list of the names of all inputs to the function. node_defs: a dict mapping op name -> NodeDef for every op in the function. functions: a dict mapping function name -> _EagerDefinedFunction. Returns: The index into input_names corresponding to `tensor_name`. """ while tensor_name not in input_names: # FunctionDefs and graphs use different tensor naming conventions. parts = tensor_name.split(":") if len(parts) == 3: op_name, _, output_idx = parts elif len(parts) == 2: op_name, output_idx = parts else: assert len(parts) == 1 op_name = parts[0] output_idx = 0 tensor_name = "%s:%d" % (tensor_name, output_idx) # Check again for cases where the tensor suffix (":0") is stripped out. if tensor_name in input_names: break output_idx = int(output_idx) node_def = node_defs[op_name] if node_def.op == "While": # Captured resources occur at the same index in the lists of inputs and # outputs of a while op. So we lookup the input of `tensor.op` at the # same index as the index of `tensor` in the `tensor.op.outputs`. tensor_name = node_def.input[output_idx] elif node_def.op in ("PartitionedCall", "StatefulPartitionedCall"): # Functions output any captured resource tensors used by their # gradients. `tensor_name` is one of these outputs from a nested # function call, so recursively find the corresponding input in the # nested FunctionDef. func_name = node_def.attr["f"].func.name fdef = functions[func_name].definition output_arg_name = fdef.signature.output_arg[output_idx].name output_tensor_name = fdef.ret[output_arg_name] input_index = resource_input_index( output_tensor_name, [arg.name for arg in fdef.signature.input_arg], {ndef.name: ndef for ndef in fdef.node_def}, functions) tensor_name = node_def.input[input_index] else: # We assume there are no other ops types that will "forward" resource # handles like this, so all other handles must have been created by the # op. (Note that cond_v2 wraps resource handle outputs in optionals, # which we'll end up accumulating). raise ValueError("Taking gradient of a while loop which creates " "a resource in its body is not supported: %s" % op_name) return input_names.index(tensor_name) @tf_contextlib.contextmanager def clear_control_inputs(): """Clears the control inputs but preserves the ControlFlowContext. This is needed to preserve the XLAControlFlowControl when clearing control inputs for the gradient accumulators in while_v2. `ops.control_dependencies` does not allow that. Yields: A context manager in which the ops created will not have any control inputs by default but the control flow context is the same. """ # pylint: disable=protected-access control_flow_context = ops.get_default_graph()._get_control_flow_context() with ops.control_dependencies(None): ops.get_default_graph()._set_control_flow_context(control_flow_context) yield # pylint: enable=protected-access def _is_tpu_strategy(strategy): return (strategy is not None and strategy.__class__.__name__.startswith("TPUStrategy")) def _register_keras_layer_context_function(func): global _KERAS_LAYER_CONTEXT_FUNCTION if _KERAS_LAYER_CONTEXT_FUNCTION is None: _KERAS_LAYER_CONTEXT_FUNCTION = func def _is_building_keras_layer(): # TODO(srbs): Remove this function when we no long support session with Keras. global _KERAS_LAYER_CONTEXT_FUNCTION if _KERAS_LAYER_CONTEXT_FUNCTION is not None: return _KERAS_LAYER_CONTEXT_FUNCTION().layer is not None else: return False def output_all_intermediates(): """Whether to output all intermediates of a functional control flow op. The default behavior is to output intermediates only when building a Keras Layer in graph mode and that too when certain other conditions are met: 1. We do not output intermediates if the functional control flow op is being built inside a FuncGraph which is not a If/While graph. This guards against outputting intermediates in eager mode since keras adds tensors to a FuncGraph named "keras_graph" in that case. Also because we do not output intermediates of tf.function (since this feature is only for backwards compatibility) outputting intermediates of functional control flow ops built inside tf.function is of no value. 2. We do not output intermediates when the compilation is using XLA or for a TPU. 3. We do not output intermediates when a single threaded executor is used since that does not perform inlining and pruning. Returns: A bool telling whether to output all intermediates. """ if _EXPERIMENTAL_OUTPUT_ALL_INTERMEDIATES_OVERRIDE is not None: return _EXPERIMENTAL_OUTPUT_ALL_INTERMEDIATES_OVERRIDE if in_defun(): return False if (control_flow_util.GraphOrParentsInXlaContext(ops.get_default_graph()) or _is_tpu_strategy(distribution_strategy_context.get_strategy())): return False if (context.context().function_call_options.executor_type == "SINGLE_THREADED_EXECUTOR"): return False return _is_building_keras_layer() def get_func_graph(op, input_shapes, func_name): """Generates and returns a FuncGraph for the given op and input_shapes.""" graph = op.graph # Recursively search the func in graphs. while graph is not None: func = graph._get_function(func_name) # pylint: disable=protected-access if func is not None: fdef = func.definition break if hasattr(graph, "outer_graph"): graph = graph.outer_graph else: break # `op.graph` may not be the same as `ops.get_default_graph()` e.g. # in the case of nested if ops or when the gradient is being computed # from inside a Defun. We build the `func_graph` with `op.graph` as its # `outer_graph`. This resembles how the `FuncGraph` was built in the # forward pass. We need this so that we can resolve references to tensors # in `func_graph` from its gradient graph in `_resolve_grad_inputs`. with op.graph.as_default(): func_graph = function_def_to_graph.function_def_to_graph( fdef, input_shapes) return func_graph
40.316129
80
0.74756