content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import datetime
from django.utils.timezone import utc
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
11,
15720,
602,
198,
11748,
4818,
8079,
198,
6738,
42625,
14208,
13,
26791,
13,
2435,
11340,
1330,
3384,
66,
628
] | 3.037736 | 53 |
import logging
import typing
from collections.abc import Iterator
from enum import Enum
from functools import lru_cache
from typing import Any, Dict, Mapping, Tuple, TypeVar, Union
import pydantic
import requests
from pydantic import Field, ValidationError, validator
from pydantic.class_validators import make_generic_validator
from pydantic.typing import get_origin # type: ignore [attr-defined]
try:
import requests_cache
except ImportError: # pragma: no cover
HAS_REQUESTS_CACHE = False
else:
HAS_REQUESTS_CACHE = True
KT = TypeVar("KT")
VT = TypeVar("VT")
log = logging.getLogger(__name__)
__all__ = [
"BaseModel",
"DictLike",
"compare",
"dictlike_field",
"only",
"summarize_dictlike",
"validate_dictlike",
"validator",
]
# Mapping from Resource value to class name.
CLASS_NAME = {
"dataflow": "DataflowDefinition",
"datastructure": "DataStructureDefinition",
}
# Inverse of :data:`CLASS_NAME`.
VALUE = {v: k for k, v in CLASS_NAME.items()}
class Resource(str, Enum):
"""Enumeration of SDMX-REST API resources.
============================= ======================================================
:class:`Enum` member :mod:`pandasdmx.model` class
============================= ======================================================
``actualconstraint`` :class:`.ContentConstraint`
``agencyscheme`` :class:`.AgencyScheme`
``allowedconstraint`` :class:`.ContentConstraint`
``attachementconstraint`` :class:`.AttachmentConstraint`
``categorisation`` :class:`.Categorisation`
``categoryscheme`` :class:`.CategoryScheme`
``codelist`` :class:`.Codelist`
``conceptscheme`` :class:`.ConceptScheme`
``contentconstraint`` :class:`.ContentConstraint`
``data`` :class:`.DataSet`
``dataflow`` :class:`.DataflowDefinition`
``dataconsumerscheme`` :class:`.DataConsumerScheme`
``dataproviderscheme`` :class:`.DataProviderScheme`
``datastructure`` :class:`.DataStructureDefinition`
``organisationscheme`` :class:`.OrganisationScheme`
``provisionagreement`` :class:`.ProvisionAgreement`
``structure`` Mixed.
----------------------------- ------------------------------------------------------
``customtypescheme`` Not implemented.
``hierarchicalcodelist`` Not implemented.
``metadata`` Not implemented.
``metadataflow`` Not implemented.
``metadatastructure`` Not implemented.
``namepersonalisationscheme`` Not implemented.
``organisationunitscheme`` Not implemented.
``process`` Not implemented.
``reportingtaxonomy`` Not implemented.
``rulesetscheme`` Not implemented.
``schema`` Not implemented.
``structureset`` Not implemented.
``transformationscheme`` Not implemented.
``userdefinedoperatorscheme`` Not implemented.
``vtlmappingscheme`` Not implemented.
============================= ======================================================
"""
actualconstraint = "actualconstraint"
agencyscheme = "agencyscheme"
allowedconstraint = "allowedconstraint"
attachementconstraint = "attachementconstraint"
categorisation = "categorisation"
categoryscheme = "categoryscheme"
codelist = "codelist"
conceptscheme = "conceptscheme"
contentconstraint = "contentconstraint"
customtypescheme = "customtypescheme"
data = "data"
dataconsumerscheme = "dataconsumerscheme"
dataflow = "dataflow"
dataproviderscheme = "dataproviderscheme"
datastructure = "datastructure"
hierarchicalcodelist = "hierarchicalcodelist"
metadata = "metadata"
metadataflow = "metadataflow"
metadatastructure = "metadatastructure"
namepersonalisationscheme = "namepersonalisationscheme"
organisationscheme = "organisationscheme"
organisationunitscheme = "organisationunitscheme"
process = "process"
provisionagreement = "provisionagreement"
reportingtaxonomy = "reportingtaxonomy"
rulesetscheme = "rulesetscheme"
schema = "schema"
structure = "structure"
structureset = "structureset"
transformationscheme = "transformationscheme"
userdefinedoperatorscheme = "userdefinedoperatorscheme"
vtlmappingscheme = "vtlmappingscheme"
@classmethod
def from_obj(cls, obj):
"""Return an enumeration value based on the class of `obj`."""
value = obj.__class__.__name__
return cls[VALUE.get(value, value)]
@classmethod
def class_name(cls, value: "Resource", default=None) -> str:
"""Return the name of a :mod:`pandasdmx.model` class from an enum value.
Values are returned in lower case.
"""
return CLASS_NAME.get(value.value, value.value)
@classmethod
#: Response codes defined by the SDMX-REST standard.
RESPONSE_CODE = {
200: "OK",
304: "No changes",
400: "Bad syntax",
401: "Unauthorized",
403: "Semantic error", # or "Forbidden"
404: "Not found",
406: "Not acceptable",
413: "Request entity too large",
414: "URI too long",
500: "Internal server error",
501: "Not implemented",
503: "Unavailable",
}
class BaseModel(pydantic.BaseModel):
"""Common settings for :class:`pydantic.BaseModel` in :mod:`pandasdmx`."""
class MaybeCachedSession(type):
"""Metaclass to inherit from :class:`requests_cache.CachedSession`, if available.
If :mod:`requests_cache` is not installed, returns :class:`requests.Session` as a
base class.
"""
KT = TypeVar("KT")
VT = TypeVar("VT")
log = logging.getLogger(__name__)
__all__ = [
"BaseModel",
"DictLike",
"compare",
"dictlike_field",
"only",
"summarize_dictlike",
"validate_dictlike",
"validator",
]
class BaseModel(pydantic.BaseModel):
"""Common settings for :class:`pydantic.BaseModel` in :mod:`sdmx`."""
class MaybeCachedSession(type):
"""Metaclass to inherit from :class:`requests_cache.CachedSession`, if available.
If :mod:`requests_cache` is not installed, returns :class:`requests.Session` as a
base class.
"""
class DictLike(dict, typing.MutableMapping[KT, VT]):
"""Container with features of a dict & list, plus attribute access."""
__slots__ = ("__dict__", "__field")
def __getitem__(self, key: Union[KT, int]) -> VT:
""":meth:`dict.__getitem__` with integer access."""
try:
return super().__getitem__(key)
except KeyError:
if isinstance(key, int):
# int() index access
return list(self.values())[key]
else:
raise
def __getstate__(self):
"""Exclude ``__field`` from items to be pickled."""
return {"__dict__": self.__dict__}
def __setitem__(self, key: KT, value: VT) -> None:
""":meth:`dict.__setitem` with validation."""
super().__setitem__(*self._validate_entry(key, value))
def copy(self):
"""Return a copy of the DictLike."""
return self.__copy__()
# pydantic compat
@classmethod
@classmethod
def _validate_whole(cls, v, field: pydantic.fields.ModelField):
"""Validate `v` as an entire DictLike object."""
# Convert anything that can be converted to a dict(). pydantic internals catch
# most other invalid types, e.g. set(); no need to handle them here.
result = cls(v)
# Reference to the pydantic.field.ModelField for the entries
result.__field = field
return result
def _validate_entry(self, key, value):
"""Validate one `key`/`value` pair."""
try:
# Use pydantic's validation machinery
v, error = self.__field._validate_mapping_like(
((key, value),), values={}, loc=(), cls=None
)
except AttributeError:
# .__field is not populated
return key, value
else:
if error:
raise ValidationError([error], self.__class__)
else:
return (key, value)
def compare(self, other, strict=True):
"""Return :obj:`True` if `self` is the same as `other`.
Two DictLike instances are identical if they contain the same set of keys, and
corresponding values compare equal.
Parameters
----------
strict : bool, optional
Passed to :func:`compare` for the values.
"""
if set(self.keys()) != set(other.keys()):
log.info(f"Not identical: {sorted(self.keys())} / {sorted(other.keys())}")
return False
for key, value in self.items():
if not value.compare(other[key], strict):
return False
return True
# Utility methods for DictLike
#
# These are defined in separate functions to avoid collisions with keys and the
# attribute access namespace, e.g. if the DictLike contains keys "summarize" or
# "validate".
def dictlike_field():
"""Shorthand for :class:`pydantic.Field` with :class:`.DictLike` default factory."""
return Field(default_factory=DictLike)
def summarize_dictlike(dl, maxwidth=72):
"""Return a string summary of the DictLike contents."""
value_cls = dl[0].__class__.__name__
count = len(dl)
keys = " ".join(dl.keys())
result = f"{value_cls} ({count}): {keys}"
if len(result) > maxwidth:
# Truncate the list of keys
result = result[: maxwidth - 3] + "..."
return result
def validate_dictlike(cls):
"""Adjust `cls` so that its DictLike members are validated.
This is necessary because DictLike is a subclass of :class:`dict`, and so
:mod:`pydantic` fails to call :meth:`~DictLike.__get_validators__` and register
those on BaseModels which include DictLike members.
"""
# Iterate over annotated members of `cls`; only those which are DictLike
for name, anno in filter(
lambda item: get_origin(item[1]) is DictLike, cls.__annotations__.items()
):
# Add the validator(s)
field = cls.__fields__[name]
field.post_validators = field.post_validators or []
field.post_validators.extend(
make_generic_validator(v) for v in DictLike.__get_validators__()
)
return cls
def compare(attr, a, b, strict: bool) -> bool:
"""Return :obj:`True` if ``a.attr`` == ``b.attr``.
If strict is :obj:`False`, :obj:`None` is permissible as `a` or `b`; otherwise,
"""
return getattr(a, attr) == getattr(b, attr) or (
not strict and None in (getattr(a, attr), getattr(b, attr))
)
# if not result:
# log.info(f"Not identical: {attr}={getattr(a, attr)} / {getattr(b, attr)}")
# return result
def only(iterator: Iterator) -> Any:
"""Return the only element of `iterator`, or :obj:`None`."""
try:
result = next(iterator)
flag = object()
assert flag is next(iterator, flag)
except (StopIteration, AssertionError):
return None # 0 or ≥2 matches
else:
return result
def parse_content_type(value: str) -> Tuple[str, Dict[str, Any]]:
"""Return content type and parameters from `value`.
Modified from :mod:`requests.util`.
"""
tokens = value.split(";")
content_type, params_raw = tokens[0].strip(), tokens[1:]
params = {}
to_strip = "\"' "
for param in params_raw:
k, *v = param.strip().split("=")
if not k and not v:
continue
params[k.strip(to_strip).lower()] = v[0].strip(to_strip) if len(v) else True
return content_type, params
@lru_cache()
def direct_fields(cls) -> Mapping[str, pydantic.fields.ModelField]:
"""Return the :mod:`pydantic` fields defined on `obj` or its class.
This is like the ``__fields__`` attribute, but excludes the fields defined on any
parent class(es).
"""
return {
name: info
for name, info in cls.__fields__.items()
if name not in set(cls.mro()[1].__fields__.keys())
}
try:
from typing import get_args # type: ignore [attr-defined]
except ImportError: # pragma: no cover
# For Python <3.8
| [
11748,
18931,
198,
11748,
19720,
198,
6738,
17268,
13,
39305,
1330,
40806,
1352,
198,
6738,
33829,
1330,
2039,
388,
198,
6738,
1257,
310,
10141,
1330,
300,
622,
62,
23870,
198,
6738,
19720,
1330,
4377,
11,
360,
713,
11,
337,
5912,
11,
309,
29291,
11,
5994,
19852,
11,
4479,
198,
198,
11748,
279,
5173,
5109,
198,
11748,
7007,
198,
6738,
279,
5173,
5109,
1330,
7663,
11,
3254,
24765,
12331,
11,
4938,
1352,
198,
6738,
279,
5173,
5109,
13,
4871,
62,
12102,
2024,
1330,
787,
62,
41357,
62,
12102,
1352,
198,
6738,
279,
5173,
5109,
13,
774,
13886,
1330,
651,
62,
47103,
220,
1303,
2099,
25,
8856,
685,
35226,
12,
23211,
60,
198,
198,
28311,
25,
198,
220,
220,
220,
1330,
7007,
62,
23870,
198,
16341,
17267,
12331,
25,
220,
1303,
23864,
2611,
25,
645,
3002,
198,
220,
220,
220,
33930,
62,
2200,
10917,
1546,
4694,
62,
34,
2246,
13909,
796,
10352,
198,
17772,
25,
198,
220,
220,
220,
33930,
62,
2200,
10917,
1546,
4694,
62,
34,
2246,
13909,
796,
6407,
628,
198,
42176,
796,
5994,
19852,
7203,
42176,
4943,
198,
36392,
796,
5994,
19852,
7203,
36392,
4943,
198,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
14881,
17633,
1600,
198,
220,
220,
220,
366,
35,
713,
7594,
1600,
198,
220,
220,
220,
366,
5589,
533,
1600,
198,
220,
220,
220,
366,
11600,
2339,
62,
3245,
1600,
198,
220,
220,
220,
366,
8807,
1600,
198,
220,
220,
220,
366,
16345,
3876,
1096,
62,
11600,
2339,
1600,
198,
220,
220,
220,
366,
12102,
378,
62,
11600,
2339,
1600,
198,
220,
220,
220,
366,
12102,
1352,
1600,
198,
60,
628,
198,
2,
337,
5912,
422,
20857,
1988,
284,
1398,
1438,
13,
198,
31631,
62,
20608,
796,
1391,
198,
220,
220,
220,
366,
7890,
11125,
1298,
366,
6601,
11125,
36621,
1600,
198,
220,
220,
220,
366,
19608,
459,
5620,
1298,
366,
6601,
1273,
5620,
36621,
1600,
198,
92,
198,
198,
2,
554,
4399,
286,
1058,
7890,
25,
63,
31631,
62,
20608,
44646,
198,
39488,
796,
1391,
85,
25,
479,
329,
479,
11,
410,
287,
42715,
62,
20608,
13,
23814,
3419,
92,
628,
198,
4871,
20857,
7,
2536,
11,
2039,
388,
2599,
198,
220,
220,
220,
37227,
4834,
6975,
341,
286,
9834,
43243,
12,
49,
6465,
7824,
4133,
13,
628,
220,
220,
220,
36658,
25609,
46111,
4770,
1421,
28,
198,
220,
220,
220,
1058,
4871,
25,
63,
4834,
388,
63,
2888,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4666,
25,
63,
79,
392,
292,
36020,
87,
13,
19849,
63,
1398,
198,
220,
220,
220,
36658,
25609,
46111,
4770,
1421,
28,
198,
220,
220,
220,
7559,
50039,
1102,
2536,
2913,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
19746,
3103,
2536,
2913,
63,
198,
220,
220,
220,
7559,
11286,
66,
893,
2395,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
32,
4949,
27054,
1326,
63,
198,
220,
220,
220,
7559,
40845,
1102,
2536,
2913,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
19746,
3103,
2536,
2913,
63,
198,
220,
220,
220,
7559,
1078,
4891,
434,
1102,
2536,
2913,
15506,
220,
220,
220,
220,
1058,
4871,
25,
44646,
8086,
15520,
3103,
2536,
2913,
63,
198,
220,
220,
220,
7559,
66,
47467,
5612,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
34,
47467,
5612,
63,
198,
220,
220,
220,
7559,
22872,
15952,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
27313,
27054,
1326,
63,
198,
220,
220,
220,
7559,
19815,
46331,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
43806,
46331,
63,
198,
220,
220,
220,
7559,
43169,
15952,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
3103,
984,
27054,
1326,
63,
198,
220,
220,
220,
7559,
11299,
1102,
2536,
2913,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
19746,
3103,
2536,
2913,
63,
198,
220,
220,
220,
7559,
7890,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
6601,
7248,
63,
198,
220,
220,
220,
7559,
7890,
11125,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
6601,
11125,
36621,
63,
198,
220,
220,
220,
7559,
19608,
37256,
31260,
2395,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
6601,
49106,
27054,
1326,
63,
198,
220,
220,
220,
7559,
19608,
499,
18657,
4157,
2395,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
6601,
29495,
27054,
1326,
63,
198,
220,
220,
220,
7559,
19608,
459,
5620,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
6601,
1273,
5620,
36621,
63,
198,
220,
220,
220,
7559,
9971,
38189,
2395,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
26121,
5612,
27054,
1326,
63,
198,
220,
220,
220,
7559,
1676,
10178,
363,
10237,
15506,
220,
220,
220,
220,
220,
220,
220,
1058,
4871,
25,
44646,
2964,
10178,
10262,
10237,
63,
198,
220,
220,
220,
7559,
301,
5620,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35250,
13,
198,
220,
220,
220,
34400,
32501,
20368,
19351,
438,
198,
220,
220,
220,
7559,
23144,
19199,
2395,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
71,
959,
998,
605,
19815,
46331,
15506,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
38993,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
38993,
11125,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
4164,
324,
265,
459,
5620,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
3672,
22682,
38189,
2395,
1326,
15506,
1892,
9177,
13,
198,
220,
220,
220,
7559,
9971,
5612,
41667,
2395,
1326,
15506,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
14681,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
49914,
19290,
30565,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
38785,
1039,
2395,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
15952,
2611,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
7249,
942,
316,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
35636,
602,
2395,
1326,
15506,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
7559,
7220,
23211,
3575,
2024,
2395,
1326,
15506,
1892,
9177,
13,
198,
220,
220,
220,
7559,
85,
28781,
76,
39242,
2395,
1326,
15506,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1892,
9177,
13,
198,
220,
220,
220,
36658,
25609,
46111,
4770,
1421,
28,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
4036,
1102,
2536,
2913,
796,
366,
50039,
1102,
2536,
2913,
1,
198,
220,
220,
220,
556,
12685,
893,
2395,
1326,
796,
366,
11286,
66,
893,
2395,
1326,
1,
198,
220,
220,
220,
3142,
1102,
2536,
2913,
796,
366,
40845,
1102,
2536,
2913,
1,
198,
220,
220,
220,
708,
4891,
434,
1102,
2536,
2913,
796,
366,
1078,
4891,
434,
1102,
2536,
2913,
1,
198,
220,
220,
220,
17851,
5612,
796,
366,
66,
47467,
5612,
1,
198,
220,
220,
220,
6536,
15952,
1326,
796,
366,
22872,
15952,
1326,
1,
198,
220,
220,
220,
14873,
46331,
796,
366,
19815,
46331,
1,
198,
220,
220,
220,
3721,
15952,
1326,
796,
366,
43169,
15952,
1326,
1,
198,
220,
220,
220,
2695,
1102,
2536,
2913,
796,
366,
11299,
1102,
2536,
2913,
1,
198,
220,
220,
220,
2183,
19199,
2395,
1326,
796,
366,
23144,
19199,
2395,
1326,
1,
198,
220,
220,
220,
1366,
796,
366,
7890,
1,
198,
220,
220,
220,
4818,
37256,
31260,
2395,
1326,
796,
366,
19608,
37256,
31260,
2395,
1326,
1,
198,
220,
220,
220,
1366,
11125,
796,
366,
7890,
11125,
1,
198,
220,
220,
220,
4818,
499,
18657,
4157,
2395,
1326,
796,
366,
19608,
499,
18657,
4157,
2395,
1326,
1,
198,
220,
220,
220,
4818,
459,
5620,
796,
366,
19608,
459,
5620,
1,
198,
220,
220,
220,
38958,
19815,
46331,
796,
366,
71,
959,
998,
605,
19815,
46331,
1,
198,
220,
220,
220,
20150,
796,
366,
38993,
1,
198,
220,
220,
220,
20150,
11125,
796,
366,
38993,
11125,
1,
198,
220,
220,
220,
1138,
324,
265,
459,
5620,
796,
366,
4164,
324,
265,
459,
5620,
1,
198,
220,
220,
220,
1438,
22682,
38189,
2395,
1326,
796,
366,
3672,
22682,
38189,
2395,
1326,
1,
198,
220,
220,
220,
16435,
2395,
1326,
796,
366,
9971,
38189,
2395,
1326,
1,
198,
220,
220,
220,
12684,
41667,
2395,
1326,
796,
366,
9971,
5612,
41667,
2395,
1326,
1,
198,
220,
220,
220,
1429,
796,
366,
14681,
1,
198,
220,
220,
220,
8287,
363,
10237,
796,
366,
1676,
10178,
363,
10237,
1,
198,
220,
220,
220,
6447,
19290,
30565,
796,
366,
49914,
19290,
30565,
1,
198,
220,
220,
220,
3173,
1039,
2395,
1326,
796,
366,
38785,
1039,
2395,
1326,
1,
198,
220,
220,
220,
32815,
796,
366,
15952,
2611,
1,
198,
220,
220,
220,
4645,
796,
366,
301,
5620,
1,
198,
220,
220,
220,
8573,
316,
796,
366,
7249,
942,
316,
1,
198,
220,
220,
220,
38226,
2395,
1326,
796,
366,
35636,
602,
2395,
1326,
1,
198,
220,
220,
220,
2836,
23211,
3575,
2024,
2395,
1326,
796,
366,
7220,
23211,
3575,
2024,
2395,
1326,
1,
198,
220,
220,
220,
410,
28781,
76,
39242,
2395,
1326,
796,
366,
85,
28781,
76,
39242,
2395,
1326,
1,
628,
220,
220,
220,
2488,
4871,
24396,
198,
220,
220,
220,
825,
422,
62,
26801,
7,
565,
82,
11,
26181,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
281,
27056,
341,
1988,
1912,
319,
262,
1398,
286,
4600,
26801,
63,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1988,
796,
26181,
13,
834,
4871,
834,
13,
834,
3672,
834,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
537,
82,
58,
39488,
13,
1136,
7,
8367,
11,
1988,
15437,
628,
220,
220,
220,
2488,
4871,
24396,
198,
220,
220,
220,
825,
1398,
62,
3672,
7,
565,
82,
11,
1988,
25,
366,
26198,
1600,
4277,
28,
14202,
8,
4613,
965,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
262,
1438,
286,
257,
1058,
4666,
25,
63,
79,
392,
292,
36020,
87,
13,
19849,
63,
1398,
422,
281,
33829,
1988,
13,
628,
220,
220,
220,
220,
220,
220,
220,
27068,
389,
4504,
287,
2793,
1339,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
42715,
62,
20608,
13,
1136,
7,
8367,
13,
8367,
11,
1988,
13,
8367,
8,
628,
220,
220,
220,
2488,
4871,
24396,
628,
198,
2,
25,
18261,
12416,
5447,
416,
262,
9834,
43243,
12,
49,
6465,
3210,
13,
198,
19535,
47,
1340,
5188,
62,
34,
16820,
796,
1391,
198,
220,
220,
220,
939,
25,
366,
11380,
1600,
198,
220,
220,
220,
31672,
25,
366,
2949,
2458,
1600,
198,
220,
220,
220,
7337,
25,
366,
22069,
15582,
1600,
198,
220,
220,
220,
22219,
25,
366,
52,
2616,
1457,
1143,
1600,
198,
220,
220,
220,
38210,
25,
366,
13900,
5109,
4049,
1600,
220,
1303,
393,
366,
1890,
37978,
1,
198,
220,
220,
220,
32320,
25,
366,
3673,
1043,
1600,
198,
220,
220,
220,
45439,
25,
366,
3673,
10909,
1600,
198,
220,
220,
220,
46618,
25,
366,
18453,
9312,
1165,
1588,
1600,
198,
220,
220,
220,
45900,
25,
366,
47269,
1165,
890,
1600,
198,
220,
220,
220,
5323,
25,
366,
37693,
4382,
4049,
1600,
198,
220,
220,
220,
24555,
25,
366,
3673,
9177,
1600,
198,
220,
220,
220,
44541,
25,
366,
3118,
15182,
1600,
198,
92,
628,
198,
4871,
7308,
17633,
7,
79,
5173,
5109,
13,
14881,
17633,
2599,
198,
220,
220,
220,
37227,
17227,
6460,
329,
1058,
4871,
25,
63,
79,
5173,
5109,
13,
14881,
17633,
63,
287,
1058,
4666,
25,
63,
79,
392,
292,
36020,
87,
63,
526,
15931,
628,
198,
4871,
6674,
34,
2317,
36044,
7,
4906,
2599,
198,
220,
220,
220,
37227,
9171,
330,
31172,
284,
16955,
422,
1058,
4871,
25,
63,
8897,
3558,
62,
23870,
13,
34,
2317,
36044,
47671,
611,
1695,
13,
628,
220,
220,
220,
1002,
1058,
4666,
25,
63,
8897,
3558,
62,
23870,
63,
318,
407,
6589,
11,
5860,
1058,
4871,
25,
63,
8897,
3558,
13,
36044,
63,
355,
257,
198,
220,
220,
220,
2779,
1398,
13,
198,
220,
220,
220,
37227,
628,
198,
42176,
796,
5994,
19852,
7203,
42176,
4943,
198,
36392,
796,
5994,
19852,
7203,
36392,
4943,
198,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
14881,
17633,
1600,
198,
220,
220,
220,
366,
35,
713,
7594,
1600,
198,
220,
220,
220,
366,
5589,
533,
1600,
198,
220,
220,
220,
366,
11600,
2339,
62,
3245,
1600,
198,
220,
220,
220,
366,
8807,
1600,
198,
220,
220,
220,
366,
16345,
3876,
1096,
62,
11600,
2339,
1600,
198,
220,
220,
220,
366,
12102,
378,
62,
11600,
2339,
1600,
198,
220,
220,
220,
366,
12102,
1352,
1600,
198,
60,
628,
198,
4871,
7308,
17633,
7,
79,
5173,
5109,
13,
14881,
17633,
2599,
198,
220,
220,
220,
37227,
17227,
6460,
329,
1058,
4871,
25,
63,
79,
5173,
5109,
13,
14881,
17633,
63,
287,
1058,
4666,
25,
63,
21282,
36802,
63,
526,
15931,
628,
198,
4871,
6674,
34,
2317,
36044,
7,
4906,
2599,
198,
220,
220,
220,
37227,
9171,
330,
31172,
284,
16955,
422,
1058,
4871,
25,
63,
8897,
3558,
62,
23870,
13,
34,
2317,
36044,
47671,
611,
1695,
13,
628,
220,
220,
220,
1002,
1058,
4666,
25,
63,
8897,
3558,
62,
23870,
63,
318,
407,
6589,
11,
5860,
1058,
4871,
25,
63,
8897,
3558,
13,
36044,
63,
355,
257,
198,
220,
220,
220,
2779,
1398,
13,
198,
220,
220,
220,
37227,
628,
198,
4871,
360,
713,
7594,
7,
11600,
11,
19720,
13,
44,
18187,
44,
5912,
58,
42176,
11,
32751,
60,
2599,
198,
220,
220,
220,
37227,
29869,
351,
3033,
286,
257,
8633,
1222,
1351,
11,
5556,
11688,
1895,
526,
15931,
628,
220,
220,
220,
11593,
6649,
1747,
834,
796,
5855,
834,
11600,
834,
1600,
366,
834,
3245,
4943,
628,
220,
220,
220,
825,
11593,
1136,
9186,
834,
7,
944,
11,
1994,
25,
4479,
58,
42176,
11,
493,
12962,
4613,
32751,
25,
198,
220,
220,
220,
220,
220,
220,
220,
13538,
1298,
76,
2788,
25,
63,
11600,
13,
834,
1136,
9186,
834,
63,
351,
18253,
1895,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2208,
22446,
834,
1136,
9186,
834,
7,
2539,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
7383,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
2539,
11,
493,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
493,
3419,
6376,
1895,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1351,
7,
944,
13,
27160,
28955,
58,
2539,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
628,
220,
220,
220,
825,
11593,
1136,
5219,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3109,
9152,
7559,
834,
3245,
15506,
422,
3709,
284,
307,
2298,
992,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
19779,
834,
11600,
834,
1298,
2116,
13,
834,
11600,
834,
92,
628,
220,
220,
220,
825,
11593,
2617,
9186,
834,
7,
944,
11,
1994,
25,
42293,
11,
1988,
25,
32751,
8,
4613,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
13538,
1298,
76,
2788,
25,
63,
11600,
13,
834,
2617,
9186,
63,
351,
21201,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
22446,
834,
2617,
9186,
834,
46491,
944,
13557,
12102,
378,
62,
13000,
7,
2539,
11,
1988,
4008,
628,
220,
220,
220,
825,
4866,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
257,
4866,
286,
262,
360,
713,
7594,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
834,
30073,
834,
3419,
628,
220,
220,
220,
1303,
279,
5173,
5109,
8330,
628,
220,
220,
220,
2488,
4871,
24396,
628,
220,
220,
220,
2488,
4871,
24396,
198,
220,
220,
220,
825,
4808,
12102,
378,
62,
1929,
2305,
7,
565,
82,
11,
410,
11,
2214,
25,
279,
5173,
5109,
13,
25747,
13,
17633,
15878,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7762,
20540,
4600,
85,
63,
355,
281,
2104,
360,
713,
7594,
2134,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
38240,
1997,
326,
460,
307,
11513,
284,
257,
8633,
22446,
279,
5173,
5109,
1788,
874,
4929,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
749,
584,
12515,
3858,
11,
304,
13,
70,
13,
900,
9783,
645,
761,
284,
5412,
606,
994,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
537,
82,
7,
85,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
20984,
284,
262,
279,
5173,
5109,
13,
3245,
13,
17633,
15878,
329,
262,
12784,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
834,
3245,
796,
2214,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
220,
220,
220,
825,
4808,
12102,
378,
62,
13000,
7,
944,
11,
1994,
11,
1988,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7762,
20540,
530,
4600,
2539,
63,
14,
63,
8367,
63,
5166,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5765,
279,
5173,
5109,
338,
21201,
20230,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
410,
11,
4049,
796,
2116,
13,
834,
3245,
13557,
12102,
378,
62,
76,
5912,
62,
2339,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14808,
2539,
11,
1988,
828,
828,
3815,
34758,
5512,
1179,
16193,
828,
537,
82,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
764,
834,
3245,
318,
407,
22331,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1994,
11,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4049,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
3254,
24765,
12331,
26933,
18224,
4357,
2116,
13,
834,
4871,
834,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
2539,
11,
1988,
8,
628,
220,
220,
220,
825,
8996,
7,
944,
11,
584,
11,
7646,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
1058,
26801,
25,
63,
17821,
63,
611,
4600,
944,
63,
318,
262,
976,
355,
4600,
847,
44646,
628,
220,
220,
220,
220,
220,
220,
220,
4930,
360,
713,
7594,
10245,
389,
10411,
611,
484,
3994,
262,
976,
900,
286,
8251,
11,
290,
198,
220,
220,
220,
220,
220,
220,
220,
11188,
3815,
8996,
4961,
13,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
7646,
1058,
20512,
11,
11902,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23228,
284,
1058,
20786,
25,
63,
5589,
533,
63,
329,
262,
3815,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
900,
7,
944,
13,
13083,
28955,
14512,
900,
7,
847,
13,
13083,
3419,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
10951,
7,
69,
1,
3673,
10411,
25,
1391,
82,
9741,
7,
944,
13,
13083,
28955,
92,
1220,
1391,
82,
9741,
7,
847,
13,
13083,
28955,
92,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
1988,
287,
2116,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1988,
13,
5589,
533,
7,
847,
58,
2539,
4357,
7646,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
198,
2,
34030,
5050,
329,
360,
713,
7594,
198,
2,
198,
2,
2312,
389,
5447,
287,
4553,
5499,
284,
3368,
31998,
351,
8251,
290,
262,
198,
2,
11688,
1895,
25745,
11,
304,
13,
70,
13,
611,
262,
360,
713,
7594,
4909,
8251,
366,
16345,
3876,
1096,
1,
393,
198,
2,
366,
12102,
378,
1911,
628,
198,
4299,
8633,
2339,
62,
3245,
33529,
198,
220,
220,
220,
37227,
2484,
1506,
392,
329,
1058,
4871,
25,
63,
79,
5173,
5109,
13,
15878,
63,
351,
1058,
4871,
25,
44646,
35,
713,
7594,
63,
4277,
8860,
526,
15931,
198,
220,
220,
220,
1441,
7663,
7,
12286,
62,
69,
9548,
28,
35,
713,
7594,
8,
628,
198,
4299,
35743,
62,
11600,
2339,
7,
25404,
11,
3509,
10394,
28,
4761,
2599,
198,
220,
220,
220,
37227,
13615,
257,
4731,
10638,
286,
262,
360,
713,
7594,
10154,
526,
15931,
198,
220,
220,
220,
1988,
62,
565,
82,
796,
288,
75,
58,
15,
4083,
834,
4871,
834,
13,
834,
3672,
834,
198,
220,
220,
220,
954,
796,
18896,
7,
25404,
8,
198,
220,
220,
220,
8251,
796,
366,
27071,
22179,
7,
25404,
13,
13083,
28955,
198,
220,
220,
220,
1255,
796,
277,
1,
90,
8367,
62,
565,
82,
92,
37913,
9127,
92,
2599,
1391,
13083,
36786,
628,
220,
220,
220,
611,
18896,
7,
20274,
8,
1875,
3509,
10394,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
833,
19524,
378,
262,
1351,
286,
8251,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
1255,
58,
25,
3509,
10394,
532,
513,
60,
1343,
366,
9313,
628,
220,
220,
220,
1441,
1255,
628,
198,
4299,
26571,
62,
11600,
2339,
7,
565,
82,
2599,
198,
220,
220,
220,
37227,
39668,
4600,
565,
82,
63,
523,
326,
663,
360,
713,
7594,
1866,
389,
31031,
13,
628,
220,
220,
220,
770,
318,
3306,
780,
360,
713,
7594,
318,
257,
47611,
286,
1058,
4871,
25,
63,
11600,
47671,
290,
523,
198,
220,
220,
220,
1058,
4666,
25,
63,
79,
5173,
5109,
63,
10143,
284,
869,
1058,
76,
2788,
25,
63,
93,
35,
713,
7594,
13,
834,
1136,
62,
12102,
2024,
834,
63,
290,
7881,
198,
220,
220,
220,
883,
319,
7308,
5841,
1424,
543,
2291,
360,
713,
7594,
1866,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
40806,
378,
625,
24708,
515,
1866,
286,
4600,
565,
82,
63,
26,
691,
883,
543,
389,
360,
713,
7594,
198,
220,
220,
220,
329,
1438,
11,
1529,
78,
287,
8106,
7,
198,
220,
220,
220,
220,
220,
220,
220,
37456,
2378,
25,
651,
62,
47103,
7,
9186,
58,
16,
12962,
318,
360,
713,
7594,
11,
537,
82,
13,
834,
34574,
602,
834,
13,
23814,
3419,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
262,
4938,
1352,
7,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2214,
796,
537,
82,
13,
834,
25747,
834,
58,
3672,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2214,
13,
7353,
62,
12102,
2024,
796,
2214,
13,
7353,
62,
12102,
2024,
393,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
2214,
13,
7353,
62,
12102,
2024,
13,
2302,
437,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
787,
62,
41357,
62,
12102,
1352,
7,
85,
8,
329,
410,
287,
360,
713,
7594,
13,
834,
1136,
62,
12102,
2024,
834,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
537,
82,
628,
198,
4299,
8996,
7,
35226,
11,
257,
11,
275,
11,
7646,
25,
20512,
8,
4613,
20512,
25,
198,
220,
220,
220,
37227,
13615,
1058,
26801,
25,
63,
17821,
63,
611,
7559,
64,
13,
35226,
15506,
6624,
7559,
65,
13,
35226,
15506,
13,
628,
220,
220,
220,
1002,
7646,
318,
1058,
26801,
25,
63,
25101,
47671,
1058,
26801,
25,
63,
14202,
63,
318,
32005,
355,
4600,
64,
63,
393,
4600,
65,
63,
26,
4306,
11,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
651,
35226,
7,
64,
11,
708,
81,
8,
6624,
651,
35226,
7,
65,
11,
708,
81,
8,
393,
357,
198,
220,
220,
220,
220,
220,
220,
220,
407,
7646,
290,
6045,
287,
357,
1136,
35226,
7,
64,
11,
708,
81,
828,
651,
35226,
7,
65,
11,
708,
81,
4008,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1303,
611,
407,
1255,
25,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2604,
13,
10951,
7,
69,
1,
3673,
10411,
25,
1391,
35226,
92,
34758,
1136,
35226,
7,
64,
11,
708,
81,
38165,
1220,
1391,
1136,
35226,
7,
65,
11,
708,
81,
38165,
4943,
198,
220,
220,
220,
1303,
1441,
1255,
628,
198,
4299,
691,
7,
48727,
25,
40806,
1352,
8,
4613,
4377,
25,
198,
220,
220,
220,
37227,
13615,
262,
691,
5002,
286,
4600,
48727,
47671,
393,
1058,
26801,
25,
63,
14202,
63,
526,
15931,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
1306,
7,
48727,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6056,
796,
2134,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
6056,
318,
1306,
7,
48727,
11,
6056,
8,
198,
220,
220,
220,
2845,
357,
19485,
29993,
341,
11,
2195,
861,
295,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
220,
1303,
657,
393,
26870,
17,
7466,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
198,
4299,
21136,
62,
11299,
62,
4906,
7,
8367,
25,
965,
8,
4613,
309,
29291,
58,
2536,
11,
360,
713,
58,
2536,
11,
4377,
60,
5974,
198,
220,
220,
220,
37227,
13615,
2695,
2099,
290,
10007,
422,
4600,
8367,
44646,
628,
220,
220,
220,
40499,
422,
1058,
4666,
25,
63,
8897,
3558,
13,
22602,
44646,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
16326,
796,
1988,
13,
35312,
7203,
26,
4943,
198,
220,
220,
220,
2695,
62,
4906,
11,
42287,
62,
1831,
796,
16326,
58,
15,
4083,
36311,
22784,
16326,
58,
16,
47715,
198,
220,
220,
220,
42287,
796,
23884,
198,
220,
220,
220,
284,
62,
36311,
796,
366,
7879,
6,
366,
628,
220,
220,
220,
329,
5772,
287,
42287,
62,
1831,
25,
198,
220,
220,
220,
220,
220,
220,
220,
479,
11,
1635,
85,
796,
5772,
13,
36311,
22446,
35312,
7203,
2625,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
479,
290,
407,
410,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
42287,
58,
74,
13,
36311,
7,
1462,
62,
36311,
737,
21037,
3419,
60,
796,
410,
58,
15,
4083,
36311,
7,
1462,
62,
36311,
8,
611,
18896,
7,
85,
8,
2073,
6407,
628,
220,
220,
220,
1441,
2695,
62,
4906,
11,
42287,
628,
198,
31,
75,
622,
62,
23870,
3419,
198,
4299,
1277,
62,
25747,
7,
565,
82,
8,
4613,
337,
5912,
58,
2536,
11,
279,
5173,
5109,
13,
25747,
13,
17633,
15878,
5974,
198,
220,
220,
220,
37227,
13615,
262,
1058,
4666,
25,
63,
79,
5173,
5109,
63,
7032,
5447,
319,
4600,
26801,
63,
393,
663,
1398,
13,
628,
220,
220,
220,
770,
318,
588,
262,
7559,
834,
25747,
834,
15506,
11688,
11,
475,
36833,
262,
7032,
5447,
319,
597,
198,
220,
220,
220,
2560,
1398,
7,
274,
737,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
25,
7508,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1438,
11,
7508,
287,
537,
82,
13,
834,
25747,
834,
13,
23814,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
407,
287,
900,
7,
565,
82,
13,
76,
305,
3419,
58,
16,
4083,
834,
25747,
834,
13,
13083,
28955,
198,
220,
220,
220,
1782,
628,
198,
28311,
25,
198,
220,
220,
220,
422,
19720,
1330,
651,
62,
22046,
220,
1303,
2099,
25,
8856,
685,
35226,
12,
23211,
60,
198,
16341,
17267,
12331,
25,
220,
1303,
23864,
2611,
25,
645,
3002,
198,
220,
220,
220,
1303,
1114,
11361,
1279,
18,
13,
23,
198
] | 2.497591 | 4,982 |
"""
Test report metrics for a mapping job.
"""
import unittest
import logging
import numpy
from pbcore.io import AlignmentSet, ConsensusAlignmentSet
from pbcommand.models import FileTypes
from pysiv2.custom.base import TestReportStatistics, setUpFindAlignments
log = logging.getLogger(__name__)
class TestMappingStats(TestReportStatistics):
"""
Compare the contents of the mapping stats report against expected values.
This will work for both the SubreadSet and ConsensusReadSet variants of
the report (although some tests will be skipped in the latter case).
"""
REPORT_ID = set(["mapping_stats", "mapping_stats_ccs", "mapping_stats_hgap"]) # XXX yuck.
TEST_ID = "mapping_stats"
METRIC_IDS = [
"mapped_subread_bases_n",
"mapped_alignments_n",
"mapped_reads_n",
"mapped_subreads_n",
"mapped_readlength_mean",
"mapped_subread_concordance_mean",
"mapped_subread_readlength_mean",
]
MAX_RECORDS = 100000
def test_mapped_read_concordance_is_sequence_identity(self):
"""
Verify that the subread concordance in the report corresponds to the
sequence identity extracted by pbcore.io.
"""
# XXX workaround for CCS+mapping jobs
ds_type = AlignmentSet
stat_id = "mapped_subread_concordance_mean"
mean_id_report = self._get_stat(stat_id)
if mean_id_report is None:
raise unittest.SkipTest("mapped_subread_concordance_mean not "+
"found in report")
if self.alignment_file_name is None:
ft_id = FileTypes.DS_ALIGN_CCS.file_type_id
alignment_files = []
for file_info in self.datastore.get_file_dict().values():
if file_info.is_chunked:
continue
if file_info.file_type_id == ft_id:
if file_info.file_id.startswith("pbalign"):
self.alignment_file_name = file_info.path
break
if self.alignment_file_name is None:
assert len(alignment_files) == 1
self.alignment_file_name = alignment_files[0]
ds_type = ConsensusAlignmentSet
stat_id = "mapped_read_concordance_mean"
identities = []
with ds_type(self.alignment_file_name, skipCounts=True) as ds:
if ds.numRecords > self.MAX_RECORDS:
log.warn("{} exceeds size cutoff {}".format(ds.numRecords, self.MAX_RECORDS))
raise unittest.SkipTest("Exceeds size cutoff")
for bam in ds.resourceReaders():
identities.extend(list(bam.identity))
mean_id = numpy.round(numpy.array(identities).mean(), decimals=4)
mean_id_report = self._get_stat(stat_id)
self.assertAlmostEqual(mean_id, mean_id_report, places=4)
def test_all_movies_have_mapped_reads(self):
"""
Test that all movies included in the by-movie table have mapped reads.
"""
for column in self.report.tables[0].columns:
if column.id == "mapped_reads":
self.assertTrue(all([x>0 for x in column.values]),
"One or more movies has no mapped reads")
break
else:
self.fail("Can't find mapped reads column")
def test_number_of_mapped_movies(self):
"""
Test that the number of mapped movies as shown in the report is equal
to the specified value (optional).
"""
number_of_mapped_movies = self.expected_values.get("number_of_mapped_movies", None)
if number_of_mapped_movies is None:
raise unittest.SkipTest("number_of_mapped_movies not specified")
else:
col = self.report.tables[0].columns[0]
self.assertEqual(len(col.values), number_of_mapped_movies + 1)
| [
198,
37811,
198,
14402,
989,
20731,
329,
257,
16855,
1693,
13,
198,
37811,
198,
198,
11748,
555,
715,
395,
198,
11748,
18931,
198,
198,
11748,
299,
32152,
198,
198,
6738,
279,
65,
7295,
13,
952,
1330,
978,
16747,
7248,
11,
3515,
7314,
2348,
16747,
7248,
198,
6738,
279,
65,
21812,
13,
27530,
1330,
9220,
31431,
198,
198,
6738,
279,
893,
452,
17,
13,
23144,
13,
8692,
1330,
6208,
19100,
48346,
11,
900,
4933,
16742,
2348,
570,
902,
198,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
4871,
6208,
44,
5912,
29668,
7,
14402,
19100,
48346,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27814,
262,
10154,
286,
262,
16855,
9756,
989,
1028,
2938,
3815,
13,
198,
220,
220,
220,
770,
481,
670,
329,
1111,
262,
3834,
961,
7248,
290,
3515,
7314,
5569,
7248,
17670,
286,
198,
220,
220,
220,
262,
989,
357,
16670,
617,
5254,
481,
307,
26684,
287,
262,
6846,
1339,
737,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
39099,
62,
2389,
796,
900,
7,
14692,
76,
5912,
62,
34242,
1600,
366,
76,
5912,
62,
34242,
62,
535,
82,
1600,
366,
76,
5912,
62,
34242,
62,
71,
43554,
8973,
8,
1303,
27713,
331,
1347,
13,
198,
220,
220,
220,
43001,
62,
2389,
796,
366,
76,
5912,
62,
34242,
1,
198,
220,
220,
220,
31243,
41132,
62,
14255,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
76,
6320,
62,
7266,
961,
62,
65,
1386,
62,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
76,
6320,
62,
31494,
902,
62,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
76,
6320,
62,
40779,
62,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
76,
6320,
62,
7266,
40779,
62,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
76,
6320,
62,
961,
13664,
62,
32604,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
76,
6320,
62,
7266,
961,
62,
1102,
66,
585,
590,
62,
32604,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
76,
6320,
62,
7266,
961,
62,
961,
13664,
62,
32604,
1600,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
25882,
62,
38827,
1581,
5258,
796,
1802,
830,
628,
220,
220,
220,
825,
1332,
62,
76,
6320,
62,
961,
62,
1102,
66,
585,
590,
62,
271,
62,
43167,
62,
738,
414,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
49899,
326,
262,
850,
961,
1673,
585,
590,
287,
262,
989,
24866,
284,
262,
198,
220,
220,
220,
220,
220,
220,
220,
8379,
5369,
21242,
416,
279,
65,
7295,
13,
952,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
27713,
46513,
329,
327,
7902,
10,
76,
5912,
3946,
198,
220,
220,
220,
220,
220,
220,
220,
288,
82,
62,
4906,
796,
978,
16747,
7248,
198,
220,
220,
220,
220,
220,
220,
220,
1185,
62,
312,
796,
366,
76,
6320,
62,
7266,
961,
62,
1102,
66,
585,
590,
62,
32604,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1612,
62,
312,
62,
13116,
796,
2116,
13557,
1136,
62,
14269,
7,
14269,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1612,
62,
312,
62,
13116,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
555,
715,
395,
13,
50232,
14402,
7203,
76,
6320,
62,
7266,
961,
62,
1102,
66,
585,
590,
62,
32604,
407,
43825,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9275,
287,
989,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
282,
16747,
62,
7753,
62,
3672,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10117,
62,
312,
796,
9220,
31431,
13,
5258,
62,
1847,
16284,
62,
4093,
50,
13,
7753,
62,
4906,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19114,
62,
16624,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2393,
62,
10951,
287,
2116,
13,
19608,
459,
382,
13,
1136,
62,
7753,
62,
11600,
22446,
27160,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2393,
62,
10951,
13,
271,
62,
354,
2954,
276,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2393,
62,
10951,
13,
7753,
62,
4906,
62,
312,
6624,
10117,
62,
312,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2393,
62,
10951,
13,
7753,
62,
312,
13,
9688,
2032,
342,
7203,
79,
6893,
570,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
282,
16747,
62,
7753,
62,
3672,
796,
2393,
62,
10951,
13,
6978,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
282,
16747,
62,
7753,
62,
3672,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
18896,
7,
282,
16747,
62,
16624,
8,
6624,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
282,
16747,
62,
7753,
62,
3672,
796,
19114,
62,
16624,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
82,
62,
4906,
796,
3515,
7314,
2348,
16747,
7248,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1185,
62,
312,
796,
366,
76,
6320,
62,
961,
62,
1102,
66,
585,
590,
62,
32604,
1,
198,
220,
220,
220,
220,
220,
220,
220,
18413,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
351,
288,
82,
62,
4906,
7,
944,
13,
282,
16747,
62,
7753,
62,
3672,
11,
14267,
12332,
82,
28,
17821,
8,
355,
288,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
288,
82,
13,
22510,
6690,
3669,
1875,
2116,
13,
22921,
62,
38827,
1581,
5258,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
40539,
7203,
90,
92,
21695,
2546,
45616,
23884,
1911,
18982,
7,
9310,
13,
22510,
6690,
3669,
11,
2116,
13,
22921,
62,
38827,
1581,
5258,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
555,
715,
395,
13,
50232,
14402,
7203,
3109,
2707,
82,
2546,
45616,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
275,
321,
287,
288,
82,
13,
31092,
5569,
364,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18413,
13,
2302,
437,
7,
4868,
7,
65,
321,
13,
738,
414,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1612,
62,
312,
796,
299,
32152,
13,
744,
7,
77,
32152,
13,
18747,
7,
738,
871,
737,
32604,
22784,
875,
320,
874,
28,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1612,
62,
312,
62,
13116,
796,
2116,
13557,
1136,
62,
14269,
7,
14269,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
23379,
36,
13255,
7,
32604,
62,
312,
11,
1612,
62,
312,
62,
13116,
11,
4113,
28,
19,
8,
628,
220,
220,
220,
825,
1332,
62,
439,
62,
76,
20526,
62,
14150,
62,
76,
6320,
62,
40779,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6208,
326,
477,
6918,
3017,
287,
262,
416,
12,
41364,
3084,
423,
27661,
9743,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
5721,
287,
2116,
13,
13116,
13,
83,
2977,
58,
15,
4083,
28665,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5721,
13,
312,
6624,
366,
76,
6320,
62,
40779,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
17821,
7,
439,
26933,
87,
29,
15,
329,
2124,
287,
5721,
13,
27160,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3198,
393,
517,
6918,
468,
645,
27661,
9743,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
32165,
7203,
6090,
470,
1064,
27661,
9743,
5721,
4943,
628,
220,
220,
220,
825,
1332,
62,
17618,
62,
1659,
62,
76,
6320,
62,
76,
20526,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6208,
326,
262,
1271,
286,
27661,
6918,
355,
3402,
287,
262,
989,
318,
4961,
198,
220,
220,
220,
220,
220,
220,
220,
284,
262,
7368,
1988,
357,
25968,
737,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
62,
1659,
62,
76,
6320,
62,
76,
20526,
796,
2116,
13,
40319,
62,
27160,
13,
1136,
7203,
17618,
62,
1659,
62,
76,
6320,
62,
76,
20526,
1600,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1271,
62,
1659,
62,
76,
6320,
62,
76,
20526,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
555,
715,
395,
13,
50232,
14402,
7203,
17618,
62,
1659,
62,
76,
6320,
62,
76,
20526,
407,
7368,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
796,
2116,
13,
13116,
13,
83,
2977,
58,
15,
4083,
28665,
82,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
11925,
7,
4033,
13,
27160,
828,
1271,
62,
1659,
62,
76,
6320,
62,
76,
20526,
1343,
352,
8,
198
] | 2.173961 | 1,805 |
import unittest
from Calculator import Calculator
from CsvReader import CsvReader
from pprint import pprint
if __name__ == '__main__':
unittest.main()
| [
11748,
555,
715,
395,
198,
6738,
43597,
1330,
43597,
198,
6738,
327,
21370,
33634,
1330,
327,
21370,
33634,
198,
6738,
279,
4798,
1330,
279,
4798,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 3.22449 | 49 |
# INSTRUCTIONS
# Translate the text and write it between the "
# EXAMPLE: original -> "This text is in english: value {0}"
# translation -> "Aquest text està en anglès: valor {0}"
# So it would look like: "ORIGINAL_TEXT" : "TRANSLATED_TEXT",
# If you see sth like {0}, {1}, maintain it on the translated sentence
# Meke special attention to elements like ":", etc.
lang_3_5_0 = {
"Tooltip Appearance:": "",
"Tooltip's font, font size, font color and background": "",
"Disable tooltip's blurry background": "",
"Sync time with the internet": "",
"Internet date and time": "",
"Select internet time provider, change sync frequency": "",
"Enable internet time sync": "",
"Paste a URL from the world clock api or equivalent": "",
"Help": "",
"Internet sync frequency": "",
"10 minutes": "",
"30 minutes": "",
"1 hour": "",
"2 hours": "",
"4 hours": "",
"10 hours": "",
"24 hours": "",
}
lang_3_4_0 = lang_3_5_0 | {
"Show calendar": "Visa kalender",
"Disabled": "Inaktiverad",
"Open quick settings": "Öppna snabbinställningar",
"Show desktop": "Visa skrivbord",
"Open run dialog": "Öppna kör",
"Open task manager": "Öppna aktivitetshanteraren",
"Open start menu": "Öppna startmenyn",
"Open search menu": "Öppna sökmenyn",
"Change task": "Ändra uppgift",
"Change the action done when the clock is clicked": "Ändra vad som händer när klockan klickas",
}
lang_3_3_2 = lang_3_4_0 | {
"ElevenClock Updater": "ElevenClock uppdaterare",
"ElevenClock is downloading updates": "ElevenClock hämtar uppdateringar",
"ElevenClock has updated to version {0} successfully\nPlease see GitHub for the changelog": "ElevenClock har uppdaterats till version {0}\nSe GitHub för ändringar",
"Customize the clock on Windows 11": "Anpassa klockan på Windows 11",
"Disable the new instance checker method": "Inaktivera den nya instance checker metoden",
"Import settings from a local file": "Importera inställningar från en lokal fil",
"Export settings to a local file": "Exportera inställningar från en lokal fil",
"Export": "Exportera",
"Import": "Importera",
}
lang_3_3_1 = lang_3_3_2 | {
"Invalid time format\nPlease follow the\nC 1989 Standards": "Ogiltigt tidsformat\nVänligen följ\n1989 C standarden",
"Nothing to preview": "Inget att förhandsvisa",
"Invalid time format\nPlease modify it\nin the settings": "Ogiltigt tidsformat\nVänligen modifiera\nformatet i inställningarna",
"Disable the tooltip shown when the clock is hovered": "Inaktivera tooltip som visas när klockan hålls över"
}
lang_3_3 = lang_3_3_1 | {
"Custom format rules:": "Regler för anpassad formatering",
"Any text can be placed here. To place items such as date and time, please use the 1989 C standard. More info on the following link": "Valfri text kan placeras här. För att placera saker som datum och tid, vänligen använd 1989 C standarden. Mer info finns på följande länk:",
"Python date and time formats": "Python datum och tidsformat",
"To disable the zero-padding effect, add a # in between the % and the code: non-zero-padded hours would be %#H, and zero-padded hours would be %H": "För att inaktivera zero-padding, lägg till ett # mellan % och koden: non-zero-padded timmar skrivs %#H, och zero-padded timmar skrivs %H", # Here please don't modify the %H and %#H values
"Click on Apply to apply and preview the format": "Klicka på Verkställ för att förhandsgranska formateringen",
"Apply": "Verkställ",
"If you don't understand what is happening, please uncheck the checkbox over the text area": "Om du inte förstår vad som händer, vänligen avmarkera kryssrutan över textområdet",
"Set a custom date and time format": "Ange ett anpassat format för datum och tid",
"(for advanced users only)": "(för avancerade användare)",
"Move this clock to the left": "Flytta den här klockan till vänster",
"Move this clock to the top": "Flytta den här klockan till toppen",
"Move this clock to the right": "Flytta den här klockan till höger",
"Move this clock to the bottom": "Flytta den här klockan till botten",
"Restore horizontal position": "Återställ horisontell position",
"Restore vertical position": "Återställ vertikal position",
}
lang_3_2_1 = lang_3_3 | {
"Open online help to troubleshoot problems": "Öppna online hjälp för att felsöka problem",
"Reset ElevenClock preferences to defaults": "Återställ ElevenClock till standardinställningar",
"Specify a minimum width for the clock": "Specificera en minimi-bredd för klockan",
"Search on the settings": "Sök i inställningar",
"No results were found": "Inga resultat hittades",
}
lang_3_2 = lang_3_2_1 | {
"Use system accent color as background color": "Använd systemets accentfärg som bakgrundsfärg",
"Check only the focused window on the fullscreen check": "Kolla endast fokuserade fönstret vid fullscreen check",
"Clock on monitor {0}": "Klocka på bildskärm {0}",
"Move to the left": "Flytta till vänster",
"Show this clock on the left": "Visa den här klockan till vänster",
"Show this clock on the right": "Visa den här klockan till höger",
"Restore clock position": "Återställ klockans position",
}
lang_3_1 = lang_3_2 | {
"W": "v", # The initial of the word week in your language: W for week, S for setmana, etc.
"Disable the notification badge": "Inaktivera notification badge",
"Override clock default height": "Override klockans standardhöjd",
"Adjust horizontal clock position": "Justera klockans position horisontellt",
"Adjust vertical clock position": "Justera klockans position vertikalt",
"Export log as a file": "Exportera log som en fil",
"Copy log to clipboard": "Kopiera log till urklipp",
"Announcements:": "Meddelanden",
"Fetching latest announcement, please wait...": "Hämtar senaste meddelande, vänligen vänta",
"Couldn't load the announcements. Please try again later": "Kunde inte ladda meddelanden, vänligen försök igen senare",
"ElevenClock's log": "ElevenClocks log",
"Pick a color": "Välj en färg"
}
lang_3 = lang_3_1 | {
"Hide the clock during 10 seconds when clicked": "Göm klockan i 10 sekunder vid klick",
"Enable low-cpu mode": "Aktivera low-cpu mode",
"You might lose functionalities, like the notification counter or the dynamic background": "Du kan gå miste om funktioner som meddelanderäknaren eller dynamisk bakgrund",
"Clock position and size:": "Klockans position och storlek",
"Clock size preferences, position offset, clock at the left, etc.": "Inställningar för klockstorlek, position offset, klocka till vänster, osv.",
"Reset monitor blacklisting status": "Återställ skärmens svartlist status",
"Reset": "Återställ",
"Third party licenses": "Tredjeparts licenser",
"View": "Visa",
"ElevenClock": "ElevenClock",
"Monitor tools": "Skärmverktyg",
"Blacklist this monitor": "Svartlista den här skärmen",
"Third Party Open-Source Software in Elevenclock {0} (And their licenses)": "Tredjeparts Open-Source mjukvara i ElevenClock {0} (och deras licenser)",
"ElevenClock is an Open-Source application made with the help of other libraries made by the community:": "ElevenClock är en Open-Source applikation utvecklad med hjälp av bibliotek skapad av communityn",
"Ok": "Ok",
"More Info": "Mer info",
"About Qt": "Om Qt",
"Success": "Lyckades",
"The monitors were unblacklisted successfully.": "Skärmarna togs bort från svartlistning",
"Now you should see the clock everywhere": "Nu borde du se klockan överallt",
"Ok": "Ok",
"Blacklist Monitor": "Svarlista skärm",
"Blacklisting a monitor will hide the clock on this monitor permanently.": "Att svartlista en skärm döljer klockan från den här skärmen permanent",
"This action can be reverted from the settings window, under <b>Clock position and size</b>": "Denna handling kan ångras från inställningarna, under <b>Klockans position och storlek</b>",
"Are you sure do you want to blacklist the monitor \"{0}\"?": "Är du säker på att du vill svartlista skärmen \"{0}\"?",
"Yes": "Ja",
"No": "Nej",
}
lang_2_9_2 = lang_3 | {
"Reload log": "Ladda om log",
"Do not show the clock on secondary monitors": "Visa inte klockan på sekundära skärmar",
"Disable clock taskbar background color (make clock transparent)": "Inaktivera klockans bakgrundsfärg i aktivitetsfältet (gör klockan transparent",
"Open the welcome wizard": "Öppna välkomstguiden",
" (ALPHA STAGE, MAY NOT WORK)": " (ALPHA STADIE, KANSKE INTE FUNGERAR)",
"Welcome to ElevenClock": "Välkommen till ElevenClock",
"Skip": "Hoppa Över",
"Start": "Start",
"Next": "Nästa",
"Finish": "Klar",
}
lang_2_9 = lang_2_9_2 | {
"Task Manager": "Aktivitetshanteraren",
"Change date and time": "Ändra datum och tid",
"Notification settings": "Notifikationsinställningar",
"Updates, icon tray, language": "Uppdateringar, ikon, språk",
"Hide extended options from the clock right-click menu (needs a restart to be applied)": "Göm utökade inställnigar från klockans högerklickmeny (behöver omstart för att tillämpas)",
"Fullscreen behaviour, clock position, 1st monitor clock, other miscellanious settings": "Fullskärmsbeteende, klockans position, huvudskärmsklocka, andra diverse inställningar",
'Add the "Show Desktop" button on the left corner of every clock': 'Lägg till "Visa skrivbord" knapp till vänstra hörnet av varje klocka',
'You might need to set a custom background color for this to work. More info <a href="{0}" style="color:DodgerBlue">HERE</a>': 'Du kan behöva sätta en anpassad bakgrundsfärg för att det ska fungera. Mer info <a href="{0}" style="color:DodgerBlue">HÄR</a> ',
"Clock's font, font size, font color and background, text alignment": "Klockans font, teckenstorlek, färg på font och bakgrund, textjustering",
"Date format, Time format, seconds,weekday, weeknumber, regional settings": "Datum och tidsformatering, sekunder, veckodag, veckonummer, regionala inställningar",
"Testing features and error-fixing tools": "Testar funktioner och felhanteringsverktyg",
"Language pack author(s), help translating ElevenClock": "Språkpakets författare, hjälp översätt ElevenClock",
"Info, report a bug, submit a feature request, donate, about": "Info, rapportera en bug, skicka in en funktionsbegäran, donera, om",
"Log, debugging information": "Log, debugging information",
}
lang_2_8 = lang_2_9 | {
"Force the clock to be at the top of the screen": "Tvinga klockan att vara på toppen av skärmen",
"Show the clock on the primary screen": "Visa klockan på primärskärmen",
"Use a custom font color": "Använd anpassad teckenfärg",
"Use a custom background color": "Använd anpassad bakgrundsfärg",
"Align the clock text to the center": "Justera placering av text till klockans centrum",
"Select custom color": "Välj anpassad färg",
"Hide the clock when a program occupies all screens": "Dölj klockan när ett program tar upp alla skärmar",
}
lang2_7_bis = lang_2_8 | {
"Use a custom font": "Använd en anpassad font",
"Use a custom font size": "Använd en anpassad font storlek",
"Enable hide when multi-monitor fullscreen apps are running": "Aktivera dölj när helskärmsappar med flera skärmar körs",
"<b>{0}</b> needs to be enabled to change this setting": "<b>{0}</b> måste vara aktiverat för att ändra denna inställning",
"<b>{0}</b> needs to be disabled to change this setting": "<b>{0}</b> måste inaktiveras för att ändra den här inställningen",
}
lang2_7 = lang2_7_bis | {
" (This feature has been disabled because it should work by default. If it is not, please report a bug)": " (Den här funktionen har inaktiverats eftersom den borde fungera som standard. Om den inte är det, rapportera ett fel)",
"ElevenClock's language": "ElevenClocks språk"
}
lang2_6 = lang2_7 | {
"About Qt6 (PySide6)": "Om Qt6 (PySide6)",
"About": "Om",
"Alternative non-SSL update server (This might help with SSL errors)": "Alternativ icke-SSL-uppdateringsserver (Detta kan hjälpa till med SSL-fel)",
"Fixes and other experimental features: (Use ONLY if something is not working)": "Fixar och andra experimentella funktioner: (Använd ENDAST om något inte fungerar)",
"Show week number on the clock": "Visa veckonummer på klockan"
}
lang2_5 = lang2_6 | {
"Hide the clock when RDP Client or Citrix Workspace are running": "Dölj klockan när RDP Client eller Citrix Workspace körs",
"Clock Appearance:": "Klockans utseende",
"Force the clock to have black text": "Tvinga klockan att ha svart text",
" - It is required that the Dark Text checkbox is disabled": " - Det krävs att kryssrutan Mörk text är inaktiverad",
"Debbugging information:": "Debugging information",
"Open ElevenClock's log": "Öppna ElevenClocks logg",
}
lang2_4 = lang2_5 | {
# Added text in version 2.4
"Show the clock on the primary screen (Useful if clock is set on the left)": "Visa klockan på den primära skärmen (Användbart om klockan är inställd till vänster)",
"Show weekday on the clock" :"Visa veckodag på klockan",
}
lang2_3 = lang2_4 | {
#Context menu
"ElevenClock Settings" :"ElevenClock Inställningar", # Also settings title
"Reload Clocks" :"Ladda om klockor",
"ElevenClock v{0}" :"ElevenClock v{0}",
"Restart ElevenClock" :"Starta om ElevenClock",
"Hide ElevenClock" :"Göm ElevenClock",
"Quit ElevenClock" :"Avsluta ElevenClock",
#General settings section
"General Settings:" :"Allmänna Inställningar:",
"Automatically check for updates" :"Sök automatiskt efter uppdateringar",
"Automatically install available updates" :"Installera tillgängliga uppdateringar automatiskt",
"Enable really silent updates" :"Aktivera riktigt tysta uppdateringar",
"Bypass update provider authenticity check (NOT RECOMMENDED, AT YOUR OWN RISK)" :"Kringgå uppdateringsleverantörens äkthetskontroll (REKOMMENDERAS INTE, PÅ DIN EGEN RISK)",
"Show ElevenClock on system tray" :"Visa ElevenClock i systemfältet",
"Alternative clock alignment (may not work)" :"Alternativ klockjustering (fungerar kanske inte)",
"Change startup behaviour" :"Ändra startbeteende",
"Change" :"Förändra",
"<b>Update to the latest version!</b>" :"<b>Uppdatera till den senaste versionen!</b>",
"Install update" :"Installera uppdatering",
#Clock settings
"Clock Settings:" :"Klockinställningar:",
"Hide the clock in fullscreen mode" :"Dölj klockan i helskärmsläge",
"Hide the clock when RDP client is active" :"Dölj klockan när RDP-klienten är aktiv",
"Force the clock to be at the bottom of the screen" :"Tvinga klockan att vara längst ner på skärmen",
"Show the clock when the taskbar is set to hide automatically" :"Visa klockan när aktivitetsfältet är inställt på att döljas automatiskt",
"Fix the hyphen/dash showing over the month" :"Åtgärda bindestrecket/strecket som visas under månaden",
"Force the clock to have white text" :"Tvinga klockan att ha vit text",
"Show the clock at the left of the screen" :"Visa klockan till vänster på skärmen",
#Date & time settings
"Date & Time Settings:" :"Inställningar för datum och tid:",
"Show seconds on the clock" :"Visa sekunder på klockan",
"Show date on the clock" :"Visa datum på klockan",
"Show time on the clock" :"Visa tid på klockan",
"Change date and time format (Regional settings)" :"Ändra datum och tidsformat (regionala inställningar)",
"Regional settings" :"Regionala inställningar",
#About the language pack
"About the language pack:" :"Om språkpaketet:",
"Translated to English by martinet101" :"Översatt till Svenska av Noffe och cjal95", # Here, make sute to give you some credits: Translated to LANGUAGE by USER/NAME/PSEUDONYM/etc.
"Translate ElevenClock to your language" :"Översätt ElevenClock till ditt språk",
"Get started" :"Kom igång",
#About ElevenClock
"About ElevenClock version {0}:" :"Om ElevenClock version {0}:",
"View ElevenClock's homepage" :"Visa ElevenClocks hemsida",
"Open" :"Öppna",
"Report an issue/request a feature" :"Rapportera ett problem/begär en funktion",
"Report" :"Rapportera",
"Support the dev: Give me a coffee☕" :"Stöd utvecklaren: Ge mig en kaffe☕",
"Open page" :"Öppna sida",
"Icons by Icons8" :"Ikoner av Icons8", # Here, the word "Icons8" should not be translated
"Webpage" :"Webbsida",
"Close settings" :"Stäng inställningar",
"Close" :"Stäng",
}
lang = lang2_3
| [
2,
3268,
46126,
11053,
198,
198,
2,
3602,
17660,
262,
2420,
290,
3551,
340,
1022,
262,
366,
198,
2,
7788,
2390,
16437,
25,
220,
220,
220,
220,
220,
2656,
220,
220,
220,
4613,
220,
366,
1212,
2420,
318,
287,
46932,
25,
1988,
1391,
15,
36786,
220,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11059,
4613,
220,
366,
32,
6138,
2420,
1556,
24247,
551,
3550,
75,
14064,
82,
25,
1188,
273,
1391,
15,
36786,
198,
198,
2,
1406,
340,
561,
804,
588,
25,
366,
1581,
3528,
17961,
62,
32541,
1,
1058,
366,
5446,
1565,
8634,
11617,
62,
32541,
1600,
628,
198,
2,
1002,
345,
766,
336,
71,
588,
1391,
15,
5512,
1391,
16,
5512,
5529,
340,
319,
262,
14251,
6827,
198,
2,
2185,
365,
2041,
3241,
284,
4847,
588,
366,
25,
1600,
3503,
13,
198,
198,
17204,
62,
18,
62,
20,
62,
15,
796,
1391,
198,
220,
220,
220,
366,
25391,
22504,
43436,
25,
1298,
366,
1600,
198,
220,
220,
220,
366,
25391,
22504,
338,
10369,
11,
10369,
2546,
11,
10369,
3124,
290,
4469,
1298,
366,
1600,
198,
220,
220,
220,
366,
48893,
49472,
338,
44701,
4469,
1298,
366,
1600,
198,
220,
220,
220,
366,
28985,
640,
351,
262,
5230,
1298,
366,
1600,
198,
220,
220,
220,
366,
28566,
3128,
290,
640,
1298,
366,
1600,
198,
220,
220,
220,
366,
17563,
5230,
640,
10131,
11,
1487,
17510,
8373,
1298,
366,
1600,
198,
220,
220,
220,
366,
36695,
5230,
640,
17510,
1298,
366,
1600,
198,
220,
220,
220,
366,
47,
4594,
257,
10289,
422,
262,
995,
8801,
40391,
393,
7548,
1298,
366,
1600,
198,
220,
220,
220,
366,
22087,
1298,
366,
1600,
198,
220,
220,
220,
366,
28566,
17510,
8373,
1298,
366,
1600,
198,
220,
220,
220,
366,
940,
2431,
1298,
366,
1600,
198,
220,
220,
220,
366,
1270,
2431,
1298,
366,
1600,
198,
220,
220,
220,
366,
16,
1711,
1298,
366,
1600,
198,
220,
220,
220,
366,
17,
2250,
1298,
366,
1600,
198,
220,
220,
220,
366,
19,
2250,
1298,
366,
1600,
198,
220,
220,
220,
366,
940,
2250,
1298,
366,
1600,
198,
220,
220,
220,
366,
1731,
2250,
1298,
366,
1600,
198,
92,
198,
198,
17204,
62,
18,
62,
19,
62,
15,
796,
42392,
62,
18,
62,
20,
62,
15,
930,
1391,
198,
220,
220,
220,
366,
15307,
11845,
1298,
366,
53,
9160,
479,
282,
2194,
1600,
198,
220,
220,
220,
366,
7279,
4510,
1298,
366,
818,
461,
83,
1428,
324,
1600,
198,
220,
220,
220,
366,
11505,
2068,
6460,
1298,
366,
127,
244,
381,
2616,
3013,
6485,
8625,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
366,
15307,
11364,
1298,
366,
53,
9160,
1341,
15104,
65,
585,
1600,
198,
220,
220,
220,
366,
11505,
1057,
17310,
1298,
366,
127,
244,
381,
2616,
479,
30570,
1600,
198,
220,
220,
220,
366,
11505,
4876,
4706,
1298,
366,
127,
244,
381,
2616,
257,
21841,
452,
270,
1039,
7637,
353,
5757,
1600,
198,
220,
220,
220,
366,
11505,
923,
6859,
1298,
366,
127,
244,
381,
2616,
923,
3653,
2047,
1600,
198,
220,
220,
220,
366,
11505,
2989,
6859,
1298,
366,
127,
244,
381,
2616,
264,
9101,
74,
3653,
2047,
1600,
198,
220,
220,
220,
366,
19400,
4876,
1298,
366,
127,
226,
24631,
334,
381,
70,
2135,
1600,
198,
220,
220,
220,
366,
19400,
262,
2223,
1760,
618,
262,
8801,
318,
28384,
1298,
366,
127,
226,
24631,
410,
324,
3870,
289,
11033,
681,
299,
11033,
81,
479,
5354,
272,
479,
75,
624,
292,
1600,
198,
92,
198,
198,
17204,
62,
18,
62,
18,
62,
17,
796,
42392,
62,
18,
62,
19,
62,
15,
930,
1391,
198,
220,
220,
220,
366,
28827,
574,
44758,
3205,
67,
729,
1298,
366,
28827,
574,
44758,
334,
381,
67,
729,
533,
1600,
198,
220,
220,
220,
366,
28827,
574,
44758,
318,
22023,
5992,
1298,
366,
28827,
574,
44758,
289,
11033,
16762,
283,
334,
381,
67,
729,
278,
283,
1600,
198,
220,
220,
220,
366,
28827,
574,
44758,
468,
6153,
284,
2196,
1391,
15,
92,
7675,
59,
77,
5492,
766,
21722,
329,
262,
1488,
417,
519,
1298,
366,
28827,
574,
44758,
3971,
334,
381,
67,
729,
1381,
10597,
2196,
1391,
15,
32239,
77,
4653,
21722,
277,
30570,
6184,
97,
358,
1806,
283,
1600,
198,
220,
220,
220,
366,
15022,
1096,
262,
8801,
319,
3964,
1367,
1298,
366,
2025,
6603,
64,
479,
5354,
272,
279,
29090,
3964,
1367,
1600,
198,
220,
220,
220,
366,
48893,
262,
649,
4554,
2198,
263,
2446,
1298,
366,
818,
461,
83,
1428,
64,
2853,
299,
3972,
4554,
2198,
263,
1138,
375,
268,
1600,
198,
220,
220,
220,
366,
20939,
6460,
422,
257,
1957,
2393,
1298,
366,
3546,
26634,
64,
916,
11033,
297,
768,
283,
1216,
29090,
77,
551,
300,
482,
282,
1226,
1600,
198,
220,
220,
220,
366,
43834,
6460,
284,
257,
1957,
2393,
1298,
366,
3109,
26634,
64,
916,
11033,
297,
768,
283,
1216,
29090,
77,
551,
300,
482,
282,
1226,
1600,
198,
220,
220,
220,
366,
43834,
1298,
366,
3109,
26634,
64,
1600,
198,
220,
220,
220,
366,
20939,
1298,
366,
3546,
26634,
64,
1600,
198,
92,
198,
198,
17204,
62,
18,
62,
18,
62,
16,
796,
42392,
62,
18,
62,
18,
62,
17,
930,
1391,
198,
220,
220,
220,
366,
44651,
640,
5794,
59,
77,
5492,
1061,
262,
59,
77,
34,
11104,
20130,
1298,
366,
46,
70,
2326,
328,
83,
256,
2340,
18982,
59,
77,
53,
11033,
77,
4604,
268,
277,
9101,
75,
73,
59,
77,
25475,
327,
3210,
268,
1600,
198,
220,
220,
220,
366,
18465,
284,
12714,
1298,
366,
27682,
316,
708,
277,
9101,
17179,
1746,
4703,
64,
1600,
198,
220,
220,
220,
366,
44651,
640,
5794,
59,
77,
5492,
13096,
340,
59,
35073,
262,
6460,
1298,
366,
46,
70,
2326,
328,
83,
256,
2340,
18982,
59,
77,
53,
11033,
77,
4604,
268,
23157,
64,
59,
77,
18982,
316,
1312,
916,
11033,
297,
768,
28610,
1600,
198,
220,
220,
220,
366,
48893,
262,
49472,
3402,
618,
262,
8801,
318,
289,
2557,
1298,
366,
818,
461,
83,
1428,
64,
49472,
3870,
23727,
299,
11033,
81,
479,
5354,
272,
289,
29090,
297,
82,
6184,
114,
332,
1,
198,
92,
198,
17204,
62,
18,
62,
18,
796,
42392,
62,
18,
62,
18,
62,
16,
930,
1391,
198,
220,
220,
220,
366,
15022,
5794,
3173,
25,
1298,
366,
8081,
1754,
277,
30570,
281,
6603,
324,
1296,
729,
278,
1600,
198,
220,
220,
220,
366,
7149,
2420,
460,
307,
4624,
994,
13,
1675,
1295,
3709,
884,
355,
3128,
290,
640,
11,
3387,
779,
262,
11104,
327,
3210,
13,
3125,
7508,
319,
262,
1708,
2792,
1298,
366,
53,
1604,
380,
2420,
43998,
458,
11736,
292,
289,
11033,
81,
13,
376,
30570,
708,
21957,
8607,
264,
3110,
3870,
4818,
388,
267,
354,
29770,
11,
410,
11033,
77,
4604,
268,
281,
85,
11033,
358,
11104,
327,
3210,
268,
13,
4638,
7508,
957,
5907,
279,
29090,
277,
9101,
75,
73,
40004,
300,
11033,
77,
74,
25,
1600,
198,
220,
220,
220,
366,
37906,
3128,
290,
640,
17519,
1298,
366,
37906,
4818,
388,
267,
354,
256,
2340,
18982,
1600,
198,
220,
220,
220,
366,
2514,
15560,
262,
6632,
12,
39231,
1245,
11,
751,
257,
1303,
287,
1022,
262,
4064,
290,
262,
2438,
25,
1729,
12,
22570,
12,
79,
29373,
2250,
561,
307,
4064,
2,
39,
11,
290,
6632,
12,
79,
29373,
2250,
561,
307,
4064,
39,
1298,
366,
37,
30570,
708,
287,
461,
83,
1428,
64,
6632,
12,
39231,
11,
300,
11033,
1130,
10597,
304,
926,
1303,
33748,
272,
4064,
267,
354,
479,
375,
268,
25,
1729,
12,
22570,
12,
79,
29373,
4628,
3876,
1341,
380,
14259,
4064,
2,
39,
11,
267,
354,
6632,
12,
79,
29373,
4628,
3876,
1341,
380,
14259,
4064,
39,
1600,
1303,
3423,
3387,
836,
470,
13096,
262,
4064,
39,
290,
4064,
2,
39,
3815,
198,
220,
220,
220,
366,
8164,
319,
27967,
284,
4174,
290,
12714,
262,
5794,
1298,
366,
42,
75,
29873,
279,
29090,
4643,
74,
301,
11033,
297,
277,
30570,
708,
277,
9101,
17179,
1746,
2164,
504,
4914,
1296,
729,
36795,
1600,
198,
220,
220,
220,
366,
44836,
1298,
366,
53,
9587,
301,
11033,
297,
1600,
198,
220,
220,
220,
366,
1532,
345,
836,
470,
1833,
644,
318,
5836,
11,
3387,
555,
9122,
262,
2198,
3524,
625,
262,
2420,
1989,
1298,
366,
46,
76,
7043,
493,
68,
277,
30570,
301,
29090,
81,
410,
324,
3870,
289,
11033,
681,
11,
410,
11033,
77,
4604,
268,
1196,
4102,
8607,
479,
563,
824,
81,
37878,
6184,
114,
332,
2420,
296,
81,
29090,
15255,
1600,
198,
220,
220,
220,
366,
7248,
257,
2183,
3128,
290,
640,
5794,
1298,
366,
2025,
469,
304,
926,
281,
6603,
265,
5794,
277,
30570,
4818,
388,
267,
354,
29770,
1600,
198,
220,
220,
220,
30629,
1640,
6190,
2985,
691,
8,
1298,
30629,
69,
30570,
1196,
8250,
671,
281,
85,
11033,
358,
533,
42501,
198,
220,
220,
220,
366,
21774,
428,
8801,
284,
262,
1364,
1298,
366,
33771,
25854,
2853,
289,
11033,
81,
479,
5354,
272,
10597,
410,
11033,
77,
1706,
1600,
198,
220,
220,
220,
366,
21774,
428,
8801,
284,
262,
1353,
1298,
366,
33771,
25854,
2853,
289,
11033,
81,
479,
5354,
272,
10597,
23126,
268,
1600,
198,
220,
220,
220,
366,
21774,
428,
8801,
284,
262,
826,
1298,
366,
33771,
25854,
2853,
289,
11033,
81,
479,
5354,
272,
10597,
289,
9101,
1362,
1600,
198,
220,
220,
220,
366,
21774,
428,
8801,
284,
262,
4220,
1298,
366,
33771,
25854,
2853,
289,
11033,
81,
479,
5354,
272,
10597,
3005,
268,
1600,
198,
220,
220,
220,
366,
19452,
382,
16021,
2292,
1298,
366,
127,
227,
353,
301,
11033,
297,
3076,
1653,
33331,
2292,
1600,
198,
220,
220,
220,
366,
19452,
382,
11723,
2292,
1298,
366,
127,
227,
353,
301,
11033,
297,
9421,
1134,
282,
2292,
1600,
198,
92,
198,
198,
17204,
62,
18,
62,
17,
62,
16,
796,
42392,
62,
18,
62,
18,
930,
1391,
198,
220,
220,
220,
366,
11505,
2691,
1037,
284,
14979,
71,
1025,
2761,
1298,
366,
127,
244,
381,
2616,
2691,
289,
73,
11033,
34431,
277,
30570,
708,
277,
1424,
9101,
4914,
1917,
1600,
198,
220,
220,
220,
366,
4965,
316,
37339,
44758,
15387,
284,
26235,
1298,
366,
127,
227,
353,
301,
11033,
297,
37339,
44758,
10597,
3210,
8625,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
366,
22882,
1958,
257,
5288,
9647,
329,
262,
8801,
1298,
366,
32419,
8607,
551,
10356,
72,
12,
65,
26504,
277,
30570,
479,
5354,
272,
1600,
198,
220,
220,
220,
366,
18243,
319,
262,
6460,
1298,
366,
50,
9101,
74,
1312,
916,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
366,
2949,
2482,
547,
1043,
1298,
366,
27682,
64,
1255,
265,
289,
715,
2367,
1600,
198,
92,
198,
198,
17204,
62,
18,
62,
17,
796,
42392,
62,
18,
62,
17,
62,
16,
930,
1391,
198,
220,
220,
220,
366,
11041,
1080,
18702,
3124,
355,
4469,
3124,
1298,
366,
2025,
85,
11033,
358,
1080,
1039,
18702,
69,
11033,
41345,
3870,
275,
461,
48929,
358,
28202,
11033,
41345,
1600,
198,
220,
220,
220,
366,
9787,
691,
262,
5670,
4324,
319,
262,
1336,
9612,
2198,
1298,
366,
42,
33011,
886,
459,
277,
482,
7220,
671,
277,
48863,
301,
1186,
410,
312,
1336,
9612,
2198,
1600,
198,
220,
220,
220,
366,
44758,
319,
5671,
1391,
15,
92,
1298,
366,
42,
5354,
64,
279,
29090,
275,
688,
8135,
11033,
26224,
1391,
15,
92,
1600,
198,
220,
220,
220,
366,
21774,
284,
262,
1364,
1298,
366,
33771,
25854,
10597,
410,
11033,
77,
1706,
1600,
198,
220,
220,
220,
366,
15307,
428,
8801,
319,
262,
1364,
1298,
366,
53,
9160,
2853,
289,
11033,
81,
479,
5354,
272,
10597,
410,
11033,
77,
1706,
1600,
198,
220,
220,
220,
366,
15307,
428,
8801,
319,
262,
826,
1298,
366,
53,
9160,
2853,
289,
11033,
81,
479,
5354,
272,
10597,
289,
9101,
1362,
1600,
198,
220,
220,
220,
366,
19452,
382,
8801,
2292,
1298,
366,
127,
227,
353,
301,
11033,
297,
479,
5354,
504,
2292,
1600,
198,
92,
198,
198,
17204,
62,
18,
62,
16,
796,
42392,
62,
18,
62,
17,
930,
1391,
198,
220,
220,
220,
366,
54,
1298,
366,
85,
1600,
1303,
383,
4238,
286,
262,
1573,
1285,
287,
534,
3303,
25,
370,
329,
1285,
11,
311,
329,
900,
805,
64,
11,
3503,
13,
198,
220,
220,
220,
366,
48893,
262,
14483,
23009,
1298,
366,
818,
461,
83,
1428,
64,
14483,
23009,
1600,
198,
220,
220,
220,
366,
37961,
8801,
4277,
6001,
1298,
366,
37961,
479,
5354,
504,
3210,
71,
9101,
73,
67,
1600,
198,
220,
220,
220,
366,
39668,
16021,
8801,
2292,
1298,
366,
5703,
8607,
479,
5354,
504,
2292,
3076,
1653,
33331,
83,
1600,
198,
220,
220,
220,
366,
39668,
11723,
8801,
2292,
1298,
366,
5703,
8607,
479,
5354,
504,
2292,
9421,
1134,
2501,
1600,
198,
220,
220,
220,
366,
43834,
2604,
355,
257,
2393,
1298,
366,
3109,
26634,
64,
2604,
3870,
551,
1226,
1600,
198,
220,
220,
220,
366,
29881,
2604,
284,
47999,
1298,
366,
42,
404,
41976,
2604,
10597,
2956,
41582,
3974,
1600,
198,
220,
220,
220,
366,
18858,
8652,
902,
25,
1298,
366,
44,
6048,
8822,
268,
1600,
198,
220,
220,
220,
366,
37,
7569,
278,
3452,
8009,
11,
3387,
4043,
9313,
25,
366,
39,
11033,
16762,
283,
3308,
4594,
26551,
8822,
68,
11,
410,
11033,
77,
4604,
268,
410,
11033,
429,
64,
1600,
198,
220,
220,
220,
366,
23722,
77,
470,
3440,
262,
24009,
13,
4222,
1949,
757,
1568,
1298,
366,
42,
917,
68,
493,
68,
300,
2860,
64,
26551,
8822,
268,
11,
410,
11033,
77,
4604,
268,
277,
9101,
3808,
9101,
74,
220,
9324,
3308,
533,
1600,
198,
220,
220,
220,
366,
28827,
574,
44758,
338,
2604,
1298,
366,
28827,
574,
2601,
3320,
2604,
1600,
198,
220,
220,
220,
366,
31686,
257,
3124,
1298,
366,
53,
11033,
75,
73,
551,
277,
11033,
41345,
1,
198,
92,
198,
198,
17204,
62,
18,
796,
42392,
62,
18,
62,
16,
930,
1391,
198,
220,
220,
220,
366,
38518,
262,
8801,
1141,
838,
4201,
618,
28384,
1298,
366,
38,
9101,
76,
479,
5354,
272,
1312,
838,
384,
74,
4625,
410,
312,
479,
75,
624,
1600,
198,
220,
220,
220,
366,
36695,
1877,
12,
36166,
4235,
1298,
366,
32,
21841,
1428,
64,
1877,
12,
36166,
4235,
1600,
198,
220,
220,
220,
366,
1639,
1244,
4425,
10345,
871,
11,
588,
262,
14483,
3753,
393,
262,
8925,
4469,
1298,
366,
35660,
43998,
308,
29090,
4020,
68,
39030,
46212,
5378,
263,
3870,
1117,
12381,
4066,
11033,
15418,
5757,
304,
6051,
6382,
1984,
275,
461,
48929,
358,
1600,
198,
220,
220,
220,
366,
44758,
2292,
290,
2546,
25,
1298,
366,
42,
5354,
504,
2292,
267,
354,
336,
273,
293,
74,
1600,
198,
220,
220,
220,
366,
44758,
2546,
15387,
11,
2292,
11677,
11,
8801,
379,
262,
1364,
11,
3503,
526,
25,
366,
6310,
11033,
297,
768,
283,
277,
30570,
479,
5354,
301,
273,
293,
74,
11,
2292,
11677,
11,
479,
5354,
64,
10597,
410,
11033,
77,
1706,
11,
267,
21370,
33283,
198,
220,
220,
220,
366,
4965,
316,
5671,
38810,
278,
3722,
1298,
366,
127,
227,
353,
301,
11033,
297,
1341,
11033,
26224,
641,
38487,
433,
4868,
3722,
1600,
198,
220,
220,
220,
366,
4965,
316,
1298,
366,
127,
227,
353,
301,
11033,
297,
1600,
198,
220,
220,
220,
366,
22747,
2151,
16625,
1298,
366,
51,
445,
73,
538,
5889,
8240,
263,
1600,
198,
220,
220,
220,
366,
7680,
1298,
366,
53,
9160,
1600,
198,
220,
220,
220,
366,
28827,
574,
44758,
1298,
366,
28827,
574,
44758,
1600,
198,
220,
220,
220,
366,
35479,
4899,
1298,
366,
15739,
11033,
26224,
332,
74,
774,
70,
1600,
198,
220,
220,
220,
366,
9915,
4868,
428,
5671,
1298,
366,
50,
85,
433,
4868,
64,
2853,
289,
11033,
81,
1341,
11033,
81,
3653,
1600,
198,
220,
220,
220,
366,
22747,
3615,
4946,
12,
7416,
10442,
287,
37339,
15750,
1391,
15,
92,
357,
1870,
511,
16625,
8,
1298,
366,
51,
445,
73,
538,
5889,
4946,
12,
7416,
285,
73,
2724,
85,
3301,
1312,
37339,
44758,
1391,
15,
92,
357,
5374,
4587,
292,
8240,
263,
42501,
198,
220,
220,
220,
366,
28827,
574,
44758,
318,
281,
4946,
12,
7416,
3586,
925,
351,
262,
1037,
286,
584,
12782,
925,
416,
262,
2055,
25,
1298,
366,
28827,
574,
44758,
6184,
97,
81,
551,
4946,
12,
7416,
3680,
1134,
341,
3384,
303,
694,
9435,
1117,
289,
73,
11033,
34431,
1196,
275,
29142,
313,
988,
1341,
499,
324,
1196,
2055,
77,
1600,
198,
220,
220,
220,
366,
18690,
1298,
366,
18690,
1600,
198,
220,
220,
220,
366,
5167,
14151,
1298,
366,
13102,
7508,
1600,
198,
220,
220,
220,
366,
8585,
33734,
1298,
366,
46,
76,
33734,
1600,
198,
220,
220,
220,
366,
33244,
1298,
366,
31633,
694,
2367,
1600,
198,
220,
220,
220,
366,
464,
19374,
547,
555,
13424,
17935,
7675,
526,
25,
366,
15739,
11033,
26224,
28610,
284,
14542,
275,
419,
1216,
29090,
77,
38487,
433,
4868,
768,
1600,
198,
220,
220,
220,
366,
3844,
345,
815,
766,
262,
8801,
8347,
1298,
366,
45,
84,
275,
17531,
7043,
384,
479,
5354,
272,
6184,
114,
332,
439,
83,
1600,
198,
220,
220,
220,
366,
18690,
1298,
366,
18690,
1600,
198,
220,
220,
220,
366,
9915,
4868,
18289,
1298,
366,
50,
7785,
4868,
64,
1341,
11033,
26224,
1600,
198,
220,
220,
220,
366,
9915,
4868,
278,
257,
5671,
481,
7808,
262,
8801,
319,
428,
5671,
15043,
526,
25,
366,
8086,
38487,
433,
4868,
64,
551,
1341,
11033,
26224,
288,
9101,
75,
44009,
479,
5354,
272,
1216,
29090,
77,
2853,
289,
11033,
81,
1341,
11033,
81,
3653,
7748,
1600,
198,
220,
220,
220,
366,
1212,
2223,
460,
307,
50239,
422,
262,
6460,
4324,
11,
739,
1279,
65,
29,
44758,
2292,
290,
2546,
3556,
65,
29,
1298,
366,
35,
13713,
9041,
43998,
6184,
98,
782,
8847,
1216,
29090,
77,
916,
11033,
297,
768,
28610,
11,
739,
1279,
65,
29,
42,
5354,
504,
2292,
267,
354,
336,
273,
293,
74,
3556,
65,
29,
1600,
198,
220,
220,
220,
366,
8491,
345,
1654,
466,
345,
765,
284,
38810,
262,
5671,
19990,
90,
15,
92,
7879,
30,
1298,
366,
127,
226,
81,
7043,
264,
11033,
6122,
279,
29090,
708,
7043,
4489,
38487,
433,
4868,
64,
1341,
11033,
81,
3653,
19990,
90,
15,
92,
7879,
35379,
198,
220,
220,
220,
366,
5297,
1298,
366,
33186,
1600,
198,
220,
220,
220,
366,
2949,
1298,
366,
8199,
73,
1600,
198,
92,
198,
198,
17204,
62,
17,
62,
24,
62,
17,
796,
42392,
62,
18,
930,
1391,
198,
220,
220,
220,
366,
6892,
1170,
2604,
1298,
366,
43,
2860,
64,
39030,
2604,
1600,
198,
220,
220,
220,
366,
5211,
407,
905,
262,
8801,
319,
9233,
19374,
1298,
366,
53,
9160,
493,
68,
479,
5354,
272,
279,
29090,
384,
74,
917,
11033,
430,
1341,
11033,
81,
3876,
1600,
198,
220,
220,
220,
366,
48893,
8801,
4876,
5657,
4469,
3124,
357,
15883,
8801,
13245,
8,
1298,
366,
818,
461,
83,
1428,
64,
479,
5354,
504,
275,
461,
48929,
358,
28202,
11033,
41345,
1312,
257,
21841,
452,
270,
1039,
69,
11033,
2528,
316,
357,
70,
30570,
479,
5354,
272,
13245,
1600,
198,
220,
220,
220,
366,
11505,
262,
7062,
18731,
1298,
366,
127,
244,
381,
2616,
410,
11033,
75,
74,
296,
301,
5162,
14029,
1600,
198,
220,
220,
220,
366,
357,
1847,
47,
7801,
3563,
11879,
11,
26720,
5626,
30936,
8,
1298,
366,
357,
1847,
47,
7801,
3563,
2885,
10008,
11,
509,
15037,
7336,
3268,
9328,
29397,
30373,
1503,
42501,
198,
220,
220,
220,
366,
14618,
284,
37339,
44758,
1298,
366,
53,
11033,
75,
74,
2002,
268,
10597,
37339,
44758,
1600,
198,
220,
220,
220,
366,
50232,
1298,
366,
39,
10365,
64,
43307,
332,
1600,
198,
220,
220,
220,
366,
10434,
1298,
366,
10434,
1600,
198,
220,
220,
220,
366,
10019,
1298,
366,
45,
11033,
38031,
1600,
198,
220,
220,
220,
366,
48658,
1298,
366,
42,
21681,
1600,
198,
92,
198,
198,
17204,
62,
17,
62,
24,
796,
42392,
62,
17,
62,
24,
62,
17,
930,
1391,
198,
220,
220,
220,
366,
25714,
9142,
1298,
366,
32,
21841,
452,
270,
1039,
7637,
353,
5757,
1600,
198,
220,
220,
220,
366,
19400,
3128,
290,
640,
1298,
366,
127,
226,
24631,
4818,
388,
267,
354,
29770,
1600,
198,
220,
220,
220,
366,
3673,
2649,
6460,
1298,
366,
3673,
361,
1134,
602,
8625,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
366,
4933,
19581,
11,
7196,
26473,
11,
3303,
1298,
366,
52,
381,
67,
729,
278,
283,
11,
220,
1134,
261,
11,
7500,
29090,
74,
1600,
198,
220,
220,
220,
366,
38518,
7083,
3689,
422,
262,
8801,
826,
12,
12976,
6859,
357,
50032,
257,
15765,
284,
307,
5625,
8,
1298,
366,
38,
9101,
76,
3384,
9101,
74,
671,
916,
11033,
297,
77,
328,
283,
1216,
29090,
77,
479,
5354,
504,
289,
9101,
1362,
41582,
624,
3653,
88,
357,
20709,
9101,
332,
39030,
9688,
277,
30570,
708,
10597,
11033,
3149,
292,
42501,
198,
220,
220,
220,
366,
13295,
9612,
9172,
11,
8801,
2292,
11,
352,
301,
5671,
8801,
11,
584,
2984,
3846,
272,
699,
6460,
1298,
366,
13295,
8135,
11033,
81,
907,
11181,
68,
38396,
11,
479,
5354,
504,
2292,
11,
289,
14795,
463,
8135,
11033,
81,
907,
74,
5354,
64,
11,
290,
430,
10084,
916,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
705,
4550,
262,
366,
15307,
27850,
1,
4936,
319,
262,
1364,
5228,
286,
790,
8801,
10354,
705,
43,
11033,
1130,
10597,
366,
53,
9160,
1341,
15104,
65,
585,
1,
638,
1324,
10597,
410,
11033,
77,
12044,
289,
30570,
3262,
1196,
1401,
18015,
479,
5354,
64,
3256,
198,
220,
220,
220,
705,
1639,
1244,
761,
284,
900,
257,
2183,
4469,
3124,
329,
428,
284,
670,
13,
5,
77,
24145,
26,
5167,
7508,
1279,
64,
13291,
2625,
90,
15,
36786,
3918,
2625,
8043,
25,
35,
375,
1362,
14573,
5320,
39,
9338,
3556,
64,
29,
10354,
705,
35660,
43998,
1372,
9101,
6862,
264,
11033,
25854,
551,
281,
6603,
324,
275,
461,
48929,
358,
28202,
11033,
41345,
277,
30570,
708,
1062,
1341,
64,
1257,
1362,
64,
13,
5,
77,
24145,
26,
13102,
7508,
1279,
64,
13291,
2625,
90,
15,
36786,
3918,
2625,
8043,
25,
35,
375,
1362,
14573,
5320,
39,
127,
226,
49,
3556,
64,
29,
46083,
198,
220,
220,
220,
366,
44758,
338,
10369,
11,
10369,
2546,
11,
10369,
3124,
290,
4469,
11,
2420,
19114,
1298,
366,
42,
5354,
504,
10369,
11,
573,
694,
268,
301,
273,
293,
74,
11,
277,
11033,
41345,
279,
29090,
10369,
267,
354,
275,
461,
48929,
358,
11,
2420,
3137,
1586,
1600,
198,
220,
220,
220,
366,
10430,
5794,
11,
3862,
5794,
11,
4201,
11,
10464,
820,
11,
1285,
17618,
11,
7915,
6460,
1298,
366,
35,
21307,
267,
354,
256,
2340,
687,
729,
278,
11,
384,
74,
4625,
11,
1569,
694,
375,
363,
11,
1569,
694,
261,
31647,
11,
7915,
64,
916,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
366,
44154,
3033,
290,
4049,
12,
13049,
278,
4899,
1298,
366,
14402,
283,
46212,
5378,
263,
267,
354,
10756,
7637,
353,
654,
332,
74,
774,
70,
1600,
198,
220,
220,
220,
366,
32065,
2353,
1772,
7,
82,
828,
1037,
34665,
37339,
44758,
1298,
366,
38454,
29090,
74,
41091,
1039,
277,
30570,
69,
1078,
533,
11,
289,
73,
11033,
34431,
6184,
114,
690,
11033,
926,
37339,
44758,
1600,
198,
220,
220,
220,
366,
12360,
11,
989,
257,
5434,
11,
9199,
257,
3895,
2581,
11,
16565,
11,
546,
1298,
366,
12360,
11,
29106,
4337,
64,
551,
5434,
11,
1341,
29873,
287,
551,
1257,
21841,
507,
1350,
70,
11033,
2596,
11,
836,
8607,
11,
39030,
1600,
198,
220,
220,
220,
366,
11187,
11,
28769,
1321,
1298,
366,
11187,
11,
28769,
1321,
1600,
198,
92,
198,
198,
17204,
62,
17,
62,
23,
796,
42392,
62,
17,
62,
24,
930,
1391,
198,
220,
220,
220,
366,
10292,
262,
8801,
284,
307,
379,
262,
1353,
286,
262,
3159,
1298,
366,
51,
1075,
64,
479,
5354,
272,
708,
1401,
64,
279,
29090,
23126,
268,
1196,
1341,
11033,
81,
3653,
1600,
198,
220,
220,
220,
366,
15307,
262,
8801,
319,
262,
4165,
3159,
1298,
366,
53,
9160,
479,
5354,
272,
279,
29090,
2684,
11033,
3808,
74,
11033,
81,
3653,
1600,
198,
220,
220,
220,
366,
11041,
257,
2183,
10369,
3124,
1298,
366,
2025,
85,
11033,
358,
281,
6603,
324,
573,
694,
33701,
11033,
41345,
1600,
198,
220,
220,
220,
366,
11041,
257,
2183,
4469,
3124,
1298,
366,
2025,
85,
11033,
358,
281,
6603,
324,
275,
461,
48929,
358,
28202,
11033,
41345,
1600,
198,
220,
220,
220,
366,
2348,
570,
262,
8801,
2420,
284,
262,
3641,
1298,
366,
5703,
8607,
21957,
1586,
1196,
2420,
10597,
479,
5354,
504,
1247,
6582,
1600,
198,
220,
220,
220,
366,
17563,
2183,
3124,
1298,
366,
53,
11033,
75,
73,
281,
6603,
324,
277,
11033,
41345,
1600,
198,
220,
220,
220,
366,
38518,
262,
8801,
618,
257,
1430,
38985,
477,
8947,
1298,
366,
35,
9101,
75,
73,
479,
5354,
272,
299,
11033,
81,
304,
926,
1430,
13422,
334,
381,
477,
64,
1341,
11033,
81,
3876,
1600,
198,
92,
198,
198,
17204,
17,
62,
22,
62,
41907,
796,
42392,
62,
17,
62,
23,
930,
1391,
198,
220,
220,
220,
366,
11041,
257,
2183,
10369,
1298,
366,
2025,
85,
11033,
358,
551,
281,
6603,
324,
10369,
1600,
198,
220,
220,
220,
366,
11041,
257,
2183,
10369,
2546,
1298,
366,
2025,
85,
11033,
358,
551,
281,
6603,
324,
10369,
336,
273,
293,
74,
1600,
198,
220,
220,
220,
366,
36695,
7808,
618,
5021,
12,
41143,
1336,
9612,
6725,
389,
2491,
1298,
366,
32,
21841,
1428,
64,
288,
9101,
75,
73,
299,
11033,
81,
932,
8135,
11033,
81,
907,
1324,
283,
1117,
781,
8607,
1341,
11033,
81,
3876,
479,
9101,
3808,
1600,
198,
220,
220,
220,
33490,
65,
29,
90,
15,
92,
3556,
65,
29,
2476,
284,
307,
9343,
284,
1487,
428,
4634,
1298,
33490,
65,
29,
90,
15,
92,
3556,
65,
29,
285,
29090,
4169,
1401,
64,
257,
21841,
1428,
265,
277,
30570,
708,
6184,
97,
24631,
288,
13713,
916,
11033,
297,
768,
1600,
198,
220,
220,
220,
33490,
65,
29,
90,
15,
92,
3556,
65,
29,
2476,
284,
307,
10058,
284,
1487,
428,
4634,
1298,
33490,
65,
29,
90,
15,
92,
3556,
65,
29,
285,
29090,
4169,
287,
461,
83,
1428,
292,
277,
30570,
708,
6184,
97,
24631,
2853,
289,
11033,
81,
916,
11033,
297,
768,
268,
1600,
198,
92,
198,
198,
17204,
17,
62,
22,
796,
42392,
17,
62,
22,
62,
41907,
930,
1391,
198,
220,
220,
220,
366,
357,
1212,
3895,
468,
587,
10058,
780,
340,
815,
670,
416,
4277,
13,
1002,
340,
318,
407,
11,
3387,
989,
257,
5434,
8,
1298,
366,
357,
21306,
289,
11033,
81,
46212,
5378,
268,
3971,
287,
461,
83,
1428,
1381,
304,
47131,
296,
2853,
275,
17531,
1257,
1362,
64,
3870,
3210,
13,
16543,
2853,
493,
68,
6184,
97,
81,
1062,
11,
29106,
4337,
64,
304,
926,
10756,
42501,
198,
220,
220,
220,
366,
28827,
574,
44758,
338,
3303,
1298,
366,
28827,
574,
2601,
3320,
7500,
29090,
74,
1,
198,
92,
198,
198,
17204,
17,
62,
21,
796,
42392,
17,
62,
22,
930,
1391,
198,
220,
220,
220,
366,
8585,
33734,
21,
357,
20519,
24819,
21,
8,
1298,
366,
46,
76,
33734,
21,
357,
20519,
24819,
21,
42501,
198,
220,
220,
220,
366,
8585,
1298,
366,
46,
76,
1600,
198,
220,
220,
220,
366,
49788,
1729,
12,
31127,
4296,
4382,
357,
1212,
1244,
1037,
351,
25952,
8563,
8,
1298,
366,
23081,
265,
452,
14158,
365,
12,
31127,
12,
7211,
67,
729,
654,
15388,
357,
35,
15253,
43998,
289,
73,
11033,
75,
8957,
10597,
1117,
25952,
12,
69,
417,
42501,
198,
220,
220,
220,
366,
22743,
274,
290,
584,
11992,
3033,
25,
357,
11041,
22224,
611,
1223,
318,
407,
1762,
8,
1298,
366,
22743,
283,
267,
354,
290,
430,
6306,
12627,
46212,
5378,
263,
25,
357,
2025,
85,
11033,
358,
23578,
11262,
39030,
299,
29090,
23442,
493,
68,
1257,
1362,
283,
42501,
198,
220,
220,
220,
366,
15307,
1285,
1271,
319,
262,
8801,
1298,
366,
53,
9160,
1569,
694,
261,
31647,
279,
29090,
479,
5354,
272,
1,
198,
92,
198,
198,
17204,
17,
62,
20,
796,
42392,
17,
62,
21,
930,
1391,
198,
220,
220,
220,
366,
38518,
262,
8801,
618,
371,
6322,
20985,
393,
15792,
8609,
10933,
10223,
389,
2491,
1298,
366,
35,
9101,
75,
73,
479,
5354,
272,
299,
11033,
81,
371,
6322,
20985,
304,
6051,
15792,
8609,
10933,
10223,
479,
9101,
3808,
1600,
198,
220,
220,
220,
366,
44758,
43436,
25,
1298,
366,
42,
5354,
504,
3384,
325,
38396,
1600,
198,
220,
220,
220,
366,
10292,
262,
8801,
284,
423,
2042,
2420,
1298,
366,
51,
1075,
64,
479,
5354,
272,
708,
387,
38487,
433,
2420,
1600,
198,
220,
220,
220,
366,
532,
632,
318,
2672,
326,
262,
3801,
8255,
2198,
3524,
318,
10058,
1298,
366,
532,
4614,
479,
81,
11033,
14259,
708,
479,
563,
824,
81,
37878,
337,
30570,
74,
2420,
6184,
97,
81,
287,
461,
83,
1428,
324,
1600,
198,
220,
220,
220,
366,
16587,
25456,
2667,
1321,
25,
1298,
366,
27509,
2667,
1321,
1600,
198,
220,
220,
220,
366,
11505,
37339,
44758,
338,
2604,
1298,
366,
127,
244,
381,
2616,
37339,
2601,
3320,
2604,
70,
1600,
198,
92,
198,
198,
17204,
17,
62,
19,
796,
42392,
17,
62,
20,
930,
1391,
198,
220,
220,
220,
1303,
10687,
2420,
287,
2196,
362,
13,
19,
198,
220,
220,
220,
366,
15307,
262,
8801,
319,
262,
4165,
3159,
357,
11041,
913,
611,
8801,
318,
900,
319,
262,
1364,
8,
1298,
366,
53,
9160,
479,
5354,
272,
279,
29090,
2853,
2684,
11033,
430,
1341,
11033,
81,
3653,
357,
2025,
85,
11033,
358,
16575,
39030,
479,
5354,
272,
6184,
97,
81,
916,
11033,
297,
67,
10597,
410,
11033,
77,
1706,
42501,
198,
220,
220,
220,
366,
15307,
28269,
319,
262,
8801,
1,
220,
1058,
1,
53,
9160,
1569,
694,
375,
363,
279,
29090,
479,
5354,
272,
1600,
198,
92,
198,
198,
17204,
17,
62,
18,
796,
42392,
17,
62,
19,
930,
1391,
198,
220,
220,
220,
1303,
21947,
6859,
198,
220,
220,
220,
366,
28827,
574,
44758,
16163,
1,
220,
220,
220,
220,
220,
1058,
1,
28827,
574,
44758,
2262,
11033,
297,
768,
283,
1600,
1303,
4418,
6460,
3670,
198,
220,
220,
220,
366,
6892,
1170,
1012,
3320,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
43,
2860,
64,
39030,
479,
5354,
273,
1600,
198,
220,
220,
220,
366,
28827,
574,
44758,
410,
90,
15,
36786,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
28827,
574,
44758,
410,
90,
15,
92,
1600,
198,
220,
220,
220,
366,
19452,
433,
37339,
44758,
1,
220,
220,
220,
220,
220,
220,
1058,
1,
10434,
64,
39030,
37339,
44758,
1600,
198,
220,
220,
220,
366,
38518,
37339,
44758,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
38,
9101,
76,
37339,
44758,
1600,
198,
220,
220,
220,
366,
4507,
270,
37339,
44758,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
7355,
6649,
29822,
37339,
44758,
1600,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
12218,
6460,
2665,
198,
220,
220,
220,
366,
12218,
16163,
11097,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
3237,
76,
11033,
77,
2616,
2262,
11033,
297,
768,
283,
25,
1600,
198,
220,
220,
220,
366,
38062,
4142,
2198,
329,
5992,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
50,
9101,
74,
3557,
265,
1984,
83,
304,
637,
334,
381,
67,
729,
278,
283,
1600,
198,
220,
220,
220,
366,
38062,
4142,
2721,
1695,
5992,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
15798,
8607,
10597,
70,
11033,
782,
38910,
334,
381,
67,
729,
278,
283,
3557,
265,
1984,
83,
1600,
198,
220,
220,
220,
366,
36695,
1107,
10574,
5992,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
32,
21841,
1428,
64,
374,
1134,
83,
328,
83,
1259,
38031,
334,
381,
67,
729,
278,
283,
1600,
198,
220,
220,
220,
366,
3886,
6603,
4296,
10131,
26275,
2198,
357,
11929,
19644,
2662,
44,
49361,
11,
5161,
16592,
47672,
45698,
42,
16725,
220,
220,
220,
220,
1058,
1,
42,
1806,
70,
29090,
334,
381,
67,
729,
654,
293,
332,
415,
9101,
918,
82,
6184,
97,
74,
1169,
912,
74,
756,
2487,
357,
2200,
42,
2662,
44,
10619,
1137,
1921,
3268,
9328,
11,
350,
127,
227,
360,
1268,
412,
35353,
45698,
42,
42501,
198,
220,
220,
220,
366,
15307,
37339,
44758,
319,
1080,
26473,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
53,
9160,
37339,
44758,
1312,
1080,
69,
11033,
2528,
316,
1600,
198,
220,
220,
220,
366,
49788,
8801,
19114,
357,
11261,
407,
670,
16725,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
23081,
265,
452,
479,
5354,
3137,
1586,
357,
12543,
1362,
283,
479,
504,
365,
493,
68,
42501,
198,
220,
220,
220,
366,
19400,
13693,
9172,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
127,
226,
24631,
923,
11181,
68,
38396,
1600,
198,
220,
220,
220,
366,
19400,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
37,
30570,
11033,
24631,
1600,
198,
220,
220,
220,
33490,
65,
29,
10260,
284,
262,
3452,
2196,
0,
3556,
65,
24618,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
27,
65,
29,
52,
381,
67,
729,
64,
10597,
2853,
3308,
4594,
2196,
268,
0,
3556,
65,
29,
1600,
198,
220,
220,
220,
366,
15798,
4296,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
15798,
8607,
334,
381,
67,
729,
278,
1600,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
44758,
6460,
198,
220,
220,
220,
366,
44758,
16163,
11097,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
42,
5354,
8625,
11033,
297,
768,
283,
25,
1600,
198,
220,
220,
220,
366,
38518,
262,
8801,
287,
1336,
9612,
4235,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
35,
9101,
75,
73,
479,
5354,
272,
1312,
932,
8135,
11033,
81,
907,
75,
11033,
469,
1600,
198,
220,
220,
220,
366,
38518,
262,
8801,
618,
371,
6322,
5456,
318,
4075,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
35,
9101,
75,
73,
479,
5354,
272,
299,
11033,
81,
371,
6322,
12,
41582,
1153,
268,
6184,
97,
81,
257,
21841,
452,
1600,
198,
220,
220,
220,
366,
10292,
262,
8801,
284,
307,
379,
262,
4220,
286,
262,
3159,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
51,
1075,
64,
479,
5354,
272,
708,
1401,
64,
300,
11033,
782,
301,
17156,
279,
29090,
1341,
11033,
81,
3653,
1600,
198,
220,
220,
220,
366,
15307,
262,
8801,
618,
262,
4876,
5657,
318,
900,
284,
7808,
6338,
1,
1058,
1,
53,
9160,
479,
5354,
272,
299,
11033,
81,
257,
21841,
452,
270,
1039,
69,
11033,
2528,
316,
6184,
97,
81,
916,
11033,
297,
83,
279,
29090,
708,
288,
9101,
75,
28121,
3557,
265,
1984,
83,
1600,
198,
220,
220,
220,
366,
22743,
262,
5328,
831,
14,
42460,
4478,
625,
262,
1227,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
127,
227,
25297,
11033,
4372,
64,
11007,
395,
11402,
316,
14,
301,
11402,
316,
3870,
23727,
739,
285,
29090,
77,
40780,
1600,
198,
220,
220,
220,
366,
10292,
262,
8801,
284,
423,
2330,
2420,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
51,
1075,
64,
479,
5354,
272,
708,
387,
9090,
2420,
1600,
198,
220,
220,
220,
366,
15307,
262,
8801,
379,
262,
1364,
286,
262,
3159,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
53,
9160,
479,
5354,
272,
10597,
410,
11033,
77,
1706,
279,
29090,
1341,
11033,
81,
3653,
1600,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
10430,
1222,
640,
6460,
198,
220,
220,
220,
366,
10430,
1222,
3862,
16163,
11097,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
6310,
11033,
297,
768,
283,
277,
30570,
4818,
388,
267,
354,
29770,
25,
1600,
198,
220,
220,
220,
366,
15307,
4201,
319,
262,
8801,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
53,
9160,
384,
74,
4625,
279,
29090,
479,
5354,
272,
1600,
198,
220,
220,
220,
366,
15307,
3128,
319,
262,
8801,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
53,
9160,
4818,
388,
279,
29090,
479,
5354,
272,
1600,
198,
220,
220,
220,
366,
15307,
640,
319,
262,
8801,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
53,
9160,
29770,
279,
29090,
479,
5354,
272,
1600,
198,
220,
220,
220,
366,
19400,
3128,
290,
640,
5794,
357,
8081,
1538,
6460,
16725,
220,
220,
1058,
1,
127,
226,
24631,
4818,
388,
267,
354,
256,
2340,
18982,
357,
2301,
1538,
64,
916,
11033,
297,
768,
283,
42501,
198,
220,
220,
220,
366,
8081,
1538,
6460,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
8081,
1538,
64,
916,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
8585,
262,
3303,
2353,
198,
220,
220,
220,
366,
8585,
262,
3303,
2353,
11097,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
46,
76,
7500,
29090,
74,
41091,
316,
316,
25,
1600,
198,
220,
220,
220,
366,
8291,
17249,
284,
3594,
416,
11277,
42504,
8784,
1,
220,
220,
220,
220,
220,
1058,
1,
127,
244,
690,
1078,
10597,
44611,
82,
4914,
1196,
1400,
16658,
267,
354,
269,
73,
282,
3865,
1600,
1303,
3423,
11,
787,
264,
1133,
284,
1577,
345,
617,
10824,
25,
220,
3602,
17249,
284,
406,
15567,
52,
11879,
416,
1294,
1137,
14,
20608,
14,
3705,
36,
8322,
40508,
44,
14,
14784,
13,
220,
198,
220,
220,
220,
366,
8291,
17660,
37339,
44758,
284,
534,
3303,
1,
220,
220,
220,
1058,
1,
127,
244,
690,
11033,
926,
37339,
44758,
10597,
288,
715,
7500,
29090,
74,
1600,
198,
220,
220,
220,
366,
3855,
2067,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
42,
296,
45329,
29090,
782,
1600,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
8585,
37339,
44758,
198,
220,
220,
220,
366,
8585,
37339,
44758,
2196,
1391,
15,
92,
11097,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
46,
76,
37339,
44758,
2196,
1391,
15,
38362,
1600,
198,
220,
220,
220,
366,
7680,
37339,
44758,
338,
34940,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
53,
9160,
37339,
2601,
3320,
339,
907,
3755,
1600,
198,
220,
220,
220,
366,
11505,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
127,
244,
381,
2616,
1600,
198,
220,
220,
220,
366,
19100,
281,
2071,
14,
25927,
257,
3895,
1,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
49,
1324,
4337,
64,
304,
926,
1917,
14,
1350,
70,
11033,
81,
551,
46212,
5378,
1600,
198,
220,
220,
220,
366,
19100,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
49,
1324,
4337,
64,
1600,
198,
220,
220,
220,
366,
15514,
262,
1614,
25,
13786,
502,
257,
6891,
24583,
243,
1,
220,
220,
220,
220,
220,
220,
1058,
1,
1273,
9101,
67,
3384,
303,
694,
75,
5757,
25,
2269,
37011,
551,
479,
21223,
24583,
243,
1600,
198,
220,
220,
220,
366,
11505,
2443,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
127,
244,
381,
2616,
264,
3755,
1600,
198,
220,
220,
220,
366,
40,
5936,
416,
314,
5936,
23,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
40,
74,
14491,
1196,
314,
5936,
23,
1600,
1303,
3423,
11,
262,
1573,
366,
40,
5936,
23,
1,
815,
407,
307,
14251,
198,
220,
220,
220,
366,
13908,
7700,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
13908,
1443,
3755,
1600,
198,
220,
220,
220,
366,
26125,
6460,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
1273,
11033,
782,
916,
11033,
297,
768,
283,
1600,
198,
220,
220,
220,
366,
26125,
1,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1058,
1,
1273,
11033,
782,
1600,
198,
92,
198,
198,
17204,
796,
42392,
17,
62,
18,
198
] | 2.394674 | 7,510 |
# some small tests to see whether sets are there and work
from py.builtin import set, frozenset
| [
2,
617,
1402,
5254,
284,
766,
1771,
5621,
389,
612,
290,
670,
198,
198,
6738,
12972,
13,
18780,
259,
1330,
900,
11,
8400,
8247,
316,
198
] | 3.730769 | 26 |
import os
DATA_FOLDER = 'data'
TRAIN_CSV = os.path.join(DATA_FOLDER, 'train.csv')
VAL_CSV = os.path.join(DATA_FOLDER, 'val.csv')
MODEL_FOLDER = 'models'
SAVED_ESTIMATOR = os.path.join(MODEL_FOLDER, 'LGBMClassifier.pickle') | [
11748,
28686,
198,
198,
26947,
62,
37,
3535,
14418,
796,
705,
7890,
6,
198,
51,
3861,
1268,
62,
7902,
53,
796,
28686,
13,
6978,
13,
22179,
7,
26947,
62,
37,
3535,
14418,
11,
705,
27432,
13,
40664,
11537,
198,
23428,
62,
7902,
53,
796,
28686,
13,
6978,
13,
22179,
7,
26947,
62,
37,
3535,
14418,
11,
705,
2100,
13,
40664,
11537,
198,
198,
33365,
3698,
62,
37,
3535,
14418,
796,
705,
27530,
6,
198,
4090,
53,
1961,
62,
6465,
3955,
25633,
796,
28686,
13,
6978,
13,
22179,
7,
33365,
3698,
62,
37,
3535,
14418,
11,
705,
43,
4579,
44,
9487,
7483,
13,
27729,
293,
11537
] | 2.133333 | 105 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Nov 8 19:23:20 2020
@author: alfredocu
"""
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.colors import ListedColormap
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
from sklearn.datasets import make_moons, make_circles, make_classification
from sklearn.neural_network import MLPClassifier
from sklearn.neighbors import KNeighborsClassifier
from sklearn.svm import SVC
from sklearn.gaussian_process import GaussianProcessClassifier
from sklearn.gaussian_process.kernels import RBF
from sklearn.tree import DecisionTreeClassifier
from sklearn.naive_bayes import GaussianNB
classifiers = {
"KNN": KNeighborsClassifier(3),
"SVM": SVC(gamma = 2, C = 1),
"GP": GaussianProcessClassifier(1.0 * RBF(1.0)),
"DT": DecisionTreeClassifier(max_depth = 5),
"MLP": MLPClassifier(alpha = 0.1, max_iter = 1000),
"Bayes": GaussianNB()
}
x, y = make_classification(n_features = 2, n_redundant = 0, n_informative = 2, n_clusters_per_class = 1)
rng = np.random.RandomState(2)
x += 1 * rng.uniform(size = x.shape)
linearly_separable = (x, y)
datasets = [make_moons(noise = 0.1), make_circles(noise = 0.1, factor = 0.5), linearly_separable]
cm = plt.cm.RdBu
cm_bright = ListedColormap(["#FF0000", "#0000FF"])
###############################################################################
model_name = "Bayes" # Se agrega aqui el tipo de modelo a ejecutar.
figure = plt.figure(figsize = (9, 3))
h = .02 # Step
i = 1 # Counter
# Iterate over datasets
for ds_cnt, ds in enumerate(datasets):
x, y = ds
x = StandardScaler().fit_transform(x)
# Train and test
xtrain, xtest, ytrain, ytest = train_test_split(x, y)
# Min and Max for normalize data.
x_min, x_max = x[:, 0].min() - .5, x[:, 0].max() + .5
y_min, y_max = x[:, 1].min() - .5, x[:, 1].max() + .5
xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h))
# Classifications
model = classifiers[model_name]
ax = plt.subplot(1, 3, i)
# Training
model.fit(xtrain, ytrain)
score_train = model.score(xtrain, ytrain)
score_test = model.score(xtest, ytest)
# Plot the decision boundary. For that, we will assign a color to each
# point in the mesh [x_min, x_max]x[y_min, y_max].
if hasattr(model, "decision_function"):
zz = model.decision_function(np.c_[xx.ravel(), yy.ravel()])
else:
zz = model.predict_proba(np.c_[xx.ravel(), yy.ravel()])[:, 1]
# Put the result into a color plot
zz = zz.reshape(xx.shape)
ax.contourf(xx, yy, zz, cmap = cm, alpha = .8)
# Plot the training points
ax.scatter(xtrain[:, 0], xtrain[:, 1], c = ytrain, cmap = cm_bright, edgecolors = "k", alpha = 0.6)
ax.set_xlim(xx.min(), xx.max())
ax.set_ylim(yy.min(), yy.max())
ax.set_xticks(())
ax.set_yticks(())
ax.text(xx.max() - .3, yy.min() + .7, "%.2f" % score_train, size = 15, horizontalalignment = "right")
ax.text(xx.max() - .3, yy.min() + .3, "%.2f" % score_test, size = 15, horizontalalignment = "right")
i += 1
plt.tight_layout()
# plt.show()
# plt.savefig("Bayes.eps", format="eps") | [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
41972,
319,
3825,
5267,
807,
678,
25,
1954,
25,
1238,
12131,
198,
198,
31,
9800,
25,
435,
39193,
420,
84,
198,
37811,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
2603,
29487,
8019,
13,
4033,
669,
1330,
406,
6347,
5216,
579,
499,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
6738,
1341,
35720,
13,
3866,
36948,
1330,
8997,
3351,
36213,
198,
6738,
1341,
35720,
13,
19608,
292,
1039,
1330,
787,
62,
5908,
684,
11,
787,
62,
66,
343,
5427,
11,
787,
62,
4871,
2649,
198,
6738,
1341,
35720,
13,
710,
1523,
62,
27349,
1330,
10373,
47,
9487,
7483,
198,
6738,
1341,
35720,
13,
710,
394,
32289,
1330,
509,
46445,
32289,
9487,
7483,
198,
6738,
1341,
35720,
13,
82,
14761,
1330,
311,
15922,
198,
6738,
1341,
35720,
13,
4908,
31562,
62,
14681,
1330,
12822,
31562,
18709,
9487,
7483,
198,
6738,
1341,
35720,
13,
4908,
31562,
62,
14681,
13,
74,
44930,
1330,
17986,
37,
198,
6738,
1341,
35720,
13,
21048,
1330,
26423,
27660,
9487,
7483,
198,
6738,
1341,
35720,
13,
2616,
425,
62,
24406,
274,
1330,
12822,
31562,
32819,
198,
198,
4871,
13350,
796,
1391,
198,
220,
220,
220,
366,
42,
6144,
1298,
509,
46445,
32289,
9487,
7483,
7,
18,
828,
198,
220,
220,
220,
366,
50,
15996,
1298,
311,
15922,
7,
28483,
2611,
796,
362,
11,
327,
796,
352,
828,
198,
220,
220,
220,
366,
16960,
1298,
12822,
31562,
18709,
9487,
7483,
7,
16,
13,
15,
1635,
17986,
37,
7,
16,
13,
15,
36911,
198,
220,
220,
220,
366,
24544,
1298,
26423,
27660,
9487,
7483,
7,
9806,
62,
18053,
796,
642,
828,
198,
220,
220,
220,
366,
5805,
47,
1298,
10373,
47,
9487,
7483,
7,
26591,
796,
657,
13,
16,
11,
3509,
62,
2676,
796,
8576,
828,
198,
220,
220,
220,
366,
15262,
274,
1298,
12822,
31562,
32819,
3419,
198,
92,
198,
198,
87,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
40890,
796,
362,
11,
299,
62,
445,
917,
415,
796,
657,
11,
299,
62,
259,
687,
876,
796,
362,
11,
299,
62,
565,
13654,
62,
525,
62,
4871,
796,
352,
8,
198,
198,
81,
782,
796,
45941,
13,
25120,
13,
29531,
9012,
7,
17,
8,
198,
87,
15853,
352,
1635,
374,
782,
13,
403,
6933,
7,
7857,
796,
2124,
13,
43358,
8,
198,
2815,
11458,
62,
25512,
540,
796,
357,
87,
11,
331,
8,
198,
198,
19608,
292,
1039,
796,
685,
15883,
62,
5908,
684,
7,
3919,
786,
796,
657,
13,
16,
828,
787,
62,
66,
343,
5427,
7,
3919,
786,
796,
657,
13,
16,
11,
5766,
796,
657,
13,
20,
828,
9493,
11458,
62,
25512,
540,
60,
198,
198,
11215,
796,
458,
83,
13,
11215,
13,
49,
36077,
84,
198,
11215,
62,
29199,
796,
406,
6347,
5216,
579,
499,
7,
14692,
2,
5777,
2388,
1600,
25113,
2388,
5777,
8973,
8,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
198,
19849,
62,
3672,
796,
366,
15262,
274,
1,
1303,
1001,
556,
2301,
64,
14839,
72,
1288,
8171,
78,
390,
2746,
78,
257,
304,
73,
721,
315,
283,
13,
198,
198,
26875,
796,
458,
83,
13,
26875,
7,
5647,
7857,
796,
357,
24,
11,
513,
4008,
198,
71,
796,
764,
2999,
1303,
5012,
198,
72,
796,
352,
1303,
15034,
198,
198,
2,
40806,
378,
625,
40522,
198,
1640,
288,
82,
62,
66,
429,
11,
288,
82,
287,
27056,
378,
7,
19608,
292,
1039,
2599,
198,
220,
220,
220,
2124,
11,
331,
796,
288,
82,
198,
220,
220,
220,
2124,
796,
8997,
3351,
36213,
22446,
11147,
62,
35636,
7,
87,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
16835,
290,
1332,
198,
220,
220,
220,
220,
742,
3201,
11,
220,
742,
395,
11,
331,
27432,
11,
331,
9288,
796,
4512,
62,
9288,
62,
35312,
7,
87,
11,
331,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
1855,
290,
5436,
329,
3487,
1096,
1366,
13,
198,
220,
220,
220,
2124,
62,
1084,
11,
2124,
62,
9806,
796,
2124,
58,
45299,
657,
4083,
1084,
3419,
532,
764,
20,
11,
2124,
58,
45299,
657,
4083,
9806,
3419,
1343,
764,
20,
198,
220,
220,
220,
331,
62,
1084,
11,
331,
62,
9806,
796,
2124,
58,
45299,
352,
4083,
1084,
3419,
532,
764,
20,
11,
2124,
58,
45299,
352,
4083,
9806,
3419,
1343,
764,
20,
198,
220,
220,
220,
220,
198,
220,
220,
220,
31383,
11,
331,
88,
796,
45941,
13,
76,
5069,
25928,
7,
37659,
13,
283,
858,
7,
87,
62,
1084,
11,
2124,
62,
9806,
11,
289,
828,
45941,
13,
283,
858,
7,
88,
62,
1084,
11,
331,
62,
9806,
11,
289,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5016,
6637,
198,
220,
220,
220,
2746,
796,
1398,
13350,
58,
19849,
62,
3672,
60,
198,
220,
220,
220,
7877,
796,
458,
83,
13,
7266,
29487,
7,
16,
11,
513,
11,
1312,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
13614,
198,
220,
220,
220,
2746,
13,
11147,
7,
742,
3201,
11,
331,
27432,
8,
198,
220,
220,
220,
4776,
62,
27432,
796,
2746,
13,
26675,
7,
742,
3201,
11,
331,
27432,
8,
198,
220,
220,
220,
4776,
62,
9288,
796,
2746,
13,
26675,
7,
742,
395,
11,
331,
9288,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
28114,
262,
2551,
18645,
13,
1114,
326,
11,
356,
481,
8333,
257,
3124,
284,
1123,
198,
220,
220,
220,
1303,
966,
287,
262,
19609,
685,
87,
62,
1084,
11,
2124,
62,
9806,
60,
87,
58,
88,
62,
1084,
11,
331,
62,
9806,
4083,
198,
220,
220,
220,
220,
198,
220,
220,
220,
611,
468,
35226,
7,
19849,
11,
366,
12501,
1166,
62,
8818,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
89,
796,
2746,
13,
12501,
1166,
62,
8818,
7,
37659,
13,
66,
62,
58,
5324,
13,
25843,
22784,
331,
88,
13,
25843,
3419,
12962,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1976,
89,
796,
2746,
13,
79,
17407,
62,
1676,
7012,
7,
37659,
13,
66,
62,
58,
5324,
13,
25843,
22784,
331,
88,
13,
25843,
3419,
12962,
58,
45299,
352,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
5930,
262,
1255,
656,
257,
3124,
7110,
198,
220,
220,
220,
1976,
89,
796,
1976,
89,
13,
3447,
1758,
7,
5324,
13,
43358,
8,
198,
220,
220,
220,
7877,
13,
3642,
454,
69,
7,
5324,
11,
331,
88,
11,
1976,
89,
11,
269,
8899,
796,
12067,
11,
17130,
796,
764,
23,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
28114,
262,
3047,
2173,
198,
220,
220,
220,
7877,
13,
1416,
1436,
7,
742,
3201,
58,
45299,
657,
4357,
220,
742,
3201,
58,
45299,
352,
4357,
269,
796,
331,
27432,
11,
269,
8899,
796,
12067,
62,
29199,
11,
5743,
4033,
669,
796,
366,
74,
1600,
17130,
796,
657,
13,
21,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
7877,
13,
2617,
62,
87,
2475,
7,
5324,
13,
1084,
22784,
31383,
13,
9806,
28955,
198,
220,
220,
220,
7877,
13,
2617,
62,
88,
2475,
7,
22556,
13,
1084,
22784,
331,
88,
13,
9806,
28955,
198,
220,
220,
220,
7877,
13,
2617,
62,
742,
3378,
7,
28955,
198,
220,
220,
220,
7877,
13,
2617,
62,
20760,
3378,
7,
28955,
198,
220,
220,
220,
220,
198,
220,
220,
220,
7877,
13,
5239,
7,
5324,
13,
9806,
3419,
532,
764,
18,
11,
331,
88,
13,
1084,
3419,
1343,
764,
22,
11,
366,
7225,
17,
69,
1,
4064,
4776,
62,
27432,
11,
2546,
796,
1315,
11,
16021,
282,
16747,
796,
366,
3506,
4943,
198,
220,
220,
220,
7877,
13,
5239,
7,
5324,
13,
9806,
3419,
532,
764,
18,
11,
331,
88,
13,
1084,
3419,
1343,
764,
18,
11,
366,
7225,
17,
69,
1,
4064,
4776,
62,
9288,
11,
2546,
796,
1315,
11,
16021,
282,
16747,
796,
366,
3506,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1312,
15853,
352,
198,
220,
220,
220,
220,
198,
220,
220,
220,
458,
83,
13,
33464,
62,
39786,
3419,
198,
220,
220,
220,
1303,
458,
83,
13,
12860,
3419,
198,
220,
220,
220,
1303,
458,
83,
13,
21928,
5647,
7203,
15262,
274,
13,
25386,
1600,
5794,
2625,
25386,
4943
] | 2.345881 | 1,408 |
import unittest
import im_lib
import numpy
#class CountObjectsTest(unittest.TestCase):
#@classmethod
#def setUpClass(clc):
#print("\nRunning CountObjects class setUp...")
#@classmethod
#def tearDownClass(clc):
#print("\nRunning CountObjects class tearDown...")
#def setUp(self):
#print("\nRunning setUp...")
#def tearDown(self):
#print("\nRunning tearDown...")
#def test_co(self):
if __name__ == "__main__":
unittest.main()
| [
11748,
555,
715,
395,
198,
11748,
545,
62,
8019,
198,
11748,
299,
32152,
628,
628,
628,
198,
2,
4871,
2764,
10267,
82,
14402,
7,
403,
715,
395,
13,
14402,
20448,
2599,
628,
220,
220,
220,
1303,
31,
4871,
24396,
198,
220,
220,
220,
1303,
4299,
900,
4933,
9487,
7,
565,
66,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
59,
77,
28768,
2764,
10267,
82,
1398,
900,
4933,
9313,
8,
628,
220,
220,
220,
1303,
31,
4871,
24396,
198,
220,
220,
220,
1303,
4299,
11626,
8048,
9487,
7,
565,
66,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
59,
77,
28768,
2764,
10267,
82,
1398,
11626,
8048,
9313,
8,
628,
220,
220,
220,
1303,
4299,
900,
4933,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
59,
77,
28768,
900,
4933,
9313,
8,
628,
220,
220,
220,
1303,
4299,
11626,
8048,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7203,
59,
77,
28768,
11626,
8048,
9313,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4299,
1332,
62,
1073,
7,
944,
2599,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 2.324201 | 219 |
from docutils import nodes
from docutils.parsers.rst import directives
CODE = """\
<object width="%(width)i" height="%(height)i">
<param name="flashvars" value="offsite=true&lang=en-us&page_show_url=%2Fphotos%2F75341362%40N04%2Fsets%2F72157629059614751%2Fshow%2F&page_show_back_url=%2Fphotos%2F75341362%40N04%2Fsets%2F72157629059614751%2F&set_id=72157629059614751&jump_to="> </param>
<param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=%(flickid)s"> </param>
<param name="allowFullScreen" value="true"></param>
<embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=%(flickid)s" allowFullScreen="true" flashvars="offsite=true&lang=en-us&page_show_url=%2Fphotos%2F75341362%40N04%2Fsets%2F72157629059614751%2Fshow%2F&page_show_back_url=%2Fphotos%2F75341362%40N04%2Fsets%2F72157629059614751%2F&set_id=72157629059614751&jump_to=" width="%(width)i" height="%(height)i"></embed>
</object>
"""
PARAM = """\n <param name="%s" value="%s"></param>"""
def flickr(name, args, options, content, lineno,
contentOffset, blockText, state, stateMachine):
""" Restructured text extension for inserting flickr embedded slideshows """
if len(content) == 0:
return
string_vars = {
'flickid': content[0],
'width': 400,
'height': 300,
'extra': ''
}
extra_args = content[1:] # Because content[0] is ID
extra_args = [ea.strip().split("=") for ea in extra_args] # key=value
extra_args = [ea for ea in extra_args if len(ea) == 2] # drop bad lines
extra_args = dict(extra_args)
if 'width' in extra_args:
string_vars['width'] = extra_args.pop('width')
if 'height' in extra_args:
string_vars['height'] = extra_args.pop('height')
if extra_args:
params = [PARAM % (key, extra_args[key]) for key in extra_args]
string_vars['extra'] = "".join(params)
return [nodes.raw('', CODE % (string_vars), format='html')]
flickr.content = True
directives.register_directive('flickr', flickr)
from sphinx.util.compat import Directive
| [
6738,
2205,
26791,
1330,
13760,
198,
6738,
2205,
26791,
13,
79,
945,
364,
13,
81,
301,
1330,
34819,
198,
198,
34,
16820,
796,
37227,
59,
198,
198,
27,
15252,
9647,
2625,
4,
7,
10394,
8,
72,
1,
6001,
2625,
4,
7,
17015,
8,
72,
5320,
220,
198,
27,
17143,
1438,
2625,
34167,
85,
945,
1,
1988,
2625,
8210,
578,
28,
7942,
5,
17204,
28,
268,
12,
385,
5,
7700,
62,
12860,
62,
6371,
28,
4,
17,
37,
24729,
4,
17,
37,
2425,
2682,
1485,
5237,
4,
1821,
45,
3023,
4,
17,
37,
28709,
4,
17,
37,
4761,
1314,
4304,
1959,
2713,
4846,
1415,
48365,
4,
17,
37,
12860,
4,
17,
37,
5,
7700,
62,
12860,
62,
1891,
62,
6371,
28,
4,
17,
37,
24729,
4,
17,
37,
2425,
2682,
1485,
5237,
4,
1821,
45,
3023,
4,
17,
37,
28709,
4,
17,
37,
4761,
1314,
4304,
1959,
2713,
4846,
1415,
48365,
4,
17,
37,
5,
2617,
62,
312,
28,
4761,
1314,
4304,
1959,
2713,
4846,
1415,
48365,
5,
43327,
62,
1462,
2625,
29,
7359,
17143,
29,
198,
27,
17143,
1438,
2625,
41364,
1,
1988,
2625,
4023,
1378,
2503,
13,
2704,
18994,
13,
785,
14,
18211,
14,
6649,
42286,
14,
12860,
13,
2032,
69,
30,
85,
28,
4,
7,
2704,
624,
312,
8,
82,
5320,
7359,
17143,
29,
198,
27,
17143,
1438,
2625,
12154,
13295,
23901,
1,
1988,
2625,
7942,
23984,
17143,
29,
198,
27,
20521,
2099,
2625,
31438,
14,
87,
12,
39563,
19204,
12,
34167,
1,
12351,
2625,
4023,
1378,
2503,
13,
2704,
18994,
13,
785,
14,
18211,
14,
6649,
42286,
14,
12860,
13,
2032,
69,
30,
85,
28,
4,
7,
2704,
624,
312,
8,
82,
1,
1249,
13295,
23901,
2625,
7942,
1,
7644,
85,
945,
2625,
8210,
578,
28,
7942,
5,
17204,
28,
268,
12,
385,
5,
7700,
62,
12860,
62,
6371,
28,
4,
17,
37,
24729,
4,
17,
37,
2425,
2682,
1485,
5237,
4,
1821,
45,
3023,
4,
17,
37,
28709,
4,
17,
37,
4761,
1314,
4304,
1959,
2713,
4846,
1415,
48365,
4,
17,
37,
12860,
4,
17,
37,
5,
7700,
62,
12860,
62,
1891,
62,
6371,
28,
4,
17,
37,
24729,
4,
17,
37,
2425,
2682,
1485,
5237,
4,
1821,
45,
3023,
4,
17,
37,
28709,
4,
17,
37,
4761,
1314,
4304,
1959,
2713,
4846,
1415,
48365,
4,
17,
37,
5,
2617,
62,
312,
28,
4761,
1314,
4304,
1959,
2713,
4846,
1415,
48365,
5,
43327,
62,
1462,
2625,
9647,
2625,
4,
7,
10394,
8,
72,
1,
6001,
2625,
4,
7,
17015,
8,
72,
23984,
20521,
29,
198,
3556,
15252,
29,
198,
37811,
198,
198,
27082,
2390,
796,
37227,
59,
77,
220,
220,
220,
1279,
17143,
1438,
2625,
4,
82,
1,
1988,
2625,
4,
82,
23984,
17143,
29,
37811,
198,
198,
4299,
781,
18994,
7,
3672,
11,
26498,
11,
3689,
11,
2695,
11,
9493,
23397,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2695,
34519,
11,
2512,
8206,
11,
1181,
11,
1181,
37573,
2599,
198,
220,
220,
220,
37227,
8324,
1356,
1522,
2420,
7552,
329,
19319,
781,
18994,
14553,
19392,
71,
1666,
37227,
198,
220,
220,
220,
611,
18896,
7,
11299,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
4731,
62,
85,
945,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
2704,
624,
312,
10354,
2695,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10394,
10354,
7337,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
17015,
10354,
5867,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
26086,
10354,
10148,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
3131,
62,
22046,
796,
2695,
58,
16,
47715,
1303,
4362,
2695,
58,
15,
60,
318,
4522,
198,
220,
220,
220,
3131,
62,
22046,
796,
685,
18213,
13,
36311,
22446,
35312,
7203,
2625,
8,
329,
304,
64,
287,
3131,
62,
22046,
60,
1303,
1994,
28,
8367,
198,
220,
220,
220,
3131,
62,
22046,
796,
685,
18213,
329,
304,
64,
287,
3131,
62,
22046,
611,
18896,
7,
18213,
8,
6624,
362,
60,
1303,
4268,
2089,
3951,
198,
220,
220,
220,
3131,
62,
22046,
796,
8633,
7,
26086,
62,
22046,
8,
198,
220,
220,
220,
611,
705,
10394,
6,
287,
3131,
62,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4731,
62,
85,
945,
17816,
10394,
20520,
796,
3131,
62,
22046,
13,
12924,
10786,
10394,
11537,
198,
220,
220,
220,
611,
705,
17015,
6,
287,
3131,
62,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4731,
62,
85,
945,
17816,
17015,
20520,
796,
3131,
62,
22046,
13,
12924,
10786,
17015,
11537,
198,
220,
220,
220,
611,
3131,
62,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
42287,
796,
685,
27082,
2390,
4064,
357,
2539,
11,
3131,
62,
22046,
58,
2539,
12962,
329,
1994,
287,
3131,
62,
22046,
60,
198,
220,
220,
220,
220,
220,
220,
220,
4731,
62,
85,
945,
17816,
26086,
20520,
796,
366,
1911,
22179,
7,
37266,
8,
198,
220,
220,
220,
1441,
685,
77,
4147,
13,
1831,
10786,
3256,
42714,
4064,
357,
8841,
62,
85,
945,
828,
5794,
11639,
6494,
11537,
60,
198,
2704,
18994,
13,
11299,
796,
6407,
198,
12942,
1083,
13,
30238,
62,
12942,
425,
10786,
2704,
18994,
3256,
781,
18994,
8,
198,
198,
6738,
599,
20079,
87,
13,
22602,
13,
5589,
265,
1330,
34736,
198
] | 2.352018 | 892 |
'''
Convolutional AutoEncoder
This code serves to load a pretrained model and to train for more epochs with
selected data.
'''
import LRsymmetrizer as sym
import tensorflow as tf
import tensorflow.keras as keras
from keras.preprocessing import image
from keras.models import Model, model_from_json, load_model
import os, time
import numpy as np
import matplotlib.pyplot as plt
print(tf.version.VERSION)
print(tf.keras.__version__)
source_folder = os.getcwd()+'/tinygray'
# load and process the training/test data with load_img
start_load = time.time()
sub_source_folder = source_folder+'/train'
train_image = []
for i in os.listdir(sub_source_folder):
for ang in (0,10,20,30,40):
if i.endswith('_%d.png' % ang):
img = sym.feed_processor(i,ang,sub_source_folder)
# img.shape = (128,64) for vertically stacked imgs of (h,w) = (64,64)
img = img/255. #rescale to [0,1]
train_image.append(img)
train_image = np.array(train_image)
# train_image.shape = (N,128,64) for N imgs in sub_source_folder
train_image = np.expand_dims(train_image,axis=3)#keras format needs a dimension for the color channel
sub_source_folder = source_folder+'/test'
test_image = []
for i in os.listdir(sub_source_folder):
for ang in (0,10,20,30,40):
if i.endswith('_%d.png' % ang):
img = sym.feed_processor(i,ang,sub_source_folder)
# img.shape = (128,64) for vertically stacked imgs of (h,w) = (64,64)
img = img/255. #rescale to [0,1]
test_image.append(img)
test_image = np.array(test_image)
# train_image.shape = (N,128,64) for N imgs in sub_source_folder
test_image = np.expand_dims(test_image,axis=3)#keras format needs a dimension for the color channel
print('load_img takes time = ',time.time()-start_load)
loaded_model = load_model("HoloEncoder_C56789DDC98765.h5")
loaded_model.summary()
# model training
start_training = time.time()
loaded_model.fit(train_image, train_image,
epochs=50,
batch_size=8,
shuffle=True,
validation_data=(test_image, test_image))
print('Training takes time = ',time.time()-start_training)
loaded_model.save("HoloEncoder_C56789DDC98765.h5")
# model validation
decoded_imgs = loaded_model.predict(test_image[:4])
decoded_imgs = loaded_model.predict(decoded_imgs)
decoded_imgs = loaded_model.predict(decoded_imgs)
decoded_imgs = loaded_model.predict(decoded_imgs)
# plot comparison of test_image and its reconstruction
plt.figure(figsize=(64,32))
for i in range(4):
#original
ax = plt.subplot(2,4,i+1)
plt.imshow(test_image[i].reshape(128,64)) #reshape from flatten&grayscale
plt.gray()
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
#reconstruction
ax = plt.subplot(2,4,i+1+4)
plt.imshow(decoded_imgs[i].reshape(128,64)) #reshape from flatten&grayscale
plt.gray()
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
plt.savefig('argvalidation_img.png')
| [
7061,
6,
198,
3103,
85,
2122,
282,
11160,
27195,
12342,
198,
1212,
2438,
9179,
284,
3440,
257,
2181,
13363,
2746,
290,
284,
4512,
329,
517,
36835,
82,
351,
198,
34213,
1366,
13,
198,
7061,
6,
198,
11748,
37491,
1837,
3020,
316,
380,
9107,
355,
5659,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
11192,
273,
11125,
13,
6122,
292,
355,
41927,
292,
198,
6738,
41927,
292,
13,
3866,
36948,
1330,
2939,
198,
6738,
41927,
292,
13,
27530,
1330,
9104,
11,
2746,
62,
6738,
62,
17752,
11,
3440,
62,
19849,
198,
11748,
28686,
11,
640,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
198,
4798,
7,
27110,
13,
9641,
13,
43717,
8,
198,
4798,
7,
27110,
13,
6122,
292,
13,
834,
9641,
834,
8,
198,
198,
10459,
62,
43551,
796,
28686,
13,
1136,
66,
16993,
3419,
10,
26488,
44152,
44605,
6,
198,
198,
2,
3440,
290,
1429,
262,
3047,
14,
9288,
1366,
351,
3440,
62,
9600,
198,
9688,
62,
2220,
796,
640,
13,
2435,
3419,
198,
198,
7266,
62,
10459,
62,
43551,
796,
2723,
62,
43551,
10,
26488,
27432,
6,
198,
27432,
62,
9060,
796,
17635,
198,
1640,
1312,
287,
28686,
13,
4868,
15908,
7,
7266,
62,
10459,
62,
43551,
2599,
198,
220,
220,
220,
329,
3550,
287,
357,
15,
11,
940,
11,
1238,
11,
1270,
11,
1821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
13,
437,
2032,
342,
10786,
62,
4,
67,
13,
11134,
6,
4064,
3550,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33705,
796,
5659,
13,
12363,
62,
41341,
7,
72,
11,
648,
11,
7266,
62,
10459,
62,
43551,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
33705,
13,
43358,
796,
357,
12762,
11,
2414,
8,
329,
31677,
24167,
545,
14542,
286,
357,
71,
11,
86,
8,
796,
357,
2414,
11,
2414,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33705,
796,
33705,
14,
13381,
13,
1303,
411,
38765,
284,
685,
15,
11,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4512,
62,
9060,
13,
33295,
7,
9600,
8,
198,
27432,
62,
9060,
796,
45941,
13,
18747,
7,
27432,
62,
9060,
8,
198,
2,
4512,
62,
9060,
13,
43358,
796,
357,
45,
11,
12762,
11,
2414,
8,
329,
399,
545,
14542,
287,
850,
62,
10459,
62,
43551,
198,
27432,
62,
9060,
796,
45941,
13,
11201,
392,
62,
67,
12078,
7,
27432,
62,
9060,
11,
22704,
28,
18,
8,
2,
6122,
292,
5794,
2476,
257,
15793,
329,
262,
3124,
6518,
628,
198,
7266,
62,
10459,
62,
43551,
796,
2723,
62,
43551,
10,
26488,
9288,
6,
198,
9288,
62,
9060,
796,
17635,
198,
1640,
1312,
287,
28686,
13,
4868,
15908,
7,
7266,
62,
10459,
62,
43551,
2599,
198,
220,
220,
220,
329,
3550,
287,
357,
15,
11,
940,
11,
1238,
11,
1270,
11,
1821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
13,
437,
2032,
342,
10786,
62,
4,
67,
13,
11134,
6,
4064,
3550,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33705,
796,
5659,
13,
12363,
62,
41341,
7,
72,
11,
648,
11,
7266,
62,
10459,
62,
43551,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
33705,
13,
43358,
796,
357,
12762,
11,
2414,
8,
329,
31677,
24167,
545,
14542,
286,
357,
71,
11,
86,
8,
796,
357,
2414,
11,
2414,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33705,
796,
33705,
14,
13381,
13,
1303,
411,
38765,
284,
685,
15,
11,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
9060,
13,
33295,
7,
9600,
8,
198,
9288,
62,
9060,
796,
45941,
13,
18747,
7,
9288,
62,
9060,
8,
198,
2,
4512,
62,
9060,
13,
43358,
796,
357,
45,
11,
12762,
11,
2414,
8,
329,
399,
545,
14542,
287,
850,
62,
10459,
62,
43551,
198,
9288,
62,
9060,
796,
45941,
13,
11201,
392,
62,
67,
12078,
7,
9288,
62,
9060,
11,
22704,
28,
18,
8,
2,
6122,
292,
5794,
2476,
257,
15793,
329,
262,
3124,
6518,
198,
198,
4798,
10786,
2220,
62,
9600,
2753,
640,
796,
46083,
2435,
13,
2435,
3419,
12,
9688,
62,
2220,
8,
628,
198,
14578,
62,
19849,
796,
3440,
62,
19849,
7203,
39,
14057,
27195,
12342,
62,
34,
20,
3134,
4531,
35,
9697,
4089,
29143,
13,
71,
20,
4943,
198,
14578,
62,
19849,
13,
49736,
3419,
198,
2,
2746,
3047,
198,
9688,
62,
34409,
796,
640,
13,
2435,
3419,
198,
14578,
62,
19849,
13,
11147,
7,
27432,
62,
9060,
11,
4512,
62,
9060,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36835,
82,
28,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
7857,
28,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36273,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21201,
62,
7890,
16193,
9288,
62,
9060,
11,
1332,
62,
9060,
4008,
198,
4798,
10786,
44357,
2753,
640,
796,
46083,
2435,
13,
2435,
3419,
12,
9688,
62,
34409,
8,
198,
14578,
62,
19849,
13,
21928,
7203,
39,
14057,
27195,
12342,
62,
34,
20,
3134,
4531,
35,
9697,
4089,
29143,
13,
71,
20,
4943,
198,
198,
2,
2746,
21201,
198,
12501,
9043,
62,
9600,
82,
796,
9639,
62,
19849,
13,
79,
17407,
7,
9288,
62,
9060,
58,
25,
19,
12962,
198,
12501,
9043,
62,
9600,
82,
796,
9639,
62,
19849,
13,
79,
17407,
7,
12501,
9043,
62,
9600,
82,
8,
198,
12501,
9043,
62,
9600,
82,
796,
9639,
62,
19849,
13,
79,
17407,
7,
12501,
9043,
62,
9600,
82,
8,
198,
12501,
9043,
62,
9600,
82,
796,
9639,
62,
19849,
13,
79,
17407,
7,
12501,
9043,
62,
9600,
82,
8,
628,
198,
2,
7110,
7208,
286,
1332,
62,
9060,
290,
663,
25056,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
2414,
11,
2624,
4008,
198,
1640,
1312,
287,
2837,
7,
19,
2599,
198,
220,
220,
220,
1303,
14986,
198,
220,
220,
220,
7877,
796,
458,
83,
13,
7266,
29487,
7,
17,
11,
19,
11,
72,
10,
16,
8,
198,
220,
220,
220,
458,
83,
13,
320,
12860,
7,
9288,
62,
9060,
58,
72,
4083,
3447,
1758,
7,
12762,
11,
2414,
4008,
220,
1303,
3447,
1758,
422,
27172,
268,
5,
2164,
592,
38765,
198,
220,
220,
220,
458,
83,
13,
44605,
3419,
198,
220,
220,
220,
7877,
13,
1136,
62,
87,
22704,
22446,
2617,
62,
23504,
7,
25101,
8,
198,
220,
220,
220,
7877,
13,
1136,
62,
88,
22704,
22446,
2617,
62,
23504,
7,
25101,
8,
198,
220,
220,
220,
1303,
260,
9979,
2762,
198,
220,
220,
220,
7877,
796,
458,
83,
13,
7266,
29487,
7,
17,
11,
19,
11,
72,
10,
16,
10,
19,
8,
198,
220,
220,
220,
458,
83,
13,
320,
12860,
7,
12501,
9043,
62,
9600,
82,
58,
72,
4083,
3447,
1758,
7,
12762,
11,
2414,
4008,
1303,
3447,
1758,
422,
27172,
268,
5,
2164,
592,
38765,
198,
220,
220,
220,
458,
83,
13,
44605,
3419,
198,
220,
220,
220,
7877,
13,
1136,
62,
87,
22704,
22446,
2617,
62,
23504,
7,
25101,
8,
198,
220,
220,
220,
7877,
13,
1136,
62,
88,
22704,
22446,
2617,
62,
23504,
7,
25101,
8,
198,
489,
83,
13,
21928,
5647,
10786,
853,
12102,
341,
62,
9600,
13,
11134,
11537,
198
] | 2.403009 | 1,263 |
from .trial_scheduler import TrialScheduler
from .online_scheduler import OnlineScheduler, OnlineSuccessiveDoublingScheduler, ChaChaScheduler
| [
6738,
764,
45994,
62,
1416,
704,
18173,
1330,
21960,
50,
1740,
18173,
198,
6738,
764,
25119,
62,
1416,
704,
18173,
1330,
7467,
50,
1740,
18173,
11,
7467,
33244,
425,
40287,
11108,
50,
1740,
18173,
11,
20703,
1925,
64,
50,
1740,
18173,
198
] | 3.380952 | 42 |
#Chapter 9 notes
#1
#states = {} <- dictionary
#states = {"Virginia": "Richmond", "Maryland": "Annapolis", "New York": "Albany"}
#print states . . . {'Maryland': 'Annapolis', 'New York': 'Albany', 'Virginia': 'Richmond'}
#states['Oregon'] = 'Salem' <- adding something to the dictionary
#states.pop(Oregon) = Salem; States = line 4 original list
#2
#user_emails = {'15363': '[email protected]'}
#user_emails['15363'] = "[email protected]"
#user_emails
#result --> {'15363': '[email protected]'}
#3 Getting Information About a Dictionary
#isbns = {'1234': 'Easy Math', '1357': "Things are odd', '2468': Let\'s break even"}
#isbns['2468'] = "Let's Break Even"
#isbns.has_key('1111') = False; <- check if a key is in a dictionary
#isbns.has_key('1234') = True;
#isbns.keys() = ['1234', '2468', '1357'] <- get keys
#isbns.values() = ['Easy Math', "Let's Break Even", 'Things are odd'] <- get values
#4
#d = {'one': 1, 'two': 2}
#'one' in d -> True
#'four' in d -> False
#5, Comparing Dictionaries
#a = {1: 'one', 2: 'two', 3: 'three'}
#b = {1: 'one', 2: 'two', 3: 'three'}
# c = {2: 'two', 3: 'three', 4: 'four'}
# a == b -> True
# b == c -> False
| [
2,
14126,
860,
4710,
198,
2,
16,
198,
2,
27219,
796,
23884,
24293,
22155,
198,
2,
27219,
796,
19779,
41017,
1298,
366,
14868,
6327,
1600,
366,
24119,
1044,
1298,
366,
18858,
11174,
1600,
366,
3791,
1971,
1298,
366,
2348,
65,
1092,
20662,
198,
2,
4798,
2585,
764,
764,
764,
1391,
6,
24119,
1044,
10354,
705,
18858,
11174,
3256,
705,
3791,
1971,
10354,
705,
2348,
65,
1092,
3256,
705,
41017,
10354,
705,
14868,
6327,
6,
92,
198,
2,
27219,
17816,
41243,
20520,
796,
705,
19221,
368,
6,
24293,
4375,
1223,
284,
262,
22155,
198,
2,
27219,
13,
12924,
7,
41243,
8,
796,
31988,
26,
1829,
796,
1627,
604,
2656,
1351,
198,
198,
2,
17,
198,
2,
7220,
62,
368,
1768,
796,
1391,
6,
1314,
35447,
10354,
705,
67,
619,
14930,
13,
75,
2502,
31,
14816,
13,
785,
6,
92,
198,
2,
7220,
62,
368,
1768,
17816,
1314,
35447,
20520,
796,
366,
48235,
6862,
31,
463,
417,
13,
15532,
1,
198,
2,
7220,
62,
368,
1768,
198,
2,
20274,
14610,
1391,
6,
1314,
35447,
10354,
705,
48235,
6862,
31,
463,
417,
13,
15532,
6,
92,
198,
198,
2,
18,
18067,
6188,
7994,
257,
28261,
198,
2,
271,
65,
5907,
796,
1391,
6,
1065,
2682,
10354,
705,
28406,
16320,
3256,
705,
1485,
3553,
10354,
366,
22248,
389,
5629,
3256,
705,
1731,
3104,
10354,
3914,
43054,
82,
2270,
772,
20662,
198,
2,
271,
65,
5907,
17816,
1731,
3104,
20520,
796,
366,
5756,
338,
12243,
3412,
1,
198,
2,
271,
65,
5907,
13,
10134,
62,
2539,
10786,
26259,
11537,
796,
10352,
26,
24293,
2198,
611,
257,
1994,
318,
287,
257,
22155,
198,
2,
271,
65,
5907,
13,
10134,
62,
2539,
10786,
1065,
2682,
11537,
796,
6407,
26,
198,
2,
271,
65,
5907,
13,
13083,
3419,
796,
37250,
1065,
2682,
3256,
705,
1731,
3104,
3256,
705,
1485,
3553,
20520,
24293,
651,
8251,
198,
2,
271,
65,
5907,
13,
27160,
3419,
796,
37250,
28406,
16320,
3256,
366,
5756,
338,
12243,
3412,
1600,
705,
22248,
389,
5629,
20520,
24293,
651,
3815,
198,
198,
2,
19,
198,
2,
67,
796,
1391,
6,
505,
10354,
352,
11,
705,
11545,
10354,
362,
92,
198,
2,
6,
505,
6,
287,
288,
4613,
6407,
198,
2,
6,
14337,
6,
287,
288,
4613,
10352,
198,
198,
2,
20,
11,
3082,
1723,
360,
2867,
3166,
198,
2,
64,
796,
1391,
16,
25,
705,
505,
3256,
362,
25,
705,
11545,
3256,
513,
25,
705,
15542,
6,
92,
198,
2,
65,
796,
1391,
16,
25,
705,
505,
3256,
362,
25,
705,
11545,
3256,
513,
25,
705,
15542,
6,
92,
198,
2,
269,
796,
1391,
17,
25,
705,
11545,
3256,
513,
25,
705,
15542,
3256,
604,
25,
705,
14337,
6,
92,
198,
2,
257,
6624,
275,
4613,
6407,
198,
2,
275,
6624,
269,
4613,
10352,
220,
198
] | 2.505447 | 459 |
# Copyright Fortior Blockchain, LLLP 2021
# Imports
import numpy as np
import pandas as pd
from pandas_datareader import data
ALGO = data.DataReader("ALGO-USD",
start='2019-9-18',
end='2021-9-14',
data_source='yahoo')
import matplotlib.pyplot as plt
import seaborn as sns
import tensorflow as tf
from tensorflow.keras import layers
from sklearn.preprocessing import MinMaxScaler
# Data
ALGO = ALGO[~ALGO.index.duplicated()]
sns.set(style='darkgrid')
plt.figure(figsize=(12,8))
plt.title("ALGO Prices", fontsize=15)
sns.lineplot(x=ALGO.index, y='Adj Close', data=ALGO)
plt.show(block=True)
hist = []
target = []
length = 30
adj_close = ALGO['Adj Close']
# iterate
for i in range(len(adj_close) - length):
x = adj_close[i:i+length]
y = adj_close[i+length]
hist.append(x)
target.append(y)
hist = np.array(hist)
target = np.array(target)
target = target.reshape(-1,1)
# Shape
print(hist.shape)
print(target.shape)
# Data splut
X_train = hist[:300]
X_test = hist[300:]
y_train = target[:300]
y_test = target[300:]
sc = MinMaxScaler()
# Train set, fit_transform
X_train_scaled = sc.fit_transform(X_train)
y_train_scaled = sc.fit_transform(y_train)
# Test set, only transform
X_test_scaled = sc.fit_transform(X_test)
y_test_scaled = sc.fit_transform(y_test)
X_train_scaled = X_train_scaled.reshape((len(X_train_scaled), length, 1))
X_test_scaled = X_test_scaled.reshape((len(X_test_scaled), length, 1))
# Model
model = tf.keras.Sequential()
model.add(layers.LSTM(units=64, return_sequences=True, input_shape=(90,1), dropout=0.2))
model.add(layers.LSTM(units=64, return_sequences=True, input_shape=(90,1), dropout=0.2))
model.add(layers.LSTM(units=32, return_sequences=True, dropout=0.2))
model.add(layers.LSTM(units=32, return_sequences=True, dropout=0.2))
model.add(layers.LSTM(units=16, dropout=0.2))
model.add(layers.Dense(units=1))
model.summary()
model.compile(optimizer='adam', loss='mean_squared_error')
# Optimizer
history = model.fit(X_train_scaled, y_train_scaled,
epochs=120, batch_size=20)
loss = history.history['loss']
epoch_count = range(1, len(loss) + 1)
# Plot
plt.figure(figsize=(12,8))
plt.plot(epoch_count, loss, 'r--')
plt.legend(['Training Loss'])
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.show()
pred = model.predict(X_test_scaled)
pred_transformed = sc.inverse_transform(pred)
y_test_transformed = sc.inverse_transform(y_test_scaled)
plt.figure(figsize=(12,8))
plt.plot(y_test_transformed, color='blue', label='Real')
plt.plot(pred_transformed, color='red', label='Prediction')
plt.title('ALGO Price Prediction')
plt.legend()
plt.show()
| [
2,
15069,
6401,
1504,
29724,
11,
406,
3069,
47,
33448,
198,
198,
2,
1846,
3742,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
19798,
292,
62,
19608,
533,
5067,
1330,
1366,
198,
1847,
11230,
796,
1366,
13,
6601,
33634,
7203,
1847,
11230,
12,
29072,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
11639,
23344,
12,
24,
12,
1507,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
11639,
1238,
2481,
12,
24,
12,
1415,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
62,
10459,
11639,
40774,
11537,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
384,
397,
1211,
355,
3013,
82,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
6738,
11192,
273,
11125,
13,
6122,
292,
1330,
11685,
198,
6738,
1341,
35720,
13,
3866,
36948,
1330,
1855,
11518,
3351,
36213,
198,
198,
2,
6060,
198,
1847,
11230,
796,
8355,
11230,
58,
93,
1847,
11230,
13,
9630,
13,
646,
489,
3474,
3419,
60,
198,
82,
5907,
13,
2617,
7,
7635,
11639,
21953,
25928,
11537,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
1065,
11,
23,
4008,
198,
489,
83,
13,
7839,
7203,
1847,
11230,
29431,
1600,
10369,
7857,
28,
1314,
8,
198,
82,
5907,
13,
1370,
29487,
7,
87,
28,
1847,
11230,
13,
9630,
11,
331,
11639,
2782,
73,
13872,
3256,
1366,
28,
1847,
11230,
8,
198,
489,
83,
13,
12860,
7,
9967,
28,
17821,
8,
198,
10034,
796,
17635,
198,
16793,
796,
17635,
198,
13664,
796,
1542,
198,
41255,
62,
19836,
796,
8355,
11230,
17816,
2782,
73,
13872,
20520,
198,
198,
2,
11629,
378,
198,
1640,
1312,
287,
2837,
7,
11925,
7,
41255,
62,
19836,
8,
532,
4129,
2599,
198,
220,
220,
2124,
796,
9224,
62,
19836,
58,
72,
25,
72,
10,
13664,
60,
198,
220,
220,
331,
796,
9224,
62,
19836,
58,
72,
10,
13664,
60,
198,
220,
220,
1554,
13,
33295,
7,
87,
8,
198,
220,
220,
2496,
13,
33295,
7,
88,
8,
198,
198,
10034,
796,
45941,
13,
18747,
7,
10034,
8,
198,
16793,
796,
45941,
13,
18747,
7,
16793,
8,
198,
16793,
796,
2496,
13,
3447,
1758,
32590,
16,
11,
16,
8,
198,
198,
2,
25959,
198,
4798,
7,
10034,
13,
43358,
8,
198,
4798,
7,
16793,
13,
43358,
8,
198,
198,
2,
6060,
4328,
315,
198,
55,
62,
27432,
796,
1554,
58,
25,
6200,
60,
198,
55,
62,
9288,
796,
1554,
58,
6200,
47715,
198,
88,
62,
27432,
796,
2496,
58,
25,
6200,
60,
198,
88,
62,
9288,
796,
2496,
58,
6200,
47715,
198,
1416,
796,
1855,
11518,
3351,
36213,
3419,
198,
198,
2,
16835,
900,
11,
4197,
62,
35636,
198,
55,
62,
27432,
62,
1416,
3021,
796,
629,
13,
11147,
62,
35636,
7,
55,
62,
27432,
8,
198,
88,
62,
27432,
62,
1416,
3021,
796,
629,
13,
11147,
62,
35636,
7,
88,
62,
27432,
8,
198,
198,
2,
6208,
900,
11,
691,
6121,
198,
55,
62,
9288,
62,
1416,
3021,
796,
629,
13,
11147,
62,
35636,
7,
55,
62,
9288,
8,
198,
88,
62,
9288,
62,
1416,
3021,
796,
629,
13,
11147,
62,
35636,
7,
88,
62,
9288,
8,
198,
55,
62,
27432,
62,
1416,
3021,
796,
1395,
62,
27432,
62,
1416,
3021,
13,
3447,
1758,
19510,
11925,
7,
55,
62,
27432,
62,
1416,
3021,
828,
4129,
11,
352,
4008,
198,
55,
62,
9288,
62,
1416,
3021,
796,
1395,
62,
9288,
62,
1416,
3021,
13,
3447,
1758,
19510,
11925,
7,
55,
62,
9288,
62,
1416,
3021,
828,
4129,
11,
352,
4008,
198,
198,
2,
9104,
198,
19849,
796,
48700,
13,
6122,
292,
13,
44015,
1843,
3419,
198,
19849,
13,
2860,
7,
75,
6962,
13,
43,
2257,
44,
7,
41667,
28,
2414,
11,
1441,
62,
3107,
3007,
28,
17821,
11,
5128,
62,
43358,
16193,
3829,
11,
16,
828,
4268,
448,
28,
15,
13,
17,
4008,
198,
19849,
13,
2860,
7,
75,
6962,
13,
43,
2257,
44,
7,
41667,
28,
2414,
11,
1441,
62,
3107,
3007,
28,
17821,
11,
5128,
62,
43358,
16193,
3829,
11,
16,
828,
4268,
448,
28,
15,
13,
17,
4008,
198,
19849,
13,
2860,
7,
75,
6962,
13,
43,
2257,
44,
7,
41667,
28,
2624,
11,
1441,
62,
3107,
3007,
28,
17821,
11,
4268,
448,
28,
15,
13,
17,
4008,
198,
19849,
13,
2860,
7,
75,
6962,
13,
43,
2257,
44,
7,
41667,
28,
2624,
11,
1441,
62,
3107,
3007,
28,
17821,
11,
4268,
448,
28,
15,
13,
17,
4008,
198,
19849,
13,
2860,
7,
75,
6962,
13,
43,
2257,
44,
7,
41667,
28,
1433,
11,
4268,
448,
28,
15,
13,
17,
4008,
198,
19849,
13,
2860,
7,
75,
6962,
13,
35,
1072,
7,
41667,
28,
16,
4008,
198,
19849,
13,
49736,
3419,
198,
19849,
13,
5589,
576,
7,
40085,
7509,
11639,
324,
321,
3256,
2994,
11639,
32604,
62,
16485,
1144,
62,
18224,
11537,
198,
198,
2,
30011,
7509,
198,
23569,
796,
2746,
13,
11147,
7,
55,
62,
27432,
62,
1416,
3021,
11,
331,
62,
27432,
62,
1416,
3021,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36835,
82,
28,
10232,
11,
15458,
62,
7857,
28,
1238,
8,
198,
22462,
796,
2106,
13,
23569,
17816,
22462,
20520,
198,
538,
5374,
62,
9127,
796,
2837,
7,
16,
11,
18896,
7,
22462,
8,
1343,
352,
8,
198,
198,
2,
28114,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
1065,
11,
23,
4008,
198,
489,
83,
13,
29487,
7,
538,
5374,
62,
9127,
11,
2994,
11,
705,
81,
438,
11537,
198,
489,
83,
13,
1455,
437,
7,
17816,
44357,
22014,
6,
12962,
198,
489,
83,
13,
87,
18242,
10786,
13807,
5374,
11537,
198,
489,
83,
13,
2645,
9608,
10786,
43,
793,
11537,
198,
489,
83,
13,
12860,
3419,
198,
28764,
796,
2746,
13,
79,
17407,
7,
55,
62,
9288,
62,
1416,
3021,
8,
198,
28764,
62,
7645,
12214,
796,
629,
13,
259,
4399,
62,
35636,
7,
28764,
8,
198,
88,
62,
9288,
62,
7645,
12214,
796,
629,
13,
259,
4399,
62,
35636,
7,
88,
62,
9288,
62,
1416,
3021,
8,
198,
489,
83,
13,
26875,
7,
5647,
7857,
16193,
1065,
11,
23,
4008,
198,
489,
83,
13,
29487,
7,
88,
62,
9288,
62,
7645,
12214,
11,
3124,
11639,
17585,
3256,
6167,
11639,
15633,
11537,
198,
489,
83,
13,
29487,
7,
28764,
62,
7645,
12214,
11,
3124,
11639,
445,
3256,
6167,
11639,
39156,
2867,
11537,
198,
489,
83,
13,
7839,
10786,
1847,
11230,
7886,
46690,
11537,
198,
489,
83,
13,
1455,
437,
3419,
198,
489,
83,
13,
12860,
3419,
198
] | 2.354497 | 1,134 |
import base64
import csv
import json
import os
from google.oauth2 import service_account
from googleapiclient.discovery import build
if __name__ == "__main__":
spreadsheet_id = os.environ["SPREADSHEET_ID"]
range_name = os.environ["RANGE_NAME"]
credential = os.environ["GDOCS_SERVICE_ACCOUNT"]
credential = decode_credential(credential)
scopes = ["https://www.googleapis.com/auth/spreadsheets"]
write_sheet(spreadsheet_id, range_name, credential, scopes)
| [
11748,
2779,
2414,
198,
11748,
269,
21370,
198,
11748,
33918,
198,
11748,
28686,
198,
198,
6738,
23645,
13,
12162,
1071,
17,
1330,
2139,
62,
23317,
198,
6738,
23645,
499,
291,
75,
1153,
13,
67,
40821,
1330,
1382,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
30117,
62,
312,
796,
28686,
13,
268,
2268,
14692,
4303,
15675,
9693,
36,
2767,
62,
2389,
8973,
198,
220,
220,
220,
2837,
62,
3672,
796,
28686,
13,
268,
2268,
14692,
49,
27746,
62,
20608,
8973,
628,
220,
220,
220,
49920,
796,
28686,
13,
268,
2268,
14692,
38,
38715,
50,
62,
35009,
27389,
62,
26861,
28270,
8973,
198,
220,
220,
220,
49920,
796,
36899,
62,
66,
445,
1843,
7,
66,
445,
1843,
8,
628,
220,
220,
220,
629,
13920,
796,
14631,
5450,
1378,
2503,
13,
13297,
499,
271,
13,
785,
14,
18439,
14,
43639,
42011,
8973,
628,
220,
220,
220,
3551,
62,
21760,
7,
43639,
21760,
62,
312,
11,
2837,
62,
3672,
11,
49920,
11,
629,
13920,
8,
198
] | 2.820809 | 173 |
# Generated by Django 2.2.4 on 2019-08-25 02:20
from django.db import migrations
| [
2,
2980,
515,
416,
37770,
362,
13,
17,
13,
19,
319,
13130,
12,
2919,
12,
1495,
7816,
25,
1238,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
628
] | 2.766667 | 30 |
"""Types."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import apache_beam as beam
import numpy as np
from tensorflow_data_validation.types_compat import Dict, Text, Union
FeatureName = Union[bytes, Text]
# Feature type enum value.
FeatureNameStatisticsType = int
# Type of the input batch.
ExampleBatch = Dict[FeatureName, np.ndarray]
# For use in Beam type annotations, because Beam's support for Python types
# in Beam type annotations is not complete.
BeamFeatureName = beam.typehints.Union[bytes, Text]
# pylint: enable=invalid-name
| [
37811,
31431,
526,
15931,
198,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
6738,
11593,
37443,
834,
1330,
7297,
198,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
198,
11748,
2471,
4891,
62,
40045,
355,
15584,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
11192,
273,
11125,
62,
7890,
62,
12102,
341,
13,
19199,
62,
5589,
265,
1330,
360,
713,
11,
8255,
11,
4479,
198,
198,
38816,
5376,
796,
4479,
58,
33661,
11,
8255,
60,
198,
198,
2,
27018,
2099,
33829,
1988,
13,
198,
38816,
5376,
48346,
6030,
796,
493,
198,
198,
2,
5994,
286,
262,
5128,
15458,
13,
198,
16281,
33,
963,
796,
360,
713,
58,
38816,
5376,
11,
45941,
13,
358,
18747,
60,
198,
198,
2,
1114,
779,
287,
25855,
2099,
37647,
11,
780,
25855,
338,
1104,
329,
11361,
3858,
198,
2,
287,
25855,
2099,
37647,
318,
407,
1844,
13,
198,
3856,
321,
38816,
5376,
796,
15584,
13,
4906,
71,
29503,
13,
38176,
58,
33661,
11,
8255,
60,
198,
2,
279,
2645,
600,
25,
7139,
28,
259,
12102,
12,
3672,
198
] | 3.438202 | 178 |
# Relative imports
from ._estimator import CanonicalRNNEstimator
__all__ = ["CanonicalRNNEstimator"]
| [
2,
45344,
17944,
198,
6738,
47540,
395,
320,
1352,
1330,
19507,
605,
49,
6144,
22362,
320,
1352,
198,
198,
834,
439,
834,
796,
14631,
6090,
261,
605,
49,
6144,
22362,
320,
1352,
8973,
198
] | 3 | 34 |
"""
Transitions for Nivre's parser
The parser state consists of the stack, the queue, and the partial graph
The partial graph is represented as a dictionary
"""
__author__ = "Pierre Nugues"
import conll
import dparser
def shift(stack, queue, graph):
"""
Shift the first word in the queue onto the stack
:param stack:
:param queue:
:param graph:
:return:
"""
stack = [queue[0]] + stack
queue = queue[1:]
return stack, queue, graph
def reduce(stack, queue, graph):
"""
Remove the first item from the stack
:param stack:
:param queue:
:param graph:
:return:
"""
return stack[1:], queue, graph
def right_arc(stack, queue, graph, deprel=False):
"""
Creates an arc from the top of the stack to the first in the queue
and shifts
The deprel argument is either read from the manually-annotated corpus
(deprel=False) or assigned by the parser. In this case, the deprel
argument has a value
:param stack:
:param queue:
:param graph:
:param deprel: either read from the manually-annotated corpus (value false)
or assigned by the parser
:return:
"""
graph['heads'][queue[0]['id']] = stack[0]['id']
if deprel:
graph['deprels'][queue[0]['id']] = deprel
else:
graph['deprels'][queue[0]['id']] = queue[0]['deprel']
return shift(stack, queue, graph)
def left_arc(stack, queue, graph, deprel=False):
"""
Creates an arc from the first in the queue to the top of the stack
and reduces it.
The deprel argument is either read from the manually-annotated corpus
(deprel=False) or assigned by the parser. In this case, the deprel
argument has a value
:param stack:
:param queue:
:param graph:
:param deprel: either read from the manually-annotated corpus (value false)
or assigned by the parser
:return:
"""
graph['heads'][stack[0]['id']] = queue[0]['id']
if deprel:
graph['deprels'][stack[0]['id']] = deprel
else:
graph['deprels'][stack[0]['id']] = stack[0]['deprel']
return reduce(stack, queue, graph)
def can_reduce(stack, graph):
"""
Checks that the top of the stack has a head
:param stack:
:param graph:
:return:
"""
if not stack:
return False
if stack[0]['id'] in graph['heads']:
return True
else:
return False
def can_leftarc(stack, graph):
"""
Checks that the top of the has no head
:param stack:
:param graph:
:return:
"""
if not stack:
return False
if stack[0]['id'] in graph['heads']:
return False
else:
return True
def can_rightarc(stack):
"""
Simply checks there is a stack
:param stack:
:return:
"""
if not stack:
return False
else:
return True
def empty_stack(stack, graph):
"""
Pops the items in the stack. If they have no head, they are assigned
a ROOT head
:param stack:
:param graph:
:return:
"""
for word in stack:
if word['id'] not in graph['heads']:
graph['heads'][word['id']] = '0'
graph['deprels'][word['id']] = 'ROOT'
stack = []
return stack, graph
def equal_graphs(sentence, graph):
"""
Checks that the graph corresponds to the gold standard annotation of a sentence
:param sentence:
:param graph:
:return:
"""
equal = True
for word in sentence:
if word['id'] in graph['heads'] and word['head'] == graph['heads'][word['id']]:
pass
else:
#print(word, flush=True)
equal = False
return equal
if __name__ == '__main__':
pass | [
37811,
198,
8291,
1756,
329,
399,
452,
260,
338,
30751,
198,
464,
30751,
1181,
10874,
286,
262,
8931,
11,
262,
16834,
11,
290,
262,
13027,
4823,
198,
464,
13027,
4823,
318,
7997,
355,
257,
22155,
198,
37811,
198,
198,
834,
9800,
834,
796,
366,
36910,
45777,
947,
1,
198,
198,
11748,
369,
297,
198,
11748,
288,
48610,
628,
198,
4299,
6482,
7,
25558,
11,
16834,
11,
4823,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
15576,
262,
717,
1573,
287,
262,
16834,
4291,
262,
8931,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
17143,
16834,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8931,
796,
685,
36560,
58,
15,
11907,
1343,
8931,
198,
220,
220,
220,
16834,
796,
16834,
58,
16,
47715,
198,
220,
220,
220,
1441,
8931,
11,
16834,
11,
4823,
628,
198,
4299,
4646,
7,
25558,
11,
16834,
11,
4823,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17220,
262,
717,
2378,
422,
262,
8931,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
17143,
16834,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
8931,
58,
16,
25,
4357,
16834,
11,
4823,
628,
198,
4299,
826,
62,
5605,
7,
25558,
11,
16834,
11,
4823,
11,
1207,
2411,
28,
25101,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7921,
274,
281,
10389,
422,
262,
1353,
286,
262,
8931,
284,
262,
717,
287,
262,
16834,
198,
220,
220,
220,
290,
15381,
198,
220,
220,
220,
383,
1207,
2411,
4578,
318,
2035,
1100,
422,
262,
14500,
12,
34574,
515,
35789,
198,
220,
220,
220,
357,
10378,
2411,
28,
25101,
8,
393,
8686,
416,
262,
30751,
13,
554,
428,
1339,
11,
262,
1207,
2411,
198,
220,
220,
220,
4578,
468,
257,
1988,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
17143,
16834,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
17143,
1207,
2411,
25,
2035,
1100,
422,
262,
14500,
12,
34574,
515,
35789,
357,
8367,
3991,
8,
198,
220,
220,
220,
393,
8686,
416,
262,
30751,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4823,
17816,
16600,
6,
7131,
36560,
58,
15,
7131,
6,
312,
6,
11907,
796,
8931,
58,
15,
7131,
6,
312,
20520,
198,
220,
220,
220,
611,
1207,
2411,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4823,
17816,
10378,
2411,
82,
6,
7131,
36560,
58,
15,
7131,
6,
312,
6,
11907,
796,
1207,
2411,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4823,
17816,
10378,
2411,
82,
6,
7131,
36560,
58,
15,
7131,
6,
312,
6,
11907,
796,
16834,
58,
15,
7131,
6,
10378,
2411,
20520,
198,
220,
220,
220,
1441,
6482,
7,
25558,
11,
16834,
11,
4823,
8,
628,
198,
4299,
1364,
62,
5605,
7,
25558,
11,
16834,
11,
4823,
11,
1207,
2411,
28,
25101,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7921,
274,
281,
10389,
422,
262,
717,
287,
262,
16834,
284,
262,
1353,
286,
262,
8931,
198,
220,
220,
220,
290,
12850,
340,
13,
198,
220,
220,
220,
383,
1207,
2411,
4578,
318,
2035,
1100,
422,
262,
14500,
12,
34574,
515,
35789,
198,
220,
220,
220,
357,
10378,
2411,
28,
25101,
8,
393,
8686,
416,
262,
30751,
13,
554,
428,
1339,
11,
262,
1207,
2411,
198,
220,
220,
220,
4578,
468,
257,
1988,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
17143,
16834,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
17143,
1207,
2411,
25,
2035,
1100,
422,
262,
14500,
12,
34574,
515,
35789,
357,
8367,
3991,
8,
198,
220,
220,
220,
393,
8686,
416,
262,
30751,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4823,
17816,
16600,
6,
7131,
25558,
58,
15,
7131,
6,
312,
6,
11907,
796,
16834,
58,
15,
7131,
6,
312,
20520,
198,
220,
220,
220,
611,
1207,
2411,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4823,
17816,
10378,
2411,
82,
6,
7131,
25558,
58,
15,
7131,
6,
312,
6,
11907,
796,
1207,
2411,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4823,
17816,
10378,
2411,
82,
6,
7131,
25558,
58,
15,
7131,
6,
312,
6,
11907,
796,
8931,
58,
15,
7131,
6,
10378,
2411,
20520,
198,
220,
220,
220,
1441,
4646,
7,
25558,
11,
16834,
11,
4823,
8,
628,
198,
4299,
460,
62,
445,
7234,
7,
25558,
11,
4823,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
47719,
326,
262,
1353,
286,
262,
8931,
468,
257,
1182,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
8931,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
611,
8931,
58,
15,
7131,
6,
312,
20520,
287,
4823,
17816,
16600,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
198,
4299,
460,
62,
9464,
5605,
7,
25558,
11,
4823,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
47719,
326,
262,
1353,
286,
262,
468,
645,
1182,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
8931,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
611,
8931,
58,
15,
7131,
6,
312,
20520,
287,
4823,
17816,
16600,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
198,
4299,
460,
62,
3506,
5605,
7,
25558,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
17973,
8794,
612,
318,
257,
8931,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
8931,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
198,
4299,
6565,
62,
25558,
7,
25558,
11,
4823,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
350,
2840,
262,
3709,
287,
262,
8931,
13,
1002,
484,
423,
645,
1182,
11,
484,
389,
8686,
198,
220,
220,
220,
257,
15107,
2394,
1182,
198,
220,
220,
220,
1058,
17143,
8931,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
329,
1573,
287,
8931,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1573,
17816,
312,
20520,
407,
287,
4823,
17816,
16600,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
17816,
16600,
6,
7131,
4775,
17816,
312,
6,
11907,
796,
705,
15,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4823,
17816,
10378,
2411,
82,
6,
7131,
4775,
17816,
312,
6,
11907,
796,
705,
13252,
2394,
6,
198,
220,
220,
220,
8931,
796,
17635,
198,
220,
220,
220,
1441,
8931,
11,
4823,
628,
198,
4299,
4961,
62,
34960,
82,
7,
34086,
594,
11,
4823,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
47719,
326,
262,
4823,
24866,
284,
262,
3869,
3210,
23025,
286,
257,
6827,
198,
220,
220,
220,
1058,
17143,
6827,
25,
198,
220,
220,
220,
1058,
17143,
4823,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4961,
796,
6407,
198,
220,
220,
220,
329,
1573,
287,
6827,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1573,
17816,
312,
20520,
287,
4823,
17816,
16600,
20520,
290,
1573,
17816,
2256,
20520,
6624,
4823,
17816,
16600,
6,
7131,
4775,
17816,
312,
20520,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
4775,
11,
24773,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4961,
796,
10352,
198,
220,
220,
220,
1441,
4961,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1208
] | 2.523453 | 1,471 |
import torch
import torch.nn as nn
import torch.nn.functional as F
from models.utils import print_debug
from misc.utils import PRINT
from models.utils import weights_init
from misc.normalization import AdainResBlk, ResBlk, MODResBlk, Conv2DMod
import numpy as np
# ----------------- #
# --- GENERATOR --- #
# ----------------- #
| [
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
6738,
4981,
13,
26791,
1330,
3601,
62,
24442,
198,
6738,
12747,
13,
26791,
1330,
4810,
12394,
198,
6738,
4981,
13,
26791,
1330,
19590,
62,
15003,
198,
6738,
12747,
13,
11265,
1634,
1330,
1215,
391,
4965,
3629,
74,
11,
1874,
3629,
74,
11,
19164,
4965,
3629,
74,
11,
34872,
17,
35,
5841,
198,
11748,
299,
32152,
355,
45941,
628,
198,
198,
2,
34400,
12,
1303,
198,
2,
11420,
24700,
1137,
25633,
11420,
1303,
198,
2,
34400,
12,
1303,
198
] | 3.387755 | 98 |
import pytest
from sme_financing.main import create_app, db
@pytest.fixture(scope="session")
@pytest.fixture(scope="session")
@pytest.fixture(scope="session")
@pytest.fixture(scope="class")
| [
11748,
12972,
9288,
198,
198,
6738,
895,
68,
62,
15643,
5077,
13,
12417,
1330,
2251,
62,
1324,
11,
20613,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
2625,
29891,
4943,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
2625,
29891,
4943,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
2625,
29891,
4943,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
2625,
4871,
4943,
198
] | 2.763889 | 72 |
"""
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
Example:
Input:
[
1->4->5,
1->3->4,
2->6
]
Output: 1->1->2->3->4->4->5->6
"""
# Definition for singly-linked list.
# class ListNode(object):
# def __init__(self, x):
# self.val = x
# self.next = None
from Queue import PriorityQueue | [
37811,
198,
13102,
469,
479,
23243,
6692,
8341,
290,
1441,
340,
355,
530,
23243,
1351,
13,
16213,
2736,
290,
6901,
663,
13357,
13,
198,
198,
16281,
25,
198,
198,
20560,
25,
198,
58,
198,
220,
352,
3784,
19,
3784,
20,
11,
198,
220,
352,
3784,
18,
3784,
19,
11,
198,
220,
362,
3784,
21,
198,
60,
198,
26410,
25,
352,
3784,
16,
3784,
17,
3784,
18,
3784,
19,
3784,
19,
3784,
20,
3784,
21,
198,
37811,
198,
198,
2,
30396,
329,
1702,
306,
12,
25614,
1351,
13,
198,
2,
1398,
7343,
19667,
7,
15252,
2599,
198,
2,
220,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2124,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2100,
796,
2124,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
19545,
796,
6045,
198,
6738,
4670,
518,
1330,
34416,
34991
] | 2.469388 | 147 |
# -*- coding: utf-8 -*-
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
628
] | 1.785714 | 14 |
from PyQt5.QtWidgets import QMainWindow, QApplication
from PyQt5 import QtGui
from UI.ui_updater import Ui_MainWindow
from database import Settings
| [
6738,
9485,
48,
83,
20,
13,
48,
83,
54,
312,
11407,
1330,
1195,
13383,
27703,
11,
1195,
23416,
198,
6738,
9485,
48,
83,
20,
1330,
33734,
8205,
72,
198,
6738,
12454,
13,
9019,
62,
929,
67,
729,
1330,
471,
72,
62,
13383,
27703,
198,
6738,
6831,
1330,
16163,
628
] | 3.040816 | 49 |
class MouseEventArgs(EventArgs):
"""
Provides data for the System.Windows.Forms.Control.MouseUp,System.Windows.Forms.Control.MouseDown,and System.Windows.Forms.Control.MouseMove events.
MouseEventArgs(button: MouseButtons,clicks: int,x: int,y: int,delta: int)
"""
def Instance(self):
""" This function has been arbitrarily put into the stubs"""
return MouseEventArgs()
@staticmethod
def __new__(self,button,clicks,x,y,delta):
""" __new__(cls: type,button: MouseButtons,clicks: int,x: int,y: int,delta: int) """
pass
Button=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets which mouse button was pressed.
Get: Button(self: MouseEventArgs) -> MouseButtons
"""
Clicks=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets the number of times the mouse button was pressed and released.
Get: Clicks(self: MouseEventArgs) -> int
"""
Delta=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets a signed count of the number of detents the mouse wheel has rotated,multiplied by the WHEEL_DELTA constant. A detent is one notch of the mouse wheel.
Get: Delta(self: MouseEventArgs) -> int
"""
Location=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets the location of the mouse during the generating mouse event.
Get: Location(self: MouseEventArgs) -> Point
"""
X=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets the x-coordinate of the mouse during the generating mouse event.
Get: X(self: MouseEventArgs) -> int
"""
Y=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets the y-coordinate of the mouse during the generating mouse event.
Get: Y(self: MouseEventArgs) -> int
"""
| [
4871,
21839,
9237,
42035,
7,
9237,
42035,
2599,
201,
198,
37227,
201,
198,
47081,
1366,
329,
262,
4482,
13,
11209,
13,
8479,
82,
13,
15988,
13,
39643,
4933,
11,
11964,
13,
11209,
13,
8479,
82,
13,
15988,
13,
39643,
8048,
11,
392,
4482,
13,
11209,
13,
8479,
82,
13,
15988,
13,
39643,
21774,
2995,
13,
201,
201,
198,
220,
201,
201,
198,
21839,
9237,
42035,
7,
16539,
25,
21839,
1537,
27288,
11,
565,
3378,
25,
493,
11,
87,
25,
493,
11,
88,
25,
493,
11,
67,
12514,
25,
493,
8,
201,
198,
37227,
201,
198,
825,
2262,
590,
7,
944,
2599,
201,
198,
220,
37227,
770,
2163,
468,
587,
40647,
1234,
656,
262,
17071,
82,
37811,
201,
198,
220,
1441,
21839,
9237,
42035,
3419,
201,
198,
201,
198,
2488,
12708,
24396,
201,
198,
825,
11593,
3605,
834,
7,
944,
11,
16539,
11,
565,
3378,
11,
87,
11,
88,
11,
67,
12514,
2599,
201,
198,
220,
37227,
11593,
3605,
834,
7,
565,
82,
25,
2099,
11,
16539,
25,
21839,
1537,
27288,
11,
565,
3378,
25,
493,
11,
87,
25,
493,
11,
88,
25,
493,
11,
67,
12514,
25,
493,
8,
37227,
201,
198,
220,
1208,
201,
198,
20969,
28,
26745,
7,
50033,
2116,
25,
2134,
22784,
50033,
2116,
11,
85,
25,
6045,
11,
50033,
2116,
25,
6045,
8,
201,
198,
37227,
38,
1039,
543,
10211,
4936,
373,
12070,
13,
201,
201,
198,
201,
201,
198,
3855,
25,
20969,
7,
944,
25,
21839,
9237,
42035,
8,
4613,
21839,
1537,
27288,
201,
201,
198,
201,
201,
198,
37811,
201,
198,
201,
198,
327,
49191,
28,
26745,
7,
50033,
2116,
25,
2134,
22784,
50033,
2116,
11,
85,
25,
6045,
11,
50033,
2116,
25,
6045,
8,
201,
198,
37227,
38,
1039,
262,
1271,
286,
1661,
262,
10211,
4936,
373,
12070,
290,
2716,
13,
201,
201,
198,
201,
201,
198,
3855,
25,
327,
49191,
7,
944,
25,
21839,
9237,
42035,
8,
4613,
493,
201,
201,
198,
201,
201,
198,
37811,
201,
198,
201,
198,
16978,
28,
26745,
7,
50033,
2116,
25,
2134,
22784,
50033,
2116,
11,
85,
25,
6045,
11,
50033,
2116,
25,
6045,
8,
201,
198,
37227,
38,
1039,
257,
4488,
954,
286,
262,
1271,
286,
1062,
658,
262,
10211,
7825,
468,
38375,
11,
47945,
798,
416,
262,
7655,
36,
3698,
62,
35,
3698,
5603,
6937,
13,
317,
1062,
298,
318,
530,
29838,
286,
262,
10211,
7825,
13,
201,
201,
198,
201,
201,
198,
3855,
25,
16978,
7,
944,
25,
21839,
9237,
42035,
8,
4613,
493,
201,
201,
198,
201,
201,
198,
37811,
201,
198,
201,
198,
13397,
28,
26745,
7,
50033,
2116,
25,
2134,
22784,
50033,
2116,
11,
85,
25,
6045,
11,
50033,
2116,
25,
6045,
8,
201,
198,
37227,
38,
1039,
262,
4067,
286,
262,
10211,
1141,
262,
15453,
10211,
1785,
13,
201,
201,
198,
201,
201,
198,
3855,
25,
13397,
7,
944,
25,
21839,
9237,
42035,
8,
4613,
6252,
201,
201,
198,
201,
201,
198,
37811,
201,
198,
201,
198,
1395,
28,
26745,
7,
50033,
2116,
25,
2134,
22784,
50033,
2116,
11,
85,
25,
6045,
11,
50033,
2116,
25,
6045,
8,
201,
198,
37227,
38,
1039,
262,
2124,
12,
37652,
4559,
286,
262,
10211,
1141,
262,
15453,
10211,
1785,
13,
201,
201,
198,
201,
201,
198,
3855,
25,
1395,
7,
944,
25,
21839,
9237,
42035,
8,
4613,
493,
201,
201,
198,
201,
201,
198,
37811,
201,
198,
201,
198,
575,
28,
26745,
7,
50033,
2116,
25,
2134,
22784,
50033,
2116,
11,
85,
25,
6045,
11,
50033,
2116,
25,
6045,
8,
201,
198,
37227,
38,
1039,
262,
331,
12,
37652,
4559,
286,
262,
10211,
1141,
262,
15453,
10211,
1785,
13,
201,
201,
198,
201,
201,
198,
3855,
25,
575,
7,
944,
25,
21839,
9237,
42035,
8,
4613,
493,
201,
201,
198,
201,
201,
198,
37811,
201,
198,
201,
198,
201,
198
] | 2.957006 | 628 |
# MIT License
# Copyright (c) 2018 Hotox
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# Code author: Hotox
# Repo: https://github.com/michaeldegroot/cats-blender-plugin
# Edits by:
import bpy
import math
from . import common as Common
from . import armature_bones as Bones
from .register import register_wrap
from .translations import t
ignore_shapes = []
ignore_meshes = []
@register_wrap
@register_wrap
@register_wrap
@register_wrap
@register_wrap
@register_wrap
@register_wrap
@register_wrap
@register_wrap
| [
2,
17168,
13789,
198,
198,
2,
15069,
357,
66,
8,
2864,
6964,
1140,
198,
198,
2,
2448,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
16727,
257,
4866,
198,
2,
286,
428,
3788,
290,
3917,
10314,
3696,
357,
1169,
705,
25423,
33809,
284,
1730,
198,
2,
287,
262,
10442,
1231,
17504,
11,
1390,
1231,
17385,
262,
2489,
198,
2,
284,
779,
11,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
290,
14,
273,
3677,
198,
2,
9088,
286,
262,
10442,
11,
290,
284,
8749,
6506,
284,
4150,
262,
10442,
318,
198,
2,
30760,
284,
466,
523,
11,
2426,
284,
262,
1708,
3403,
25,
198,
198,
2,
383,
2029,
6634,
4003,
290,
428,
7170,
4003,
2236,
307,
3017,
287,
198,
2,
477,
9088,
393,
8904,
16690,
286,
262,
10442,
13,
198,
198,
2,
3336,
47466,
3180,
36592,
2389,
1961,
705,
1921,
3180,
3256,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
7788,
32761,
6375,
198,
2,
8959,
49094,
11,
47783,
2751,
21728,
5626,
40880,
5390,
3336,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
11,
198,
2,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
5357,
44521,
1268,
10913,
2751,
12529,
13,
3268,
8005,
49261,
50163,
3336,
198,
2,
37195,
20673,
6375,
27975,
38162,
9947,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
25401,
198,
2,
43031,
25382,
11,
7655,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
5923,
1797,
2751,
16034,
11,
198,
2,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
47466,
6375,
3336,
23210,
6375,
25401,
5550,
1847,
20754,
3268,
3336,
198,
2,
47466,
13,
198,
198,
2,
6127,
1772,
25,
6964,
1140,
198,
2,
1432,
78,
25,
3740,
1378,
12567,
13,
785,
14,
76,
488,
3609,
335,
1533,
15763,
14,
24619,
12,
2436,
2194,
12,
33803,
198,
2,
1717,
896,
416,
25,
198,
198,
11748,
275,
9078,
198,
11748,
10688,
198,
198,
6738,
764,
1330,
2219,
355,
8070,
198,
6738,
764,
1330,
3211,
1300,
62,
35095,
355,
31823,
198,
6738,
764,
30238,
1330,
7881,
62,
37150,
198,
6738,
764,
7645,
49905,
1330,
256,
628,
198,
46430,
62,
1477,
7916,
796,
17635,
198,
46430,
62,
6880,
956,
796,
17635,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
628,
198,
31,
30238,
62,
37150,
198
] | 3.580046 | 431 |
import random,json | [
11748,
4738,
11,
17752
] | 4.5 | 4 |
if __name__ == '__main__':
import requests
import json
url = ('http://newsapi.org/v2/top-headlines?'
'country=us&'
'apiKey=9b8a6a83887b4da4ace3d23b91e57e89')
response = requests.get(url)
text = response.text
my_json = json.loads(text)
for i in range(0,11):
speak(my_json['article'][i]['title']) | [
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
628,
198,
220,
220,
220,
220,
220,
220,
1330,
7007,
198,
220,
220,
220,
220,
220,
220,
1330,
33918,
628,
220,
220,
220,
220,
220,
220,
19016,
796,
19203,
4023,
1378,
10827,
15042,
13,
2398,
14,
85,
17,
14,
4852,
12,
2256,
6615,
8348,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19315,
28,
385,
5,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
15042,
9218,
28,
24,
65,
23,
64,
21,
64,
23,
2548,
5774,
65,
19,
6814,
19,
558,
18,
67,
1954,
65,
6420,
68,
3553,
68,
4531,
11537,
198,
220,
220,
220,
220,
220,
220,
2882,
796,
7007,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
2420,
796,
2882,
13,
5239,
198,
220,
220,
220,
220,
220,
220,
616,
62,
17752,
796,
33918,
13,
46030,
7,
5239,
8,
198,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
15,
11,
1157,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2740,
7,
1820,
62,
17752,
17816,
20205,
6,
7131,
72,
7131,
6,
7839,
6,
12962
] | 1.88835 | 206 |
from djongo import models
from django.contrib.auth.models import User
| [
6738,
42625,
25162,
1330,
4981,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
220,
220,
220,
220
] | 3.217391 | 23 |
# -*- coding:utf-8 -*-
from __future__ import with_statement
import os
import argparse
from fabric.api import *
from fabric.contrib.console import confirm
# add fabric function here
if __name__ == '__main__':
parser = argparse.ArgumentParser()
# add argument to parser
# parser.add_argument()
args = parser.parse_args()
# call fabric function base on arguments
if True:
print 'Wrong input format, try -h'
| [
2,
532,
9,
12,
19617,
25,
40477,
12,
23,
532,
9,
12,
198,
198,
6738,
11593,
37443,
834,
1330,
351,
62,
26090,
198,
198,
11748,
28686,
198,
11748,
1822,
29572,
198,
198,
6738,
9664,
13,
15042,
1330,
1635,
198,
6738,
9664,
13,
3642,
822,
13,
41947,
1330,
6216,
198,
198,
2,
751,
9664,
2163,
994,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
1303,
751,
4578,
284,
30751,
198,
220,
220,
220,
1303,
30751,
13,
2860,
62,
49140,
3419,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
220,
220,
220,
1303,
869,
9664,
2163,
2779,
319,
7159,
198,
220,
220,
220,
611,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
705,
39213,
506,
5128,
5794,
11,
1949,
532,
71,
6,
198
] | 2.946667 | 150 |
import logging
from datetime import datetime, timedelta
from typing import Any, List, Optional
from fastapi import APIRouter, Depends, HTTPException, Security, status
from fastapi.security import OAuth2PasswordRequestForm
from jose import JWTError, jwt
from passlib.context import CryptContext
from pydantic import BaseModel, ValidationError
from api.v1.deps import get_current_user, get_current_active_user, get_current_license_owner
from core.config import (ACCESS_TOKEN_EXPIRE_MINUTES, ALGORITHM, DOCTYPE_USER,
SECRET_KEY)
from core.security import (create_access_token, get_password_hash,
verify_password)
from crud.user import get_by_email, authenticate_user
from db.mongo import get_collection
from models.base import Msg
from models.token import Token, TokenData
from models.user import User, UserInDB
from utils import emailutils
# oauth2_scheme = OAuth2PasswordBearer(tokenUrl="/v1/token")
router = APIRouter()
@router.post("/access-token", response_model=Token)
@router.get("/users/me", response_model=User)
@router.post("/test")
# def recover_password(email: str, db: Session = Depends(deps.get_db)) -> Any:
@router.post("/password-recovery/{email}", response_model=Msg)
async def recover_password(email: str) -> Any:
"""
Password Recovery
"""
user = await get_by_email(email=email)
logging.info(user)
if not user:
raise HTTPException(
status_code=404,
detail="The user with this username does not exist in the system.",
)
password_reset_token = emailutils.generate_password_reset_token(email=email)
emailutils.send_reset_password_email(
email_to=user["email"], email=email, token=password_reset_token
)
return {"message": "Password recovery email sent"}
| [
11748,
18931,
198,
6738,
4818,
8079,
1330,
4818,
8079,
11,
28805,
12514,
198,
6738,
19720,
1330,
4377,
11,
7343,
11,
32233,
198,
198,
6738,
3049,
15042,
1330,
3486,
4663,
39605,
11,
2129,
2412,
11,
14626,
16922,
11,
4765,
11,
3722,
198,
6738,
3049,
15042,
13,
12961,
1330,
440,
30515,
17,
35215,
18453,
8479,
198,
6738,
474,
577,
1330,
449,
39386,
12331,
11,
474,
46569,
198,
6738,
1208,
8019,
13,
22866,
1330,
15126,
21947,
198,
6738,
279,
5173,
5109,
1330,
7308,
17633,
11,
3254,
24765,
12331,
198,
198,
6738,
40391,
13,
85,
16,
13,
10378,
82,
1330,
651,
62,
14421,
62,
7220,
11,
651,
62,
14421,
62,
5275,
62,
7220,
11,
651,
62,
14421,
62,
43085,
62,
18403,
198,
6738,
4755,
13,
11250,
1330,
357,
26861,
7597,
62,
10468,
43959,
62,
6369,
11901,
2200,
62,
23678,
3843,
1546,
11,
8355,
38,
1581,
10554,
44,
11,
8410,
4177,
56,
11401,
62,
29904,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10729,
26087,
62,
20373,
8,
198,
6738,
4755,
13,
12961,
1330,
357,
17953,
62,
15526,
62,
30001,
11,
651,
62,
28712,
62,
17831,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11767,
62,
28712,
8,
198,
6738,
1067,
463,
13,
7220,
1330,
651,
62,
1525,
62,
12888,
11,
8323,
5344,
62,
7220,
198,
6738,
20613,
13,
76,
25162,
1330,
651,
62,
43681,
198,
6738,
4981,
13,
8692,
1330,
6997,
70,
198,
6738,
4981,
13,
30001,
1330,
29130,
11,
29130,
6601,
198,
6738,
4981,
13,
7220,
1330,
11787,
11,
11787,
818,
11012,
198,
6738,
3384,
4487,
1330,
3053,
26791,
628,
198,
2,
267,
18439,
17,
62,
15952,
1326,
796,
440,
30515,
17,
35215,
3856,
11258,
7,
30001,
28165,
35922,
85,
16,
14,
30001,
4943,
628,
198,
472,
353,
796,
3486,
4663,
39605,
3419,
628,
198,
31,
472,
353,
13,
7353,
7203,
14,
15526,
12,
30001,
1600,
2882,
62,
19849,
28,
30642,
8,
628,
198,
31,
472,
353,
13,
1136,
7203,
14,
18417,
14,
1326,
1600,
2882,
62,
19849,
28,
12982,
8,
628,
198,
31,
472,
353,
13,
7353,
7203,
14,
9288,
4943,
198,
198,
2,
825,
8551,
62,
28712,
7,
12888,
25,
965,
11,
20613,
25,
23575,
796,
2129,
2412,
7,
10378,
82,
13,
1136,
62,
9945,
4008,
4613,
4377,
25,
198,
198,
31,
472,
353,
13,
7353,
7203,
14,
28712,
12,
260,
1073,
548,
14,
90,
12888,
92,
1600,
2882,
62,
19849,
28,
50108,
8,
198,
292,
13361,
825,
8551,
62,
28712,
7,
12888,
25,
965,
8,
4613,
4377,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
30275,
21007,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2836,
796,
25507,
651,
62,
1525,
62,
12888,
7,
12888,
28,
12888,
8,
198,
220,
220,
220,
18931,
13,
10951,
7,
7220,
8,
628,
220,
220,
220,
611,
407,
2836,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
14626,
16922,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3722,
62,
8189,
28,
26429,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3703,
2625,
464,
2836,
351,
428,
20579,
857,
407,
2152,
287,
262,
1080,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
9206,
62,
42503,
62,
30001,
796,
3053,
26791,
13,
8612,
378,
62,
28712,
62,
42503,
62,
30001,
7,
12888,
28,
12888,
8,
198,
220,
220,
220,
3053,
26791,
13,
21280,
62,
42503,
62,
28712,
62,
12888,
7,
198,
220,
220,
220,
220,
220,
220,
220,
3053,
62,
1462,
28,
7220,
14692,
12888,
33116,
3053,
28,
12888,
11,
11241,
28,
28712,
62,
42503,
62,
30001,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
19779,
20500,
1298,
366,
35215,
7628,
3053,
1908,
20662,
198
] | 2.801538 | 650 |
t=int(input())
while(t>0):
t=t-1
n=int(input())
a=input().split()
for i in range(n):
a[i]=int(a[i])
b=[0]
c=0
d=0
for i in range(-1,-n,-1):
if(a[i]==a[i-1]):
c=c+0
d=d+1
else:
c=c+1+d
d=0
b.append(c)
for i in range(-1,-n-1,-1) :
print(b[i],end=" ")
print()
| [
83,
28,
600,
7,
15414,
28955,
198,
4514,
7,
83,
29,
15,
2599,
198,
220,
220,
220,
256,
28,
83,
12,
16,
198,
220,
220,
220,
299,
28,
600,
7,
15414,
28955,
198,
220,
220,
220,
257,
28,
15414,
22446,
35312,
3419,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
77,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
257,
58,
72,
22241,
600,
7,
64,
58,
72,
12962,
198,
220,
220,
220,
275,
41888,
15,
60,
198,
220,
220,
220,
269,
28,
15,
198,
220,
220,
220,
288,
28,
15,
198,
220,
220,
220,
329,
1312,
287,
2837,
32590,
16,
12095,
77,
12095,
16,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7,
64,
58,
72,
60,
855,
64,
58,
72,
12,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
28,
66,
10,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
28,
67,
10,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
28,
66,
10,
16,
10,
67,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
288,
28,
15,
198,
220,
220,
220,
220,
220,
220,
220,
275,
13,
33295,
7,
66,
8,
198,
220,
220,
220,
329,
1312,
287,
2837,
32590,
16,
12095,
77,
12,
16,
12095,
16,
8,
220,
220,
220,
1058,
198,
220,
220,
220,
220,
220,
3601,
7,
65,
58,
72,
4357,
437,
2625,
366,
8,
198,
220,
220,
220,
3601,
3419,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198
] | 1.413793 | 290 |
from tictactoe.game.play import Game
| [
6738,
256,
713,
529,
2577,
13,
6057,
13,
1759,
1330,
3776,
198
] | 3.083333 | 12 |
"""
Currently just a stupid bridge between twisted.logger and user applications
"""
# from logging import getLogger as stdlib_getLogger, Logger
from twisted import logger
def getLogger(namespace: str = None) -> logger.Logger:
"""
Just an adapted to mimic python's logging getLogger to twisted's Logger()
:param namespace:
:return:
"""
return logger.Logger(namespace) if namespace else logger.Logger()
| [
37811,
198,
220,
220,
220,
16888,
655,
257,
8531,
7696,
1022,
19074,
13,
6404,
1362,
290,
2836,
5479,
198,
198,
37811,
198,
2,
422,
18931,
1330,
651,
11187,
1362,
355,
14367,
8019,
62,
1136,
11187,
1362,
11,
5972,
1362,
198,
6738,
19074,
1330,
49706,
628,
198,
4299,
651,
11187,
1362,
7,
14933,
10223,
25,
965,
796,
6045,
8,
4613,
49706,
13,
11187,
1362,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2329,
281,
16573,
284,
26332,
21015,
338,
18931,
651,
11187,
1362,
284,
19074,
338,
5972,
1362,
3419,
198,
220,
220,
220,
1058,
17143,
25745,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
49706,
13,
11187,
1362,
7,
14933,
10223,
8,
611,
25745,
2073,
49706,
13,
11187,
1362,
3419,
198
] | 3.205882 | 136 |
"""This module contains monitor genrules."""
load("//lib/bazel:py_rules.bzl", "py_binary")
| [
37811,
1212,
8265,
4909,
5671,
2429,
38785,
526,
15931,
198,
198,
2220,
7203,
1003,
8019,
14,
65,
41319,
25,
9078,
62,
38785,
13,
65,
48274,
1600,
366,
9078,
62,
39491,
4943,
198
] | 2.875 | 32 |
import models
import re
from . import base
from . import tasks_fetch_currency_exchange
from abc import abstractproperty
from typing import TypeVar, List, Optional | [
11748,
4981,
198,
11748,
302,
198,
198,
6738,
764,
1330,
2779,
198,
6738,
764,
1330,
8861,
62,
69,
7569,
62,
34415,
62,
1069,
3803,
198,
6738,
450,
66,
1330,
12531,
26745,
198,
6738,
19720,
1330,
5994,
19852,
11,
7343,
11,
32233
] | 3.97561 | 41 |
#!/usr/bin/env python
from PyQt4 import QtGui
from parse_qca import parse_qca_file
from auxil import qca_to_coef, hash_problem
import sys
from pprint import pprint
from random import shuffle
import numpy as np
#
#class QCACell(QtGui.QWidget):
# ''' '''
#
# def __init__(self, parent=None):
# super(QCACell, self).__init__(parent)
#
#class Canvas(QtGui.QWidget):
# ''' '''
#
# def __init__(self, parent=None):
# super(Canvas, self).__init__(parent)
#
#
# def paintEvent(self, e):
#
#class MainWindow(QtGui.QMainWindow):
# ''' '''
#
# def __init__(self):
# ''' '''
# super(MainWindow, self).__init__()
# self.initUI()
#
# def initUI(self):
#
# self.scrollarea = QtGui.QScrollArea()
# self.setCentralWidget(self.scrollarea)
#
# self.canvas = Canvas(self)
def mix_seriation(h, J):
'''Apply random invariants to h and J'''
# shuffle
inds = range(len(h))
shuffle(inds)
K = np.random.rand()
hs = 1-2*(np.random.rand()<.5)
h_ = h[inds]*K*hs
J_ = J[inds, :][:, inds]*K
return h_, J_, K, hs, inds
def main(fname):
''' '''
try:
cells, spacing, zones, J, fb = parse_qca_file(fname, one_zone=True)
except:
print('Failed to load qca file')
return
h, J = qca_to_coef(cells, spacing, J, adj='full')
h /= np.max(np.abs(J))
J /= np.max(np.abs(J))
for _ in range(100):
h_, J_, K, hp, inds = mix_seriation(h, J)
hval, K_, hp_, inds_ = hash_problem(h_, J_)
if False:
print('K: {0:.4f}\t hp: {1}\ninds: {2}'.format(K, hp, inds))
print('K: {0:.4f}\t hp: {1}\ninds: {2}'.format(K_, hp_, inds_))
print('hash val: {0}'.format(hval))
# app = QtGui.QApplication(sys.argv)
#
# w = MainWindow()
# w.show()
#
# sys.exit(app.exec_())
if __name__ == '__main__':
try:
fname = sys.argv[1]
except:
print('No QCAD file given...')
sys.exit()
main(fname) | [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
201,
198,
201,
198,
6738,
9485,
48,
83,
19,
1330,
33734,
8205,
72,
201,
198,
6738,
21136,
62,
80,
6888,
1330,
21136,
62,
80,
6888,
62,
7753,
201,
198,
6738,
27506,
346,
1330,
10662,
6888,
62,
1462,
62,
1073,
891,
11,
12234,
62,
45573,
201,
198,
201,
198,
11748,
25064,
201,
198,
6738,
279,
4798,
1330,
279,
4798,
201,
198,
6738,
4738,
1330,
36273,
201,
198,
11748,
299,
32152,
355,
45941,
201,
198,
201,
198,
2,
201,
198,
2,
4871,
36070,
2246,
695,
7,
48,
83,
8205,
72,
13,
48,
38300,
2599,
201,
198,
2,
220,
220,
220,
705,
7061,
705,
7061,
201,
198,
2,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2560,
28,
14202,
2599,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
48,
34,
2246,
695,
11,
2116,
737,
834,
15003,
834,
7,
8000,
8,
201,
198,
2,
201,
198,
2,
4871,
1680,
11017,
7,
48,
83,
8205,
72,
13,
48,
38300,
2599,
201,
198,
2,
220,
220,
220,
705,
7061,
705,
7061,
201,
198,
2,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
2560,
28,
14202,
2599,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
6090,
11017,
11,
2116,
737,
834,
15003,
834,
7,
8000,
8,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
825,
7521,
9237,
7,
944,
11,
304,
2599,
201,
198,
2,
201,
198,
2,
4871,
8774,
27703,
7,
48,
83,
8205,
72,
13,
48,
13383,
27703,
2599,
201,
198,
2,
220,
220,
220,
705,
7061,
705,
7061,
201,
198,
2,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
705,
7061,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
13383,
27703,
11,
2116,
737,
834,
15003,
834,
3419,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
15003,
10080,
3419,
201,
198,
2,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
825,
2315,
10080,
7,
944,
2599,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
48728,
20337,
796,
33734,
8205,
72,
13,
48,
29261,
30547,
3419,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2617,
30645,
38300,
7,
944,
13,
48728,
20337,
8,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
5171,
11017,
796,
1680,
11017,
7,
944,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
4299,
5022,
62,
2655,
3920,
7,
71,
11,
449,
2599,
201,
198,
220,
220,
220,
705,
7061,
44836,
4738,
25275,
1187,
284,
289,
290,
449,
7061,
6,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1303,
36273,
201,
198,
220,
220,
220,
773,
82,
796,
2837,
7,
11925,
7,
71,
4008,
201,
198,
220,
220,
220,
36273,
7,
521,
82,
8,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
509,
796,
45941,
13,
25120,
13,
25192,
3419,
201,
198,
220,
220,
220,
289,
82,
796,
352,
12,
17,
9,
7,
37659,
13,
25120,
13,
25192,
3419,
27,
13,
20,
8,
201,
198,
220,
220,
220,
289,
62,
796,
289,
58,
521,
82,
60,
9,
42,
9,
11994,
201,
198,
220,
220,
220,
449,
62,
796,
449,
58,
521,
82,
11,
1058,
7131,
45299,
773,
82,
60,
9,
42,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1441,
289,
62,
11,
449,
62,
11,
509,
11,
289,
82,
11,
773,
82,
201,
198,
220,
220,
220,
220,
201,
198,
4299,
1388,
7,
69,
3672,
2599,
201,
198,
220,
220,
220,
705,
7061,
705,
7061,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1949,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
4778,
11,
31050,
11,
14123,
11,
449,
11,
277,
65,
796,
21136,
62,
80,
6888,
62,
7753,
7,
69,
3672,
11,
530,
62,
11340,
28,
17821,
8,
201,
198,
220,
220,
220,
2845,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
37,
6255,
284,
3440,
10662,
6888,
2393,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
289,
11,
449,
796,
10662,
6888,
62,
1462,
62,
1073,
891,
7,
46342,
11,
31050,
11,
449,
11,
9224,
11639,
12853,
11537,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
289,
1220,
28,
45941,
13,
9806,
7,
37659,
13,
8937,
7,
41,
4008,
201,
198,
220,
220,
220,
449,
1220,
28,
45941,
13,
9806,
7,
37659,
13,
8937,
7,
41,
4008,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
329,
4808,
287,
2837,
7,
3064,
2599,
201,
198,
220,
220,
220,
220,
220,
220,
220,
289,
62,
11,
449,
62,
11,
509,
11,
27673,
11,
773,
82,
796,
5022,
62,
2655,
3920,
7,
71,
11,
449,
8,
201,
198,
220,
220,
220,
220,
220,
220,
220,
289,
2100,
11,
509,
62,
11,
27673,
62,
11,
773,
82,
62,
796,
12234,
62,
45573,
7,
71,
62,
11,
449,
62,
8,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
611,
10352,
25,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
42,
25,
1391,
15,
25,
13,
19,
69,
32239,
83,
27673,
25,
1391,
16,
32239,
77,
521,
82,
25,
1391,
17,
92,
4458,
18982,
7,
42,
11,
27673,
11,
773,
82,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
42,
25,
1391,
15,
25,
13,
19,
69,
32239,
83,
27673,
25,
1391,
16,
32239,
77,
521,
82,
25,
1391,
17,
92,
4458,
18982,
7,
42,
62,
11,
27673,
62,
11,
773,
82,
62,
4008,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
17831,
1188,
25,
1391,
15,
92,
4458,
18982,
7,
71,
2100,
4008,
201,
198,
201,
198,
2,
220,
220,
220,
598,
796,
33734,
8205,
72,
13,
48,
23416,
7,
17597,
13,
853,
85,
8,
201,
198,
2,
201,
198,
2,
220,
220,
220,
266,
796,
8774,
27703,
3419,
201,
198,
2,
220,
220,
220,
266,
13,
12860,
3419,
201,
198,
2,
201,
198,
2,
220,
220,
220,
25064,
13,
37023,
7,
1324,
13,
18558,
62,
28955,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
201,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1949,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
277,
3672,
796,
25064,
13,
853,
85,
58,
16,
60,
201,
198,
220,
220,
220,
2845,
25,
201,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
2949,
36070,
2885,
2393,
1813,
986,
11537,
201,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
3419,
201,
198,
220,
220,
220,
220,
201,
198,
220,
220,
220,
1388,
7,
69,
3672,
8
] | 1.773555 | 1,263 |
import numpy as np
from matplotlib import pyplot as plt
from sklearn.gaussian_process import GaussianProcessRegressor
from sklearn.gaussian_process.kernels import RBF, ConstantKernel as C
np.random.seed(1)
# First the noiseless case
X = np.array([3.])
# Observations
y = np.array([0.])
# Mesh the input space for evaluations of the real function, the prediction and
# its MSE
x = np.linspace(1, 5, 1000)
# Instantiate a Gaussian Process model
kernel = RBF(10, (1e-5, 1e2))
gp = GaussianProcessRegressor(kernel=kernel, n_restarts_optimizer=9)
# Fit to data using Maximum Likelihood Estimation of the parameters
gp.fit(X[:, np.newaxis], y)
# Make the prediction on the meshed x-axis (ask for MSE as well)
y_pred, sigma = gp.predict(x[:, np.newaxis], return_std=True)
# Plot the function, the prediction and the 95% confidence interval based on
# the MSE
plt.figure(1)
plt.plot(X, y, 'r.', markersize=10, label='Observations')
plt.plot(x, y_pred, 'b-', label='Prediction')
plt.fill_between(x, y_pred - sigma, y_pred + sigma,
alpha=0.2, color='k')
plt.xlabel('$x$')
plt.ylabel('$f(x)$')
plt.legend(loc='upper left')
plt.savefig('demo/skx.png')
# First the noiseless case
X = np.array([2., 4., 5.])
# Observations
y = np.array([0., 0., 0.])
kernel = RBF(1, (1e-5, 1e2))
gp = GaussianProcessRegressor(kernel=kernel, n_restarts_optimizer=9)
gp.fit(X[:, np.newaxis], y)
# Make the prediction on the meshed x-axis (ask for MSE as well)
y_pred, sigma = gp.predict(x[:, np.newaxis], return_std=True)
# Plot the function, the prediction and the 95% confidence interval based on
# the MSE
plt.figure(2)
plt.plot(X, y, 'r.', markersize=10, label='Observations')
plt.plot(x, y_pred, 'b-', label='Prediction')
plt.fill_between(x, y_pred - sigma, y_pred + sigma,
alpha=0.2, color='k')
plt.xlabel('$x$')
plt.ylabel('$f(x)$')
plt.legend(loc='upper left')
plt.savefig('demo/sGkUx.png') | [
11748,
299,
32152,
355,
45941,
198,
6738,
2603,
29487,
8019,
1330,
12972,
29487,
355,
458,
83,
198,
198,
6738,
1341,
35720,
13,
4908,
31562,
62,
14681,
1330,
12822,
31562,
18709,
8081,
44292,
198,
6738,
1341,
35720,
13,
4908,
31562,
62,
14681,
13,
74,
44930,
1330,
17986,
37,
11,
20217,
42,
7948,
355,
327,
198,
198,
37659,
13,
25120,
13,
28826,
7,
16,
8,
628,
198,
2,
220,
3274,
262,
645,
271,
5321,
1339,
198,
55,
796,
45941,
13,
18747,
26933,
18,
8183,
8,
198,
198,
2,
19243,
602,
198,
88,
796,
45941,
13,
18747,
26933,
15,
8183,
8,
198,
198,
2,
47529,
262,
5128,
2272,
329,
34109,
286,
262,
1103,
2163,
11,
262,
17724,
290,
198,
2,
663,
337,
5188,
198,
87,
796,
45941,
13,
21602,
10223,
7,
16,
11,
642,
11,
8576,
8,
198,
198,
2,
24470,
9386,
257,
12822,
31562,
10854,
2746,
198,
33885,
796,
17986,
37,
7,
940,
11,
357,
16,
68,
12,
20,
11,
352,
68,
17,
4008,
198,
31197,
796,
12822,
31562,
18709,
8081,
44292,
7,
33885,
28,
33885,
11,
299,
62,
2118,
5889,
62,
40085,
7509,
28,
24,
8,
198,
198,
2,
25048,
284,
1366,
1262,
22246,
4525,
11935,
10062,
18991,
286,
262,
10007,
198,
31197,
13,
11147,
7,
55,
58,
45299,
45941,
13,
3605,
22704,
4357,
331,
8,
198,
198,
2,
6889,
262,
17724,
319,
262,
18842,
704,
2124,
12,
22704,
357,
2093,
329,
337,
5188,
355,
880,
8,
198,
88,
62,
28764,
11,
264,
13495,
796,
27809,
13,
79,
17407,
7,
87,
58,
45299,
45941,
13,
3605,
22704,
4357,
1441,
62,
19282,
28,
17821,
8,
198,
198,
2,
28114,
262,
2163,
11,
262,
17724,
290,
262,
6957,
4,
6628,
16654,
1912,
319,
198,
2,
262,
337,
5188,
198,
489,
83,
13,
26875,
7,
16,
8,
198,
489,
83,
13,
29487,
7,
55,
11,
331,
11,
705,
81,
2637,
11,
19736,
1096,
28,
940,
11,
6167,
11639,
31310,
712,
602,
11537,
198,
489,
83,
13,
29487,
7,
87,
11,
331,
62,
28764,
11,
705,
65,
12,
3256,
6167,
11639,
39156,
2867,
11537,
198,
489,
83,
13,
20797,
62,
23395,
7,
87,
11,
331,
62,
28764,
532,
264,
13495,
11,
331,
62,
28764,
1343,
264,
13495,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17130,
28,
15,
13,
17,
11,
3124,
11639,
74,
11537,
198,
489,
83,
13,
87,
18242,
10786,
3,
87,
3,
11537,
198,
489,
83,
13,
2645,
9608,
10786,
3,
69,
7,
87,
8,
3,
11537,
198,
489,
83,
13,
1455,
437,
7,
17946,
11639,
45828,
1364,
11537,
198,
489,
83,
13,
21928,
5647,
10786,
9536,
78,
14,
8135,
87,
13,
11134,
11537,
198,
198,
2,
220,
3274,
262,
645,
271,
5321,
1339,
198,
55,
796,
45941,
13,
18747,
26933,
17,
1539,
604,
1539,
642,
8183,
8,
198,
198,
2,
19243,
602,
198,
88,
796,
45941,
13,
18747,
26933,
15,
1539,
657,
1539,
657,
8183,
8,
198,
198,
33885,
796,
17986,
37,
7,
16,
11,
357,
16,
68,
12,
20,
11,
352,
68,
17,
4008,
198,
31197,
796,
12822,
31562,
18709,
8081,
44292,
7,
33885,
28,
33885,
11,
299,
62,
2118,
5889,
62,
40085,
7509,
28,
24,
8,
198,
198,
31197,
13,
11147,
7,
55,
58,
45299,
45941,
13,
3605,
22704,
4357,
331,
8,
198,
198,
2,
6889,
262,
17724,
319,
262,
18842,
704,
2124,
12,
22704,
357,
2093,
329,
337,
5188,
355,
880,
8,
198,
88,
62,
28764,
11,
264,
13495,
796,
27809,
13,
79,
17407,
7,
87,
58,
45299,
45941,
13,
3605,
22704,
4357,
1441,
62,
19282,
28,
17821,
8,
198,
198,
2,
28114,
262,
2163,
11,
262,
17724,
290,
262,
6957,
4,
6628,
16654,
1912,
319,
198,
2,
262,
337,
5188,
198,
489,
83,
13,
26875,
7,
17,
8,
198,
489,
83,
13,
29487,
7,
55,
11,
331,
11,
705,
81,
2637,
11,
19736,
1096,
28,
940,
11,
6167,
11639,
31310,
712,
602,
11537,
198,
489,
83,
13,
29487,
7,
87,
11,
331,
62,
28764,
11,
705,
65,
12,
3256,
6167,
11639,
39156,
2867,
11537,
198,
489,
83,
13,
20797,
62,
23395,
7,
87,
11,
331,
62,
28764,
532,
264,
13495,
11,
331,
62,
28764,
1343,
264,
13495,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17130,
28,
15,
13,
17,
11,
3124,
11639,
74,
11537,
198,
489,
83,
13,
87,
18242,
10786,
3,
87,
3,
11537,
198,
489,
83,
13,
2645,
9608,
10786,
3,
69,
7,
87,
8,
3,
11537,
198,
489,
83,
13,
1455,
437,
7,
17946,
11639,
45828,
1364,
11537,
198,
489,
83,
13,
21928,
5647,
10786,
9536,
78,
14,
82,
38,
74,
52,
87,
13,
11134,
11537
] | 2.464789 | 781 |
from django.shortcuts import render
def home(request):
"""
Home page for Tethys Datasets
"""
context = {}
return render(request, 'tethys_datasets/home.html', context)
| [
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
628,
198,
4299,
1363,
7,
25927,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5995,
2443,
329,
309,
2788,
893,
16092,
292,
1039,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4732,
796,
23884,
628,
220,
220,
220,
1441,
8543,
7,
25927,
11,
705,
83,
2788,
893,
62,
19608,
292,
1039,
14,
11195,
13,
6494,
3256,
4732,
8,
198
] | 2.714286 | 70 |
"""
Unit and regression test for the convert module of the molsysmt package.
"""
# Import package, test suite, and other packages as needed
import molsysmt as msm
import numpy as np
import os
# Whole systems (selection='all' and structure_indices='all')
# Selection
## Multiple outputs
| [
37811,
198,
26453,
290,
20683,
1332,
329,
262,
10385,
8265,
286,
262,
285,
10220,
893,
16762,
5301,
13,
198,
37811,
198,
198,
2,
17267,
5301,
11,
1332,
18389,
11,
290,
584,
10392,
355,
2622,
198,
11748,
285,
10220,
893,
16762,
355,
285,
5796,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28686,
198,
198,
2,
23431,
3341,
357,
49283,
11639,
439,
6,
290,
4645,
62,
521,
1063,
11639,
439,
11537,
628,
198,
2,
29538,
628,
198,
2235,
20401,
23862,
628,
198
] | 3.62963 | 81 |
import numpy as np
from .. import get_spaced_index_list
from ..features import BinaryForegroundMaskComputer
class ForegroundSizeScorer(object):
"""Scores the size of the foreground as a percentage of the average mask size over the entire frame area."""
def score_foreground_size(self, fg_masks):
"""Scores the size of the foreground as a percentage of the average mask size over the entire frame area.
:param fg_masks: The foreground masks associated with each frame (list of HxW bool NumPy arrays with False for
excluded pixels)
:return: float
"""
fg_percentages = [fg_mask.sum() / fg_mask.size for fg_mask in fg_masks]
return np.mean(fg_percentages)
class AutomaticForegroundSizeScorer(object):
"""Detects all foreground objects and computes their total mask size averaged over the entire frame area."""
def __init__(self, frame_spacing=None, num_sampled_frames=None):
"""Constructor
:param frame_spacing: The spacing between two consecutive sampled frames (int)
:param num_sampled_frames: The total number of frames to sample throughout the video (int)
"""
self.frame_spacing = frame_spacing
self.num_sampled_frames = num_sampled_frames
self.foreground_size_scorer = ForegroundSizeScorer()
self.binary_foreground_mask_computer = BinaryForegroundMaskComputer()
def score_foreground_size(self, frames, **kwargs):
"""Detects all foreground objects and computes their total mask size averaged over the entire frame area.
:param frames: The video frames over which the compute FG masks (list of HxWxC uint8 NumPy arrays)
:param kwargs: Additional keyword arguments to use for debugging (dict)
:return: float
"""
frame_indexes = get_spaced_index_list(len(frames), total=self.num_sampled_frames, spacing=self.frame_spacing)
masks = [self.binary_foreground_mask_computer.compute_binary_foreground_mask(frames[i], **kwargs)
for i in frame_indexes]
return self.foreground_size_scorer.score_foreground_size(masks)
| [
11748,
299,
32152,
355,
45941,
198,
198,
6738,
11485,
1330,
651,
62,
2777,
2286,
62,
9630,
62,
4868,
198,
6738,
11485,
40890,
1330,
45755,
16351,
2833,
45195,
34556,
628,
198,
4871,
4558,
2833,
10699,
3351,
11934,
7,
15252,
2599,
198,
220,
220,
220,
37227,
3351,
2850,
262,
2546,
286,
262,
36282,
355,
257,
5873,
286,
262,
2811,
9335,
2546,
625,
262,
2104,
5739,
1989,
526,
15931,
628,
220,
220,
220,
825,
4776,
62,
754,
2833,
62,
7857,
7,
944,
11,
277,
70,
62,
5356,
591,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3351,
2850,
262,
2546,
286,
262,
36282,
355,
257,
5873,
286,
262,
2811,
9335,
2546,
625,
262,
2104,
5739,
1989,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
277,
70,
62,
5356,
591,
25,
383,
36282,
20680,
3917,
351,
1123,
5739,
357,
4868,
286,
367,
87,
54,
20512,
31835,
20519,
26515,
351,
10352,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15009,
17848,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
12178,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
277,
70,
62,
25067,
1095,
796,
685,
40616,
62,
27932,
13,
16345,
3419,
1220,
277,
70,
62,
27932,
13,
7857,
329,
277,
70,
62,
27932,
287,
277,
70,
62,
5356,
591,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
45941,
13,
32604,
7,
40616,
62,
25067,
1095,
8,
628,
198,
4871,
30199,
16351,
2833,
10699,
3351,
11934,
7,
15252,
2599,
198,
220,
220,
220,
37227,
47504,
82,
477,
36282,
5563,
290,
552,
1769,
511,
2472,
9335,
2546,
16449,
625,
262,
2104,
5739,
1989,
526,
15931,
628,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
11,
5739,
62,
2777,
4092,
28,
14202,
11,
997,
62,
37687,
10137,
62,
37805,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
42316,
273,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
5739,
62,
2777,
4092,
25,
383,
31050,
1022,
734,
12785,
35846,
13431,
357,
600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
997,
62,
37687,
10137,
62,
37805,
25,
383,
2472,
1271,
286,
13431,
284,
6291,
3690,
262,
2008,
357,
600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14535,
62,
2777,
4092,
796,
5739,
62,
2777,
4092,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
22510,
62,
37687,
10137,
62,
37805,
796,
997,
62,
37687,
10137,
62,
37805,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
754,
2833,
62,
7857,
62,
1416,
11934,
796,
4558,
2833,
10699,
3351,
11934,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
39491,
62,
754,
2833,
62,
27932,
62,
33215,
796,
45755,
16351,
2833,
45195,
34556,
3419,
628,
198,
220,
220,
220,
825,
4776,
62,
754,
2833,
62,
7857,
7,
944,
11,
13431,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
47504,
82,
477,
36282,
5563,
290,
552,
1769,
511,
2472,
9335,
2546,
16449,
625,
262,
2104,
5739,
1989,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
13431,
25,
383,
2008,
13431,
625,
543,
262,
24061,
25503,
20680,
357,
4868,
286,
367,
87,
54,
87,
34,
20398,
23,
31835,
20519,
26515,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
479,
86,
22046,
25,
15891,
21179,
7159,
284,
779,
329,
28769,
357,
11600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
12178,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5739,
62,
9630,
274,
796,
651,
62,
2777,
2286,
62,
9630,
62,
4868,
7,
11925,
7,
37805,
828,
2472,
28,
944,
13,
22510,
62,
37687,
10137,
62,
37805,
11,
31050,
28,
944,
13,
14535,
62,
2777,
4092,
8,
198,
220,
220,
220,
220,
220,
220,
220,
20680,
796,
685,
944,
13,
39491,
62,
754,
2833,
62,
27932,
62,
33215,
13,
5589,
1133,
62,
39491,
62,
754,
2833,
62,
27932,
7,
37805,
58,
72,
4357,
12429,
46265,
22046,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
5739,
62,
9630,
274,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
754,
2833,
62,
7857,
62,
1416,
11934,
13,
26675,
62,
754,
2833,
62,
7857,
7,
5356,
591,
8,
198
] | 2.843215 | 759 |
#!/usr/bin/env python3
# bkmk.py
# Author: Lorenzo Van Muñoz
# Last updated Dec 31, 2020
'''
A script to generate pdf bookmarks in cpdf,gs,pdftk syntaxes
This script uses regular expressions to identify
relevant bookmark information and to typeset the syntaxes.
It also supports conversion between the different supported formats.
Anyone is welcome to use it or improve upon it. Hopefully it makes
the bookmark creation process easier for anyone needing to turn
tables of contents into bookmarks, especially for large documents
such as textbooks.
Though it works as is, if it were to change in any way I would maybe
create a syntax class with reading/writing methods as an alternative
to the current dictionary bookmark system.
In addition, the only other 'difficult' part about this script is to
properly handle the detection of bookmark index/level and changing it
between the different formats. For example, cpdf and pdftk directly
reference the current level of the entry, however gs/pdfmarks uses a
hierarchical structure where each entry may have 'children'/subentries.
Converting between these to has been implemented one way with while loops
and the other way using recursion. Hopefully these are the only generic
formats and any new ones are just minor variations of these.
Have fun and work fast!
'''
import os
import re
import argparse
import pdftotext
from pdf_tchotchke.utils import filenames
# Global variable define available re flags
RE_FLAGS = {
"A" : re.ASCII,
"I" : re.IGNORECASE,
"L" : re.LOCALE,
"M" : re.MULTILINE,
"S" : re.DOTALL,
"X" : re.VERBOSE,
"U" : re.UNICODE
}
# Global variable syntax data structure for supported syntaxes
BKMK_SYNTAX = {
# Each syntax format has two properties: a print statement to
# print data to that format and a sense statement which is a
# regular expression to detect whether a line has that format
# The data to print corresponds to (x,y,z) = (index,title,page)
"cpdf" : {
"print" : (lambda x,y,z: f"{z} \"{x}\" {y}\n"),
"sense" : r"(?P<index>\d+) \"(?P<title>.+)\" (?P<page>\d+).*"
# View information is given by "[<page number></view command>]"
},
"gs" : {
# the minus sign before the count leaves the menu unexpanded
"print" : (lambda x,y,z: f"[ /Count -{z} /Page {y} /Title ({x}) /OUT pdfmark\n"),
"sense" : r"\[ /Count [-]*(?P<index>\d+) /Page (?P<page>\d+) /Title \((?P<title>.+)\) /OUT pdfmark.*"
# In addition, the /View [</view command>] option and its variations can be added
},
"pdftk" : {
"print" : (lambda x,y,z: f"BookmarkBegin\nBookmarkTitle: {x}\nBookmarkLevel: {z}\nBookmarkPageNumber: {y}\n"),
"sense" : r"BookmarkBegin.*\nBookmarkTitle: (?P<title>.+).*\nBookmarkLevel: (?P<index>\d+).*\nBookmarkPageNumber: (?P<page>\d+).*"
}
}
def whichSyntax(data):
'''
Tests whether the given entry is a bookmark
Arguments:
List : hopefully lines from a bookmark file
Returns:
String or Error : "cpdf" or "gs" syntax, None if not any syntax
'''
for e in list(BKMK_SYNTAX):
if bool(re.search(BKMK_SYNTAX[e]["sense"],data)):
return e
raise UserWarning("The file is does not match any supported syntax")
def convertSyntax(data,output_syntax=None,offset=0):
'''
Converts one bookmark file syntax into another file.
Should detect the input syntax automatically and write
to the specified syntax.
This isn't a necessary feature since if the bookmark file
is already there, then just use the corresponding program
to add the bookmarks.
But maybe just do this for completeness.
This can also renumber the pages by the given offset
'''
input_syntax = whichSyntax(data)
if output_syntax == None:
output_syntax = input_syntax
titles, pages, indices = extractBkmkFile(
data,BKMK_SYNTAX[input_syntax]["sense"])
return writeBkmkFile(output_syntax,
titles,
[int(e) + offset for e in pages],
indices,
index_input_syntax=input_syntax)
def createTocFromText(data, output_syntax=None,
pattern="(?P<title>.+)\n(?P<page>\d+)",
re_flags=re.U, edit=''):
'''
This function takes lines from a bookmarks in a raw text file and outputs them to a specified bookmark syntax.
It also needs to ask interactively for the page offset to calculate the page numbering right.
Arguments:
String : has the content of f.read() from an input file generated from the text of a pdf TOC
String : either "cpdf" or "gs", representing the output syntax
String : a regular expression string containing (?P<page>\d+) and (?P<title>.+) groups to parse the page numbers and entry text from the input file
re.FLAG : a regular expression flag defaulting to re.UNICODE
String : a regexp to apply to all titles. e.g. to remove all leading numbers: r'^[\d\.]+\.'
Return:
String : the finalized bookmark entries
'''
if output_syntax == None:
raise UserWarning('No output syntax has been specified. Aborting!')
# check that given re has only the required fields
re_pattern = re.compile(rf"{pattern}",re_flags)
assert set(['title','page']) == set(re_pattern.groupindex.keys())
# initial data for the first entry with page number > 0
matches = re_pattern.finditer(data)
for m in matches:
first_entry = m.group("title")
first_page = m.group("page")
if int(first_page) > 0:
break
else:
continue
try:
# Ask for the page offset
offset_str = input(f"Enter the page in the pdf for the following TOC entry:\nText: {first_entry}\nPage: {first_page}\n> ")
except NameError:
raise UserWarning('No match to the pattern was found in the bookmark data')
offset = int(offset_str) - int(first_page)
# OPTIONAL delete regexp from the titles
edits = {
False : (lambda x : x),
True : (lambda x : re.sub(edit,'',x))
}
titles,pages = extractBkmkFile(data,re_pattern)
return writeBkmkFile(output_syntax,
[edits[bool(edit)](e) for e in titles],
[int(e) + offset for e in pages],
getCPDFIndexFromTitle([e for e in titles]),
index_input_syntax="cpdf")
def getCPDFIndexFromTitle(title_list):
'''
Determine the cpdf index of an entry (this is simplistic and the logic should be refined depending on the content)
Arguments:
String : ideally the title of a table of contents entry
Returns:
Integer : 0 if the line starts without an integer or an integer without trailing decimal
1 if the line starts with a decimal like X.X where X are integers
2 if the line starts with a double decimal like X.X.X
3 the pattern goes on
'''
# Note that this only outputs the cpdf convention! This is fixed by repairIndex()
# keywords which should be at top index level
keywords = ['Chapter', 'chapter', 'Capítulo', 'capítulo',
'Appendix', 'appendix', 'Apéndice', 'apéndice']
# start indexing
indices = [1 for e in title_list]
for i,title in enumerate(title_list):
# This enforces no empty lines as well as getting index
while bool(re.match("^\w+" + indices[i] * "\.[0-9]+",title)):
indices[i] += 1
# subtract 1 because of construction of while loop
indices[i] -= 1
# For things like exercises, which recur as subsections in the TOC
# but would still be 0 in the previous system, promote them to index 1
# if the first word in that title repeats at least 5 times in the TOC
# where 5 is arbitrary but also a small number of chapters for a
# textbook
if indices[i] == 0:
m = re.match(r'\D+',title)
if bool(m):
if m.group(0) not in keywords:
if (len([e for e in title_list
if m.group(0) in e])
> 4):
indices[i] += 1
return indices
def extractBkmkFile(data,pattern):
'''
This matches a regexp to a bkmk file, returning all the instances of each match group in its own list
Returns a tuple with the lists
'''
# Must use this order! index must be last other wise the case from createTocFromFile() which has no index will fail
preferred_order = {
"title" : 1,
"page" : 2,
"index" : 3
}
pattern = re.compile(pattern)
groups = dict(pattern.groupindex)
# this is the case where we are creating a new bkmk which doesn't yet have indices
if len(groups.keys()) == 2:
del preferred_order['index']
# in the preferred order, list all matches in each group as its own list (possibly a permutation bsed on the ordering of the matching group)
return [ [ e[groups[i]-1].strip() for e in re.findall(pattern,data) ] for i in list(preferred_order.keys()) ]
def writeBkmkFile(output_syntax,titles, pages, indices,index_input_syntax=""):
'''
I was doing this over 5 times in the code so decided to centralize it
This takes in lists with the titles, pages, indices, and exports a string in the requested format
'''
bkmks = ""
for i,_ in enumerate(indices):
bkmks += BKMK_SYNTAX[output_syntax]["print"](
titles[i],pages[i],indices[i])
if output_syntax == index_input_syntax or not bool(index_input_syntax):
return bkmks
else: # the index input syntax is not the same as the output syntax
return repairIndex(bkmks,index_input_syntax) # careful, recursion
def repairIndex(bkmks, index_input_syntax):
'''
This function preserves the syntax of a bkmk file but repairs the indices to match that syntax.
This function is necessary because each of formats has its own convention.
For instance the index in cpdf is starts from 0 and refers to how many levels deep into the TOC that entry is.
The pdftk index is the same logic as cpdf but 1-indexed (add 1 to the cpdf index).
In gs, the index given by /Count N means that that entry has N child entries in the next sublevel.
Arguments:
String : The bookmark file
String : (Optional) The index input syntax (this can be detected regardless)
Returns:
String : The finalized bookmark file
'''
output_syntax = whichSyntax(bkmks)
if output_syntax == index_input_syntax:
return bkmks
else:
titles, pages, indices = extractBkmkFile(bkmks,BKMK_SYNTAX[output_syntax]["sense"])
indices = [int(e) for e in indices]
# convert!
if output_syntax == "gs": #
# convert cpdf or pdftk index to gs index (works because this is a comparison method)
for i,e in enumerate(indices):
indices[i] = 0
try:
# finds the number of subsequent indices 1 larger than the current one before the next index which has the same value as the current one
counter = 0
while indices[i + 1 + counter] != e:
if indices[i + 1 + counter] == e + 1:
indices[i] += 1
counter += 1
except IndexError:
pass
else: # outputting to cpdf or pdftk
if index_input_syntax == "gs":
# convert gs to cpdf
# in this loop, we go from end to beginning and get the cpdf index at each step
# each run through this loops determines how many of the preceeding entries are parents of indices[i]
def recursiveDeleteTerminalBranches(roots):
'''
This takes in a list and removes terminal branches until there are none
'''
tree = roots[:]
for i,e in list(enumerate(tree))[::-1]:
if bool(e):
try:
# if every index in that range is zero, it is a terminal branch
# note that if tree[i] is in the range(e) (i.e. len(tree[i+1:i+1+e]) < len(range(e)))
# then there is match, so we won't delete it, as desired
if tree[i+1:i+1+e] == [0 for x in range(e)]:
# replace e with a zero but remove e entries
del tree[i:i+e]
# prune the tree
tree = recursiveDeleteTerminalBranches(tree)
else:
continue
except IndexError:
continue
else:
continue
#print(tree)
return tree
results = [0 for e in indices]
fast_search = 0
for i,_ in enumerate(indices):
results[i] = len([x for x in recursiveDeleteTerminalBranches(indices[fast_search:i]) if x > 0])
# if the entry has no parent, ignore all the preceeding entries
if results[i] == 0:
fast_search = i
indices = results
if output_syntax == "pdftk":
# convert cpdf to pdftk by adding 1
indices = [ e + 1 for e in indices ]
elif index_input_syntax == "pdftk": # output_syntax == "cpdf"
# convert pdftk to cpdf by subtracting 1
indices = [ e - 1 for e in indices ]
else: # converting cpdf to pdftk by adding 1
indices = [ e + 1 for e in indices ]
return writeBkmkFile(output_syntax, titles, pages, indices)
def importPDFTOC(args):
'''
This function uses pdftotext to read in the table of contents of a pdf
and then does some repetitive tasks that help prepare that text output
for bkmk create. It mostly just deletes blank lines, tries merging entries
split across multiple lines. Adds an @ symbol right before the page number
so that it can be read in easily using the default pattern for bkmk create.
However the bkmk file is not passed to bkmk create because the person making
it should still review the file as there are bound to be errors or things
they would like to adjust. In addition, this function renumbers
This function takes in a file object and returns a string whose contents are
the TOC to review
'''
if args.pdftotext:
f_page = int(input('Provide the pdf page number of the start of the TOC> '))
l_page = int(input('Provide the pdf page number of the end of the TOC> '))
pdf = pdftotext.PDF(args.input)
toc = ''.join([pdf[i] for i in range(f_page-1,l_page)])
else:
toc = args.input.read()
# begin routine manipulations
# remove leading spaces
toc = re.sub(r'\n[ \t]+', r'\n', toc)
# remove instances of keywords or leading/trailing space
contents_page_patterns = [r'[cC]ontents', r'pages*', r'Índice',
r'\n[ \txvi]+', r'\A[ \n\t]+',]
for p in contents_page_patterns:
toc = re.sub(p, r'', toc)
# remove indentations and multiple spaces
toc = re.sub(r'[ \t][ \t]+', r' ', toc)
# remove blank lines and trailing space
toc = re.sub(r'[ \t]*\n[ \t]*\n*', r'\n', toc)
# if the beginning of toc has roman numerals
# replace those with 0 (these will be skipped
# by the create function when it comes to the
# correct numbering)
toc = re.sub(r' [xvi]+\n',r' 0\n',toc)
# add an @ before each page number at EOL
toc = re.sub(r' (\d+)\n',r' @\1\n',toc)
# merge split lines (e.g. those which don't
# end with a number or numeral but have at
# least two words)
toc = re.sub(r'(\D+) (\D+[^xvi0-9])\n(.+) (\d+)\n', r'\1 \2 \3 \4\n', toc)
# May need to escape quotations? " -> \"
args.output.write(toc)
if args.yolo:
# make the current output the input to create
new_path = os.path.dirname(args.output.name)
new_name = os.path.basename(args.output.name)
args.output.close()
args.input = open(os.path.join(new_path, new_name), 'r')
args.output = open(filenames.fileOut(os.path.join(
new_path, 'bkmk_' + new_name)), 'w')
create(args)
return
def create(args):
'''
Calls the right functions to make things create
'''
args.output.write(
createTocFromText(
args.input.read(),
output_syntax=args.syntax,
pattern=args.pattern,
re_flags=RE_FLAGS[args.re_flags],
edit=args.edit
)
)
return
def convert(args):
'''
Calls the right functions to make things convert
'''
args.output.write(
convertSyntax(
args.input.read(),
output_syntax=args.syntax,
offset=args.number
)
)
return
def cli():
'''
Run the bkmk.py script.
This handles its command-line arguments and executes the requested functions.
'''
# Define command-line arguments
parser = argparse.ArgumentParser(
prog='bkmk',
description='''a script to produce pdf bookmarks''')
subparsers = parser.add_subparsers(help='action!')
# Subparsers for each command
parser_convert = subparsers.add_parser(
"convert",
help="change a bookmark file syntax or renumber the pages")
parser_convert.set_defaults(func=convert)
# convert arguments
parser_convert.add_argument(
"-n", "--number", type=int, default=0,
help="apply an offset to all page numbers")
parser_create = subparsers.add_parser(
"create",
help="create bookmarks from a raw TOC file")
parser_create.set_defaults(func=create)
# create arguments
parser_create.add_argument(
"-p", "--pattern", default="(?P<title>.+)@(?P<page>\d+)",
help="regexp to read the input file containing"
"(?P<page>\d+) and (?P<title>.+) groups")
parser_create.add_argument(
"-r", "--re-flags", choices=list(RE_FLAGS), default="U",
help="optionally add a regexp flag to specify --pattern")
parser_create.add_argument(
"-e", "--edit",
help="apply a regexp to the title, e.g. to removing leading"
"numbers: r'^[\d\.]+\.'", default="")
# import arguments
parser_import = subparsers.add_parser(
"import",
help="read in a pdf to get a rough TOC that will need inspection")
parser_import.set_defaults(func=importPDFTOC)
parser_import.add_argument(
"-pdf", dest="pdftotext", action="store_true",
help="instead of reading in a raw TOC, read it from pdf with pdftotext")
parser_import.add_argument(
"-y", "--yolo", action="store_true",
help="pass the imported bkmk to create without revision")
parser_import.add_argument(
"-p", "--pattern", default="(?P<title>.+)@(?P<page>\d+)",
help="regexp to read the input file containing"
"(?P<page>\d+) and (?P<title>.+) groups")
parser_import.add_argument(
"-r", "--re-flags", choices=list(RE_FLAGS), default="U",
help="optionally add a regexp flag to specify --pattern")
parser_import.add_argument(
"-e", "--edit",
help="apply a regexp to the title, e.g. to removing leading"
"numbers: r'^[\d\.]+\.'", default="")
# Main arguments
parser.add_argument(
"syntax", choices=list(BKMK_SYNTAX),
help="choose bookmark output format")
parser.add_argument(
"input",
help="input file name")
parser.add_argument(
"-o", dest="output",
help="output file name")
args = parser.parse_args()
args.input, args.output = filenames.fileIO(args.input, args.output,
writeext='.txt')
print("bkmk.py - a script to manipulate pdf bookmarks\n")
if args.func == importPDFTOC:
if args.pdftotext:
readmode = 'rb'
else:
readmode = 'r'
with open(args.input, readmode) as args.input:
with open(args.output, 'w') as args.output:
args.func(args)
# Close script
print("\nBookmarks finished!")
return
# run script if called from command line
if __name__ == "__main__":
cli()
raise SystemExit()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
2,
275,
13276,
74,
13,
9078,
198,
2,
6434,
25,
41721,
6656,
8252,
12654,
8590,
198,
2,
4586,
6153,
4280,
3261,
11,
12131,
198,
198,
7061,
6,
198,
32,
4226,
284,
7716,
37124,
1492,
14306,
287,
269,
12315,
11,
14542,
11,
30094,
701,
74,
15582,
274,
198,
198,
1212,
4226,
3544,
3218,
14700,
284,
5911,
198,
49659,
44007,
1321,
290,
284,
3858,
316,
262,
15582,
274,
13,
198,
1026,
635,
6971,
11315,
1022,
262,
1180,
4855,
17519,
13,
198,
198,
21129,
318,
7062,
284,
779,
340,
393,
2987,
2402,
340,
13,
19996,
340,
1838,
198,
1169,
44007,
6282,
1429,
4577,
329,
2687,
18139,
284,
1210,
198,
83,
2977,
286,
10154,
656,
1492,
14306,
11,
2592,
329,
1588,
4963,
220,
198,
10508,
355,
31814,
13,
198,
198,
10915,
340,
2499,
355,
318,
11,
611,
340,
547,
284,
1487,
287,
597,
835,
314,
561,
3863,
198,
17953,
257,
15582,
1398,
351,
3555,
14,
16502,
5050,
355,
281,
5559,
198,
1462,
262,
1459,
22155,
44007,
1080,
13,
198,
198,
818,
3090,
11,
262,
691,
584,
705,
26069,
2249,
6,
636,
546,
428,
4226,
318,
284,
198,
1676,
525,
306,
5412,
262,
13326,
286,
44007,
6376,
14,
5715,
290,
5609,
340,
220,
198,
23395,
262,
1180,
17519,
13,
1114,
1672,
11,
269,
12315,
290,
279,
67,
701,
74,
3264,
198,
35790,
262,
1459,
1241,
286,
262,
5726,
11,
2158,
308,
82,
14,
12315,
14306,
3544,
257,
198,
71,
959,
998,
605,
4645,
810,
1123,
5726,
743,
423,
705,
17197,
26488,
7266,
298,
1678,
13,
198,
3103,
48820,
1022,
777,
284,
468,
587,
9177,
530,
835,
351,
981,
23607,
198,
392,
262,
584,
835,
1262,
664,
24197,
13,
19996,
777,
389,
262,
691,
14276,
198,
687,
1381,
290,
597,
649,
3392,
389,
655,
4159,
13991,
286,
777,
13,
198,
198,
11980,
1257,
290,
670,
3049,
0,
198,
7061,
6,
198,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
1822,
29572,
198,
198,
11748,
279,
67,
701,
1258,
742,
220,
198,
198,
6738,
37124,
62,
38664,
313,
354,
365,
13,
26791,
1330,
1226,
268,
1047,
198,
198,
2,
8060,
7885,
8160,
1695,
302,
9701,
198,
2200,
62,
38948,
50,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
32,
1,
1058,
220,
220,
302,
13,
42643,
3978,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
40,
1,
1058,
220,
220,
302,
13,
16284,
1581,
2943,
11159,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43,
1,
1058,
220,
220,
302,
13,
29701,
21358,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
44,
1,
1058,
220,
220,
302,
13,
44,
16724,
4146,
8881,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
50,
1,
1058,
220,
220,
302,
13,
35,
2394,
7036,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
55,
1,
1058,
220,
220,
302,
13,
5959,
33,
14058,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
52,
1,
1058,
220,
220,
302,
13,
4944,
2149,
16820,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
2,
8060,
7885,
15582,
1366,
4645,
329,
4855,
15582,
274,
198,
33,
42,
33907,
62,
23060,
45,
5603,
55,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5501,
15582,
5794,
468,
734,
6608,
25,
257,
3601,
2643,
284,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
1366,
284,
326,
5794,
290,
257,
2565,
2643,
543,
318,
257,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3218,
5408,
284,
4886,
1771,
257,
1627,
468,
326,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
1366,
284,
3601,
24866,
284,
357,
87,
11,
88,
11,
89,
8,
796,
357,
9630,
11,
7839,
11,
7700,
8,
198,
220,
220,
220,
220,
220,
220,
220,
366,
66,
12315,
1,
220,
220,
1058,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4798,
1,
1058,
357,
50033,
2124,
11,
88,
11,
89,
25,
277,
1,
90,
89,
92,
19990,
90,
87,
92,
7879,
1391,
88,
32239,
77,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33819,
1,
1058,
374,
18109,
30,
47,
27,
9630,
29,
59,
67,
28988,
3467,
18109,
30,
47,
27,
7839,
28401,
28988,
7879,
357,
30,
47,
27,
7700,
29,
59,
67,
10,
737,
9,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3582,
1321,
318,
1813,
416,
12878,
27,
7700,
1271,
12240,
1177,
3141,
29,
30866,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
14542,
1,
220,
220,
220,
1058,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
20208,
1051,
878,
262,
954,
5667,
262,
6859,
8522,
79,
12249,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4798,
1,
1058,
357,
50033,
2124,
11,
88,
11,
89,
25,
277,
17912,
1220,
12332,
532,
90,
89,
92,
1220,
9876,
1391,
88,
92,
1220,
19160,
37913,
87,
30072,
1220,
12425,
37124,
4102,
59,
77,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33819,
1,
1058,
374,
1,
59,
58,
1220,
12332,
25915,
60,
9,
7,
30,
47,
27,
9630,
29,
59,
67,
28988,
1220,
9876,
357,
30,
47,
27,
7700,
29,
59,
67,
28988,
1220,
19160,
16792,
7,
30,
47,
27,
7839,
28401,
10,
19415,
8,
1220,
12425,
37124,
4102,
15885,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
554,
3090,
11,
262,
1220,
7680,
685,
3556,
1177,
3141,
37981,
3038,
290,
663,
13991,
460,
307,
2087,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
30094,
701,
74,
1,
1058,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4798,
1,
1058,
357,
50033,
2124,
11,
88,
11,
89,
25,
277,
1,
10482,
4102,
44140,
59,
77,
10482,
4102,
19160,
25,
1391,
87,
32239,
77,
10482,
4102,
4971,
25,
1391,
89,
32239,
77,
10482,
4102,
9876,
15057,
25,
1391,
88,
32239,
77,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
33819,
1,
220,
1058,
374,
1,
10482,
4102,
44140,
15885,
59,
77,
10482,
4102,
19160,
25,
357,
30,
47,
27,
7839,
28401,
10,
737,
9,
59,
77,
10482,
4102,
4971,
25,
357,
30,
47,
27,
9630,
29,
59,
67,
10,
737,
9,
59,
77,
10482,
4102,
9876,
15057,
25,
357,
30,
47,
27,
7700,
29,
59,
67,
10,
737,
9,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1782,
628,
198,
4299,
543,
13940,
41641,
7,
7890,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
30307,
1771,
262,
1813,
5726,
318,
257,
44007,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
7343,
1058,
11481,
3951,
422,
257,
44007,
2393,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
393,
13047,
1058,
366,
66,
12315,
1,
393,
366,
14542,
1,
15582,
11,
6045,
611,
407,
597,
15582,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
329,
304,
287,
1351,
7,
33,
42,
33907,
62,
23060,
45,
5603,
55,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
20512,
7,
260,
13,
12947,
7,
33,
42,
33907,
62,
23060,
45,
5603,
55,
58,
68,
7131,
1,
33819,
33116,
7890,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
304,
198,
220,
220,
220,
5298,
11787,
20361,
7203,
464,
2393,
318,
857,
407,
2872,
597,
4855,
15582,
4943,
628,
198,
4299,
10385,
13940,
41641,
7,
7890,
11,
22915,
62,
1837,
41641,
28,
14202,
11,
28968,
28,
15,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1482,
24040,
530,
44007,
2393,
15582,
656,
1194,
2393,
13,
198,
220,
220,
220,
10358,
4886,
262,
5128,
15582,
6338,
290,
3551,
198,
220,
220,
220,
284,
262,
7368,
15582,
13,
198,
220,
220,
220,
770,
2125,
470,
257,
3306,
3895,
1201,
611,
262,
44007,
2393,
198,
220,
220,
220,
318,
1541,
612,
11,
788,
655,
779,
262,
11188,
1430,
198,
220,
220,
220,
284,
751,
262,
1492,
14306,
13,
198,
220,
220,
220,
887,
3863,
655,
466,
428,
329,
1224,
43205,
13,
198,
220,
220,
220,
770,
460,
635,
8851,
4494,
262,
5468,
416,
262,
1813,
11677,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
5128,
62,
1837,
41641,
796,
543,
13940,
41641,
7,
7890,
8,
198,
220,
220,
220,
611,
5072,
62,
1837,
41641,
6624,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
1837,
41641,
796,
5128,
62,
1837,
41641,
198,
220,
220,
220,
220,
198,
220,
220,
220,
8714,
11,
5468,
11,
36525,
796,
7925,
33,
13276,
74,
8979,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
11,
33,
42,
33907,
62,
23060,
45,
5603,
55,
58,
15414,
62,
1837,
41641,
7131,
1,
33819,
8973,
8,
628,
220,
220,
220,
1441,
3551,
33,
13276,
74,
8979,
7,
22915,
62,
1837,
41641,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8714,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
600,
7,
68,
8,
1343,
11677,
329,
304,
287,
5468,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
62,
15414,
62,
1837,
41641,
28,
15414,
62,
1837,
41641,
8,
628,
198,
4299,
2251,
51,
420,
4863,
8206,
7,
7890,
11,
5072,
62,
1837,
41641,
28,
14202,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3912,
2625,
7,
30,
47,
27,
7839,
28401,
10,
19415,
77,
7,
30,
47,
27,
7700,
29,
59,
67,
28988,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
302,
62,
33152,
28,
260,
13,
52,
11,
4370,
28,
7061,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
770,
2163,
2753,
3951,
422,
257,
1492,
14306,
287,
257,
8246,
2420,
2393,
290,
23862,
606,
284,
257,
7368,
44007,
15582,
13,
198,
220,
220,
220,
632,
635,
2476,
284,
1265,
9427,
2280,
329,
262,
2443,
11677,
284,
15284,
262,
2443,
47622,
826,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
1058,
468,
262,
2695,
286,
277,
13,
961,
3419,
422,
281,
5128,
2393,
7560,
422,
262,
2420,
286,
257,
37124,
309,
4503,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
1058,
2035,
366,
66,
12315,
1,
393,
366,
14542,
1600,
10200,
262,
5072,
15582,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
1058,
257,
3218,
5408,
4731,
7268,
357,
30,
47,
27,
7700,
29,
59,
67,
28988,
290,
357,
30,
47,
27,
7839,
28401,
28988,
2628,
284,
21136,
262,
2443,
3146,
290,
5726,
2420,
422,
262,
5128,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
302,
13,
38948,
1058,
257,
3218,
5408,
6056,
4277,
278,
284,
302,
13,
4944,
2149,
16820,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
1058,
257,
40364,
79,
284,
4174,
284,
477,
8714,
13,
304,
13,
70,
13,
284,
4781,
477,
3756,
3146,
25,
374,
6,
61,
58,
59,
67,
59,
8183,
10,
59,
2637,
628,
220,
220,
220,
8229,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
1058,
262,
32013,
44007,
12784,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
611,
5072,
62,
1837,
41641,
6624,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11787,
20361,
10786,
2949,
5072,
15582,
468,
587,
7368,
13,
2275,
24707,
0,
11537,
198,
220,
220,
220,
1303,
2198,
326,
1813,
302,
468,
691,
262,
2672,
7032,
198,
220,
220,
220,
302,
62,
33279,
796,
302,
13,
5589,
576,
7,
41871,
1,
90,
33279,
92,
1600,
260,
62,
33152,
8,
198,
220,
220,
220,
6818,
900,
7,
17816,
7839,
41707,
7700,
6,
12962,
6624,
900,
7,
260,
62,
33279,
13,
8094,
9630,
13,
13083,
28955,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
4238,
1366,
329,
262,
717,
5726,
351,
2443,
1271,
1875,
657,
198,
220,
220,
220,
7466,
796,
302,
62,
33279,
13,
19796,
2676,
7,
7890,
8,
198,
220,
220,
220,
329,
285,
287,
7466,
25,
198,
220,
220,
220,
220,
220,
220,
220,
717,
62,
13000,
796,
285,
13,
8094,
7203,
7839,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
717,
62,
7700,
220,
796,
285,
13,
8094,
7203,
7700,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
493,
7,
11085,
62,
7700,
8,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16981,
329,
262,
2443,
11677,
220,
198,
220,
220,
220,
220,
220,
220,
220,
11677,
62,
2536,
796,
5128,
7,
69,
1,
17469,
262,
2443,
287,
262,
37124,
329,
262,
1708,
309,
4503,
5726,
7479,
77,
8206,
25,
1391,
11085,
62,
13000,
32239,
77,
9876,
25,
1391,
11085,
62,
7700,
32239,
77,
29,
366,
8,
198,
220,
220,
220,
2845,
6530,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11787,
20361,
10786,
2949,
2872,
284,
262,
3912,
373,
1043,
287,
262,
44007,
1366,
11537,
628,
220,
220,
220,
11677,
796,
493,
7,
28968,
62,
2536,
8,
532,
493,
7,
11085,
62,
7700,
8,
628,
220,
220,
220,
1303,
39852,
2849,
1847,
12233,
40364,
79,
422,
262,
8714,
198,
220,
220,
220,
31671,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10352,
220,
220,
1058,
220,
220,
357,
50033,
2124,
1058,
2124,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6407,
220,
220,
220,
1058,
220,
220,
357,
50033,
2124,
1058,
302,
13,
7266,
7,
19312,
4032,
3256,
87,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
198,
220,
220,
220,
8714,
11,
31126,
796,
7925,
33,
13276,
74,
8979,
7,
7890,
11,
260,
62,
33279,
8,
628,
220,
220,
220,
1441,
3551,
33,
13276,
74,
8979,
7,
22915,
62,
1837,
41641,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
276,
896,
58,
30388,
7,
19312,
15437,
7,
68,
8,
329,
304,
287,
8714,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
600,
7,
68,
8,
1343,
11677,
329,
304,
287,
5468,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
34,
20456,
15732,
4863,
19160,
26933,
68,
329,
304,
287,
8714,
46570,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
62,
15414,
62,
1837,
41641,
2625,
66,
12315,
4943,
628,
198,
4299,
651,
34,
20456,
15732,
4863,
19160,
7,
7839,
62,
4868,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
45559,
3810,
262,
269,
12315,
6376,
286,
281,
5726,
357,
5661,
318,
35010,
290,
262,
9156,
815,
307,
20449,
6906,
319,
262,
2695,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
1058,
30274,
262,
3670,
286,
257,
3084,
286,
10154,
5726,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
34142,
1058,
657,
611,
262,
1627,
4940,
1231,
281,
18253,
393,
281,
18253,
1231,
25462,
32465,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
352,
611,
262,
1627,
4940,
351,
257,
32465,
588,
1395,
13,
55,
810,
1395,
389,
37014,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
611,
262,
1627,
4940,
351,
257,
4274,
32465,
588,
1395,
13,
55,
13,
55,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
513,
262,
3912,
2925,
319,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
5740,
326,
428,
691,
23862,
262,
269,
12315,
9831,
0,
770,
318,
5969,
416,
9185,
15732,
3419,
198,
220,
220,
220,
1303,
26286,
543,
815,
307,
379,
1353,
6376,
1241,
198,
220,
220,
220,
26286,
796,
37250,
14126,
3256,
705,
43582,
3256,
705,
15610,
8836,
83,
43348,
3256,
705,
11128,
8836,
83,
43348,
3256,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4677,
19573,
3256,
705,
1324,
19573,
3256,
705,
25189,
2634,
358,
501,
3256,
705,
499,
2634,
358,
501,
20520,
628,
220,
220,
220,
1303,
923,
6376,
278,
198,
220,
220,
220,
36525,
796,
685,
16,
329,
304,
287,
3670,
62,
4868,
60,
198,
220,
220,
220,
329,
1312,
11,
7839,
287,
27056,
378,
7,
7839,
62,
4868,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
770,
551,
27087,
645,
6565,
3951,
355,
880,
355,
1972,
6376,
198,
220,
220,
220,
220,
220,
220,
220,
981,
20512,
7,
260,
13,
15699,
7203,
61,
59,
86,
10,
1,
1343,
36525,
58,
72,
60,
1635,
37082,
3693,
15,
12,
24,
48688,
1600,
7839,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
58,
72,
60,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
34128,
352,
780,
286,
5103,
286,
981,
9052,
198,
220,
220,
220,
220,
220,
220,
220,
36525,
58,
72,
60,
48185,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1114,
1243,
588,
13565,
11,
543,
664,
333,
355,
46310,
287,
262,
309,
4503,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
475,
561,
991,
307,
657,
287,
262,
2180,
1080,
11,
7719,
606,
284,
6376,
352,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
262,
717,
1573,
287,
326,
3670,
29819,
379,
1551,
642,
1661,
287,
262,
309,
4503,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
810,
642,
318,
14977,
475,
635,
257,
1402,
1271,
286,
15754,
329,
257,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
28979,
198,
220,
220,
220,
220,
220,
220,
220,
611,
36525,
58,
72,
60,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
285,
796,
302,
13,
15699,
7,
81,
6,
59,
35,
10,
3256,
7839,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
20512,
7,
76,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
13,
8094,
7,
15,
8,
407,
287,
26286,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
11925,
26933,
68,
329,
304,
287,
3670,
62,
4868,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
285,
13,
8094,
7,
15,
8,
287,
304,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1875,
604,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
58,
72,
60,
15853,
352,
628,
220,
220,
220,
1441,
36525,
628,
198,
4299,
7925,
33,
13276,
74,
8979,
7,
7890,
11,
33279,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
770,
7466,
257,
40364,
79,
284,
257,
275,
13276,
74,
2393,
11,
8024,
477,
262,
10245,
286,
1123,
2872,
1448,
287,
663,
898,
1351,
198,
220,
220,
220,
16409,
257,
46545,
351,
262,
8341,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
12039,
779,
428,
1502,
0,
6376,
1276,
307,
938,
584,
10787,
262,
1339,
422,
2251,
51,
420,
4863,
8979,
3419,
543,
468,
645,
6376,
481,
2038,
198,
220,
220,
220,
9871,
62,
2875,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7839,
1,
1058,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7700,
1,
220,
1058,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9630,
1,
1058,
513,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
628,
220,
220,
220,
3912,
796,
302,
13,
5589,
576,
7,
33279,
8,
198,
220,
220,
220,
2628,
796,
8633,
7,
33279,
13,
8094,
9630,
8,
198,
220,
220,
220,
1303,
428,
318,
262,
1339,
810,
356,
389,
4441,
257,
649,
275,
13276,
74,
543,
1595,
470,
1865,
423,
36525,
198,
220,
220,
220,
611,
18896,
7,
24432,
13,
13083,
28955,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1619,
9871,
62,
2875,
17816,
9630,
20520,
628,
220,
220,
220,
1303,
287,
262,
9871,
1502,
11,
1351,
477,
7466,
287,
1123,
1448,
355,
663,
898,
1351,
357,
39363,
257,
9943,
7094,
275,
36622,
319,
262,
16216,
286,
262,
12336,
1448,
8,
198,
220,
220,
220,
1441,
685,
685,
304,
58,
24432,
58,
72,
45297,
16,
4083,
36311,
3419,
329,
304,
287,
302,
13,
19796,
439,
7,
33279,
11,
7890,
8,
2361,
329,
1312,
287,
1351,
7,
3866,
18186,
62,
2875,
13,
13083,
28955,
2361,
628,
198,
4299,
3551,
33,
13276,
74,
8979,
7,
22915,
62,
1837,
41641,
11,
83,
30540,
11,
5468,
11,
36525,
11,
9630,
62,
15414,
62,
1837,
41641,
33151,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
314,
373,
1804,
428,
625,
642,
1661,
287,
262,
2438,
523,
3066,
284,
4318,
1096,
340,
198,
220,
220,
220,
770,
2753,
287,
8341,
351,
262,
8714,
11,
5468,
11,
36525,
11,
290,
15319,
257,
4731,
287,
262,
9167,
5794,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
275,
13276,
591,
796,
13538,
198,
220,
220,
220,
329,
1312,
11,
62,
287,
27056,
378,
7,
521,
1063,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
275,
13276,
591,
15853,
220,
347,
42,
33907,
62,
23060,
45,
5603,
55,
58,
22915,
62,
1837,
41641,
7131,
1,
4798,
8973,
7,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8714,
58,
72,
4357,
31126,
58,
72,
4357,
521,
1063,
58,
72,
12962,
198,
220,
220,
220,
611,
5072,
62,
1837,
41641,
6624,
6376,
62,
15414,
62,
1837,
41641,
393,
407,
20512,
7,
9630,
62,
15414,
62,
1837,
41641,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
275,
13276,
591,
220,
198,
220,
220,
220,
2073,
25,
1303,
262,
6376,
5128,
15582,
318,
407,
262,
976,
355,
262,
5072,
15582,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
9185,
15732,
7,
65,
13276,
591,
11,
9630,
62,
15414,
62,
1837,
41641,
8,
1303,
8161,
11,
664,
24197,
628,
198,
4299,
9185,
15732,
7,
65,
13276,
591,
11,
6376,
62,
15414,
62,
1837,
41641,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
770,
2163,
43759,
262,
15582,
286,
257,
275,
13276,
74,
2393,
475,
20097,
262,
36525,
284,
2872,
326,
15582,
13,
198,
220,
220,
220,
770,
2163,
318,
3306,
780,
1123,
286,
17519,
468,
663,
898,
9831,
13,
198,
220,
220,
220,
1114,
4554,
262,
6376,
287,
269,
12315,
318,
4940,
422,
657,
290,
10229,
284,
703,
867,
2974,
2769,
656,
262,
309,
4503,
326,
5726,
318,
13,
198,
220,
220,
220,
383,
279,
67,
701,
74,
6376,
318,
262,
976,
9156,
355,
269,
12315,
475,
352,
12,
9630,
276,
357,
2860,
352,
284,
262,
269,
12315,
6376,
737,
198,
220,
220,
220,
554,
308,
82,
11,
262,
6376,
1813,
416,
1220,
12332,
399,
220,
1724,
326,
326,
5726,
468,
399,
1200,
12784,
287,
262,
1306,
850,
5715,
13,
628,
220,
220,
220,
20559,
2886,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
220,
1058,
220,
220,
383,
44007,
2393,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
220,
1058,
220,
220,
357,
30719,
8,
383,
6376,
5128,
15582,
357,
5661,
460,
307,
12326,
7692,
8,
628,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10903,
220,
1058,
220,
220,
383,
32013,
44007,
2393,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
5072,
62,
1837,
41641,
796,
543,
13940,
41641,
7,
65,
13276,
591,
8,
628,
220,
220,
220,
611,
5072,
62,
1837,
41641,
6624,
6376,
62,
15414,
62,
1837,
41641,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
275,
13276,
591,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
8714,
11,
5468,
11,
36525,
796,
7925,
33,
13276,
74,
8979,
7,
65,
13276,
591,
11,
33,
42,
33907,
62,
23060,
45,
5603,
55,
58,
22915,
62,
1837,
41641,
7131,
1,
33819,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
36525,
796,
685,
600,
7,
68,
8,
329,
304,
287,
36525,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
0,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5072,
62,
1837,
41641,
6624,
366,
14542,
1298,
1303,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
269,
12315,
393,
279,
67,
701,
74,
6376,
284,
308,
82,
6376,
357,
5225,
780,
428,
318,
257,
7208,
2446,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
68,
287,
27056,
378,
7,
521,
1063,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
58,
72,
60,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7228,
262,
1271,
286,
8840,
36525,
352,
4025,
621,
262,
1459,
530,
878,
262,
1306,
6376,
543,
468,
262,
976,
1988,
355,
262,
1459,
530,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3753,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
981,
36525,
58,
72,
1343,
352,
1343,
3753,
60,
14512,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
36525,
58,
72,
1343,
352,
1343,
3753,
60,
6624,
304,
1343,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
58,
72,
60,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3753,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
12901,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
628,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
1303,
5072,
889,
284,
269,
12315,
393,
279,
67,
701,
74,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
6376,
62,
15414,
62,
1837,
41641,
6624,
366,
14542,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
308,
82,
284,
269,
12315,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
287,
428,
9052,
11,
356,
467,
422,
886,
284,
3726,
290,
651,
262,
269,
12315,
6376,
379,
1123,
2239,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1123,
1057,
832,
428,
23607,
15947,
703,
867,
286,
262,
662,
2707,
278,
12784,
389,
3397,
286,
36525,
58,
72,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
825,
45115,
38727,
44798,
282,
9414,
12140,
7,
19150,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2753,
287,
257,
1351,
290,
20694,
12094,
13737,
1566,
612,
389,
4844,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5509,
796,
11135,
58,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
68,
287,
1351,
7,
268,
6975,
378,
7,
21048,
4008,
58,
3712,
12,
16,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
20512,
7,
68,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
790,
6376,
287,
326,
2837,
318,
6632,
11,
340,
318,
257,
12094,
8478,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3465,
326,
611,
5509,
58,
72,
60,
318,
287,
262,
2837,
7,
68,
8,
357,
72,
13,
68,
13,
18896,
7,
21048,
58,
72,
10,
16,
25,
72,
10,
16,
10,
68,
12962,
1279,
18896,
7,
9521,
7,
68,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
788,
612,
318,
2872,
11,
523,
356,
1839,
470,
12233,
340,
11,
355,
10348,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5509,
58,
72,
10,
16,
25,
72,
10,
16,
10,
68,
60,
6624,
685,
15,
329,
2124,
287,
2837,
7,
68,
8,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
6330,
304,
351,
257,
6632,
475,
4781,
304,
12784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1619,
5509,
58,
72,
25,
72,
10,
68,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
778,
1726,
262,
5509,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5509,
796,
45115,
38727,
44798,
282,
9414,
12140,
7,
21048,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
12901,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
21048,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
5509,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
796,
685,
15,
329,
304,
287,
36525,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3049,
62,
12947,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
62,
287,
27056,
378,
7,
521,
1063,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2482,
58,
72,
60,
796,
18896,
26933,
87,
329,
2124,
287,
45115,
38727,
44798,
282,
9414,
12140,
7,
521,
1063,
58,
7217,
62,
12947,
25,
72,
12962,
611,
2124,
1875,
657,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
262,
5726,
468,
645,
2560,
11,
8856,
477,
262,
662,
2707,
278,
12784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2482,
58,
72,
60,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3049,
62,
12947,
796,
1312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
796,
2482,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5072,
62,
1837,
41641,
6624,
366,
30094,
701,
74,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
269,
12315,
284,
279,
67,
701,
74,
416,
4375,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
796,
685,
304,
1343,
352,
329,
304,
287,
36525,
2361,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
6376,
62,
15414,
62,
1837,
41641,
6624,
366,
30094,
701,
74,
1298,
1303,
5072,
62,
1837,
41641,
6624,
366,
66,
12315,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
279,
67,
701,
74,
284,
269,
12315,
416,
34128,
278,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
796,
685,
304,
532,
352,
329,
304,
287,
36525,
2361,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
1303,
23202,
269,
12315,
284,
279,
67,
701,
74,
416,
4375,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36525,
796,
685,
304,
1343,
352,
329,
304,
287,
36525,
2361,
628,
220,
220,
220,
1441,
3551,
33,
13276,
74,
8979,
7,
22915,
62,
1837,
41641,
11,
8714,
11,
5468,
11,
36525,
8,
628,
198,
4299,
1330,
5760,
9792,
4503,
7,
22046,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
770,
2163,
3544,
279,
67,
701,
1258,
742,
284,
1100,
287,
262,
3084,
286,
10154,
286,
257,
37124,
220,
198,
220,
220,
220,
290,
788,
857,
617,
28585,
8861,
326,
1037,
8335,
326,
2420,
5072,
198,
220,
220,
220,
329,
275,
13276,
74,
2251,
13,
632,
4632,
655,
28128,
274,
9178,
3951,
11,
8404,
35981,
12784,
198,
220,
220,
220,
6626,
1973,
3294,
3951,
13,
34333,
281,
2488,
6194,
826,
878,
262,
2443,
1271,
198,
220,
220,
220,
523,
326,
340,
460,
307,
1100,
287,
3538,
1262,
262,
4277,
3912,
329,
275,
13276,
74,
2251,
13,
198,
220,
220,
220,
2102,
262,
275,
13276,
74,
2393,
318,
407,
3804,
284,
275,
13276,
74,
2251,
780,
262,
1048,
1642,
198,
220,
220,
220,
340,
815,
991,
2423,
262,
2393,
355,
612,
389,
5421,
284,
307,
8563,
393,
1243,
198,
220,
220,
220,
484,
561,
588,
284,
4532,
13,
554,
3090,
11,
428,
2163,
8851,
17024,
220,
198,
220,
220,
220,
770,
2163,
2753,
287,
257,
2393,
2134,
290,
5860,
257,
4731,
3025,
10154,
389,
198,
220,
220,
220,
262,
309,
4503,
284,
2423,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
611,
26498,
13,
30094,
701,
1258,
742,
25,
198,
220,
220,
220,
220,
220,
220,
220,
277,
62,
7700,
796,
493,
7,
15414,
10786,
15946,
485,
262,
37124,
2443,
1271,
286,
262,
923,
286,
262,
309,
4503,
29,
705,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
300,
62,
7700,
796,
493,
7,
15414,
10786,
15946,
485,
262,
37124,
2443,
1271,
286,
262,
886,
286,
262,
309,
4503,
29,
705,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37124,
796,
279,
67,
701,
1258,
742,
13,
20456,
7,
22046,
13,
15414,
8,
198,
220,
220,
220,
220,
220,
220,
220,
284,
66,
796,
705,
4458,
22179,
26933,
12315,
58,
72,
60,
329,
1312,
287,
2837,
7,
69,
62,
7700,
12,
16,
11,
75,
62,
7700,
8,
12962,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
284,
66,
796,
26498,
13,
15414,
13,
961,
3419,
628,
220,
220,
220,
1303,
2221,
8027,
7704,
5768,
198,
220,
220,
220,
1303,
4781,
3756,
9029,
198,
220,
220,
220,
284,
66,
796,
302,
13,
7266,
7,
81,
6,
59,
77,
58,
3467,
83,
48688,
3256,
374,
6,
59,
77,
3256,
284,
66,
8,
198,
220,
220,
220,
1303,
4781,
10245,
286,
26286,
393,
3756,
14,
9535,
4386,
2272,
198,
220,
220,
220,
10154,
62,
7700,
62,
33279,
82,
796,
685,
81,
6,
58,
66,
34,
60,
756,
658,
3256,
374,
6,
31126,
9,
3256,
374,
6,
38638,
358,
501,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
6,
59,
77,
58,
3467,
17602,
8903,
48688,
3256,
374,
6,
59,
32,
58,
3467,
77,
59,
83,
48688,
3256,
60,
198,
220,
220,
220,
329,
279,
287,
10154,
62,
7700,
62,
33279,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
284,
66,
796,
302,
13,
7266,
7,
79,
11,
374,
6,
3256,
284,
66,
8,
198,
220,
220,
220,
1303,
4781,
33793,
602,
290,
3294,
9029,
198,
220,
220,
220,
284,
66,
796,
302,
13,
7266,
7,
81,
6,
58,
3467,
83,
7131,
3467,
83,
48688,
3256,
374,
6,
46083,
284,
66,
8,
198,
220,
220,
220,
1303,
4781,
9178,
3951,
290,
25462,
2272,
198,
220,
220,
220,
284,
66,
796,
302,
13,
7266,
7,
81,
6,
58,
3467,
83,
60,
9,
59,
77,
58,
3467,
83,
60,
9,
59,
77,
9,
3256,
374,
6,
59,
77,
3256,
284,
66,
8,
628,
220,
220,
220,
1303,
611,
262,
3726,
286,
284,
66,
468,
374,
5185,
5470,
874,
198,
220,
220,
220,
1303,
6330,
883,
351,
657,
357,
27218,
481,
307,
26684,
220,
198,
220,
220,
220,
1303,
416,
262,
2251,
2163,
618,
340,
2058,
284,
262,
220,
198,
220,
220,
220,
1303,
3376,
47622,
8,
198,
220,
220,
220,
284,
66,
796,
302,
13,
7266,
7,
81,
6,
685,
87,
8903,
48688,
59,
77,
3256,
81,
6,
657,
59,
77,
3256,
40301,
8,
628,
220,
220,
220,
1303,
751,
281,
2488,
878,
1123,
2443,
1271,
379,
412,
3535,
198,
220,
220,
220,
284,
66,
796,
302,
13,
7266,
7,
81,
6,
357,
59,
67,
10,
19415,
77,
3256,
81,
6,
2488,
59,
16,
59,
77,
3256,
40301,
8,
628,
220,
220,
220,
1303,
20121,
6626,
3951,
357,
68,
13,
70,
13,
883,
543,
836,
470,
220,
198,
220,
220,
220,
1303,
886,
351,
257,
1271,
393,
997,
1691,
475,
423,
379,
198,
220,
220,
220,
1303,
1551,
734,
2456,
8,
198,
220,
220,
220,
284,
66,
796,
302,
13,
7266,
7,
81,
6,
38016,
35,
28988,
357,
59,
35,
10,
58,
61,
87,
8903,
15,
12,
24,
12962,
59,
77,
7,
13,
28988,
357,
59,
67,
10,
19415,
77,
3256,
374,
6,
59,
16,
3467,
17,
3467,
18,
3467,
19,
59,
77,
3256,
284,
66,
8,
628,
220,
220,
220,
1303,
1737,
761,
284,
6654,
50056,
30,
366,
4613,
19990,
628,
220,
220,
220,
26498,
13,
22915,
13,
13564,
7,
40301,
8,
628,
220,
220,
220,
611,
26498,
13,
88,
14057,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
787,
262,
1459,
5072,
262,
5128,
284,
2251,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
6978,
796,
28686,
13,
6978,
13,
15908,
3672,
7,
22046,
13,
22915,
13,
3672,
8,
220,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
3672,
796,
28686,
13,
6978,
13,
12093,
12453,
7,
22046,
13,
22915,
13,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
22915,
13,
19836,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
15414,
796,
1280,
7,
418,
13,
6978,
13,
22179,
7,
3605,
62,
6978,
11,
649,
62,
3672,
828,
705,
81,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
22915,
796,
1280,
7,
10379,
268,
1047,
13,
7753,
7975,
7,
418,
13,
6978,
13,
22179,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
6978,
11,
705,
65,
13276,
74,
62,
6,
1343,
649,
62,
3672,
36911,
705,
86,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
2251,
7,
22046,
8,
628,
220,
220,
220,
1441,
628,
198,
4299,
2251,
7,
22046,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
27592,
262,
826,
5499,
284,
787,
1243,
2251,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
26498,
13,
22915,
13,
13564,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2251,
51,
420,
4863,
8206,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
15414,
13,
961,
22784,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
1837,
41641,
28,
22046,
13,
1837,
41641,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3912,
28,
22046,
13,
33279,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
302,
62,
33152,
28,
2200,
62,
38948,
50,
58,
22046,
13,
260,
62,
33152,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4370,
28,
22046,
13,
19312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
628,
198,
4299,
10385,
7,
22046,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
27592,
262,
826,
5499,
284,
787,
1243,
10385,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
26498,
13,
22915,
13,
13564,
7,
198,
220,
220,
220,
220,
220,
220,
220,
10385,
13940,
41641,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
15414,
13,
961,
22784,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
1837,
41641,
28,
22046,
13,
1837,
41641,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11677,
28,
22046,
13,
17618,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
628,
198,
4299,
537,
72,
33529,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
5660,
262,
275,
13276,
74,
13,
9078,
4226,
13,
198,
220,
220,
220,
770,
17105,
663,
3141,
12,
1370,
7159,
290,
42985,
262,
9167,
5499,
13,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
2896,
500,
3141,
12,
1370,
7159,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1172,
11639,
65,
13276,
74,
3256,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6764,
28,
7061,
6,
64,
4226,
284,
4439,
37124,
1492,
14306,
7061,
11537,
628,
220,
220,
220,
22718,
945,
364,
796,
30751,
13,
2860,
62,
7266,
79,
945,
364,
7,
16794,
11639,
2673,
0,
11537,
198,
220,
220,
220,
1303,
3834,
79,
945,
364,
329,
1123,
3141,
198,
220,
220,
220,
30751,
62,
1102,
1851,
796,
22718,
945,
364,
13,
2860,
62,
48610,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1102,
1851,
1600,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
3803,
257,
44007,
2393,
15582,
393,
8851,
4494,
262,
5468,
4943,
198,
220,
220,
220,
30751,
62,
1102,
1851,
13,
2617,
62,
12286,
82,
7,
20786,
28,
1102,
1851,
8,
198,
220,
220,
220,
1303,
10385,
7159,
198,
220,
220,
220,
30751,
62,
1102,
1851,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
77,
1600,
366,
438,
17618,
1600,
2099,
28,
600,
11,
4277,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
39014,
281,
11677,
284,
477,
2443,
3146,
4943,
628,
220,
220,
220,
30751,
62,
17953,
796,
22718,
945,
364,
13,
2860,
62,
48610,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
17953,
1600,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
17953,
1492,
14306,
422,
257,
8246,
309,
4503,
2393,
4943,
198,
220,
220,
220,
30751,
62,
17953,
13,
2617,
62,
12286,
82,
7,
20786,
28,
17953,
8,
198,
220,
220,
220,
1303,
2251,
7159,
198,
220,
220,
220,
30751,
62,
17953,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
79,
1600,
366,
438,
33279,
1600,
4277,
2625,
7,
30,
47,
27,
7839,
28401,
28988,
31,
7,
30,
47,
27,
7700,
29,
59,
67,
28988,
1600,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
260,
25636,
79,
284,
1100,
262,
5128,
2393,
7268,
1,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30629,
30,
47,
27,
7700,
29,
59,
67,
28988,
290,
357,
30,
47,
27,
7839,
28401,
28988,
2628,
4943,
198,
220,
220,
220,
30751,
62,
17953,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
81,
1600,
366,
438,
260,
12,
33152,
1600,
7747,
28,
4868,
7,
2200,
62,
38948,
50,
828,
4277,
2625,
52,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
18076,
453,
751,
257,
40364,
79,
6056,
284,
11986,
1377,
33279,
4943,
198,
220,
220,
220,
30751,
62,
17953,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
68,
1600,
366,
438,
19312,
1600,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
39014,
257,
40364,
79,
284,
262,
3670,
11,
304,
13,
70,
13,
284,
10829,
3756,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
77,
17024,
25,
374,
6,
61,
58,
59,
67,
59,
8183,
10,
59,
2637,
1600,
4277,
2625,
4943,
198,
220,
220,
220,
1303,
1330,
7159,
198,
220,
220,
220,
30751,
62,
11748,
796,
22718,
945,
364,
13,
2860,
62,
48610,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11748,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
961,
287,
257,
37124,
284,
651,
257,
5210,
309,
4503,
326,
481,
761,
15210,
4943,
198,
220,
220,
220,
30751,
62,
11748,
13,
2617,
62,
12286,
82,
7,
20786,
28,
11748,
5760,
9792,
4503,
8,
198,
220,
220,
220,
30751,
62,
11748,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
12315,
1600,
2244,
2625,
30094,
701,
1258,
742,
1600,
2223,
2625,
8095,
62,
7942,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
38070,
286,
3555,
287,
257,
8246,
309,
4503,
11,
1100,
340,
422,
37124,
351,
279,
67,
701,
1258,
742,
4943,
198,
220,
220,
220,
30751,
62,
11748,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
88,
1600,
366,
438,
88,
14057,
1600,
2223,
2625,
8095,
62,
7942,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
6603,
262,
17392,
275,
13276,
74,
284,
2251,
1231,
18440,
4943,
198,
220,
220,
220,
30751,
62,
11748,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
79,
1600,
366,
438,
33279,
1600,
4277,
2625,
7,
30,
47,
27,
7839,
28401,
28988,
31,
7,
30,
47,
27,
7700,
29,
59,
67,
28988,
1600,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
260,
25636,
79,
284,
1100,
262,
5128,
2393,
7268,
1,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30629,
30,
47,
27,
7700,
29,
59,
67,
28988,
290,
357,
30,
47,
27,
7839,
28401,
28988,
2628,
4943,
198,
220,
220,
220,
30751,
62,
11748,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
81,
1600,
366,
438,
260,
12,
33152,
1600,
7747,
28,
4868,
7,
2200,
62,
38948,
50,
828,
4277,
2625,
52,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
18076,
453,
751,
257,
40364,
79,
6056,
284,
11986,
1377,
33279,
4943,
198,
220,
220,
220,
30751,
62,
11748,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
68,
1600,
366,
438,
19312,
1600,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
39014,
257,
40364,
79,
284,
262,
3670,
11,
304,
13,
70,
13,
284,
10829,
3756,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
77,
17024,
25,
374,
6,
61,
58,
59,
67,
59,
8183,
10,
59,
2637,
1600,
4277,
2625,
4943,
628,
220,
220,
220,
1303,
8774,
7159,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1837,
41641,
1600,
7747,
28,
4868,
7,
33,
42,
33907,
62,
23060,
45,
5603,
55,
828,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
6679,
577,
44007,
5072,
5794,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15414,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
15414,
2393,
1438,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27444,
78,
1600,
2244,
2625,
22915,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
22915,
2393,
1438,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
26498,
13,
15414,
11,
26498,
13,
22915,
796,
1226,
268,
1047,
13,
7753,
9399,
7,
22046,
13,
15414,
11,
26498,
13,
22915,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3551,
2302,
28,
4458,
14116,
11537,
628,
220,
220,
220,
3601,
7203,
65,
13276,
74,
13,
9078,
532,
257,
4226,
284,
18510,
37124,
1492,
14306,
59,
77,
4943,
198,
220,
220,
220,
198,
220,
220,
220,
611,
26498,
13,
20786,
6624,
1330,
5760,
9792,
4503,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
26498,
13,
30094,
701,
1258,
742,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1100,
14171,
796,
705,
26145,
6,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1100,
14171,
796,
705,
81,
6,
628,
220,
220,
220,
351,
1280,
7,
22046,
13,
15414,
11,
1100,
14171,
8,
355,
26498,
13,
15414,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
22046,
13,
22915,
11,
705,
86,
11537,
355,
26498,
13,
22915,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
13,
20786,
7,
22046,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
13872,
4226,
198,
220,
220,
220,
3601,
7203,
59,
77,
10482,
14306,
5201,
2474,
8,
198,
220,
220,
220,
1441,
628,
198,
2,
1057,
4226,
611,
1444,
422,
3141,
1627,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
537,
72,
3419,
198,
220,
220,
220,
5298,
4482,
30337,
3419,
198
] | 2.314805 | 9,193 |
from django.conf.urls import url
from .views import OrganizationDetailView, OrganizationListView
urlpatterns = [
url(r'^(?P<slug>[-\w]+)/$', OrganizationDetailView.as_view(), name='organization_detail'),
url(r'^$', OrganizationListView.as_view(), name='organization_list'),
]
| [
6738,
42625,
14208,
13,
10414,
13,
6371,
82,
1330,
19016,
198,
198,
6738,
764,
33571,
1330,
12275,
11242,
603,
7680,
11,
12275,
8053,
7680,
628,
198,
6371,
33279,
82,
796,
685,
628,
220,
220,
220,
19016,
7,
81,
6,
61,
7,
30,
47,
27,
6649,
1018,
36937,
12,
59,
86,
48688,
20679,
3,
3256,
12275,
11242,
603,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
9971,
1634,
62,
49170,
33809,
628,
220,
220,
220,
19016,
7,
81,
6,
61,
3,
3256,
12275,
8053,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
9971,
1634,
62,
4868,
33809,
198,
198,
60,
198
] | 2.9 | 100 |
# -*- coding: utf-8 -*-
# copyright: sktime developers, BSD-3-Clause License (see LICENSE file)
"""
Base class template for transformers.
class name: BaseTransformer
Covers all types of transformers.
Type and behaviour of transformer is determined by the following tags:
"scitype:transform-input" tag with values "Primitives" or "Series"
this determines expected type of input of transform
if "Primitives", expected inputs X are pd.DataFrame
if "Series", expected inputs X are Series or Panel
Note: placeholder tag for upwards compatibility
currently only "Series" is supported
"scitype:transform-output" tag with values "Primitives", or "Series"
this determines type of output of transform
if "Primitives", output is pd.DataFrame with as many rows as X has instances
i-th instance of X is transformed into i-th row of output
if "Series", output is a Series or Panel, with as many instances as X
i-th instance of X is transformed into i-th instance of output
Series are treated as one-instance-Panels
if Series is input, output is a 1-row pd.DataFrame or a Series
"scitype:instancewise" tag which is boolean
if True, fit/transform is statistically independent by instance
Scitype defining methods:
fitting - fit(self, X, y=None)
transform - transform(self, X, y=None)
fit&transform - fit_transform(self, X, y=None)
updating - update(self, X, y=None)
Inspection methods:
hyper-parameter inspection - get_params()
fitted parameter inspection - get_fitted_params()
State:
fitted model/strategy - by convention, any attributes ending in "_"
fitted state flag - is_fitted (property)
fitted state inspection - check_is_fitted()
"""
__author__ = ["mloning, fkiraly"]
__all__ = [
"BaseTransformer",
"_SeriesToPrimitivesTransformer",
"_SeriesToSeriesTransformer",
"_PanelToTabularTransformer",
"_PanelToPanelTransformer",
]
import warnings
from typing import Union
import numpy as np
import pandas as pd
from sklearn.base import clone
from sktime.base import BaseEstimator
from sktime.datatypes import check_is_mtype, convert_to, mtype, mtype_to_scitype
from sktime.datatypes._series_as_panel import (
convert_Panel_to_Series,
convert_Series_to_Panel,
)
# single/multiple primitives
Primitive = Union[np.integer, int, float, str]
Primitives = np.ndarray
# tabular/cross-sectional data
Tabular = Union[pd.DataFrame, np.ndarray] # 2d arrays
# univariate/multivariate series
UnivariateSeries = Union[pd.Series, np.ndarray]
MultivariateSeries = Union[pd.DataFrame, np.ndarray]
Series = Union[UnivariateSeries, MultivariateSeries]
# panel/longitudinal/series-as-features data
Panel = Union[pd.DataFrame, np.ndarray] # 3d or nested array
def _coerce_to_list(obj):
"""Return [obj] if obj is not a list, otherwise obj."""
if not isinstance(obj, list):
return [obj]
else:
return obj
class BaseTransformer(BaseEstimator):
"""Transformer base class."""
# default tag values - these typically make the "safest" assumption
_tags = {
"scitype:transform-input": "Series",
# what is the scitype of X: Series, or Panel
"scitype:transform-output": "Series",
# what scitype is returned: Primitives, Series, Panel
"scitype:transform-labels": "None",
# what is the scitype of y: None (not needed), Primitives, Series, Panel
"scitype:instancewise": True, # is this an instance-wise transform?
"capability:inverse_transform": False, # can the transformer inverse transform?
"univariate-only": False, # can the transformer handle multivariate X?
"handles-missing-data": False, # can estimator handle missing data?
"X_inner_mtype": "pd.DataFrame", # which mtypes do _fit/_predict support for X?
# this can be a Panel mtype even if transform-input is Series, vectorized
"y_inner_mtype": "None", # which mtypes do _fit/_predict support for y?
"X-y-must-have-same-index": False, # can estimator handle different X/y index?
"requires_y": False, # does y need to be passed in fit?
"enforce_index_type": None, # index type that needs to be enforced in X/y
"fit-in-transform": True, # is fit empty and can be skipped? Yes = True
"transform-returns-same-time-index": False,
# does transform return have the same time index as input X
"skip-inverse-transform": False, # is inverse-transform skipped when called?
}
# allowed mtypes for transformers - Series and Panel
ALLOWED_INPUT_MTYPES = [
"pd.Series",
"pd.DataFrame",
"np.ndarray",
"nested_univ",
"numpy3D",
# "numpyflat",
"pd-multiindex",
# "pd-wide",
# "pd-long",
"df-list",
]
def fit(self, X, y=None, Z=None):
"""Fit transformer to X, optionally to y.
State change:
Changes state to "fitted".
Writes to self:
Sets is_fitted flag to True.
Sets fitted model attributes ending in "_".
Parameters
----------
X : Series or Panel, any supported mtype
Data to fit transform to, of python type as follows:
Series: pd.Series, pd.DataFrame, or np.ndarray (1D or 2D)
Panel: pd.DataFrame with 2-level MultiIndex, list of pd.DataFrame,
nested pd.DataFrame, or pd.DataFrame in long/wide format
subject to sktime mtype format specifications, for further details see
examples/AA_datatypes_and_datasets.ipynb
y : Series or Panel, default=None
Additional data, e.g., labels for transformation
Z : possible alias for X; should not be passed when X is passed
alias Z is deprecated since version 0.10.0 and will be removed in 0.11.0
Returns
-------
self : a fitted instance of the estimator
"""
X = _handle_alias(X, Z)
self._is_fitted = False
# skip everything if fit-in-transform is True
if self.get_tag("fit-in-transform"):
self._is_fitted = True
return self
# input checks and minor coercions on X, y
###########################################
if self.get_tag("requires_y") and y is None:
raise ValueError(f"{self.__class__.__name__} requires `y` in `fit`.")
valid, msg, X_metadata = check_is_mtype(
X, mtype=self.ALLOWED_INPUT_MTYPES, return_metadata=True, var_name="X"
)
if not valid:
raise ValueError(msg)
# checking X
enforce_univariate = self.get_tag("univariate-only")
if enforce_univariate and not X_metadata["is_univariate"]:
raise ValueError("X must be univariate but is not")
# retrieve mtypes/scitypes of all objects
#########################################
X_input_scitype = X_metadata["scitype"]
X_inner_mtype = _coerce_to_list(self.get_tag("X_inner_mtype"))
X_inner_scitypes = mtype_to_scitype(X_inner_mtype, return_unique=True)
# treating Series vs Panel conversion for X
###########################################
# there are three cases to treat:
# 1. if the internal _fit supports X's scitype, move on to mtype conversion
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
# 3. internal only has Series but X is Panel: auto-vectorization over instances
# currently, this is enabled by conversion to df-list mtype
# auto-vectorization is not supported if y is passed
# individual estimators that vectorize over y must implement individually
# 1. nothing to do - simply don't enter any of the ifs below
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
if X_input_scitype == "Series" and "Series" not in X_inner_scitypes:
X = convert_Series_to_Panel(X)
# 3. internal only has Series but X is Panel: loop over instances
elif X_input_scitype == "Panel" and "Panel" not in X_inner_scitypes:
if y is not None and self.get_tag("y_inner_mtype") != "None":
raise ValueError(
f"{type(self).__name__} does not support Panel X if y is not None, "
f"since {type(self).__name__} supports only Series. "
"Auto-vectorization to extend Series X to Panel X can only be "
'carried out if y is None, or "y_inner_mtype" tag is "None". '
"Consider extending _fit and _transform to handle the following "
"input types natively: Panel X and non-None y."
)
X = convert_to(
X,
to_type="df-list",
as_scitype="Panel",
store=self._converter_store_X,
store_behaviour="reset",
)
# this fits one transformer per instance
self.transformers_ = [clone(self).fit(Xi) for Xi in X]
# recurse and leave function - recursion does input checks/conversion
# also set is_fitted flag to True since we leave function here
self._is_fitted = True
return self
X_inner, y_inner = self._convert_X_y(X, y)
# todo: uncomment this once Z is completely gone
# self._fit(X=X_inner, y=y_inner)
# less robust workaround until then
self._fit(X_inner, y_inner)
self._is_fitted = True
return self
def transform(self, X, y=None, Z=None):
"""Transform X and return a transformed version.
State required:
Requires state to be "fitted".
Accesses in self:
Fitted model attributes ending in "_".
self._is_fitted
Parameters
----------
X : Series or Panel, any supported mtype
Data to be transformed, of python type as follows:
Series: pd.Series, pd.DataFrame, or np.ndarray (1D or 2D)
Panel: pd.DataFrame with 2-level MultiIndex, list of pd.DataFrame,
nested pd.DataFrame, or pd.DataFrame in long/wide format
subject to sktime mtype format specifications, for further details see
examples/AA_datatypes_and_datasets.ipynb
y : Series or Panel, default=None
Additional data, e.g., labels for transformation
Z : possible alias for X; should not be passed when X is passed
alias Z is deprecated since version 0.10.0 and will be removed in 0.11.0
Returns
-------
transformed version of X
type depends on type of X and scitype:transform-output tag:
| | `transform` | |
| `X` | `-output` | type of return |
|----------|--------------|------------------------|
| `Series` | `Primitives` | `pd.DataFrame` (1-row) |
| `Panel` | `Primitives` | `pd.DataFrame` |
| `Series` | `Series` | `Series` |
| `Panel` | `Series` | `Panel` |
| `Series` | `Panel` | `Panel` |
instances in return correspond to instances in `X`
combinations not in the table are currently not supported
Explicitly, with examples:
if `X` is `Series` (e.g., `pd.DataFrame`) and `transform-output` is `Series`
then the return is a single `Series` of the same mtype
Example: detrending a single series
if `X` is `Panel` (e.g., `pd-multiindex`) and `transform-output` is `Series`
then the return is `Panel` with same number of instances as `X`
(the transformer is applied to each input Series instance)
Example: all series in the panel are detrended individually
if `X` is `Series` or `Panel` and `transform-output` is `Primitives`
then the return is `pd.DataFrame` with as many rows as instances in `X`
Example: i-th row of the return has mean and variance of the i-th series
if `X` is `Series` and `transform-output` is `Panel`
then the return is a `Panel` object of type `pd-multiindex`
Example: i-th instance of the output is the i-th window running over `X`
"""
X = _handle_alias(X, Z)
# check whether is fitted
self.check_is_fitted()
# input checks and minor coercions on X, y
###########################################
valid, msg, X_metadata = check_is_mtype(
X, mtype=self.ALLOWED_INPUT_MTYPES, return_metadata=True, var_name="X"
)
if not valid:
raise ValueError(msg)
# checking X
enforce_univariate = self.get_tag("univariate-only")
if enforce_univariate and not X_metadata["is_univariate"]:
raise ValueError("X must be univariate but is not")
# retrieve mtypes/scitypes of all objects
#########################################
X_input_mtype = X_metadata["mtype"]
X_input_scitype = X_metadata["scitype"]
X_inner_mtype = _coerce_to_list(self.get_tag("X_inner_mtype"))
X_inner_scitypes = mtype_to_scitype(X_inner_mtype, return_unique=True)
# treating Series vs Panel conversion for X
###########################################
# there are three cases to treat:
# 1. if the internal _fit supports X's scitype, move on to mtype conversion
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
# 3. internal only has Series but X is Panel: loop over instances
# currently this is enabled by conversion to df-list mtype
# and this does not support y (unclear what should happen here)
# 1. nothing to do - simply don't enter any of the ifs below
# the "ifs" for case 2 and 3 below are skipped under the condition
# X_input_scitype in X_inner_scitypes
# case 2 has an "else" which remembers that it wasn't entered
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
if (
X_input_scitype == "Series"
and "Series" not in X_inner_scitypes
and "Panel" in X_inner_scitypes
):
# convert the Series X to a one-element Panel
X = convert_Series_to_Panel(X)
# remember that we converted the Series to a one-element Panel
X_was_Series = True
else:
# remember that we didn't convert a Series to a one-element Panel
X_was_Series = False
# 3. internal only has Series but X is Panel: loop over instances
if (
X_input_scitype == "Panel"
and "Panel" not in X_inner_scitypes
and "Series" in X_inner_scitypes
):
Xt = self._vectorized_transform(X, X_input_mtype, y=y)
return Xt
# convert X/y to supported inner type, if necessary
###################################################
X_inner, y_inner = self._convert_X_y(X, y)
# carry out the transformation
###################################################
# todo: uncomment this once Z is completely gone
# Xt = self._transform(X=X_inner, y=y_inner)
# less robust workaround until then
Xt = self._transform(X_inner, y_inner)
# convert transformed X back to input mtype
###########################################
Xt = self._convert_output(Xt, X_input_mtype, X_was_Series)
return Xt
def fit_transform(self, X, y=None, Z=None):
"""Fit to data, then transform it.
Fits transformer to X and y with optional parameters fit_params
and returns a transformed version of X.
State change:
Changes state to "fitted".
Writes to self:
Sets is_fitted flag to True.
Sets fitted model attributes ending in "_".
Parameters
----------
X : Series or Panel, any supported mtype
Data to be transformed, of python type as follows:
Series: pd.Series, pd.DataFrame, or np.ndarray (1D or 2D)
Panel: pd.DataFrame with 2-level MultiIndex, list of pd.DataFrame,
nested pd.DataFrame, or pd.DataFrame in long/wide format
subject to sktime mtype format specifications, for further details see
examples/AA_datatypes_and_datasets.ipynb
y : Series or Panel, default=None
Additional data, e.g., labels for transformation
Z : possible alias for X; should not be passed when X is passed
alias Z is deprecated since version 0.10.0 and will be removed in 0.11.0
Returns
-------
transformed version of X
type depends on type of X and scitype:transform-output tag:
| `X` | `tf-output` | type of return |
|----------|--------------|------------------------|
| `Series` | `Primitives` | `pd.DataFrame` (1-row) |
| `Panel` | `Primitives` | `pd.DataFrame` |
| `Series` | `Series` | `Series` |
| `Panel` | `Series` | `Panel` |
| `Series` | `Panel` | `Panel` |
instances in return correspond to instances in `X`
combinations not in the table are currently not supported
Explicitly, with examples:
if `X` is `Series` (e.g., `pd.DataFrame`) and `transform-output` is `Series`
then the return is a single `Series` of the same mtype
Example: detrending a single series
if `X` is `Panel` (e.g., `pd-multiindex`) and `transform-output` is `Series`
then the return is `Panel` with same number of instances as `X`
(the transformer is applied to each input Series instance)
Example: all series in the panel are detrended individually
if `X` is `Series` or `Panel` and `transform-output` is `Primitives`
then the return is `pd.DataFrame` with as many rows as instances in `X`
Example: i-th row of the return has mean and variance of the i-th series
if `X` is `Series` and `transform-output` is `Panel`
then the return is a `Panel` object of type `pd-multiindex`
Example: i-th instance of the output is the i-th window running over `X`
"""
X = _handle_alias(X, Z)
# Non-optimized default implementation; override when a better
# method is possible for a given algorithm.
return self.fit(X, y).transform(X, y)
def inverse_transform(self, X, y=None, Z=None):
"""Inverse transform X and return an inverse transformed version.
Currently it is assumed that only transformers with tags
"scitype:transform-input"="Series", "scitype:transform-output"="Series",
have an inverse_transform.
State required:
Requires state to be "fitted".
Accesses in self:
Fitted model attributes ending in "_".
self._is_fitted
Parameters
----------
X : Series or Panel, any supported mtype
Data to be inverse transformed, of python type as follows:
Series: pd.Series, pd.DataFrame, or np.ndarray (1D or 2D)
Panel: pd.DataFrame with 2-level MultiIndex, list of pd.DataFrame,
nested pd.DataFrame, or pd.DataFrame in long/wide format
subject to sktime mtype format specifications, for further details see
examples/AA_datatypes_and_datasets.ipynb
y : Series or Panel, default=None
Additional data, e.g., labels for transformation
Z : possible alias for X; should not be passed when X is passed
alias Z is deprecated since version 0.10.0 and will be removed in 0.11.0
Returns
-------
inverse transformed version of X
of the same type as X, and conforming to mtype format specifications
"""
if not self.get_tag("capability:inverse_transform"):
raise NotImplementedError(
f"{type(self)} does not implement inverse_transform"
)
X = _handle_alias(X, Z)
# check whether is fitted
self.check_is_fitted()
# input checks and minor coercions on X, y
###########################################
valid, msg, X_metadata = check_is_mtype(
X, mtype=self.ALLOWED_INPUT_MTYPES, return_metadata=True, var_name="X"
)
if not valid:
raise ValueError(msg)
# checking X
enforce_univariate = self.get_tag("univariate-only")
if enforce_univariate and not X_metadata["is_univariate"]:
raise ValueError("X must be univariate but is not")
# retrieve mtypes/scitypes of all objects
#########################################
X_input_mtype = X_metadata["mtype"]
X_input_scitype = X_metadata["scitype"]
X_inner_mtype = _coerce_to_list(self.get_tag("X_inner_mtype"))
X_inner_scitypes = mtype_to_scitype(X_inner_mtype, return_unique=True)
# treating Series vs Panel conversion for X
###########################################
# there are three cases to treat:
# 1. if the internal _fit supports X's scitype, move on to mtype conversion
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
# 3. internal only has Series but X is Panel: loop over instances
# currently this is enabled by conversion to df-list mtype
# and this does not support y (unclear what should happen here)
# 1. nothing to do - simply don't enter any of the ifs below
# the "ifs" for case 2 and 3 below are skipped under the condition
# X_input_scitype in X_inner_scitypes
# case 2 has an "else" which remembers that it wasn't entered
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
if (
X_input_scitype == "Series"
and "Series" not in X_inner_scitypes
and "Panel" in X_inner_scitypes
):
# convert the Series X to a one-element Panel
X = convert_Series_to_Panel(X)
# remember that we converted the Series to a one-element Panel
X_was_Series = True
else:
# remember that we didn't convert a Series to a one-element Panel
X_was_Series = False
# 3. internal only has Series but X is Panel: loop over instances
if (
X_input_scitype == "Panel"
and "Panel" not in X_inner_scitypes
and "Series" in X_inner_scitypes
):
Xt = self._vectorized_transform(X, X_input_mtype, y=y, inverse=True)
return Xt
# convert X/y to supported inner type, if necessary
###################################################
X_inner, y_inner = self._convert_X_y(X, y)
# carry out the transformation
###################################################
# todo: uncomment this once Z is completely gone
# Xt = self._transform(X=X_inner, y=y_inner)
# less robust workaround until then
Xt = self._inverse_transform(X_inner, y_inner)
# convert transformed X back to input mtype
###########################################
Xt = self._convert_output(Xt, X_input_mtype, X_was_Series, inverse=True)
return Xt
def update(self, X, y=None, Z=None, update_params=True):
"""Update transformer with X, optionally y.
State required:
Requires state to be "fitted".
Accesses in self:
Fitted model attributes ending in "_".
self._is_fitted
Writes to self:
May update fitted model attributes ending in "_".
Parameters
----------
X : Series or Panel, any supported mtype
Data to fit transform to, of python type as follows:
Series: pd.Series, pd.DataFrame, or np.ndarray (1D or 2D)
Panel: pd.DataFrame with 2-level MultiIndex, list of pd.DataFrame,
nested pd.DataFrame, or pd.DataFrame in long/wide format
subject to sktime mtype format specifications, for further details see
examples/AA_datatypes_and_datasets.ipynb
y : Series or Panel, default=None
Additional data, e.g., labels for transformation
Z : possible alias for X; should not be passed when X is passed
alias Z is deprecated since version 0.10.0 and will be removed in 0.11.0
update_params : bool, default=True
whether the model is updated. Yes if true, if false, simply skips call.
argument exists for compatibility with forecasting module.
Returns
-------
self : a fitted instance of the estimator
"""
X = _handle_alias(X, Z)
# skip everything if update_params is False
if not update_params:
return self
# skip everything if fit-in-transform is True
if self.get_tag("fit-in-transform"):
return self
# input checks and minor coercions on X, y
###########################################
valid, msg, X_metadata = check_is_mtype(
X, mtype=self.ALLOWED_INPUT_MTYPES, return_metadata=True, var_name="X"
)
if not valid:
raise ValueError(msg)
# checking X
enforce_univariate = self.get_tag("univariate-only")
if enforce_univariate and not X_metadata["is_univariate"]:
raise ValueError("X must be univariate but is not")
# retrieve mtypes/scitypes of all objects
#########################################
X_input_scitype = X_metadata["scitype"]
X_inner_mtype = _coerce_to_list(self.get_tag("X_inner_mtype"))
X_inner_scitypes = mtype_to_scitype(X_inner_mtype, return_unique=True)
# treating Series vs Panel conversion for X
###########################################
# there are three cases to treat:
# 1. if the internal _fit supports X's scitype, move on to mtype conversion
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
# 3. internal only has Series but X is Panel: auto-vectorization over instances
# currently, this is enabled by conversion to df-list mtype
# auto-vectorization is not supported if y is passed
# individual estimators that vectorize over y must implement individually
# 1. nothing to do - simply don't enter any of the ifs below
# 2. internal only has Panel but X is Series: consider X as one-instance Panel
if X_input_scitype == "Series" and "Series" not in X_inner_scitypes:
X = convert_Series_to_Panel(X)
# 3. internal only has Series but X is Panel: loop over instances
elif X_input_scitype == "Panel" and "Panel" not in X_inner_scitypes:
if y is not None and self.get_tag("y_inner_mtype") != "None":
raise ValueError(
f"{type(self).__name__} does not support Panel X if y is not None, "
f"since {type(self).__name__} supports only Series. "
"Auto-vectorization to extend Series X to Panel X can only be "
'carried out if y is None, or "y_inner_mtype" tag is "None". '
"Consider extending _fit and _transform to handle the following "
"input types natively: Panel X and non-None y."
)
X = convert_to(
X,
to_type="df-list",
as_scitype="Panel",
store=self._converter_store_X,
store_behaviour="reset",
)
# this fits one transformer per instance
self.transformers_ = [clone(self).fit(Xi) for Xi in X]
# recurse and leave function - recursion does input checks/conversion
# also set is_fitted flag to True since we leave function here
self._is_fitted = True
return self
X_inner, y_inner = self._convert_X_y(X, y)
# todo: uncomment this once Z is completely gone
# self._update(X=X_inner, y=y_inner)
# less robust workaround until then
self._update(X_inner, y_inner)
return self
def _vectorized_transform(self, X, X_input_mtype=None, y=None, inverse=False):
"""Vectorized application of transform or inverse, and convert back."""
if X_input_mtype is None:
X_input_mtype = mtype(X, as_scitype=["Series", "Panel"])
if y is not None and self.get_tag("y_inner_mtype") != "None":
raise ValueError(
f"{type(self).__name__} does not support Panel X if y is not None, "
f"since {type(self).__name__} supports only Series. "
"Auto-vectorization to extend Series X to Panel X can only be "
'carried out if y is None, or "y_inner_mtype" tag is "None". '
"Consider extending _fit and _transform to handle the following "
"input types natively: Panel X and non-None y."
)
X = convert_to(
X,
to_type="df-list",
as_scitype="Panel",
store=self._converter_store_X,
store_behaviour="reset",
)
# depending on whether fitting happens, apply fitted or unfitted instances
if not self.get_tag("fit-in-transform"):
# these are the transformers-per-instance, fitted in fit
transformers = self.transformers_
if len(transformers) != len(X):
raise RuntimeError(
"found different number of instances in transform than in fit. "
f"number of instances seen in fit: {len(transformers)}; "
f"number of instances seen in transform: {len(X)}"
)
if inverse:
Xt = [transformers[i].inverse_transform(X[i]) for i in range(len(X))]
else:
Xt = [transformers[i].transform(X[i]) for i in range(len(X))]
# now we have a list of transformed instances
else:
# if no fitting happens, just apply transform multiple times
if inverse:
Xt = [self.inverse_transform(X[i]) for i in range(len(X))]
else:
Xt = [self.transform(X[i]) for i in range(len(X))]
# convert to expected output format
###################################
if inverse:
output_scitype = self.get_tag("scitype:transform-input")
else:
output_scitype = self.get_tag("scitype:transform-output")
# if the output is Series, Xt is a Panel and we convert back
if output_scitype == "Series":
Xt = convert_to(
Xt,
to_type=X_input_mtype,
as_scitype="Panel",
store=self._converter_store_X,
store_behaviour="freeze",
)
# if the output is Primitives, we have a list of one-row dataframes
# we concatenate those and overwrite the index with that of X
elif output_scitype == "Primitives":
Xt = pd.concat(Xt)
Xt = Xt.reset_index(drop=True)
return Xt
def _convert_X_y(self, X, y):
"""Convert X, y to inner type."""
X_inner_mtype = _coerce_to_list(self.get_tag("X_inner_mtype"))
X_inner_scitypes = mtype_to_scitype(X_inner_mtype, return_unique=True)
y_inner_mtype = _coerce_to_list(self.get_tag("y_inner_mtype"))
X_mtype = mtype(X, as_scitype=["Series", "Panel"])
X_scitype = mtype_to_scitype(X_mtype)
# for debugging, exception if the conversion fails (this should never happen)
if X_scitype not in X_inner_scitypes:
raise RuntimeError("conversion of X to X_inner unsuccessful, unexpected")
# convert X/y to supported inner type, if necessary
###################################################
# subset to the mtypes that are of the same scitype as X/y
X_inner_mtype = [
mt for mt in X_inner_mtype if mtype_to_scitype(mt) == X_scitype
]
# convert X and y to a supported internal type
# if X/y type is already supported, no conversion takes place
X_inner = convert_to(
X,
to_type=X_inner_mtype,
as_scitype=X_scitype,
store=self._converter_store_X,
store_behaviour="reset",
)
if y_inner_mtype != ["None"] and y is not None:
if X_scitype == "Series":
# y_possible_scitypes = ["Series"]
y_possible_scitypes = "Series"
elif X_scitype == "Panel":
# todo: change this back to Panel/Table once
# polymorphic convert_to is merged
# y_possible_scitypes = ["Panel", "Table"]
# y_possible_scitypes = ["Series", "Panel"]
y_possible_scitypes = "Table"
y_mtype = mtype(y, as_scitype=y_possible_scitypes)
y_scitype = mtype_to_scitype(y_mtype)
y_inner_mtype = [
mt for mt in y_inner_mtype if mtype_to_scitype(mt) == y_scitype
]
y_inner = convert_to(
y,
to_type=y_inner_mtype,
as_scitype=y_scitype,
)
else:
y_inner = None
return X_inner, y_inner
def _convert_output(self, X, X_input_mtype=None, X_was_Series=False, inverse=False):
"""Convert transform output to expected format."""
Xt = X
X_input_scitype = mtype_to_scitype(X_input_mtype)
if inverse:
# the output of inverse transform is equal to input of transform
output_scitype = self.get_tag("scitype:transform-input")
else:
output_scitype = self.get_tag("scitype:transform-output")
# if we converted Series to "one-instance-Panel", revert that
if X_was_Series and output_scitype == "Series":
Xt = convert_to(
Xt, to_type=["pd-multiindex", "numpy3D", "df-list"], as_scitype="Panel"
)
Xt = convert_Panel_to_Series(Xt)
if output_scitype == "Series":
# output mtype is input mtype
X_output_mtype = X_input_mtype
# exception to this: if the transformer outputs multivariate series,
# we cannot convert back to pd.Series, do pd.DataFrame instead then
# this happens only for Series, not Panel
if X_input_scitype == "Series":
_, _, metadata = check_is_mtype(
Xt,
["pd.DataFrame", "pd.Series", "np.ndarray"],
return_metadata=True,
)
if not metadata["is_univariate"] and X_input_mtype == "pd.Series":
X_output_mtype = "pd.DataFrame"
Xt = convert_to(
Xt,
to_type=X_output_mtype,
as_scitype=X_input_scitype,
store=self._converter_store_X,
store_behaviour="freeze",
)
elif output_scitype == "Primitives":
# we "abuse" the Series converter to ensure df output
# & reset index to have integers for instances
if isinstance(Xt, (pd.DataFrame, pd.Series)):
Xt = Xt.reset_index(drop=True)
Xt = convert_to(
Xt,
to_type="pd.DataFrame",
as_scitype="Series",
# no converter store since this is not a "1:1 back-conversion"
)
# else output_scitype is "Panel" and no need for conversion
return Xt
def _fit(self, X, y=None):
"""Fit transformer to X and y.
private _fit containing the core logic, called from fit
Parameters
----------
X : Series or Panel of mtype X_inner_mtype
if X_inner_mtype is list, _fit must support all types in it
Data to fit transform to
y : Series or Panel of mtype y_inner_mtype, default=None
Additional data, e.g., labels for tarnsformation
Returns
-------
self: a fitted instance of the estimator
See extension_templates/transformer.py for implementation details.
"""
# default fit is "no fitting happens"
return self
def _transform(self, X, y=None):
"""Transform X and return a transformed version.
private _transform containing the core logic, called from transform
Parameters
----------
X : Series or Panel of mtype X_inner_mtype
if X_inner_mtype is list, _transform must support all types in it
Data to be transformed
y : Series or Panel, default=None
Additional data, e.g., labels for transformation
Returns
-------
transformed version of X
type depends on type of X and scitype:transform-output tag:
| | `transform` | |
| `X` | `-output` | type of return |
|----------|--------------|------------------------|
| `Series` | `Primitives` | `pd.DataFrame` (1-row) |
| `Panel` | `Primitives` | `pd.DataFrame` |
| `Series` | `Series` | `Series` |
| `Panel` | `Series` | `Panel` |
| `Series` | `Panel` | `Panel` |
instances in return correspond to instances in `X`
combinations not in the table are currently not supported
See extension_templates/transformer.py for implementation details.
"""
raise NotImplementedError("abstract method")
def _inverse_transform(self, X, y=None):
"""Inverse transform X and return an inverse transformed version.
private _inverse_transform containing core logic, called from inverse_transform
Parameters
----------
X : Series or Panel of mtype X_inner_mtype
if X_inner_mtype is list, _inverse_transform must support all types in it
Data to be transformed
y : Series or Panel, default=None
Additional data, e.g., labels for transformation
Returns
-------
inverse transformed version of X
of the same type as X, and conforming to mtype format specifications
See extension_templates/transformer.py for implementation details.
"""
raise NotImplementedError("abstract method")
def _update(self, X, y=None):
"""Update transformer with X and y.
private _update containing the core logic, called from update
Parameters
----------
X : Series or Panel of mtype X_inner_mtype
if X_inner_mtype is list, _update must support all types in it
Data to update transformer with
y : Series or Panel of mtype y_inner_mtype, default=None
Additional data, e.g., labels for tarnsformation
Returns
-------
self: a fitted instance of the estimator
See extension_templates/transformer.py for implementation details.
"""
# standard behaviour: no update takes place, new data is ignored
return self
def _handle_alias(X, Z):
"""Handle Z as an alias for X, return X/Z.
Parameters
----------
X: any object
Z: any object
Returns
-------
X if Z is None, Z if X is None
Raises
------
ValueError both X and Z are not None
"""
if Z is None:
return X
elif X is None:
msg = (
"argument Z will in transformers is deprecated since version 0.10.0 "
"and will be removed in version 0.11.0"
)
warnings.warn(msg, category=DeprecationWarning)
return Z
else:
raise ValueError("X and Z are aliases, at most one of them should be passed")
class _SeriesToPrimitivesTransformer(BaseTransformer):
"""Transformer base class for series to primitive(s) transforms."""
# class is temporary for downwards compatibility
# default tag values for "Series-to-Primitives"
_tags = {
"scitype:transform-input": "Series",
# what is the scitype of X: Series, or Panel
"scitype:transform-output": "Primitives",
# what scitype is returned: Primitives, Series, Panel
"scitype:instancewise": True, # is this an instance-wise transform?
"X_inner_mtype": "pd.Series", # which mtypes do _fit/_predict support for X?
"y_inner_mtype": "pd.Series", # which mtypes do _fit/_predict support for X?
}
class _SeriesToSeriesTransformer(BaseTransformer):
"""Transformer base class for series to series transforms."""
# class is temporary for downwards compatibility
# default tag values for "Series-to-Series"
_tags = {
"scitype:transform-input": "Series",
# what is the scitype of X: Series, or Panel
"scitype:transform-output": "Series",
# what scitype is returned: Primitives, Series, Panel
"scitype:instancewise": True, # is this an instance-wise transform?
"X_inner_mtype": "pd.Series", # which mtypes do _fit/_predict support for X?
"y_inner_mtype": "pd.Series", # which mtypes do _fit/_predict support for X?
}
class _PanelToTabularTransformer(BaseTransformer):
"""Transformer base class for panel to tabular transforms."""
# class is temporary for downwards compatibility
# default tag values for "Panel-to-Tabular"
_tags = {
"scitype:transform-input": "Series",
# what is the scitype of X: Series, or Panel
"scitype:transform-output": "Primitives",
# what is the scitype of y: None (not needed), Primitives, Series, Panel
"scitype:instancewise": False, # is this an instance-wise transform?
"X_inner_mtype": "nested_univ", # which mtypes do _fit/_predict support for X?
"y_inner_mtype": "pd.Series", # which mtypes do _fit/_predict support for X?
}
class _PanelToPanelTransformer(BaseTransformer):
"""Transformer base class for panel to panel transforms."""
# class is temporary for downwards compatibility
# default tag values for "Panel-to-Panel"
_tags = {
"scitype:transform-input": "Series",
# what is the scitype of X: Series, or Panel
"scitype:transform-output": "Series",
# what scitype is returned: Primitives, Series, Panel
"scitype:instancewise": False, # is this an instance-wise transform?
"X_inner_mtype": "nested_univ", # which mtypes do _fit/_predict support for X?
"y_inner_mtype": "pd.Series", # which mtypes do _fit/_predict support for X?
}
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
6634,
25,
1341,
2435,
6505,
11,
347,
10305,
12,
18,
12,
2601,
682,
13789,
357,
3826,
38559,
24290,
2393,
8,
198,
37811,
198,
14881,
1398,
11055,
329,
6121,
364,
13,
628,
220,
220,
220,
1398,
1438,
25,
7308,
8291,
16354,
198,
198,
7222,
690,
477,
3858,
286,
6121,
364,
13,
198,
6030,
290,
9172,
286,
47385,
318,
5295,
416,
262,
1708,
15940,
25,
198,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
15414,
1,
7621,
351,
3815,
366,
23828,
20288,
1,
393,
366,
27996,
1,
198,
220,
220,
220,
220,
220,
220,
220,
428,
15947,
2938,
2099,
286,
5128,
286,
6121,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
23828,
20288,
1600,
2938,
17311,
1395,
389,
279,
67,
13,
6601,
19778,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
27996,
1600,
2938,
17311,
1395,
389,
7171,
393,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
5740,
25,
46076,
7621,
329,
21032,
17764,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3058,
691,
366,
27996,
1,
318,
4855,
198,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
22915,
1,
7621,
351,
3815,
366,
23828,
20288,
1600,
393,
366,
27996,
1,
198,
220,
220,
220,
220,
220,
220,
220,
428,
15947,
2099,
286,
5072,
286,
6121,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
23828,
20288,
1600,
5072,
318,
279,
67,
13,
6601,
19778,
351,
355,
867,
15274,
355,
1395,
468,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
12,
400,
4554,
286,
1395,
318,
14434,
656,
1312,
12,
400,
5752,
286,
5072,
198,
220,
220,
220,
220,
220,
220,
220,
611,
366,
27996,
1600,
5072,
318,
257,
7171,
393,
18810,
11,
351,
355,
867,
10245,
355,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
12,
400,
4554,
286,
1395,
318,
14434,
656,
1312,
12,
400,
4554,
286,
5072,
198,
220,
220,
220,
220,
220,
220,
220,
7171,
389,
5716,
355,
530,
12,
39098,
12,
15730,
1424,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7171,
318,
5128,
11,
5072,
318,
257,
352,
12,
808,
279,
67,
13,
6601,
19778,
393,
257,
7171,
198,
220,
220,
220,
366,
1416,
414,
431,
25,
39098,
3083,
1,
7621,
543,
318,
25131,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6407,
11,
4197,
14,
35636,
318,
19941,
4795,
416,
4554,
198,
198,
3351,
414,
431,
16215,
5050,
25,
198,
220,
220,
220,
15830,
220,
220,
220,
220,
220,
220,
220,
220,
532,
4197,
7,
944,
11,
1395,
11,
331,
28,
14202,
8,
198,
220,
220,
220,
6121,
220,
220,
220,
220,
220,
220,
532,
6121,
7,
944,
11,
1395,
11,
331,
28,
14202,
8,
198,
220,
220,
220,
4197,
5,
35636,
220,
220,
532,
4197,
62,
35636,
7,
944,
11,
1395,
11,
331,
28,
14202,
8,
198,
220,
220,
220,
19698,
220,
220,
220,
220,
220,
220,
220,
532,
4296,
7,
944,
11,
1395,
11,
331,
28,
14202,
8,
198,
198,
818,
31308,
5050,
25,
198,
220,
220,
220,
8718,
12,
17143,
2357,
15210,
220,
532,
651,
62,
37266,
3419,
198,
220,
220,
220,
18235,
11507,
15210,
532,
651,
62,
38631,
62,
37266,
3419,
198,
198,
9012,
25,
198,
220,
220,
220,
18235,
2746,
14,
2536,
4338,
220,
220,
532,
416,
9831,
11,
597,
12608,
7464,
287,
45434,
1,
198,
220,
220,
220,
18235,
1181,
6056,
220,
220,
220,
220,
220,
220,
532,
318,
62,
38631,
357,
26745,
8,
198,
220,
220,
220,
18235,
1181,
15210,
532,
2198,
62,
271,
62,
38631,
3419,
198,
37811,
198,
198,
834,
9800,
834,
796,
14631,
4029,
12484,
11,
277,
74,
343,
3400,
8973,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
14881,
8291,
16354,
1600,
198,
220,
220,
220,
45434,
27996,
2514,
23828,
20288,
8291,
16354,
1600,
198,
220,
220,
220,
45434,
27996,
2514,
27996,
8291,
16354,
1600,
198,
220,
220,
220,
45434,
26639,
2514,
33349,
934,
8291,
16354,
1600,
198,
220,
220,
220,
45434,
26639,
2514,
26639,
8291,
16354,
1600,
198,
60,
198,
198,
11748,
14601,
198,
6738,
19720,
1330,
4479,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
1341,
35720,
13,
8692,
1330,
17271,
198,
198,
6738,
1341,
2435,
13,
8692,
1330,
7308,
22362,
320,
1352,
198,
6738,
1341,
2435,
13,
19608,
265,
9497,
1330,
2198,
62,
271,
62,
76,
4906,
11,
10385,
62,
1462,
11,
285,
4906,
11,
285,
4906,
62,
1462,
62,
1416,
414,
431,
198,
6738,
1341,
2435,
13,
19608,
265,
9497,
13557,
25076,
62,
292,
62,
35330,
1330,
357,
198,
220,
220,
220,
10385,
62,
26639,
62,
1462,
62,
27996,
11,
198,
220,
220,
220,
10385,
62,
27996,
62,
1462,
62,
26639,
11,
198,
8,
198,
198,
2,
2060,
14,
48101,
2684,
20288,
198,
23828,
1800,
796,
4479,
58,
37659,
13,
41433,
11,
493,
11,
12178,
11,
965,
60,
198,
23828,
20288,
796,
45941,
13,
358,
18747,
198,
198,
2,
7400,
934,
14,
19692,
12,
44330,
1366,
198,
33349,
934,
796,
4479,
58,
30094,
13,
6601,
19778,
11,
45941,
13,
358,
18747,
60,
220,
1303,
362,
67,
26515,
198,
198,
2,
555,
42524,
14,
16680,
42524,
2168,
198,
3118,
42524,
27996,
796,
4479,
58,
30094,
13,
27996,
11,
45941,
13,
358,
18747,
60,
198,
15205,
42524,
27996,
796,
4479,
58,
30094,
13,
6601,
19778,
11,
45941,
13,
358,
18747,
60,
198,
27996,
796,
4479,
58,
3118,
42524,
27996,
11,
7854,
42524,
27996,
60,
198,
198,
2,
6103,
14,
6511,
29121,
14,
25076,
12,
292,
12,
40890,
1366,
198,
26639,
796,
4479,
58,
30094,
13,
6601,
19778,
11,
45941,
13,
358,
18747,
60,
220,
1303,
513,
67,
393,
28376,
7177,
628,
198,
4299,
4808,
1073,
263,
344,
62,
1462,
62,
4868,
7,
26801,
2599,
198,
220,
220,
220,
37227,
13615,
685,
26801,
60,
611,
26181,
318,
407,
257,
1351,
11,
4306,
26181,
526,
15931,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
26801,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
26801,
60,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
26181,
628,
198,
4871,
7308,
8291,
16354,
7,
14881,
22362,
320,
1352,
2599,
198,
220,
220,
220,
37227,
8291,
16354,
2779,
1398,
526,
15931,
628,
220,
220,
220,
1303,
4277,
7621,
3815,
532,
777,
6032,
787,
262,
366,
49585,
395,
1,
13196,
198,
220,
220,
220,
4808,
31499,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
15414,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
318,
262,
629,
414,
431,
286,
1395,
25,
7171,
11,
393,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
22915,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
629,
414,
431,
318,
4504,
25,
11460,
20288,
11,
7171,
11,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
23912,
1424,
1298,
366,
14202,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
318,
262,
629,
414,
431,
286,
331,
25,
6045,
357,
1662,
2622,
828,
11460,
20288,
11,
7171,
11,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
39098,
3083,
1298,
6407,
11,
220,
1303,
318,
428,
281,
4554,
12,
3083,
6121,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11128,
1799,
25,
259,
4399,
62,
35636,
1298,
10352,
11,
220,
1303,
460,
262,
47385,
34062,
6121,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
403,
42524,
12,
8807,
1298,
10352,
11,
220,
1303,
460,
262,
47385,
5412,
1963,
42524,
1395,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4993,
829,
12,
45688,
12,
7890,
1298,
10352,
11,
220,
1303,
460,
3959,
1352,
5412,
4814,
1366,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
55,
62,
5083,
62,
76,
4906,
1298,
366,
30094,
13,
6601,
19778,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
428,
460,
307,
257,
18810,
285,
4906,
772,
611,
6121,
12,
15414,
318,
7171,
11,
15879,
1143,
198,
220,
220,
220,
220,
220,
220,
220,
366,
88,
62,
5083,
62,
76,
4906,
1298,
366,
14202,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
331,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
55,
12,
88,
12,
27238,
12,
14150,
12,
31642,
12,
9630,
1298,
10352,
11,
220,
1303,
460,
3959,
1352,
5412,
1180,
1395,
14,
88,
6376,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
47911,
62,
88,
1298,
10352,
11,
220,
1303,
857,
331,
761,
284,
307,
3804,
287,
4197,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
268,
3174,
62,
9630,
62,
4906,
1298,
6045,
11,
220,
1303,
6376,
2099,
326,
2476,
284,
307,
20326,
287,
1395,
14,
88,
198,
220,
220,
220,
220,
220,
220,
220,
366,
11147,
12,
259,
12,
35636,
1298,
6407,
11,
220,
1303,
318,
4197,
6565,
290,
460,
307,
26684,
30,
3363,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
366,
35636,
12,
7783,
82,
12,
31642,
12,
2435,
12,
9630,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
857,
6121,
1441,
423,
262,
976,
640,
6376,
355,
5128,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
366,
48267,
12,
259,
4399,
12,
35636,
1298,
10352,
11,
220,
1303,
318,
34062,
12,
35636,
26684,
618,
1444,
30,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
1303,
3142,
285,
19199,
329,
6121,
364,
532,
7171,
290,
18810,
198,
220,
220,
220,
11096,
3913,
1961,
62,
1268,
30076,
62,
44,
9936,
47,
1546,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
30094,
13,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
30094,
13,
6601,
19778,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
37659,
13,
358,
18747,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
77,
7287,
62,
403,
452,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
77,
32152,
18,
35,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
77,
32152,
38568,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
30094,
12,
41684,
9630,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
30094,
12,
4421,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
30094,
12,
6511,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7568,
12,
4868,
1600,
198,
220,
220,
220,
2361,
628,
220,
220,
220,
825,
4197,
7,
944,
11,
1395,
11,
331,
28,
14202,
11,
1168,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
31805,
47385,
284,
1395,
11,
42976,
284,
331,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1812,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19179,
1181,
284,
366,
38631,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
12257,
274,
284,
2116,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21394,
318,
62,
38631,
6056,
284,
6407,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21394,
18235,
2746,
12608,
7464,
287,
45434,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
11,
597,
4855,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
4197,
6121,
284,
11,
286,
21015,
2099,
355,
5679,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7171,
25,
279,
67,
13,
27996,
11,
279,
67,
13,
6601,
19778,
11,
393,
45941,
13,
358,
18747,
357,
16,
35,
393,
362,
35,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18810,
25,
279,
67,
13,
6601,
19778,
351,
362,
12,
5715,
15237,
15732,
11,
1351,
286,
279,
67,
13,
6601,
19778,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28376,
279,
67,
13,
6601,
19778,
11,
393,
279,
67,
13,
6601,
19778,
287,
890,
14,
4421,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2426,
284,
1341,
2435,
285,
4906,
5794,
20640,
11,
329,
2252,
3307,
766,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6096,
14,
3838,
62,
19608,
265,
9497,
62,
392,
62,
19608,
292,
1039,
13,
541,
2047,
65,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
13389,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
1058,
1744,
16144,
329,
1395,
26,
815,
407,
307,
3804,
618,
1395,
318,
3804,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16144,
1168,
318,
39224,
1201,
2196,
657,
13,
940,
13,
15,
290,
481,
307,
4615,
287,
657,
13,
1157,
13,
15,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
1058,
257,
18235,
4554,
286,
262,
3959,
1352,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
4808,
28144,
62,
26011,
7,
55,
11,
1168,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
796,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14267,
2279,
611,
4197,
12,
259,
12,
35636,
318,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
1136,
62,
12985,
7203,
11147,
12,
259,
12,
35636,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5128,
8794,
290,
4159,
24029,
507,
319,
1395,
11,
331,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
1136,
62,
12985,
7203,
47911,
62,
88,
4943,
290,
331,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
69,
1,
90,
944,
13,
834,
4871,
834,
13,
834,
3672,
834,
92,
4433,
4600,
88,
63,
287,
4600,
11147,
63,
19570,
628,
220,
220,
220,
220,
220,
220,
220,
4938,
11,
31456,
11,
1395,
62,
38993,
796,
2198,
62,
271,
62,
76,
4906,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
285,
4906,
28,
944,
13,
7036,
3913,
1961,
62,
1268,
30076,
62,
44,
9936,
47,
1546,
11,
1441,
62,
38993,
28,
17821,
11,
1401,
62,
3672,
2625,
55,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4938,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
19662,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10627,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
4605,
62,
403,
42524,
796,
2116,
13,
1136,
62,
12985,
7203,
403,
42524,
12,
8807,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4605,
62,
403,
42524,
290,
407,
1395,
62,
38993,
14692,
271,
62,
403,
42524,
1,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
55,
1276,
307,
555,
42524,
475,
318,
407,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
19818,
285,
19199,
14,
1416,
414,
12272,
286,
477,
5563,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
796,
1395,
62,
38993,
14692,
1416,
414,
431,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
76,
4906,
796,
4808,
1073,
263,
344,
62,
1462,
62,
4868,
7,
944,
13,
1136,
62,
12985,
7203,
55,
62,
5083,
62,
76,
4906,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
1416,
414,
12272,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
55,
62,
5083,
62,
76,
4906,
11,
1441,
62,
34642,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13622,
7171,
3691,
18810,
11315,
329,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
612,
389,
1115,
2663,
284,
2190,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
611,
262,
5387,
4808,
11147,
6971,
1395,
338,
629,
414,
431,
11,
1445,
319,
284,
285,
4906,
11315,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
8295,
12,
31364,
1634,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
3058,
11,
428,
318,
9343,
416,
11315,
284,
47764,
12,
4868,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
8295,
12,
31364,
1634,
318,
407,
4855,
611,
331,
318,
3804,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
1981,
3959,
2024,
326,
15879,
1096,
625,
331,
1276,
3494,
17033,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
2147,
284,
466,
532,
2391,
836,
470,
3802,
597,
286,
262,
611,
82,
2174,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
27996,
1,
290,
366,
27996,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
10385,
62,
27996,
62,
1462,
62,
26639,
7,
55,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
9052,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
26639,
1,
290,
366,
26639,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
331,
318,
407,
6045,
290,
2116,
13,
1136,
62,
12985,
7203,
88,
62,
5083,
62,
76,
4906,
4943,
14512,
366,
14202,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
90,
4906,
7,
944,
737,
834,
3672,
834,
92,
857,
407,
1104,
18810,
1395,
611,
331,
318,
407,
6045,
11,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
20777,
1391,
4906,
7,
944,
737,
834,
3672,
834,
92,
6971,
691,
7171,
13,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27722,
12,
31364,
1634,
284,
9117,
7171,
1395,
284,
18810,
1395,
460,
691,
307,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7718,
2228,
503,
611,
331,
318,
6045,
11,
393,
366,
88,
62,
5083,
62,
76,
4906,
1,
7621,
318,
366,
14202,
1911,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19626,
16610,
4808,
11147,
290,
4808,
35636,
284,
5412,
262,
1708,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15414,
3858,
6868,
306,
25,
18810,
1395,
290,
1729,
12,
14202,
331,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
2625,
7568,
12,
4868,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
2625,
26639,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
28,
944,
13557,
1102,
332,
353,
62,
8095,
62,
55,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
62,
20709,
37716,
2625,
42503,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
428,
11414,
530,
47385,
583,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
35636,
364,
62,
796,
685,
21018,
7,
944,
737,
11147,
7,
42528,
8,
329,
21313,
287,
1395,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
664,
12321,
290,
2666,
2163,
532,
664,
24197,
857,
5128,
8794,
14,
1102,
9641,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
635,
900,
318,
62,
38631,
6056,
284,
6407,
1201,
356,
2666,
2163,
994,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
11,
331,
62,
5083,
796,
2116,
13557,
1102,
1851,
62,
55,
62,
88,
7,
55,
11,
331,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
4598,
25,
8820,
434,
428,
1752,
1168,
318,
3190,
3750,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2116,
13557,
11147,
7,
55,
28,
55,
62,
5083,
11,
331,
28,
88,
62,
5083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1342,
12373,
46513,
1566,
788,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
11147,
7,
55,
62,
5083,
11,
331,
62,
5083,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
825,
6121,
7,
944,
11,
1395,
11,
331,
28,
14202,
11,
1168,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
41762,
1395,
290,
1441,
257,
14434,
2196,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1812,
2672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26848,
1181,
284,
307,
366,
38631,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
8798,
274,
287,
2116,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
2175,
2746,
12608,
7464,
287,
45434,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
11,
597,
4855,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
307,
14434,
11,
286,
21015,
2099,
355,
5679,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7171,
25,
279,
67,
13,
27996,
11,
279,
67,
13,
6601,
19778,
11,
393,
45941,
13,
358,
18747,
357,
16,
35,
393,
362,
35,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18810,
25,
279,
67,
13,
6601,
19778,
351,
362,
12,
5715,
15237,
15732,
11,
1351,
286,
279,
67,
13,
6601,
19778,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28376,
279,
67,
13,
6601,
19778,
11,
393,
279,
67,
13,
6601,
19778,
287,
890,
14,
4421,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2426,
284,
1341,
2435,
285,
4906,
5794,
20640,
11,
329,
2252,
3307,
766,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6096,
14,
3838,
62,
19608,
265,
9497,
62,
392,
62,
19608,
292,
1039,
13,
541,
2047,
65,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
13389,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
1058,
1744,
16144,
329,
1395,
26,
815,
407,
307,
3804,
618,
1395,
318,
3804,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16144,
1168,
318,
39224,
1201,
2196,
657,
13,
940,
13,
15,
290,
481,
307,
4615,
287,
657,
13,
1157,
13,
15,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
14434,
2196,
286,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
2099,
8338,
319,
2099,
286,
1395,
290,
629,
414,
431,
25,
35636,
12,
22915,
7621,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
35636,
63,
220,
930,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
220,
220,
4600,
55,
63,
220,
220,
220,
930,
220,
4600,
12,
22915,
63,
220,
220,
930,
220,
220,
220,
220,
2099,
286,
1441,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
35937,
91,
26171,
91,
22369,
91,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
23828,
20288,
63,
930,
4600,
30094,
13,
6601,
19778,
63,
357,
16,
12,
808,
8,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
930,
4600,
23828,
20288,
63,
930,
4600,
30094,
13,
6601,
19778,
63,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
27996,
63,
220,
220,
220,
220,
930,
4600,
27996,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
930,
4600,
27996,
63,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
10245,
287,
1441,
6053,
284,
10245,
287,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
17790,
407,
287,
262,
3084,
389,
3058,
407,
4855,
628,
220,
220,
220,
220,
220,
220,
220,
11884,
306,
11,
351,
6096,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
27996,
63,
357,
68,
13,
70,
1539,
4600,
30094,
13,
6601,
19778,
63,
8,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
27996,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
257,
2060,
4600,
27996,
63,
286,
262,
976,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
1062,
10920,
278,
257,
2060,
2168,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
26639,
63,
357,
68,
13,
70,
1539,
4600,
30094,
12,
41684,
9630,
63,
8,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
27996,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
4600,
26639,
63,
351,
976,
1271,
286,
10245,
355,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
1169,
47385,
318,
5625,
284,
1123,
5128,
7171,
4554,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
477,
2168,
287,
262,
6103,
389,
1062,
10920,
276,
17033,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
27996,
63,
393,
4600,
26639,
63,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
23828,
20288,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
4600,
30094,
13,
6601,
19778,
63,
351,
355,
867,
15274,
355,
10245,
287,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
1312,
12,
400,
5752,
286,
262,
1441,
468,
1612,
290,
24198,
286,
262,
1312,
12,
400,
2168,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
27996,
63,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
26639,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
257,
4600,
26639,
63,
2134,
286,
2099,
4600,
30094,
12,
41684,
9630,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
1312,
12,
400,
4554,
286,
262,
5072,
318,
262,
1312,
12,
400,
4324,
2491,
625,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
4808,
28144,
62,
26011,
7,
55,
11,
1168,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
1771,
318,
18235,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
9122,
62,
271,
62,
38631,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5128,
8794,
290,
4159,
24029,
507,
319,
1395,
11,
331,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
4938,
11,
31456,
11,
1395,
62,
38993,
796,
2198,
62,
271,
62,
76,
4906,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
285,
4906,
28,
944,
13,
7036,
3913,
1961,
62,
1268,
30076,
62,
44,
9936,
47,
1546,
11,
1441,
62,
38993,
28,
17821,
11,
1401,
62,
3672,
2625,
55,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4938,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
19662,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10627,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
4605,
62,
403,
42524,
796,
2116,
13,
1136,
62,
12985,
7203,
403,
42524,
12,
8807,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4605,
62,
403,
42524,
290,
407,
1395,
62,
38993,
14692,
271,
62,
403,
42524,
1,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
55,
1276,
307,
555,
42524,
475,
318,
407,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
19818,
285,
19199,
14,
1416,
414,
12272,
286,
477,
5563,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
76,
4906,
796,
1395,
62,
38993,
14692,
76,
4906,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
796,
1395,
62,
38993,
14692,
1416,
414,
431,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
76,
4906,
796,
4808,
1073,
263,
344,
62,
1462,
62,
4868,
7,
944,
13,
1136,
62,
12985,
7203,
55,
62,
5083,
62,
76,
4906,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
1416,
414,
12272,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
55,
62,
5083,
62,
76,
4906,
11,
1441,
62,
34642,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13622,
7171,
3691,
18810,
11315,
329,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
612,
389,
1115,
2663,
284,
2190,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
611,
262,
5387,
4808,
11147,
6971,
1395,
338,
629,
414,
431,
11,
1445,
319,
284,
285,
4906,
11315,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
220,
9052,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
3058,
428,
318,
9343,
416,
11315,
284,
47764,
12,
4868,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
290,
428,
857,
407,
1104,
331,
357,
403,
20063,
644,
815,
1645,
994,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
2147,
284,
466,
532,
2391,
836,
470,
3802,
597,
286,
262,
611,
82,
2174,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
262,
366,
361,
82,
1,
329,
1339,
362,
290,
513,
2174,
389,
26684,
739,
262,
4006,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
1339,
362,
468,
281,
366,
17772,
1,
543,
18140,
326,
340,
2492,
470,
5982,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
27996,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
27996,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
26639,
1,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
262,
7171,
1395,
284,
257,
530,
12,
30854,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
10385,
62,
27996,
62,
1462,
62,
26639,
7,
55,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3505,
326,
356,
11513,
262,
7171,
284,
257,
530,
12,
30854,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
9776,
62,
27996,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3505,
326,
356,
1422,
470,
10385,
257,
7171,
284,
257,
530,
12,
30854,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
9776,
62,
27996,
796,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
9052,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
26639,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
26639,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
27996,
1,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
2116,
13557,
31364,
1143,
62,
35636,
7,
55,
11,
1395,
62,
15414,
62,
76,
4906,
11,
331,
28,
88,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
83,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
1395,
14,
88,
284,
4855,
8434,
2099,
11,
611,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
14468,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
11,
331,
62,
5083,
796,
2116,
13557,
1102,
1851,
62,
55,
62,
88,
7,
55,
11,
331,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3283,
503,
262,
13389,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
14468,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
4598,
25,
8820,
434,
428,
1752,
1168,
318,
3190,
3750,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1395,
83,
796,
2116,
13557,
35636,
7,
55,
28,
55,
62,
5083,
11,
331,
28,
88,
62,
5083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1342,
12373,
46513,
1566,
788,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
2116,
13557,
35636,
7,
55,
62,
5083,
11,
331,
62,
5083,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
14434,
1395,
736,
284,
5128,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
2116,
13557,
1102,
1851,
62,
22915,
7,
55,
83,
11,
1395,
62,
15414,
62,
76,
4906,
11,
1395,
62,
9776,
62,
27996,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
83,
628,
220,
220,
220,
825,
4197,
62,
35636,
7,
944,
11,
1395,
11,
331,
28,
14202,
11,
1168,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
31805,
284,
1366,
11,
788,
6121,
340,
13,
628,
220,
220,
220,
220,
220,
220,
220,
376,
896,
47385,
284,
1395,
290,
331,
351,
11902,
10007,
4197,
62,
37266,
198,
220,
220,
220,
220,
220,
220,
220,
290,
5860,
257,
14434,
2196,
286,
1395,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1812,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19179,
1181,
284,
366,
38631,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
12257,
274,
284,
2116,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21394,
318,
62,
38631,
6056,
284,
6407,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21394,
18235,
2746,
12608,
7464,
287,
45434,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
11,
597,
4855,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
307,
14434,
11,
286,
21015,
2099,
355,
5679,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7171,
25,
279,
67,
13,
27996,
11,
279,
67,
13,
6601,
19778,
11,
393,
45941,
13,
358,
18747,
357,
16,
35,
393,
362,
35,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18810,
25,
279,
67,
13,
6601,
19778,
351,
362,
12,
5715,
15237,
15732,
11,
1351,
286,
279,
67,
13,
6601,
19778,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28376,
279,
67,
13,
6601,
19778,
11,
393,
279,
67,
13,
6601,
19778,
287,
890,
14,
4421,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2426,
284,
1341,
2435,
285,
4906,
5794,
20640,
11,
329,
2252,
3307,
766,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6096,
14,
3838,
62,
19608,
265,
9497,
62,
392,
62,
19608,
292,
1039,
13,
541,
2047,
65,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
13389,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
1058,
1744,
16144,
329,
1395,
26,
815,
407,
307,
3804,
618,
1395,
318,
3804,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16144,
1168,
318,
39224,
1201,
2196,
657,
13,
940,
13,
15,
290,
481,
307,
4615,
287,
657,
13,
1157,
13,
15,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
14434,
2196,
286,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
2099,
8338,
319,
2099,
286,
1395,
290,
629,
414,
431,
25,
35636,
12,
22915,
7621,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
220,
220,
4600,
55,
63,
220,
220,
220,
930,
4600,
27110,
12,
22915,
63,
220,
930,
220,
220,
220,
220,
2099,
286,
1441,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
35937,
91,
26171,
91,
22369,
91,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
23828,
20288,
63,
930,
4600,
30094,
13,
6601,
19778,
63,
357,
16,
12,
808,
8,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
930,
4600,
23828,
20288,
63,
930,
4600,
30094,
13,
6601,
19778,
63,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
27996,
63,
220,
220,
220,
220,
930,
4600,
27996,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
930,
4600,
27996,
63,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
10245,
287,
1441,
6053,
284,
10245,
287,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
17790,
407,
287,
262,
3084,
389,
3058,
407,
4855,
628,
220,
220,
220,
220,
220,
220,
220,
11884,
306,
11,
351,
6096,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
27996,
63,
357,
68,
13,
70,
1539,
4600,
30094,
13,
6601,
19778,
63,
8,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
27996,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
257,
2060,
4600,
27996,
63,
286,
262,
976,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
1062,
10920,
278,
257,
2060,
2168,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
26639,
63,
357,
68,
13,
70,
1539,
4600,
30094,
12,
41684,
9630,
63,
8,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
27996,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
4600,
26639,
63,
351,
976,
1271,
286,
10245,
355,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
1169,
47385,
318,
5625,
284,
1123,
5128,
7171,
4554,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
477,
2168,
287,
262,
6103,
389,
1062,
10920,
276,
17033,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
27996,
63,
393,
4600,
26639,
63,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
23828,
20288,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
4600,
30094,
13,
6601,
19778,
63,
351,
355,
867,
15274,
355,
10245,
287,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
1312,
12,
400,
5752,
286,
262,
1441,
468,
1612,
290,
24198,
286,
262,
1312,
12,
400,
2168,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4600,
55,
63,
318,
4600,
27996,
63,
290,
4600,
35636,
12,
22915,
63,
318,
4600,
26639,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
262,
1441,
318,
257,
4600,
26639,
63,
2134,
286,
2099,
4600,
30094,
12,
41684,
9630,
63,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17934,
25,
1312,
12,
400,
4554,
286,
262,
5072,
318,
262,
1312,
12,
400,
4324,
2491,
625,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
4808,
28144,
62,
26011,
7,
55,
11,
1168,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8504,
12,
40085,
1143,
4277,
7822,
26,
20957,
618,
257,
1365,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2446,
318,
1744,
329,
257,
1813,
11862,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
11147,
7,
55,
11,
331,
737,
35636,
7,
55,
11,
331,
8,
628,
220,
220,
220,
825,
34062,
62,
35636,
7,
944,
11,
1395,
11,
331,
28,
14202,
11,
1168,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
4399,
6121,
1395,
290,
1441,
281,
34062,
14434,
2196,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16888,
340,
318,
9672,
326,
691,
6121,
364,
351,
15940,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
15414,
1,
2625,
27996,
1600,
366,
1416,
414,
431,
25,
35636,
12,
22915,
1,
2625,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
423,
281,
34062,
62,
35636,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1812,
2672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26848,
1181,
284,
307,
366,
38631,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
8798,
274,
287,
2116,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
2175,
2746,
12608,
7464,
287,
45434,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
11,
597,
4855,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
307,
34062,
14434,
11,
286,
21015,
2099,
355,
5679,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7171,
25,
279,
67,
13,
27996,
11,
279,
67,
13,
6601,
19778,
11,
393,
45941,
13,
358,
18747,
357,
16,
35,
393,
362,
35,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18810,
25,
279,
67,
13,
6601,
19778,
351,
362,
12,
5715,
15237,
15732,
11,
1351,
286,
279,
67,
13,
6601,
19778,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28376,
279,
67,
13,
6601,
19778,
11,
393,
279,
67,
13,
6601,
19778,
287,
890,
14,
4421,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2426,
284,
1341,
2435,
285,
4906,
5794,
20640,
11,
329,
2252,
3307,
766,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6096,
14,
3838,
62,
19608,
265,
9497,
62,
392,
62,
19608,
292,
1039,
13,
541,
2047,
65,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
13389,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
1058,
1744,
16144,
329,
1395,
26,
815,
407,
307,
3804,
618,
1395,
318,
3804,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16144,
1168,
318,
39224,
1201,
2196,
657,
13,
940,
13,
15,
290,
481,
307,
4615,
287,
657,
13,
1157,
13,
15,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
34062,
14434,
2196,
286,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
262,
976,
2099,
355,
1395,
11,
290,
369,
15464,
284,
285,
4906,
5794,
20640,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
1136,
62,
12985,
7203,
11128,
1799,
25,
259,
4399,
62,
35636,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
90,
4906,
7,
944,
38165,
857,
407,
3494,
34062,
62,
35636,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
4808,
28144,
62,
26011,
7,
55,
11,
1168,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
1771,
318,
18235,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
9122,
62,
271,
62,
38631,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5128,
8794,
290,
4159,
24029,
507,
319,
1395,
11,
331,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
4938,
11,
31456,
11,
1395,
62,
38993,
796,
2198,
62,
271,
62,
76,
4906,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
285,
4906,
28,
944,
13,
7036,
3913,
1961,
62,
1268,
30076,
62,
44,
9936,
47,
1546,
11,
1441,
62,
38993,
28,
17821,
11,
1401,
62,
3672,
2625,
55,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4938,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
19662,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10627,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
4605,
62,
403,
42524,
796,
2116,
13,
1136,
62,
12985,
7203,
403,
42524,
12,
8807,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4605,
62,
403,
42524,
290,
407,
1395,
62,
38993,
14692,
271,
62,
403,
42524,
1,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
55,
1276,
307,
555,
42524,
475,
318,
407,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
19818,
285,
19199,
14,
1416,
414,
12272,
286,
477,
5563,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
76,
4906,
796,
1395,
62,
38993,
14692,
76,
4906,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
796,
1395,
62,
38993,
14692,
1416,
414,
431,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
76,
4906,
796,
4808,
1073,
263,
344,
62,
1462,
62,
4868,
7,
944,
13,
1136,
62,
12985,
7203,
55,
62,
5083,
62,
76,
4906,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
1416,
414,
12272,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
55,
62,
5083,
62,
76,
4906,
11,
1441,
62,
34642,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13622,
7171,
3691,
18810,
11315,
329,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
612,
389,
1115,
2663,
284,
2190,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
611,
262,
5387,
4808,
11147,
6971,
1395,
338,
629,
414,
431,
11,
1445,
319,
284,
285,
4906,
11315,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
220,
9052,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
3058,
428,
318,
9343,
416,
11315,
284,
47764,
12,
4868,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
290,
428,
857,
407,
1104,
331,
357,
403,
20063,
644,
815,
1645,
994,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
2147,
284,
466,
532,
2391,
836,
470,
3802,
597,
286,
262,
611,
82,
2174,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
262,
366,
361,
82,
1,
329,
1339,
362,
290,
513,
2174,
389,
26684,
739,
262,
4006,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
1339,
362,
468,
281,
366,
17772,
1,
543,
18140,
326,
340,
2492,
470,
5982,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
27996,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
27996,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
26639,
1,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
262,
7171,
1395,
284,
257,
530,
12,
30854,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
10385,
62,
27996,
62,
1462,
62,
26639,
7,
55,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3505,
326,
356,
11513,
262,
7171,
284,
257,
530,
12,
30854,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
9776,
62,
27996,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3505,
326,
356,
1422,
470,
10385,
257,
7171,
284,
257,
530,
12,
30854,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
9776,
62,
27996,
796,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
9052,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
26639,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
26639,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
366,
27996,
1,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
198,
220,
220,
220,
220,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
2116,
13557,
31364,
1143,
62,
35636,
7,
55,
11,
1395,
62,
15414,
62,
76,
4906,
11,
331,
28,
88,
11,
34062,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
83,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
1395,
14,
88,
284,
4855,
8434,
2099,
11,
611,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
14468,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
11,
331,
62,
5083,
796,
2116,
13557,
1102,
1851,
62,
55,
62,
88,
7,
55,
11,
331,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3283,
503,
262,
13389,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
14468,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
4598,
25,
8820,
434,
428,
1752,
1168,
318,
3190,
3750,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1395,
83,
796,
2116,
13557,
35636,
7,
55,
28,
55,
62,
5083,
11,
331,
28,
88,
62,
5083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1342,
12373,
46513,
1566,
788,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
2116,
13557,
259,
4399,
62,
35636,
7,
55,
62,
5083,
11,
331,
62,
5083,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
14434,
1395,
736,
284,
5128,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
2116,
13557,
1102,
1851,
62,
22915,
7,
55,
83,
11,
1395,
62,
15414,
62,
76,
4906,
11,
1395,
62,
9776,
62,
27996,
11,
34062,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
83,
628,
220,
220,
220,
825,
4296,
7,
944,
11,
1395,
11,
331,
28,
14202,
11,
1168,
28,
14202,
11,
4296,
62,
37266,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10260,
47385,
351,
1395,
11,
42976,
331,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1812,
2672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26848,
1181,
284,
307,
366,
38631,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
8798,
274,
287,
2116,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
376,
2175,
2746,
12608,
7464,
287,
45434,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
628,
220,
220,
220,
220,
220,
220,
220,
12257,
274,
284,
2116,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1737,
4296,
18235,
2746,
12608,
7464,
287,
45434,
1911,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
11,
597,
4855,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
4197,
6121,
284,
11,
286,
21015,
2099,
355,
5679,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7171,
25,
279,
67,
13,
27996,
11,
279,
67,
13,
6601,
19778,
11,
393,
45941,
13,
358,
18747,
357,
16,
35,
393,
362,
35,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18810,
25,
279,
67,
13,
6601,
19778,
351,
362,
12,
5715,
15237,
15732,
11,
1351,
286,
279,
67,
13,
6601,
19778,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28376,
279,
67,
13,
6601,
19778,
11,
393,
279,
67,
13,
6601,
19778,
287,
890,
14,
4421,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2426,
284,
1341,
2435,
285,
4906,
5794,
20640,
11,
329,
2252,
3307,
766,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6096,
14,
3838,
62,
19608,
265,
9497,
62,
392,
62,
19608,
292,
1039,
13,
541,
2047,
65,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
13389,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
1058,
1744,
16144,
329,
1395,
26,
815,
407,
307,
3804,
618,
1395,
318,
3804,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16144,
1168,
318,
39224,
1201,
2196,
657,
13,
940,
13,
15,
290,
481,
307,
4615,
287,
657,
13,
1157,
13,
15,
198,
220,
220,
220,
220,
220,
220,
220,
4296,
62,
37266,
1058,
20512,
11,
4277,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1771,
262,
2746,
318,
6153,
13,
3363,
611,
2081,
11,
611,
3991,
11,
2391,
1341,
2419,
869,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4578,
7160,
329,
17764,
351,
41164,
8265,
13,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
1058,
257,
18235,
4554,
286,
262,
3959,
1352,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
4808,
28144,
62,
26011,
7,
55,
11,
1168,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14267,
2279,
611,
4296,
62,
37266,
318,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4296,
62,
37266,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
14267,
2279,
611,
4197,
12,
259,
12,
35636,
318,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
1136,
62,
12985,
7203,
11147,
12,
259,
12,
35636,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5128,
8794,
290,
4159,
24029,
507,
319,
1395,
11,
331,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
4938,
11,
31456,
11,
1395,
62,
38993,
796,
2198,
62,
271,
62,
76,
4906,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
285,
4906,
28,
944,
13,
7036,
3913,
1961,
62,
1268,
30076,
62,
44,
9936,
47,
1546,
11,
1441,
62,
38993,
28,
17821,
11,
1401,
62,
3672,
2625,
55,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
4938,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
19662,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10627,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
4605,
62,
403,
42524,
796,
2116,
13,
1136,
62,
12985,
7203,
403,
42524,
12,
8807,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4605,
62,
403,
42524,
290,
407,
1395,
62,
38993,
14692,
271,
62,
403,
42524,
1,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
55,
1276,
307,
555,
42524,
475,
318,
407,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
19818,
285,
19199,
14,
1416,
414,
12272,
286,
477,
5563,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
796,
1395,
62,
38993,
14692,
1416,
414,
431,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
76,
4906,
796,
4808,
1073,
263,
344,
62,
1462,
62,
4868,
7,
944,
13,
1136,
62,
12985,
7203,
55,
62,
5083,
62,
76,
4906,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
1416,
414,
12272,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
55,
62,
5083,
62,
76,
4906,
11,
1441,
62,
34642,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13622,
7171,
3691,
18810,
11315,
329,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
7804,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
612,
389,
1115,
2663,
284,
2190,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
611,
262,
5387,
4808,
11147,
6971,
1395,
338,
629,
414,
431,
11,
1445,
319,
284,
285,
4906,
11315,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
8295,
12,
31364,
1634,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
3058,
11,
428,
318,
9343,
416,
11315,
284,
47764,
12,
4868,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
8295,
12,
31364,
1634,
318,
407,
4855,
611,
331,
318,
3804,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
1981,
3959,
2024,
326,
15879,
1096,
625,
331,
1276,
3494,
17033,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
352,
13,
2147,
284,
466,
532,
2391,
836,
470,
3802,
597,
286,
262,
611,
82,
2174,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
362,
13,
5387,
691,
468,
18810,
475,
1395,
318,
7171,
25,
2074,
1395,
355,
530,
12,
39098,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
27996,
1,
290,
366,
27996,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
10385,
62,
27996,
62,
1462,
62,
26639,
7,
55,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
513,
13,
5387,
691,
468,
7171,
475,
1395,
318,
18810,
25,
9052,
625,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
26639,
1,
290,
366,
26639,
1,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
331,
318,
407,
6045,
290,
2116,
13,
1136,
62,
12985,
7203,
88,
62,
5083,
62,
76,
4906,
4943,
14512,
366,
14202,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
90,
4906,
7,
944,
737,
834,
3672,
834,
92,
857,
407,
1104,
18810,
1395,
611,
331,
318,
407,
6045,
11,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
20777,
1391,
4906,
7,
944,
737,
834,
3672,
834,
92,
6971,
691,
7171,
13,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27722,
12,
31364,
1634,
284,
9117,
7171,
1395,
284,
18810,
1395,
460,
691,
307,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7718,
2228,
503,
611,
331,
318,
6045,
11,
393,
366,
88,
62,
5083,
62,
76,
4906,
1,
7621,
318,
366,
14202,
1911,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19626,
16610,
4808,
11147,
290,
4808,
35636,
284,
5412,
262,
1708,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15414,
3858,
6868,
306,
25,
18810,
1395,
290,
1729,
12,
14202,
331,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
2625,
7568,
12,
4868,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
2625,
26639,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
28,
944,
13557,
1102,
332,
353,
62,
8095,
62,
55,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
62,
20709,
37716,
2625,
42503,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
428,
11414,
530,
47385,
583,
4554,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
35636,
364,
62,
796,
685,
21018,
7,
944,
737,
11147,
7,
42528,
8,
329,
21313,
287,
1395,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
664,
12321,
290,
2666,
2163,
532,
664,
24197,
857,
5128,
8794,
14,
1102,
9641,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
635,
900,
318,
62,
38631,
6056,
284,
6407,
1201,
356,
2666,
2163,
994,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
271,
62,
38631,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
11,
331,
62,
5083,
796,
2116,
13557,
1102,
1851,
62,
55,
62,
88,
7,
55,
11,
331,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
4598,
25,
8820,
434,
428,
1752,
1168,
318,
3190,
3750,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2116,
13557,
19119,
7,
55,
28,
55,
62,
5083,
11,
331,
28,
88,
62,
5083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1342,
12373,
46513,
1566,
788,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
19119,
7,
55,
62,
5083,
11,
331,
62,
5083,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
825,
4808,
31364,
1143,
62,
35636,
7,
944,
11,
1395,
11,
1395,
62,
15414,
62,
76,
4906,
28,
14202,
11,
331,
28,
14202,
11,
34062,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38469,
1143,
3586,
286,
6121,
393,
34062,
11,
290,
10385,
736,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
15414,
62,
76,
4906,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
76,
4906,
796,
285,
4906,
7,
55,
11,
355,
62,
1416,
414,
431,
28,
14692,
27996,
1600,
366,
26639,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
331,
318,
407,
6045,
290,
2116,
13,
1136,
62,
12985,
7203,
88,
62,
5083,
62,
76,
4906,
4943,
14512,
366,
14202,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
90,
4906,
7,
944,
737,
834,
3672,
834,
92,
857,
407,
1104,
18810,
1395,
611,
331,
318,
407,
6045,
11,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
20777,
1391,
4906,
7,
944,
737,
834,
3672,
834,
92,
6971,
691,
7171,
13,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27722,
12,
31364,
1634,
284,
9117,
7171,
1395,
284,
18810,
1395,
460,
691,
307,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7718,
2228,
503,
611,
331,
318,
6045,
11,
393,
366,
88,
62,
5083,
62,
76,
4906,
1,
7621,
318,
366,
14202,
1911,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19626,
16610,
4808,
11147,
290,
4808,
35636,
284,
5412,
262,
1708,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15414,
3858,
6868,
306,
25,
18810,
1395,
290,
1729,
12,
14202,
331,
526,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
2625,
7568,
12,
4868,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
2625,
26639,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
28,
944,
13557,
1102,
332,
353,
62,
8095,
62,
55,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
62,
20709,
37716,
2625,
42503,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
6906,
319,
1771,
15830,
4325,
11,
4174,
18235,
393,
3684,
2175,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
1136,
62,
12985,
7203,
11147,
12,
259,
12,
35636,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
777,
389,
262,
6121,
364,
12,
525,
12,
39098,
11,
18235,
287,
4197,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6121,
364,
796,
2116,
13,
35636,
364,
62,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
35636,
364,
8,
14512,
18896,
7,
55,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9275,
1180,
1271,
286,
10245,
287,
6121,
621,
287,
4197,
13,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
17618,
286,
10245,
1775,
287,
4197,
25,
1391,
11925,
7,
35636,
364,
8,
19629,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
17618,
286,
10245,
1775,
287,
6121,
25,
1391,
11925,
7,
55,
8,
36786,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
34062,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
685,
35636,
364,
58,
72,
4083,
259,
4399,
62,
35636,
7,
55,
58,
72,
12962,
329,
1312,
287,
2837,
7,
11925,
7,
55,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
685,
35636,
364,
58,
72,
4083,
35636,
7,
55,
58,
72,
12962,
329,
1312,
287,
2837,
7,
11925,
7,
55,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
783,
356,
423,
257,
1351,
286,
14434,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
645,
15830,
4325,
11,
655,
4174,
6121,
3294,
1661,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
34062,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
685,
944,
13,
259,
4399,
62,
35636,
7,
55,
58,
72,
12962,
329,
1312,
287,
2837,
7,
11925,
7,
55,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
685,
944,
13,
35636,
7,
55,
58,
72,
12962,
329,
1312,
287,
2837,
7,
11925,
7,
55,
4008,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
284,
2938,
5072,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
2235,
198,
220,
220,
220,
220,
220,
220,
220,
611,
34062,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
1416,
414,
431,
796,
2116,
13,
1136,
62,
12985,
7203,
1416,
414,
431,
25,
35636,
12,
15414,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
1416,
414,
431,
796,
2116,
13,
1136,
62,
12985,
7203,
1416,
414,
431,
25,
35636,
12,
22915,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
262,
5072,
318,
7171,
11,
1395,
83,
318,
257,
18810,
290,
356,
10385,
736,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5072,
62,
1416,
414,
431,
6624,
366,
27996,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
28,
55,
62,
15414,
62,
76,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
2625,
26639,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
28,
944,
13557,
1102,
332,
353,
62,
8095,
62,
55,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
62,
20709,
37716,
2625,
5787,
2736,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
262,
5072,
318,
11460,
20288,
11,
356,
423,
257,
1351,
286,
530,
12,
808,
1366,
37805,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
1673,
36686,
378,
883,
290,
49312,
262,
6376,
351,
326,
286,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
5072,
62,
1416,
414,
431,
6624,
366,
23828,
20288,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
279,
67,
13,
1102,
9246,
7,
55,
83,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
1395,
83,
13,
42503,
62,
9630,
7,
14781,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
83,
628,
220,
220,
220,
825,
4808,
1102,
1851,
62,
55,
62,
88,
7,
944,
11,
1395,
11,
331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3103,
1851,
1395,
11,
331,
284,
8434,
2099,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
76,
4906,
796,
4808,
1073,
263,
344,
62,
1462,
62,
4868,
7,
944,
13,
1136,
62,
12985,
7203,
55,
62,
5083,
62,
76,
4906,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
1416,
414,
12272,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
55,
62,
5083,
62,
76,
4906,
11,
1441,
62,
34642,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
331,
62,
5083,
62,
76,
4906,
796,
4808,
1073,
263,
344,
62,
1462,
62,
4868,
7,
944,
13,
1136,
62,
12985,
7203,
88,
62,
5083,
62,
76,
4906,
48774,
628,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
76,
4906,
796,
285,
4906,
7,
55,
11,
355,
62,
1416,
414,
431,
28,
14692,
27996,
1600,
366,
26639,
8973,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
1416,
414,
431,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
55,
62,
76,
4906,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
329,
28769,
11,
6631,
611,
262,
11315,
10143,
357,
5661,
815,
1239,
1645,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
1416,
414,
431,
407,
287,
1395,
62,
5083,
62,
1416,
414,
12272,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
7203,
1102,
9641,
286,
1395,
284,
1395,
62,
5083,
23993,
11,
10059,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
1395,
14,
88,
284,
4855,
8434,
2099,
11,
611,
3306,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
29113,
14468,
2235,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
24637,
284,
262,
285,
19199,
326,
389,
286,
262,
976,
629,
414,
431,
355,
1395,
14,
88,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
62,
76,
4906,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45079,
329,
45079,
287,
1395,
62,
5083,
62,
76,
4906,
611,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
16762,
8,
6624,
1395,
62,
1416,
414,
431,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10385,
1395,
290,
331,
284,
257,
4855,
5387,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
611,
1395,
14,
88,
2099,
318,
1541,
4855,
11,
645,
11315,
2753,
1295,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
5083,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
28,
55,
62,
5083,
62,
76,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
28,
55,
62,
1416,
414,
431,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
28,
944,
13557,
1102,
332,
353,
62,
8095,
62,
55,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
62,
20709,
37716,
2625,
42503,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
611,
331,
62,
5083,
62,
76,
4906,
14512,
14631,
14202,
8973,
290,
331,
318,
407,
6045,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
1416,
414,
431,
6624,
366,
27996,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
331,
62,
79,
4733,
62,
1416,
414,
12272,
796,
14631,
27996,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
79,
4733,
62,
1416,
414,
12272,
796,
366,
27996,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1395,
62,
1416,
414,
431,
6624,
366,
26639,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
284,
4598,
25,
1487,
428,
736,
284,
18810,
14,
10962,
1752,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
34196,
291,
10385,
62,
1462,
318,
23791,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
331,
62,
79,
4733,
62,
1416,
414,
12272,
796,
14631,
26639,
1600,
366,
10962,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
331,
62,
79,
4733,
62,
1416,
414,
12272,
796,
14631,
27996,
1600,
366,
26639,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
79,
4733,
62,
1416,
414,
12272,
796,
366,
10962,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
76,
4906,
796,
285,
4906,
7,
88,
11,
355,
62,
1416,
414,
431,
28,
88,
62,
79,
4733,
62,
1416,
414,
12272,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
1416,
414,
431,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
88,
62,
76,
4906,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
5083,
62,
76,
4906,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45079,
329,
45079,
287,
331,
62,
5083,
62,
76,
4906,
611,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
16762,
8,
6624,
331,
62,
1416,
414,
431,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
5083,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
28,
88,
62,
5083,
62,
76,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
28,
88,
62,
1416,
414,
431,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
5083,
796,
6045,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
62,
5083,
11,
331,
62,
5083,
628,
220,
220,
220,
825,
4808,
1102,
1851,
62,
22915,
7,
944,
11,
1395,
11,
1395,
62,
15414,
62,
76,
4906,
28,
14202,
11,
1395,
62,
9776,
62,
27996,
28,
25101,
11,
34062,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3103,
1851,
6121,
5072,
284,
2938,
5794,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
15414,
62,
1416,
414,
431,
796,
285,
4906,
62,
1462,
62,
1416,
414,
431,
7,
55,
62,
15414,
62,
76,
4906,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
34062,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
5072,
286,
34062,
6121,
318,
4961,
284,
5128,
286,
6121,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
1416,
414,
431,
796,
2116,
13,
1136,
62,
12985,
7203,
1416,
414,
431,
25,
35636,
12,
15414,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
1416,
414,
431,
796,
2116,
13,
1136,
62,
12985,
7203,
1416,
414,
431,
25,
35636,
12,
22915,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
356,
11513,
7171,
284,
366,
505,
12,
39098,
12,
26639,
1600,
34052,
326,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
9776,
62,
27996,
290,
5072,
62,
1416,
414,
431,
6624,
366,
27996,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
11,
284,
62,
4906,
28,
14692,
30094,
12,
41684,
9630,
1600,
366,
77,
32152,
18,
35,
1600,
366,
7568,
12,
4868,
33116,
355,
62,
1416,
414,
431,
2625,
26639,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
10385,
62,
26639,
62,
1462,
62,
27996,
7,
55,
83,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
5072,
62,
1416,
414,
431,
6624,
366,
27996,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5072,
285,
4906,
318,
5128,
285,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
22915,
62,
76,
4906,
796,
1395,
62,
15414,
62,
76,
4906,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
6631,
284,
428,
25,
611,
262,
47385,
23862,
1963,
42524,
2168,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
356,
2314,
10385,
736,
284,
279,
67,
13,
27996,
11,
466,
279,
67,
13,
6601,
19778,
2427,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
220,
428,
4325,
691,
329,
7171,
11,
407,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
15414,
62,
1416,
414,
431,
6624,
366,
27996,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
11,
4808,
11,
20150,
796,
2198,
62,
271,
62,
76,
4906,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14631,
30094,
13,
6601,
19778,
1600,
366,
30094,
13,
27996,
1600,
366,
37659,
13,
358,
18747,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
62,
38993,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
20150,
14692,
271,
62,
403,
42524,
8973,
290,
1395,
62,
15414,
62,
76,
4906,
6624,
366,
30094,
13,
27996,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
22915,
62,
76,
4906,
796,
366,
30094,
13,
6601,
19778,
1,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
28,
55,
62,
22915,
62,
76,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
28,
55,
62,
15414,
62,
1416,
414,
431,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
28,
944,
13557,
1102,
332,
353,
62,
8095,
62,
55,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3650,
62,
20709,
37716,
2625,
5787,
2736,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
5072,
62,
1416,
414,
431,
6624,
366,
23828,
20288,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
366,
47158,
1,
262,
7171,
38394,
284,
4155,
47764,
5072,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1222,
13259,
6376,
284,
423,
37014,
329,
10245,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
55,
83,
11,
357,
30094,
13,
6601,
19778,
11,
279,
67,
13,
27996,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
1395,
83,
13,
42503,
62,
9630,
7,
14781,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
796,
10385,
62,
1462,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1395,
83,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
284,
62,
4906,
2625,
30094,
13,
6601,
19778,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
355,
62,
1416,
414,
431,
2625,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
645,
38394,
3650,
1201,
428,
318,
407,
257,
366,
16,
25,
16,
736,
12,
1102,
9641,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2073,
5072,
62,
1416,
414,
431,
318,
366,
26639,
1,
290,
645,
761,
329,
11315,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
83,
628,
220,
220,
220,
825,
4808,
11147,
7,
944,
11,
1395,
11,
331,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
31805,
47385,
284,
1395,
290,
331,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2839,
4808,
11147,
7268,
262,
4755,
9156,
11,
1444,
422,
4197,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
286,
285,
4906,
1395,
62,
5083,
62,
76,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
5083,
62,
76,
4906,
318,
1351,
11,
4808,
11147,
1276,
1104,
477,
3858,
287,
340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
4197,
6121,
284,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
286,
285,
4906,
331,
62,
5083,
62,
76,
4906,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
40851,
82,
1161,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
25,
257,
18235,
4554,
286,
262,
3959,
1352,
628,
220,
220,
220,
220,
220,
220,
220,
4091,
7552,
62,
11498,
17041,
14,
7645,
16354,
13,
9078,
329,
7822,
3307,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4277,
4197,
318,
366,
3919,
15830,
4325,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
220,
220,
220,
825,
4808,
35636,
7,
944,
11,
1395,
11,
331,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
41762,
1395,
290,
1441,
257,
14434,
2196,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2839,
4808,
35636,
7268,
262,
4755,
9156,
11,
1444,
422,
6121,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
286,
285,
4906,
1395,
62,
5083,
62,
76,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
5083,
62,
76,
4906,
318,
1351,
11,
4808,
35636,
1276,
1104,
477,
3858,
287,
340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
307,
14434,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
13389,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
14434,
2196,
286,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
2099,
8338,
319,
2099,
286,
1395,
290,
629,
414,
431,
25,
35636,
12,
22915,
7621,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
35636,
63,
220,
930,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
220,
220,
4600,
55,
63,
220,
220,
220,
930,
220,
4600,
12,
22915,
63,
220,
220,
930,
220,
220,
220,
220,
2099,
286,
1441,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
35937,
91,
26171,
91,
22369,
91,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
23828,
20288,
63,
930,
4600,
30094,
13,
6601,
19778,
63,
357,
16,
12,
808,
8,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
930,
4600,
23828,
20288,
63,
930,
4600,
30094,
13,
6601,
19778,
63,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
27996,
63,
220,
220,
220,
220,
930,
4600,
27996,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
930,
4600,
27996,
63,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
4600,
27996,
63,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
930,
4600,
26639,
63,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
930,
198,
220,
220,
220,
220,
220,
220,
220,
10245,
287,
1441,
6053,
284,
10245,
287,
4600,
55,
63,
198,
220,
220,
220,
220,
220,
220,
220,
17790,
407,
287,
262,
3084,
389,
3058,
407,
4855,
628,
220,
220,
220,
220,
220,
220,
220,
4091,
7552,
62,
11498,
17041,
14,
7645,
16354,
13,
9078,
329,
7822,
3307,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
397,
8709,
2446,
4943,
628,
220,
220,
220,
825,
4808,
259,
4399,
62,
35636,
7,
944,
11,
1395,
11,
331,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
4399,
6121,
1395,
290,
1441,
281,
34062,
14434,
2196,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2839,
4808,
259,
4399,
62,
35636,
7268,
4755,
9156,
11,
1444,
422,
34062,
62,
35636,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
286,
285,
4906,
1395,
62,
5083,
62,
76,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
5083,
62,
76,
4906,
318,
1351,
11,
4808,
259,
4399,
62,
35636,
1276,
1104,
477,
3858,
287,
340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
307,
14434,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
13389,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
34062,
14434,
2196,
286,
1395,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
262,
976,
2099,
355,
1395,
11,
290,
369,
15464,
284,
285,
4906,
5794,
20640,
628,
220,
220,
220,
220,
220,
220,
220,
4091,
7552,
62,
11498,
17041,
14,
7645,
16354,
13,
9078,
329,
7822,
3307,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
397,
8709,
2446,
4943,
628,
220,
220,
220,
825,
4808,
19119,
7,
944,
11,
1395,
11,
331,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10260,
47385,
351,
1395,
290,
331,
13,
628,
220,
220,
220,
220,
220,
220,
220,
2839,
4808,
19119,
7268,
262,
4755,
9156,
11,
1444,
422,
4296,
628,
220,
220,
220,
220,
220,
220,
220,
40117,
198,
220,
220,
220,
220,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
1058,
7171,
393,
18810,
286,
285,
4906,
1395,
62,
5083,
62,
76,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1395,
62,
5083,
62,
76,
4906,
318,
1351,
11,
4808,
19119,
1276,
1104,
477,
3858,
287,
340,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6060,
284,
4296,
47385,
351,
198,
220,
220,
220,
220,
220,
220,
220,
331,
1058,
7171,
393,
18810,
286,
285,
4906,
331,
62,
5083,
62,
76,
4906,
11,
4277,
28,
14202,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15891,
1366,
11,
304,
13,
70,
1539,
14722,
329,
40851,
82,
1161,
628,
220,
220,
220,
220,
220,
220,
220,
16409,
198,
220,
220,
220,
220,
220,
220,
220,
35656,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
25,
257,
18235,
4554,
286,
262,
3959,
1352,
628,
220,
220,
220,
220,
220,
220,
220,
4091,
7552,
62,
11498,
17041,
14,
7645,
16354,
13,
9078,
329,
7822,
3307,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3210,
9172,
25,
645,
4296,
2753,
1295,
11,
649,
1366,
318,
9514,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
628,
198,
4299,
4808,
28144,
62,
26011,
7,
55,
11,
1168,
2599,
198,
220,
220,
220,
37227,
37508,
1168,
355,
281,
16144,
329,
1395,
11,
1441,
1395,
14,
57,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
1395,
25,
597,
2134,
198,
220,
220,
220,
1168,
25,
597,
2134,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
1395,
611,
1168,
318,
6045,
11,
1168,
611,
1395,
318,
6045,
628,
220,
220,
220,
7567,
2696,
198,
220,
220,
220,
40103,
198,
220,
220,
220,
11052,
12331,
1111,
1395,
290,
1168,
389,
407,
6045,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
1168,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1395,
198,
220,
220,
220,
1288,
361,
1395,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
49140,
1168,
481,
287,
6121,
364,
318,
39224,
1201,
2196,
657,
13,
940,
13,
15,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
392,
481,
307,
4615,
287,
2196,
657,
13,
1157,
13,
15,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
14601,
13,
40539,
7,
19662,
11,
6536,
28,
12156,
8344,
341,
20361,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1168,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
55,
290,
1168,
389,
47217,
11,
379,
749,
530,
286,
606,
815,
307,
3804,
4943,
628,
198,
4871,
4808,
27996,
2514,
23828,
20288,
8291,
16354,
7,
14881,
8291,
16354,
2599,
198,
220,
220,
220,
37227,
8291,
16354,
2779,
1398,
329,
2168,
284,
20049,
7,
82,
8,
31408,
526,
15931,
628,
220,
220,
220,
1303,
1398,
318,
8584,
329,
44890,
17764,
628,
220,
220,
220,
1303,
4277,
7621,
3815,
329,
366,
27996,
12,
1462,
12,
23828,
20288,
1,
198,
220,
220,
220,
4808,
31499,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
15414,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
318,
262,
629,
414,
431,
286,
1395,
25,
7171,
11,
393,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
22915,
1298,
366,
23828,
20288,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
629,
414,
431,
318,
4504,
25,
11460,
20288,
11,
7171,
11,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
39098,
3083,
1298,
6407,
11,
220,
1303,
318,
428,
281,
4554,
12,
3083,
6121,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
55,
62,
5083,
62,
76,
4906,
1298,
366,
30094,
13,
27996,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
88,
62,
5083,
62,
76,
4906,
1298,
366,
30094,
13,
27996,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
1782,
628,
198,
4871,
4808,
27996,
2514,
27996,
8291,
16354,
7,
14881,
8291,
16354,
2599,
198,
220,
220,
220,
37227,
8291,
16354,
2779,
1398,
329,
2168,
284,
2168,
31408,
526,
15931,
628,
220,
220,
220,
1303,
1398,
318,
8584,
329,
44890,
17764,
628,
220,
220,
220,
1303,
4277,
7621,
3815,
329,
366,
27996,
12,
1462,
12,
27996,
1,
198,
220,
220,
220,
4808,
31499,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
15414,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
318,
262,
629,
414,
431,
286,
1395,
25,
7171,
11,
393,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
22915,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
629,
414,
431,
318,
4504,
25,
11460,
20288,
11,
7171,
11,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
39098,
3083,
1298,
6407,
11,
220,
1303,
318,
428,
281,
4554,
12,
3083,
6121,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
55,
62,
5083,
62,
76,
4906,
1298,
366,
30094,
13,
27996,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
88,
62,
5083,
62,
76,
4906,
1298,
366,
30094,
13,
27996,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
1782,
628,
198,
4871,
4808,
26639,
2514,
33349,
934,
8291,
16354,
7,
14881,
8291,
16354,
2599,
198,
220,
220,
220,
37227,
8291,
16354,
2779,
1398,
329,
6103,
284,
7400,
934,
31408,
526,
15931,
628,
220,
220,
220,
1303,
1398,
318,
8584,
329,
44890,
17764,
628,
220,
220,
220,
1303,
4277,
7621,
3815,
329,
366,
26639,
12,
1462,
12,
33349,
934,
1,
198,
220,
220,
220,
4808,
31499,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
15414,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
318,
262,
629,
414,
431,
286,
1395,
25,
7171,
11,
393,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
22915,
1298,
366,
23828,
20288,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
318,
262,
629,
414,
431,
286,
331,
25,
6045,
357,
1662,
2622,
828,
11460,
20288,
11,
7171,
11,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
39098,
3083,
1298,
10352,
11,
220,
1303,
318,
428,
281,
4554,
12,
3083,
6121,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
55,
62,
5083,
62,
76,
4906,
1298,
366,
77,
7287,
62,
403,
452,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
88,
62,
5083,
62,
76,
4906,
1298,
366,
30094,
13,
27996,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
1782,
628,
198,
4871,
4808,
26639,
2514,
26639,
8291,
16354,
7,
14881,
8291,
16354,
2599,
198,
220,
220,
220,
37227,
8291,
16354,
2779,
1398,
329,
6103,
284,
6103,
31408,
526,
15931,
628,
220,
220,
220,
1303,
1398,
318,
8584,
329,
44890,
17764,
628,
220,
220,
220,
1303,
4277,
7621,
3815,
329,
366,
26639,
12,
1462,
12,
26639,
1,
198,
220,
220,
220,
4808,
31499,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
15414,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
318,
262,
629,
414,
431,
286,
1395,
25,
7171,
11,
393,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
35636,
12,
22915,
1298,
366,
27996,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
644,
629,
414,
431,
318,
4504,
25,
11460,
20288,
11,
7171,
11,
18810,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1416,
414,
431,
25,
39098,
3083,
1298,
10352,
11,
220,
1303,
318,
428,
281,
4554,
12,
3083,
6121,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
55,
62,
5083,
62,
76,
4906,
1298,
366,
77,
7287,
62,
403,
452,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
220,
220,
220,
220,
366,
88,
62,
5083,
62,
76,
4906,
1298,
366,
30094,
13,
27996,
1600,
220,
1303,
543,
285,
19199,
466,
4808,
11147,
47835,
79,
17407,
1104,
329,
1395,
30,
198,
220,
220,
220,
1782,
198
] | 2.338188 | 18,815 |
"""
The h5 module is organized like the resulting h5 file's groups.
""" | [
37811,
198,
464,
289,
20,
8265,
318,
8389,
588,
262,
7186,
289,
20,
2393,
338,
2628,
13,
198,
37811
] | 3.736842 | 19 |
import sys
import json
import argparse
from os import path
sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))
from reducers.topk import TopkReducer
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='Top K reducer NBA',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument(
'--config',
help='The Net Topology configuration file'
)
parser.add_argument(
'--rid',
type=int,
default=1,
help="The Reducer id"
)
parser.add_argument(
'--workers',
type=int,
default=1,
help='The number of summary workers'
)
parser.add_argument(
'--k',
type=int,
default=10,
help='The k of the Top K'
)
args = parser.parse_args()
main(args.rid, args.workers, args.k, args.config)
| [
11748,
25064,
198,
11748,
33918,
198,
11748,
1822,
29572,
198,
6738,
28686,
1330,
3108,
198,
198,
17597,
13,
6978,
13,
33295,
7,
6978,
13,
15908,
3672,
7,
6978,
13,
15908,
3672,
7,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
35514,
198,
198,
6738,
2027,
7999,
13,
4852,
74,
1330,
5849,
74,
7738,
48915,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
628,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6764,
11639,
9126,
509,
2027,
2189,
7403,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1296,
1436,
62,
4871,
28,
853,
29572,
13,
28100,
1713,
7469,
13185,
22087,
8479,
1436,
8,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
11250,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
464,
3433,
5849,
1435,
8398,
2393,
6,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
6058,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
600,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
464,
2297,
48915,
4686,
1,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
22896,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
600,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
464,
1271,
286,
10638,
3259,
6,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
74,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
600,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1037,
11639,
464,
479,
286,
262,
5849,
509,
6,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
220,
220,
1388,
7,
22046,
13,
6058,
11,
26498,
13,
22896,
11,
26498,
13,
74,
11,
26498,
13,
11250,
8,
628
] | 2.035417 | 480 |
import contextlib
from typing import Dict, Iterable, Optional, Tuple, List, Any, Type, Hashable, \
NamedTuple, Generator, Callable
from unittest import mock
from unittest.mock import MagicMock, Mock
import structlog
import pykube
import pytest
from _pytest.fixtures import FixtureRequest
from k8s_snapshots import kube, errors
from k8s_snapshots.context import Context
_logger = structlog.get_logger(__name__)
KUBE_SAFETY_CHECK_CONFIG_KEY = 'test-fixture-safety-check'
KUBE_CONFIG = pykube.KubeConfig({
'apiVersion': 'v1',
'kind': 'Config',
'clusters': [
{
'name': 'test-fixture-cluster',
'certificate-authority-data': 'From fixture fx_kube_config',
'server': 'http://test-fixture-server',
},
],
'contexts': [
{
'name': 'test-fixture-context',
'context': {
'cluster': 'test-fixture-cluster',
'user': 'test-fixture-user',
},
},
],
'current-context': 'test-fixture-context',
KUBE_SAFETY_CHECK_CONFIG_KEY: 'I am present',
})
LABEL_ZONE_VALUE = 'test-zone'
LABEL_ZONE_KEY = 'failure-domain.beta.kubernetes.io/zone'
LABEL_ZONE = {LABEL_ZONE_KEY: LABEL_ZONE_VALUE}
DELTAS_ANNOTATION = 'PT1M PT2M'
DEFAULT = object()
@pytest.fixture(scope='session', autouse=True)
@pytest.fixture(scope='session', autouse=True)
@pytest.fixture
def fx_kube_config(request: FixtureRequest) -> pykube.KubeConfig:
"""
Minimal fake pykube.HTTPClient config fixture.
"""
return KUBE_CONFIG
@contextlib.contextmanager
def mock_kube(resources: Iterable[kube.Resource]):
"""
Mock the resources available through the `k8s_snapshots.kube.Kubernetes`
abstraction.
Parameters
----------
resources
Returns
-------
The `k8s_snapshots.kube.Kubernetes` mock
"""
with MockKubernetes.patch(resources):
yield
def make_resource(
resource_type: Type[kube.Resource],
name,
namespace=DEFAULT,
labels=DEFAULT,
annotations=DEFAULT,
spec=DEFAULT,
) -> kube.Resource:
"""
Create a Kubernetes Resource.
"""
if namespace is DEFAULT:
namespace = 'default'
if annotations is DEFAULT:
annotations = {}
api = MagicMock(
spec=pykube.HTTPClient,
config=Mock()
)
if spec is DEFAULT:
spec = {}
obj = {
'metadata': {
'name': name,
'annotations': annotations,
'selfLink': f'test/{namespace}/{resource_type.endpoint}/{name}'
},
'spec': spec,
}
if labels is not DEFAULT:
obj['metadata']['labels'] = labels
if namespace is not DEFAULT:
obj['metadata']['namespace'] = namespace
return resource_type(api, obj)
def make_volume_and_claim(
ctx,
volume_name='test-pv',
claim_name='test-pvc',
volume_annotations=DEFAULT,
claim_annotations=DEFAULT,
claim_namespace=DEFAULT,
volume_zone_label=DEFAULT,
) -> Tuple[
pykube.objects.PersistentVolume,
pykube.objects.PersistentVolumeClaim
]:
"""
Creates
"""
if volume_zone_label is DEFAULT:
volume_zone_label = {LABEL_ZONE_KEY: LABEL_ZONE_VALUE}
pv = make_resource(
pykube.objects.PersistentVolume,
volume_name,
annotations=volume_annotations,
labels=volume_zone_label,
spec={
'claimRef': {
'name': claim_name,
'namespace': claim_namespace,
},
'gcePersistentDisk': {
'pdName': 'test-pd'
}
}
)
pvc = make_resource(
pykube.objects.PersistentVolumeClaim,
claim_name,
annotations=claim_annotations,
namespace=claim_namespace,
spec={
'volumeName': volume_name,
}
)
return pv, pvc
@pytest.fixture
@pytest.fixture
| [
11748,
4732,
8019,
198,
6738,
19720,
1330,
360,
713,
11,
40806,
540,
11,
32233,
11,
309,
29291,
11,
7343,
11,
4377,
11,
5994,
11,
21059,
540,
11,
3467,
198,
220,
220,
220,
34441,
51,
29291,
11,
35986,
11,
4889,
540,
198,
6738,
555,
715,
395,
1330,
15290,
198,
6738,
555,
715,
395,
13,
76,
735,
1330,
6139,
44,
735,
11,
44123,
198,
198,
11748,
2878,
6404,
198,
11748,
12972,
74,
3266,
198,
11748,
12972,
9288,
198,
6738,
4808,
9078,
9288,
13,
69,
25506,
1330,
376,
9602,
18453,
198,
198,
6738,
479,
23,
82,
62,
45380,
20910,
1330,
479,
3266,
11,
8563,
198,
6738,
479,
23,
82,
62,
45380,
20910,
13,
22866,
1330,
30532,
198,
198,
62,
6404,
1362,
796,
2878,
6404,
13,
1136,
62,
6404,
1362,
7,
834,
3672,
834,
8,
198,
198,
42,
10526,
36,
62,
4090,
37,
2767,
56,
62,
50084,
62,
10943,
16254,
62,
20373,
796,
705,
9288,
12,
69,
9602,
12,
44708,
12,
9122,
6,
198,
198,
42,
10526,
36,
62,
10943,
16254,
796,
12972,
74,
3266,
13,
42,
3266,
16934,
15090,
198,
220,
220,
220,
705,
15042,
14815,
10354,
705,
85,
16,
3256,
198,
220,
220,
220,
705,
11031,
10354,
705,
16934,
3256,
198,
220,
220,
220,
705,
565,
13654,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3672,
10354,
705,
9288,
12,
69,
9602,
12,
565,
5819,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22583,
22460,
12,
9800,
414,
12,
7890,
10354,
705,
4863,
29220,
277,
87,
62,
74,
3266,
62,
11250,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
15388,
10354,
705,
4023,
1378,
9288,
12,
69,
9602,
12,
15388,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
22866,
82,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3672,
10354,
705,
9288,
12,
69,
9602,
12,
22866,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22866,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
565,
5819,
10354,
705,
9288,
12,
69,
9602,
12,
565,
5819,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
10354,
705,
9288,
12,
69,
9602,
12,
7220,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
14421,
12,
22866,
10354,
705,
9288,
12,
69,
9602,
12,
22866,
3256,
198,
220,
220,
220,
509,
10526,
36,
62,
4090,
37,
2767,
56,
62,
50084,
62,
10943,
16254,
62,
20373,
25,
705,
40,
716,
1944,
3256,
198,
30072,
198,
198,
48780,
3698,
62,
57,
11651,
62,
39488,
796,
705,
9288,
12,
11340,
6,
198,
198,
48780,
3698,
62,
57,
11651,
62,
20373,
796,
705,
32165,
495,
12,
27830,
13,
31361,
13,
74,
18478,
3262,
274,
13,
952,
14,
11340,
6,
198,
48780,
3698,
62,
57,
11651,
796,
1391,
48780,
3698,
62,
57,
11651,
62,
20373,
25,
406,
6242,
3698,
62,
57,
11651,
62,
39488,
92,
198,
198,
35,
3698,
51,
1921,
62,
1565,
11929,
6234,
796,
705,
11571,
16,
44,
19310,
17,
44,
6,
198,
198,
7206,
38865,
796,
2134,
3419,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
29891,
3256,
1960,
1076,
28,
17821,
8,
628,
198,
31,
9078,
9288,
13,
69,
9602,
7,
29982,
11639,
29891,
3256,
1960,
1076,
28,
17821,
8,
628,
198,
31,
9078,
9288,
13,
69,
9602,
198,
4299,
277,
87,
62,
74,
3266,
62,
11250,
7,
25927,
25,
376,
9602,
18453,
8,
4613,
12972,
74,
3266,
13,
42,
3266,
16934,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1855,
4402,
8390,
12972,
74,
3266,
13,
40717,
11792,
4566,
29220,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
509,
10526,
36,
62,
10943,
16254,
628,
198,
198,
31,
22866,
8019,
13,
22866,
37153,
198,
4299,
15290,
62,
74,
3266,
7,
37540,
25,
40806,
540,
58,
74,
3266,
13,
26198,
60,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
44123,
262,
4133,
1695,
832,
262,
4600,
74,
23,
82,
62,
45380,
20910,
13,
74,
3266,
13,
42,
18478,
3262,
274,
63,
198,
220,
220,
220,
34651,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
4133,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
383,
4600,
74,
23,
82,
62,
45380,
20910,
13,
74,
3266,
13,
42,
18478,
3262,
274,
63,
15290,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
351,
44123,
42,
18478,
3262,
274,
13,
17147,
7,
37540,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
7800,
628,
198,
4299,
787,
62,
31092,
7,
198,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
4906,
25,
5994,
58,
74,
3266,
13,
26198,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
25745,
28,
7206,
38865,
11,
198,
220,
220,
220,
220,
220,
220,
220,
14722,
28,
7206,
38865,
11,
198,
220,
220,
220,
220,
220,
220,
220,
37647,
28,
7206,
38865,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
28,
7206,
38865,
11,
198,
8,
4613,
479,
3266,
13,
26198,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
13610,
257,
12554,
527,
3262,
274,
20857,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
611,
25745,
318,
5550,
38865,
25,
198,
220,
220,
220,
220,
220,
220,
220,
25745,
796,
705,
12286,
6,
628,
220,
220,
220,
611,
37647,
318,
5550,
38865,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37647,
796,
23884,
628,
220,
220,
220,
40391,
796,
6139,
44,
735,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
28,
9078,
74,
3266,
13,
40717,
11792,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
28,
44,
735,
3419,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
611,
1020,
318,
5550,
38865,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
796,
23884,
628,
220,
220,
220,
26181,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
38993,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3672,
10354,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
34574,
602,
10354,
37647,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
944,
11280,
10354,
277,
470,
395,
14,
90,
14933,
10223,
92,
14,
90,
31092,
62,
4906,
13,
437,
4122,
92,
14,
90,
3672,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
705,
16684,
10354,
1020,
11,
198,
220,
220,
220,
1782,
628,
220,
220,
220,
611,
14722,
318,
407,
5550,
38865,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
17816,
38993,
6,
7131,
6,
23912,
1424,
20520,
796,
14722,
198,
220,
220,
220,
611,
25745,
318,
407,
5550,
38865,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
17816,
38993,
6,
7131,
6,
14933,
10223,
20520,
796,
25745,
628,
220,
220,
220,
1441,
8271,
62,
4906,
7,
15042,
11,
26181,
8,
628,
198,
4299,
787,
62,
29048,
62,
392,
62,
6604,
7,
198,
220,
220,
220,
220,
220,
220,
220,
269,
17602,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
3672,
11639,
9288,
12,
79,
85,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
1624,
62,
3672,
11639,
9288,
12,
79,
28435,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
34574,
602,
28,
7206,
38865,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1624,
62,
34574,
602,
28,
7206,
38865,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1624,
62,
14933,
10223,
28,
7206,
38865,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
11340,
62,
18242,
28,
7206,
38865,
11,
198,
8,
4613,
309,
29291,
58,
198,
220,
220,
220,
12972,
74,
3266,
13,
48205,
13,
30946,
7609,
31715,
11,
198,
220,
220,
220,
12972,
74,
3266,
13,
48205,
13,
30946,
7609,
31715,
44819,
198,
5974,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7921,
274,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
6115,
62,
11340,
62,
18242,
318,
5550,
38865,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
11340,
62,
18242,
796,
1391,
48780,
3698,
62,
57,
11651,
62,
20373,
25,
406,
6242,
3698,
62,
57,
11651,
62,
39488,
92,
628,
220,
220,
220,
279,
85,
796,
787,
62,
31092,
7,
198,
220,
220,
220,
220,
220,
220,
220,
12972,
74,
3266,
13,
48205,
13,
30946,
7609,
31715,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6115,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
37647,
28,
29048,
62,
34574,
602,
11,
198,
220,
220,
220,
220,
220,
220,
220,
14722,
28,
29048,
62,
11340,
62,
18242,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6604,
8134,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3672,
10354,
1624,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
14933,
10223,
10354,
1624,
62,
14933,
10223,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
70,
344,
30946,
7609,
40961,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
30094,
5376,
10354,
705,
9288,
12,
30094,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
279,
28435,
796,
787,
62,
31092,
7,
198,
220,
220,
220,
220,
220,
220,
220,
12972,
74,
3266,
13,
48205,
13,
30946,
7609,
31715,
44819,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1624,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
37647,
28,
6604,
62,
34574,
602,
11,
198,
220,
220,
220,
220,
220,
220,
220,
25745,
28,
6604,
62,
14933,
10223,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1020,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29048,
5376,
10354,
6115,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
1441,
279,
85,
11,
279,
28435,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628,
198,
31,
9078,
9288,
13,
69,
9602,
628
] | 2.155219 | 1,849 |
import os
import sys
import subprocess
import traceback
class ConfigParams(object):
"""This class is used to create different confiuration space for jetson tx1
"""
def set_big_core_status(self, cpu_name, status):
"""This function is used set core status (enable or disable)
@input:
cpu_name: cpu that will be enabled or disabled
@returns:
boolean: whether the operation was successful or not
"""
if cpu_name!="cpu0":
filename="{0}{1}{2}".format("/sys/devices/system/cpu/",
cpu_name,
"/online"
)
cur_status=subprocess.getstatusoutput("cat {0}".format(filename))[1]
if cur_status!=status:
res=subprocess.call(["sudo","sh","./utils/change_core_status.sh",str(cpu_name),str(status)])
if res!=0:
err="subprocess command failed"
print("[CPU STATUS ERROR]: {0}".format(err))
return False
# check if the operation is successful
new_status= subprocess.getstatusoutput("cat {0}".format(filename))[1]
if new_status!=status:
print ("[CPU STATUS ERROR]: "+cpu_name+ "\n"
"expected: " + str(status) + "\n"
"actual: "+ str(new_status))
return False
return True
else:
print("invalid cpu_name argument")
def set_big_core_freq(self, cpu_name, frequency):
"""This function is used to set core frequency of one or more cores
@input:
frequency: clockspeed at what the cpu will be set
cpu_name: cpu number which will be set
@returns:
@returns:
boolean: status of operation
"""
frequency = int(frequency)
if frequency is not None:
filename="{0}{1}{2}".format("/sys/devices/system/cpu/",
cpu_name,
"/cpufreq/scaling_cur_freq")
cur_freq=subprocess.getstatusoutput("cat {0}".format(filename))[1]
res=subprocess.call(["sudo","sh","./utils/change_core_frequency.sh",str(self.cur_sys),str(frequency),str(cur_freq)])
if res!=0:
err=traceback.print_exc()
print("[CPU FREQUENCY ERROR]: {0}".format(err))
return False
new_freq=subprocess.getstatusoutput("cat {0}".format(filename))[1]
if str(new_freq)!=str(frequency):
print ("[CPU FREQUENCY ERROR]: "+cpu_name+ "\n"
"expected: " + str(frequency) + "\n"
"actual: "+ str(new_freq))
return False
return True
def set_gpu_freq(self, frequency):
"""This function is used to change gpu clockspeeds
@input:
frequency: the clockspeed at which the gpu will be set
@returns:
boolean: status of operation
"""
frequency = int(frequency)
if frequency is not None:
filename=self.cfg["systems"][self.cur_sys]["gpu"]["frequency"]["current"]
try:
if frequency is not None:
cur_freq=subprocess.getstatusoutput("cat {0}".format(filename))[1]
res=subprocess.call(["sudo","sh","./utils/change_gpu_frequency.sh",str(self.cur_sys),str(frequency),str(cur_freq)])
if res!=0:
err=traceback.print_exc()
print("[GPU FREQUENCY ERROR]: {0}".format(err))
return False
# check if the operation is successful
new_freq=subprocess.getstatusoutput("cat {0}".format(filename))[1]
if new_freq!=frequency:
print ("[GPU FREQUENCY ERROR]: \n"
"expected: " + str(frequency) + "\n"
"actual: "+ str(new_freq))
return False
return True
except AttributeError as e:
print("[GPU FREQUENCY ERROR: {0}]".format(e))
def set_emc_freq(self, frequency):
"""This function is used to change emmc clockspeeds
@input:
frequency: the clockspeed at which the emmc will be set
@returns:
boolean: status of operation
"""
#print ("emc frequency")
frequency = int(frequency)
if frequency is not None:
filename=self.cfg["systems"][self.cur_sys]["emc"]["frequency"]["current"]
try:
if frequency is not None:
cur_freq=subprocess.getstatusoutput("cat {0}".format(filename))[1]
res=subprocess.call(["sudo","sh","./utils/change_emc_frequency.sh",str(self.cur_sys),str(frequency)])
if res!=0:
err=traceback.print_exc()
print("[EMC FREQUENCY ERROR]: {0}".format(err))
return False
# check if the operation is successful
new_freq=subprocess.getstatusoutput("cat {0}".format(filename))[1]
if new_freq!=frequency:
print ("[EMC FREQUENCY ERROR]: \n"
"expected: " + str(frequency) + "\n"
"actual: "+ str(new_freq))
return False
return True
except AttributeError as e:
print("[EMC FREQUENCY ERROR: {0}]".format(e))
def set_scheduler_policy(self, val):
""""This function is used to set scheduler policy"""
if val==0: os.system ("echo cfq > /sys/block/mmcblk0/queue/scheduler")
elif val==1: os.system ("echo noop > /sys/block/mmcblk0/queue/scheduler")
else: print("[ERROR]: Invalid policy value")
def set_cache_pressure(self, val):
"""This function is used to set cache pressure"""
os.system ("sysctl vm.vfs_cache_pressure={0}".format(val))
def set_swappiness(self, val):
"""This function is used to set swappiness value"""
os.system ("sysctl vm.swappiness={0}".format(val))
def set_dirty_bg_ratio(self, val):
"""This function is used to set dirty bg value"""
os.system ("sysctl vm.dirty_background_ratio={0}".format(val))
def set_dirty_ratio(self, val):
"""This function is used to set dirty ratio value"""
os.system ("sysctl vm.dirty_ratio={0}".format(val))
def set_drop_caches(self, val):
"""This function is used to set drop caches value"""
os.system ("sysctl vm.drop_caches={0}".format(val))
def set_sched_child_runs_first(self, val):
"""This function is used to set kernel.sched child runs first value"""
os.system ("sysctl kernel.sched_child_runs_first={0}".format(val))
def set_sched_rt_runtime_us(self, val):
"""This function is used to set sched rt runtime us value"""
os.system ("sysctl kernel.sched_rt_runtime_us={0}".format(val))
def set_nr_hugepages(self, val):
"""This function is used to set nr hugepages value"""
os.system ("sysctl vm.nr_hugepages={0}".format(val))
def set_overcommit_ratio(self, val):
"""This function is used to set overcommit ratio value"""
os.system ("sysctl vm.overcommit_ratio={0}".format(val))
def set_overcommit_memory(self, val):
"""This function is used to set overcommit memory value"""
os.system ("sysctl vm.overcommit_memory={0}".format(val))
def set_overcommit_hugepages(self, val):
"""This function is used to set overcommit hugepages value"""
os.system ("sysctl vm.overcommit_hugepages={0}".format(val))
def set_max_pids(self, val):
"""This function is used to set max pids value"""
os.system ("sysctl user.max_pid_namespaces={0}".format(val))
def set_sched_nr_migrate(self, val):
"""This function is used to set sched nr migrate value"""
os.system ("sysctl kernel.sched_nr_migrate={0}".format(val))
def set_sched_time_avg_ms(self, val):
"""This function is used to set sched nr migrate value"""
os.system ("sysctl kernel.sched_time_avg_ms={0}".format(val))
def set_cpu_time_max_percent(self, val):
"""This function is used to set cpu time max percent value"""
os.system ("sysctl kernel.cpu_time_max_percent={0}".format(val))
| [
11748,
28686,
220,
198,
11748,
25064,
198,
11748,
850,
14681,
198,
11748,
12854,
1891,
198,
198,
4871,
17056,
10044,
4105,
7,
15252,
2599,
198,
220,
220,
220,
37227,
1212,
1398,
318,
973,
284,
2251,
1180,
1013,
72,
3924,
2272,
329,
20792,
261,
220,
27765,
16,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
14261,
62,
7295,
62,
13376,
7,
944,
11,
42804,
62,
3672,
11,
3722,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
900,
4755,
3722,
357,
21633,
393,
15560,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15414,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42804,
62,
3672,
25,
42804,
326,
481,
307,
9343,
393,
10058,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
25131,
25,
1771,
262,
4905,
373,
4388,
393,
407,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
42804,
62,
3672,
0,
2625,
36166,
15,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29472,
2625,
90,
15,
18477,
16,
18477,
17,
92,
1911,
18982,
7203,
14,
17597,
14,
42034,
14,
10057,
14,
36166,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42804,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12813,
25119,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1090,
62,
13376,
28,
7266,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1090,
62,
13376,
0,
28,
13376,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
28,
7266,
14681,
13,
13345,
7,
14692,
24032,
2430,
1477,
2430,
19571,
26791,
14,
3803,
62,
7295,
62,
13376,
13,
1477,
1600,
2536,
7,
36166,
62,
3672,
828,
2536,
7,
13376,
8,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
581,
0,
28,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11454,
2625,
7266,
14681,
3141,
4054,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
58,
36037,
15486,
2937,
33854,
5974,
1391,
15,
92,
1911,
18982,
7,
8056,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
611,
262,
4905,
318,
4388,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
13376,
28,
850,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
649,
62,
13376,
0,
28,
13376,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
5855,
58,
36037,
15486,
2937,
33854,
5974,
43825,
36166,
62,
3672,
10,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40319,
25,
366,
1343,
965,
7,
13376,
8,
1343,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
50039,
25,
43825,
965,
7,
3605,
62,
13376,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
259,
12102,
42804,
62,
3672,
4578,
4943,
628,
220,
220,
220,
825,
900,
62,
14261,
62,
7295,
62,
19503,
80,
7,
944,
11,
42804,
62,
3672,
11,
8373,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
4755,
8373,
286,
530,
393,
517,
21758,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15414,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8373,
25,
29906,
39492,
379,
644,
262,
42804,
481,
307,
900,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42804,
62,
3672,
25,
42804,
1271,
543,
481,
307,
900,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25131,
25,
3722,
286,
4905,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8373,
796,
493,
7,
35324,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
8373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29472,
2625,
90,
15,
18477,
16,
18477,
17,
92,
1911,
18982,
7203,
14,
17597,
14,
42034,
14,
10057,
14,
36166,
14,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42804,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12813,
13155,
3046,
42180,
14,
1416,
4272,
62,
22019,
62,
19503,
80,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1090,
62,
19503,
80,
28,
7266,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
28,
7266,
14681,
13,
13345,
7,
14692,
24032,
2430,
1477,
2430,
19571,
26791,
14,
3803,
62,
7295,
62,
35324,
13,
1477,
1600,
2536,
7,
944,
13,
22019,
62,
17597,
828,
2536,
7,
35324,
828,
2536,
7,
22019,
62,
19503,
80,
8,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
581,
0,
28,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11454,
28,
40546,
1891,
13,
4798,
62,
41194,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
58,
36037,
44253,
10917,
45155,
33854,
5974,
1391,
15,
92,
1911,
18982,
7,
8056,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
19503,
80,
28,
7266,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
965,
7,
3605,
62,
19503,
80,
31520,
28,
2536,
7,
35324,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
5855,
58,
36037,
44253,
10917,
45155,
33854,
5974,
43825,
36166,
62,
3672,
10,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40319,
25,
366,
1343,
965,
7,
35324,
8,
1343,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
50039,
25,
43825,
965,
7,
3605,
62,
19503,
80,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
220,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
220,
220,
198,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
46999,
62,
19503,
80,
7,
944,
11,
8373,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
1487,
308,
19944,
29906,
431,
5379,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15414,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8373,
25,
262,
29906,
39492,
379,
543,
262,
308,
19944,
481,
307,
900,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25131,
25,
3722,
286,
4905,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
8373,
796,
493,
7,
35324,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
8373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29472,
28,
944,
13,
37581,
14692,
10057,
82,
1,
7131,
944,
13,
22019,
62,
17597,
7131,
1,
46999,
1,
7131,
1,
35324,
1,
7131,
1,
14421,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
8373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1090,
62,
19503,
80,
28,
7266,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
28,
7266,
14681,
13,
13345,
7,
14692,
24032,
2430,
1477,
2430,
19571,
26791,
14,
3803,
62,
46999,
62,
35324,
13,
1477,
1600,
2536,
7,
944,
13,
22019,
62,
17597,
828,
2536,
7,
35324,
828,
2536,
7,
22019,
62,
19503,
80,
8,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
581,
0,
28,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11454,
28,
40546,
1891,
13,
4798,
62,
41194,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
58,
33346,
44253,
10917,
45155,
33854,
5974,
1391,
15,
92,
1911,
18982,
7,
8056,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
611,
262,
4905,
318,
4388,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
19503,
80,
28,
7266,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
649,
62,
19503,
80,
0,
28,
35324,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
5855,
58,
33346,
44253,
10917,
45155,
33854,
5974,
3467,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40319,
25,
366,
1343,
965,
7,
35324,
8,
1343,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
50039,
25,
43825,
965,
7,
3605,
62,
19503,
80,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
58,
33346,
44253,
10917,
45155,
33854,
25,
1391,
15,
92,
60,
1911,
18982,
7,
68,
4008,
220,
198,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
368,
66,
62,
19503,
80,
7,
944,
11,
8373,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
1487,
795,
23209,
29906,
431,
5379,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
15414,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8373,
25,
262,
29906,
39492,
379,
543,
262,
795,
23209,
481,
307,
900,
198,
220,
220,
220,
220,
220,
220,
220,
2488,
7783,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25131,
25,
3722,
286,
4905,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
5855,
368,
66,
8373,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
8373,
796,
493,
7,
35324,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
8373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29472,
28,
944,
13,
37581,
14692,
10057,
82,
1,
7131,
944,
13,
22019,
62,
17597,
7131,
1,
368,
66,
1,
7131,
1,
35324,
1,
7131,
1,
14421,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
8373,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1090,
62,
19503,
80,
28,
7266,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
581,
28,
7266,
14681,
13,
13345,
7,
14692,
24032,
2430,
1477,
2430,
19571,
26791,
14,
3803,
62,
368,
66,
62,
35324,
13,
1477,
1600,
2536,
7,
944,
13,
22019,
62,
17597,
828,
2536,
7,
35324,
8,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
581,
0,
28,
15,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11454,
28,
40546,
1891,
13,
4798,
62,
41194,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
58,
3620,
34,
44253,
10917,
45155,
33854,
5974,
1391,
15,
92,
1911,
18982,
7,
8056,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
611,
262,
4905,
318,
4388,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
19503,
80,
28,
7266,
14681,
13,
1136,
13376,
22915,
7203,
9246,
1391,
15,
92,
1911,
18982,
7,
34345,
4008,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
649,
62,
19503,
80,
0,
28,
35324,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
5855,
58,
3620,
34,
44253,
10917,
45155,
33854,
5974,
3467,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
40319,
25,
366,
1343,
965,
7,
35324,
8,
1343,
37082,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
50039,
25,
43825,
965,
7,
3605,
62,
19503,
80,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
3460,
4163,
12331,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
58,
3620,
34,
44253,
10917,
45155,
33854,
25,
1391,
15,
92,
60,
1911,
18982,
7,
68,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
1416,
704,
18173,
62,
30586,
7,
944,
11,
1188,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
13538,
15931,
1212,
2163,
318,
973,
284,
900,
6038,
18173,
2450,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1188,
855,
15,
25,
28686,
13,
10057,
5855,
30328,
30218,
80,
1875,
1220,
17597,
14,
9967,
14,
3020,
66,
2436,
74,
15,
14,
36560,
14,
1416,
704,
18173,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
1188,
855,
16,
25,
28686,
13,
10057,
5855,
30328,
645,
404,
1875,
1220,
17597,
14,
9967,
14,
3020,
66,
2436,
74,
15,
14,
36560,
14,
1416,
704,
18173,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
3601,
7203,
58,
24908,
5974,
17665,
2450,
1988,
4943,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
23870,
62,
36151,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
12940,
3833,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
85,
9501,
62,
23870,
62,
36151,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
2032,
42661,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
1509,
42661,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
2032,
42661,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
49075,
62,
35904,
62,
10366,
952,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
11841,
275,
70,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
49075,
62,
25249,
62,
10366,
952,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
49075,
62,
10366,
952,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
11841,
8064,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
49075,
62,
10366,
952,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
14781,
62,
66,
3694,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
4268,
50177,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
14781,
62,
66,
3694,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
1416,
704,
62,
9410,
62,
48381,
62,
11085,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
9720,
13,
1416,
704,
1200,
4539,
717,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
9720,
13,
1416,
704,
62,
9410,
62,
48381,
62,
11085,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
1416,
704,
62,
17034,
62,
43282,
62,
385,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
6038,
374,
83,
19124,
514,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
9720,
13,
1416,
704,
62,
17034,
62,
43282,
62,
385,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
48624,
62,
40878,
31126,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
299,
81,
3236,
31126,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
48624,
62,
40878,
31126,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
2502,
41509,
62,
10366,
952,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
625,
41509,
8064,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
2502,
41509,
62,
10366,
952,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
2502,
41509,
62,
31673,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
625,
41509,
4088,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
2502,
41509,
62,
31673,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
2502,
41509,
62,
40878,
31126,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
625,
41509,
3236,
31126,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
45887,
13,
2502,
41509,
62,
40878,
31126,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
9806,
62,
79,
2340,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
3509,
279,
2340,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
2836,
13,
9806,
62,
35317,
62,
14933,
43076,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
825,
900,
62,
1416,
704,
62,
48624,
62,
76,
42175,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
6038,
299,
81,
32492,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
9720,
13,
1416,
704,
62,
48624,
62,
76,
42175,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
198,
220,
220,
220,
825,
900,
62,
1416,
704,
62,
2435,
62,
615,
70,
62,
907,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
6038,
299,
81,
32492,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
9720,
13,
1416,
704,
62,
2435,
62,
615,
70,
62,
907,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
220,
220,
220,
825,
900,
62,
36166,
62,
2435,
62,
9806,
62,
25067,
7,
944,
11,
1188,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
2163,
318,
973,
284,
900,
42804,
640,
3509,
1411,
1988,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
5855,
17597,
34168,
9720,
13,
36166,
62,
2435,
62,
9806,
62,
25067,
34758,
15,
92,
1911,
18982,
7,
2100,
4008,
628,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
628
] | 1.999554 | 4,483 |
from django.urls import path
from .views import index, InsertSampleDataView, \
GenreListView, GenreDetailView, GenreUpdateView, GenreDeleteView, GenreCreateView, \
AuthorListView, AuthorDetailView, AuthorUpdateView, AuthorDeleteView, AuthorCreateView, \
ArtworkListView, ArtworkDetailView, ArtworkUpdateView, ArtworkDeleteView, \
ArtworkWizard
from .preview import GenreFormPreview
from .forms import GenreForm
urlpatterns = [
path('', index, name='index'),
path('insert-sample-data', InsertSampleDataView.as_view(), name='insert-sample-data'),
path('genres', GenreListView.as_view(), name='genres'),
path('genres/create', GenreCreateView.as_view(), name='genre-create'),
path('genres/<int:pk>/view', GenreDetailView.as_view(), name='genre-detail-view'),
path('genres/<int:pk>/update', GenreUpdateView.as_view(), name='genre-update'),
path('genres/<int:pk>/delete', GenreDeleteView.as_view(), name='genre-delete'),
path('authors', AuthorListView.as_view(), name='authors'),
path('authors/create', AuthorCreateView.as_view(), name='author-create'),
path('authors/<int:pk>/view', AuthorDetailView.as_view(), name='author-detail-view'),
path('authors/<int:pk>/update', AuthorUpdateView.as_view(), name='author-update'),
path('authors/<int:pk>/delete', AuthorDeleteView.as_view(), name='author-delete'),
path('artworks', ArtworkListView.as_view(), name='artworks'),
path('artworks/<int:pk>/view', ArtworkDetailView.as_view(), name='artwork-detail-view'),
path('artworks/<int:pk>/delete', ArtworkDeleteView.as_view(), name='artwork-delete'),
# formtools FormPreview
path('genres/formtools-preview', GenreFormPreview(GenreForm), name='genre-formtools-preview'),
# formtools Artwork wizard
path('artworks/create', ArtworkWizard.as_view(ArtworkWizard.FORMS), name='artwork-create-wizard'),
path('artworks/<int:pk>/update', ArtworkWizard.as_view(ArtworkWizard.FORMS), name='artwork-update-wizard'),
]
| [
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
198,
6738,
764,
33571,
1330,
6376,
11,
35835,
36674,
6601,
7680,
11,
3467,
198,
220,
220,
220,
5215,
260,
8053,
7680,
11,
5215,
260,
11242,
603,
7680,
11,
5215,
260,
10260,
7680,
11,
5215,
260,
38727,
7680,
11,
5215,
260,
16447,
7680,
11,
3467,
198,
220,
220,
220,
6434,
8053,
7680,
11,
6434,
11242,
603,
7680,
11,
6434,
10260,
7680,
11,
6434,
38727,
7680,
11,
6434,
16447,
7680,
11,
3467,
198,
220,
220,
220,
3683,
1818,
8053,
7680,
11,
3683,
1818,
11242,
603,
7680,
11,
3683,
1818,
10260,
7680,
11,
3683,
1818,
38727,
7680,
11,
3467,
198,
220,
220,
220,
3683,
1818,
54,
8669,
198,
6738,
764,
3866,
1177,
1330,
5215,
260,
8479,
48835,
198,
6738,
764,
23914,
1330,
5215,
260,
8479,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
10786,
3256,
6376,
11,
1438,
11639,
9630,
33809,
198,
220,
220,
220,
3108,
10786,
28463,
12,
39873,
12,
7890,
3256,
35835,
36674,
6601,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
28463,
12,
39873,
12,
7890,
33809,
198,
220,
220,
220,
3108,
10786,
5235,
411,
3256,
5215,
260,
8053,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
5235,
411,
33809,
198,
220,
220,
220,
3108,
10786,
5235,
411,
14,
17953,
3256,
5215,
260,
16447,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
35850,
12,
17953,
33809,
198,
220,
220,
220,
3108,
10786,
5235,
411,
14,
27,
600,
25,
79,
74,
29,
14,
1177,
3256,
5215,
260,
11242,
603,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
35850,
12,
49170,
12,
1177,
33809,
198,
220,
220,
220,
3108,
10786,
5235,
411,
14,
27,
600,
25,
79,
74,
29,
14,
19119,
3256,
5215,
260,
10260,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
35850,
12,
19119,
33809,
198,
220,
220,
220,
3108,
10786,
5235,
411,
14,
27,
600,
25,
79,
74,
29,
14,
33678,
3256,
5215,
260,
38727,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
35850,
12,
33678,
33809,
198,
220,
220,
220,
3108,
10786,
41617,
3256,
6434,
8053,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
41617,
33809,
198,
220,
220,
220,
3108,
10786,
41617,
14,
17953,
3256,
6434,
16447,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
9800,
12,
17953,
33809,
198,
220,
220,
220,
3108,
10786,
41617,
14,
27,
600,
25,
79,
74,
29,
14,
1177,
3256,
6434,
11242,
603,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
9800,
12,
49170,
12,
1177,
33809,
198,
220,
220,
220,
3108,
10786,
41617,
14,
27,
600,
25,
79,
74,
29,
14,
19119,
3256,
6434,
10260,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
9800,
12,
19119,
33809,
198,
220,
220,
220,
3108,
10786,
41617,
14,
27,
600,
25,
79,
74,
29,
14,
33678,
3256,
6434,
38727,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
9800,
12,
33678,
33809,
198,
220,
220,
220,
3108,
10786,
433,
5225,
3256,
3683,
1818,
8053,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
433,
5225,
33809,
198,
220,
220,
220,
3108,
10786,
433,
5225,
14,
27,
600,
25,
79,
74,
29,
14,
1177,
3256,
3683,
1818,
11242,
603,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
433,
1818,
12,
49170,
12,
1177,
33809,
198,
220,
220,
220,
3108,
10786,
433,
5225,
14,
27,
600,
25,
79,
74,
29,
14,
33678,
3256,
3683,
1818,
38727,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
433,
1818,
12,
33678,
33809,
198,
220,
220,
220,
1303,
1296,
31391,
5178,
48835,
198,
220,
220,
220,
3108,
10786,
5235,
411,
14,
687,
31391,
12,
3866,
1177,
3256,
5215,
260,
8479,
48835,
7,
13746,
260,
8479,
828,
1438,
11639,
35850,
12,
687,
31391,
12,
3866,
1177,
33809,
198,
220,
220,
220,
1303,
1296,
31391,
3683,
1818,
18731,
198,
220,
220,
220,
3108,
10786,
433,
5225,
14,
17953,
3256,
3683,
1818,
54,
8669,
13,
292,
62,
1177,
7,
8001,
1818,
54,
8669,
13,
13775,
5653,
828,
1438,
11639,
433,
1818,
12,
17953,
12,
86,
8669,
33809,
198,
220,
220,
220,
3108,
10786,
433,
5225,
14,
27,
600,
25,
79,
74,
29,
14,
19119,
3256,
3683,
1818,
54,
8669,
13,
292,
62,
1177,
7,
8001,
1818,
54,
8669,
13,
13775,
5653,
828,
1438,
11639,
433,
1818,
12,
19119,
12,
86,
8669,
33809,
198,
60,
198
] | 2.829303 | 703 |
#\\ --- backslash
print("I am here for the backslash\\")
| [
2,
6852,
11420,
736,
6649,
1077,
201,
198,
4798,
7203,
40,
716,
994,
329,
262,
736,
6649,
1077,
6852,
4943,
201,
198
] | 2.681818 | 22 |
from django.contrib import admin
from applications.office_panel.models import Patient
admin.site.register(Patient)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
198,
6738,
5479,
13,
31810,
62,
35330,
13,
27530,
1330,
35550,
198,
198,
28482,
13,
15654,
13,
30238,
7,
12130,
1153,
8,
198
] | 3.65625 | 32 |
from catalog.tasks import scan_catalog, update_catalog
from chibi_gob_mx import catalog
import datetime
import unittest
from unittest.mock import patch, Mock
from catalog.factories import (
Catalog as Catalog_factory,
Catalog_with_id as Catalog_with_id_factory
)
from catalog.models import Catalog_pulse, Catalog
| [
6738,
18388,
13,
83,
6791,
1330,
9367,
62,
9246,
11794,
11,
4296,
62,
9246,
11794,
198,
6738,
442,
27567,
62,
44270,
62,
36802,
1330,
18388,
628,
198,
198,
11748,
4818,
8079,
198,
11748,
555,
715,
395,
198,
6738,
555,
715,
395,
13,
76,
735,
1330,
8529,
11,
44123,
198,
198,
6738,
18388,
13,
22584,
1749,
1330,
357,
198,
220,
220,
220,
44515,
355,
44515,
62,
69,
9548,
11,
198,
220,
220,
220,
44515,
62,
4480,
62,
312,
355,
44515,
62,
4480,
62,
312,
62,
69,
9548,
198,
8,
198,
6738,
18388,
13,
27530,
1330,
44515,
62,
79,
9615,
11,
44515,
628,
628
] | 3.215686 | 102 |
# Edinburgh bus tracker - simple example output to a shell
# (c) Mark Pentler 2017
from edinbustrack import *
import os
from time import sleep
# setup our variables first. stop id and url are definable in case they change them
stop_id = "36232626" # grabbed from the mybustracker website
stop_name = get_stop_name(stop_id)
while True:
services = get_bus_times(stop_id) # update our service list
os.system("clear")
print "Next departures from " + stop_name + " - CTRL-C to exit"
print "---------------------"
print "Service\t\tMins"
print "---------------------"
for id, service, mins in services: # iterate through the list
print service + "\t\t" + mins
sleep(30) # wait before updating again
| [
2,
23475,
1323,
30013,
532,
2829,
1672,
5072,
284,
257,
7582,
198,
2,
357,
66,
8,
2940,
9696,
1754,
2177,
198,
198,
6738,
1225,
259,
65,
436,
39638,
1330,
1635,
198,
11748,
28686,
198,
6738,
640,
1330,
3993,
198,
198,
2,
9058,
674,
9633,
717,
13,
2245,
4686,
290,
19016,
389,
2730,
540,
287,
1339,
484,
1487,
606,
198,
11338,
62,
312,
796,
366,
2623,
1954,
2075,
2075,
1,
1303,
13176,
422,
262,
616,
65,
436,
81,
10735,
3052,
198,
11338,
62,
3672,
796,
651,
62,
11338,
62,
3672,
7,
11338,
62,
312,
8,
198,
198,
4514,
6407,
25,
198,
197,
30416,
796,
651,
62,
10885,
62,
22355,
7,
11338,
62,
312,
8,
1303,
4296,
674,
2139,
1351,
198,
197,
418,
13,
10057,
7203,
20063,
4943,
628,
197,
4798,
366,
10019,
50050,
422,
366,
1343,
2245,
62,
3672,
1343,
366,
532,
45249,
12,
34,
284,
8420,
1,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
366,
19351,
21215,
198,
197,
4798,
366,
16177,
59,
83,
59,
83,
44,
1040,
1,
198,
197,
4798,
366,
19351,
21215,
628,
197,
1640,
4686,
11,
2139,
11,
23550,
287,
2594,
25,
1303,
11629,
378,
832,
262,
1351,
198,
197,
197,
4798,
2139,
1343,
37082,
83,
59,
83,
1,
1343,
23550,
628,
197,
42832,
7,
1270,
8,
1303,
4043,
878,
19698,
757,
198
] | 3.269406 | 219 |
""" Unittests for nodes.feature_generation"""
| [
37811,
791,
715,
3558,
329,
13760,
13,
30053,
62,
20158,
37811,
198
] | 3.833333 | 12 |
import numpy as np
import pandas as pd
from sklearn.gaussian_process.kernels import RBF, ExpSineSquared
from darts.models import GaussianProcessFilter
from darts.models.filtering.moving_average import MovingAverage
from darts.models.filtering.kalman_filter import KalmanFilter
from darts import TimeSeries
from darts.utils import timeseries_generation as tg
from darts.tests.base_test_class import DartsBaseTestClass
if __name__ == "__main__":
KalmanFilterTestCase().test_kalman()
MovingAverageTestCase().test_moving_average_univariate()
MovingAverageTestCase().test_moving_average_multivariate()
GaussianProcessFilterTestCase().test_gaussian_process()
| [
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
1341,
35720,
13,
4908,
31562,
62,
14681,
13,
74,
44930,
1330,
17986,
37,
11,
5518,
50,
500,
22266,
1144,
198,
198,
6738,
47807,
13,
27530,
1330,
12822,
31562,
18709,
22417,
198,
6738,
47807,
13,
27530,
13,
10379,
20212,
13,
31462,
62,
23913,
1330,
26768,
26287,
198,
6738,
47807,
13,
27530,
13,
10379,
20212,
13,
74,
282,
805,
62,
24455,
1330,
12612,
805,
22417,
198,
6738,
47807,
1330,
3862,
27996,
198,
6738,
47807,
13,
26791,
1330,
1661,
10640,
62,
20158,
355,
256,
70,
198,
6738,
47807,
13,
41989,
13,
8692,
62,
9288,
62,
4871,
1330,
360,
5889,
14881,
14402,
9487,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
12612,
805,
22417,
14402,
20448,
22446,
9288,
62,
74,
282,
805,
3419,
198,
220,
220,
220,
26768,
26287,
14402,
20448,
22446,
9288,
62,
31462,
62,
23913,
62,
403,
42524,
3419,
198,
220,
220,
220,
26768,
26287,
14402,
20448,
22446,
9288,
62,
31462,
62,
23913,
62,
16680,
42524,
3419,
198,
220,
220,
220,
12822,
31562,
18709,
22417,
14402,
20448,
22446,
9288,
62,
4908,
31562,
62,
14681,
3419,
198
] | 3.414141 | 198 |
import torch.nn as nn
from .base_model import Up_Conv_Block
class Decoder(nn.Module):
"""
Args:
N_p (int): The sum of the poses
N_z (int): The dimensions of the noise
"""
| [
11748,
28034,
13,
20471,
355,
299,
77,
198,
6738,
764,
8692,
62,
19849,
1330,
3205,
62,
3103,
85,
62,
12235,
628,
198,
4871,
34580,
7,
20471,
13,
26796,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
399,
62,
79,
357,
600,
2599,
383,
2160,
286,
262,
17313,
198,
220,
220,
220,
220,
220,
220,
220,
399,
62,
89,
357,
600,
2599,
383,
15225,
286,
262,
7838,
198,
220,
220,
220,
37227,
198
] | 2.364706 | 85 |
"""
Copyright (c) 2021, NVIDIA CORPORATION.
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 typing import List
import tensorflow as tf
class CriteoTsvReader:
"""
Input reader for pre-processed Criteo data.
Raw Criteo data is assumed to be preprocessed in the following way:
1. Missing values are replaced with zeros.
2. Negative values are replaced with zeros.
3. Integer features are transformed by log(x+1) and are hence tf.float32.
4. Categorical data is bucketized and are hence tf.int32
"""
if __name__ == "__main__":
dataset = CriteoTsvReader(file_pattern=r"./train/*",
num_dense_features=13,
vocab_sizes=[39884407, 39043, 17289, 7420, 20263,
3, 7120, 1543, 63, 38532952, 2953546,
403346, 10, 2208, 11938, 155, 4, 976,
14, 39979772, 25641295, 39664985, 585935,
12972, 108, 36],
batch_size=16384,
sharding=False)()
for step, (features, labels) in enumerate(dataset):
# print(features)
print(labels)
| [
37811,
198,
15069,
357,
66,
8,
33448,
11,
15127,
23929,
44680,
6234,
13,
198,
220,
198,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
628,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
628,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
11247,
739,
262,
13789,
13,
198,
37811,
198,
6738,
19720,
1330,
7343,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
198,
4871,
3864,
578,
78,
51,
21370,
33634,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
23412,
9173,
329,
662,
12,
14681,
276,
3864,
578,
78,
1366,
13,
628,
220,
220,
220,
16089,
3864,
578,
78,
1366,
318,
9672,
284,
307,
662,
14681,
276,
287,
262,
1708,
835,
25,
198,
220,
220,
220,
352,
13,
25639,
3815,
389,
6928,
351,
1976,
27498,
13,
198,
220,
220,
220,
362,
13,
36183,
3815,
389,
6928,
351,
1976,
27498,
13,
198,
220,
220,
220,
513,
13,
34142,
3033,
389,
14434,
416,
2604,
7,
87,
10,
16,
8,
290,
389,
12891,
48700,
13,
22468,
2624,
13,
198,
220,
220,
220,
604,
13,
327,
2397,
12409,
1366,
318,
19236,
1143,
290,
389,
12891,
48700,
13,
600,
2624,
198,
220,
220,
220,
37227,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
27039,
796,
3864,
578,
78,
51,
21370,
33634,
7,
7753,
62,
33279,
28,
81,
1911,
14,
27432,
15211,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
62,
67,
1072,
62,
40890,
28,
1485,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12776,
397,
62,
82,
4340,
41888,
2670,
3459,
25644,
22,
11,
5014,
48768,
11,
1596,
27693,
11,
8915,
1238,
11,
1160,
29558,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
513,
11,
767,
10232,
11,
1315,
3559,
11,
8093,
11,
4353,
4310,
1959,
4309,
11,
34772,
2327,
3510,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2319,
2091,
3510,
11,
838,
11,
15629,
23,
11,
15136,
2548,
11,
20708,
11,
604,
11,
860,
4304,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1478,
11,
43927,
3720,
43571,
11,
1679,
2414,
1065,
3865,
11,
48758,
2414,
42250,
11,
7618,
3270,
2327,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20248,
4761,
11,
15495,
11,
4570,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
7857,
28,
1433,
22842,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
427,
13493,
28,
25101,
8,
3419,
628,
220,
220,
220,
329,
2239,
11,
357,
40890,
11,
14722,
8,
287,
27056,
378,
7,
19608,
292,
316,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7,
40890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
23912,
1424,
8,
628,
220,
220,
220,
220,
198
] | 2.26087 | 782 |
# -*- coding: utf-8 -*-
"""
Detect genes using blast
Revision history:
----------------
2020-02-13: Amromics created
"""
from __future__ import division, print_function, absolute_import
import subprocess
import os, shutil, glob
import re
import sys
import argparse
def blast(sample,db,output, identity=90, threads=1, mincov=0,dbtype='nucl'):
"""
Call blastn with params
:param query_file (in fasta), db (blast indexed db), number of threads and identity
:return: list BLASTFields objects
"""
#check db is indexed
#dbfile=os.path.join(db_folder, 'sequences')
# run blastn
cmd ='blastn -query {query} -task blastn -dust no -perc_identity {identity} -db {db} -outfmt \'6 qseqid qstart qend qlen sseqid sstart send slen sstrand evalue length pident gaps gapopen stitle\' -num_threads {threads} -evalue 1E-20 -culling_limit 1 > temp.tab'.format(
query=sample,
identity=identity,
db=db,
threads=threads
)
if dbtype=='prot':
cmd ='blastp -query {query} -task blastp -db {db} -outfmt \'6 qseqid qstart qend qlen sseqid sstart send slen sstrand evalue length pident gaps gapopen stitle\' -num_threads {threads} -evalue 1E-20 > temp.tab'.format(
query=sample,
db=db,
threads=threads
)
print(cmd)
os.system(cmd)
#parse result
f=open('temp.tab')
line = f.readline()
result=[]
while line:
#result.append(line)
t=line.strip().split('\t')
blast_fields={'qseqid':t[0], 'qstart':t[1], 'qend':t[2], 'qlen':t[3],\
'sseqid':t[4], 'sstart':t[5], 'send':t[6], 'slen':t[7], 'sstrand':t[8],\
'evalue':t[9], 'length':t[10], 'pident':t[11], 'gaps':t[12], 'gapopen':t[13],\
'stitle':t[14]}
result.append(blast_fields)
line = f.readline()
f.close()
if os.path.exists('temp.tab'):
os.remove('temp.tab')
ret=[]
for s in result:
pccov = 100 * (int(s['length'])-int(s['gaps'])) / int(s['slen'])
if pccov<=mincov:
continue
ret.append(s)
return ret
def setupdb():
"""
make blast database from fasta file in db folder,
:param : fasta file (with folder'folder is the name of db and filename is 'sequences')
:return:
"""
#get name of db from file path:
for root, dirs, files in os.walk('db'):
for _file in files:
if _file.endswith(('sequences')):
name=os.path.basename(str(root))
#print (name)
seqfile=str(root)+'/'+_file
dbtype=sequence_type(seqfile)
cmd="makeblastdb -in {path} -title {name} -dbtype {type} -logfile /dev/null".format(
path=seqfile,
name=name,
type=dbtype
)
print (cmd)
os.system(cmd)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
220,
220,
220,
35874,
10812,
1262,
11975,
628,
198,
18009,
1166,
2106,
25,
198,
1783,
198,
42334,
12,
2999,
12,
1485,
25,
1703,
398,
873,
2727,
198,
198,
37811,
198,
6738,
11593,
37443,
834,
1330,
7297,
11,
3601,
62,
8818,
11,
4112,
62,
11748,
198,
11748,
850,
14681,
198,
11748,
28686,
11,
4423,
346,
11,
15095,
198,
11748,
302,
198,
11748,
25064,
198,
11748,
1822,
29572,
198,
4299,
11975,
7,
39873,
11,
9945,
11,
22915,
11,
5369,
28,
3829,
11,
14390,
28,
16,
11,
949,
66,
709,
28,
15,
11,
9945,
4906,
11639,
28803,
565,
6,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4889,
11975,
77,
351,
42287,
198,
220,
220,
220,
1058,
17143,
12405,
62,
7753,
357,
259,
3049,
64,
828,
20613,
357,
39806,
41497,
20613,
828,
1271,
286,
14390,
290,
5369,
198,
220,
220,
220,
1058,
7783,
25,
1351,
9878,
1921,
10234,
1164,
82,
5563,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
9122,
20613,
318,
41497,
198,
220,
220,
220,
1303,
9945,
7753,
28,
418,
13,
6978,
13,
22179,
7,
9945,
62,
43551,
11,
705,
3107,
3007,
11537,
628,
628,
198,
220,
220,
220,
1303,
1057,
11975,
77,
198,
220,
220,
220,
23991,
796,
6,
39806,
77,
532,
22766,
1391,
22766,
92,
532,
35943,
11975,
77,
532,
48859,
645,
532,
525,
66,
62,
738,
414,
1391,
738,
414,
92,
532,
9945,
1391,
9945,
92,
532,
448,
69,
16762,
34373,
21,
10662,
41068,
312,
10662,
9688,
10662,
437,
10662,
11925,
264,
41068,
312,
264,
9688,
3758,
1017,
268,
264,
2536,
392,
5418,
518,
4129,
279,
738,
17332,
7625,
9654,
336,
2578,
43054,
532,
22510,
62,
16663,
82,
1391,
16663,
82,
92,
532,
18206,
518,
352,
36,
12,
1238,
532,
66,
724,
278,
62,
32374,
352,
1875,
20218,
13,
8658,
4458,
18982,
7,
628,
220,
220,
220,
220,
220,
220,
220,
12405,
28,
39873,
11,
198,
220,
220,
220,
220,
220,
220,
220,
5369,
28,
738,
414,
11,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
28,
9945,
11,
198,
220,
220,
220,
220,
220,
220,
220,
14390,
28,
16663,
82,
628,
220,
220,
220,
1267,
628,
220,
220,
220,
611,
20613,
4906,
855,
6,
11235,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
6,
39806,
79,
532,
22766,
1391,
22766,
92,
532,
35943,
11975,
79,
220,
532,
9945,
1391,
9945,
92,
532,
448,
69,
16762,
34373,
21,
10662,
41068,
312,
10662,
9688,
10662,
437,
10662,
11925,
264,
41068,
312,
264,
9688,
3758,
1017,
268,
264,
2536,
392,
5418,
518,
4129,
279,
738,
17332,
7625,
9654,
336,
2578,
43054,
532,
22510,
62,
16663,
82,
1391,
16663,
82,
92,
532,
18206,
518,
352,
36,
12,
1238,
1875,
20218,
13,
8658,
4458,
18982,
7,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12405,
28,
39873,
11,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
28,
9945,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14390,
28,
16663,
82,
628,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
3601,
7,
28758,
8,
198,
220,
220,
220,
28686,
13,
10057,
7,
28758,
8,
198,
220,
220,
220,
1303,
29572,
1255,
198,
220,
220,
220,
277,
28,
9654,
10786,
29510,
13,
8658,
11537,
198,
220,
220,
220,
1627,
796,
277,
13,
961,
1370,
3419,
198,
220,
220,
220,
1255,
28,
21737,
198,
220,
220,
220,
981,
1627,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
20274,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
256,
28,
1370,
13,
36311,
22446,
35312,
10786,
59,
83,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
11975,
62,
25747,
34758,
6,
80,
41068,
312,
10354,
83,
58,
15,
4357,
705,
80,
9688,
10354,
83,
58,
16,
4357,
705,
80,
437,
10354,
83,
58,
17,
4357,
705,
80,
11925,
10354,
83,
58,
18,
4357,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
705,
82,
41068,
312,
10354,
83,
58,
19,
4357,
705,
82,
9688,
10354,
83,
58,
20,
4357,
705,
21280,
10354,
83,
58,
21,
4357,
705,
6649,
268,
10354,
83,
58,
22,
4357,
705,
82,
2536,
392,
10354,
83,
58,
23,
4357,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18206,
518,
10354,
83,
58,
24,
4357,
705,
13664,
10354,
83,
58,
940,
4357,
705,
79,
738,
10354,
83,
58,
1157,
4357,
705,
70,
1686,
10354,
83,
58,
1065,
4357,
705,
43554,
9654,
10354,
83,
58,
1485,
4357,
59,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
301,
2578,
10354,
83,
58,
1415,
48999,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
33295,
7,
39806,
62,
25747,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
277,
13,
961,
1370,
3419,
198,
220,
220,
220,
277,
13,
19836,
3419,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
10786,
29510,
13,
8658,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
28956,
10786,
29510,
13,
8658,
11537,
198,
220,
220,
220,
1005,
28,
21737,
198,
220,
220,
220,
329,
264,
287,
1255,
25,
628,
220,
220,
220,
220,
220,
220,
220,
279,
535,
709,
796,
1802,
1635,
357,
600,
7,
82,
17816,
13664,
6,
12962,
12,
600,
7,
82,
17816,
70,
1686,
20520,
4008,
1220,
493,
7,
82,
17816,
6649,
268,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
611,
279,
535,
709,
27,
28,
1084,
66,
709,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
13,
33295,
7,
82,
8,
628,
220,
220,
220,
1441,
1005,
628,
628,
198,
198,
4299,
9058,
9945,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
787,
11975,
6831,
422,
3049,
64,
2393,
287,
20613,
9483,
11,
198,
220,
220,
220,
1058,
17143,
1058,
3049,
64,
2393,
357,
4480,
9483,
6,
43551,
318,
262,
1438,
286,
20613,
290,
29472,
318,
705,
3107,
3007,
11537,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
1136,
1438,
286,
20613,
422,
2393,
3108,
25,
198,
220,
220,
220,
329,
6808,
11,
288,
17062,
11,
3696,
287,
28686,
13,
11152,
10786,
9945,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
7753,
287,
3696,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
4808,
7753,
13,
437,
2032,
342,
7,
10786,
3107,
3007,
11537,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
28,
418,
13,
6978,
13,
12093,
12453,
7,
2536,
7,
15763,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
357,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33756,
7753,
28,
2536,
7,
15763,
47762,
26488,
6,
10,
62,
7753,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20613,
4906,
28,
43167,
62,
4906,
7,
41068,
7753,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
2625,
15883,
39806,
9945,
532,
259,
1391,
6978,
92,
532,
7839,
1391,
3672,
92,
532,
9945,
4906,
1391,
4906,
92,
532,
6404,
7753,
1220,
7959,
14,
8423,
1911,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3108,
28,
41068,
7753,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
28,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
9945,
4906,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
357,
28758,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
7,
28758,
8,
198
] | 2.099928 | 1,391 |
#############################################################################
# Copyright (c) 2018 Eli Polonsky. 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 pytest
from twine.commands import upload
from pyci.shell import secrets
from pyci.api import exceptions
from pyci.api.publish.pypi import PyPI
from pyci.tests import utils as test_utils
| [
29113,
29113,
7804,
4242,
2,
198,
2,
15069,
357,
66,
8,
2864,
25204,
2165,
684,
2584,
13,
1439,
2489,
10395,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
220,
220,
1635,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
220,
220,
1635,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
220,
220,
1635,
11247,
739,
262,
13789,
13,
198,
2,
198,
29113,
29113,
7804,
4242,
2,
198,
198,
11748,
12972,
9288,
198,
6738,
665,
500,
13,
9503,
1746,
1330,
9516,
198,
198,
6738,
12972,
979,
13,
29149,
1330,
13141,
198,
6738,
12972,
979,
13,
15042,
1330,
13269,
198,
6738,
12972,
979,
13,
15042,
13,
12984,
1836,
13,
79,
4464,
72,
1330,
9485,
11901,
198,
6738,
12972,
979,
13,
41989,
1330,
3384,
4487,
355,
1332,
62,
26791,
628,
628,
628,
198
] | 4.024896 | 241 |
from hamcrest import *
try:
except TypeError:
print 'Object class defined at ' + getattr(object, '__file__', 'NOWHERE')
raise
| [
6738,
8891,
66,
2118,
1330,
1635,
198,
198,
28311,
25,
198,
16341,
5994,
12331,
25,
198,
220,
220,
220,
3601,
705,
10267,
1398,
5447,
379,
705,
1343,
651,
35226,
7,
15252,
11,
705,
834,
7753,
834,
3256,
705,
45669,
39,
9338,
11537,
198,
220,
220,
220,
5298,
198
] | 2.8125 | 48 |
# -*- coding: utf-8 -*-
'''
File name: code\lowestcost_search\sol_328.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
'''
# Solution to Project Euler Problem #328 :: Lowest-cost Search
#
# For more information see:
# https://projecteuler.net/problem=328
# Problem Statement
'''
We are trying to find a hidden number selected from the set of integers {1, 2, ..., n} by asking questions.
Each number (question) we ask, has a cost equal to the number asked and we get one of three possible answers: "Your guess is lower than the hidden number", or
"Yes, that's it!", or
"Your guess is higher than the hidden number".
Given the value of n, an optimal strategy minimizes the total cost (i.e. the sum of all the questions asked) for the worst possible case. E.g.
If n=3, the best we can do is obviously to ask the number "2". The answer will immediately lead us to find the hidden number (at a total cost = 2).
If n=8, we might decide to use a "binary search" type of strategy: Our first question would be "4" and if the hidden number is higher than 4 we will need one or two additional questions.
Let our second question be "6". If the hidden number is still higher than 6, we will need a third question in order to discriminate between 7 and 8.
Thus, our third question will be "7" and the total cost for this worst-case scenario will be 4+6+7=17.
We can improve considerably the worst-case cost for n=8, by asking "5" as our first question.
If we are told that the hidden number is higher than 5, our second question will be "7", then we'll know for certain what the hidden number is (for a total cost of 5+7=12).
If we are told that the hidden number is lower than 5, our second question will be "3" and if the hidden number is lower than 3 our third question will be "1", giving a total cost of 5+3+1=9.
Since 12>9, the worst-case cost for this strategy is 12. That's better than what we achieved previously with the "binary search" strategy; it is also better than or equal to any other strategy.
So, in fact, we have just described an optimal strategy for n=8.
Let C(n) be the worst-case cost achieved by an optimal strategy for n, as described above.
Thus C(1) = 0, C(2) = 1, C(3) = 2 and C(8) = 12.
Similarly, C(100) = 400 and C(n) = 17575.
Find C(n).
'''
# Solution
# Solution Approach
'''
'''
| [
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
7061,
6,
198,
220,
220,
220,
9220,
1438,
25,
2438,
59,
9319,
395,
15805,
62,
12947,
59,
34453,
62,
34256,
13,
9078,
198,
220,
220,
220,
6434,
25,
569,
1698,
291,
8518,
72,
198,
220,
220,
220,
7536,
2727,
25,
2556,
1160,
11,
2864,
198,
220,
220,
220,
11361,
10628,
25,
513,
13,
87,
198,
7061,
6,
198,
198,
2,
28186,
284,
4935,
412,
18173,
20647,
1303,
34256,
7904,
7754,
395,
12,
15805,
11140,
198,
2,
220,
198,
2,
1114,
517,
1321,
766,
25,
198,
2,
3740,
1378,
16302,
68,
18173,
13,
3262,
14,
45573,
28,
34256,
198,
198,
2,
20647,
21983,
220,
198,
7061,
6,
198,
1135,
389,
2111,
284,
1064,
257,
7104,
1271,
6163,
422,
262,
900,
286,
37014,
1391,
16,
11,
362,
11,
2644,
11,
299,
92,
416,
4737,
2683,
13,
220,
198,
10871,
1271,
357,
25652,
8,
356,
1265,
11,
468,
257,
1575,
4961,
284,
262,
1271,
1965,
290,
356,
651,
530,
286,
1115,
1744,
7429,
25,
366,
7120,
4724,
318,
2793,
621,
262,
7104,
1271,
1600,
393,
198,
366,
5297,
11,
326,
338,
340,
40754,
393,
198,
366,
7120,
4724,
318,
2440,
621,
262,
7104,
1271,
1911,
198,
15056,
262,
1988,
286,
299,
11,
281,
16586,
4811,
10356,
4340,
262,
2472,
1575,
357,
72,
13,
68,
13,
262,
2160,
286,
477,
262,
2683,
1965,
8,
329,
262,
5290,
1744,
1339,
13,
412,
13,
70,
13,
198,
198,
1532,
299,
28,
18,
11,
262,
1266,
356,
460,
466,
318,
6189,
284,
1265,
262,
1271,
366,
17,
1911,
383,
3280,
481,
3393,
1085,
514,
284,
1064,
262,
7104,
1271,
357,
265,
257,
2472,
1575,
796,
362,
737,
198,
198,
1532,
299,
28,
23,
11,
356,
1244,
5409,
284,
779,
257,
366,
39491,
2989,
1,
2099,
286,
4811,
25,
3954,
717,
1808,
561,
307,
366,
19,
1,
290,
611,
262,
7104,
1271,
318,
2440,
621,
604,
356,
481,
761,
530,
393,
734,
3224,
2683,
13,
198,
5756,
674,
1218,
1808,
307,
366,
21,
1911,
1002,
262,
7104,
1271,
318,
991,
2440,
621,
718,
11,
356,
481,
761,
257,
2368,
1808,
287,
1502,
284,
28433,
1022,
767,
290,
807,
13,
198,
19093,
11,
674,
2368,
1808,
481,
307,
366,
22,
1,
290,
262,
2472,
1575,
329,
428,
5290,
12,
7442,
8883,
481,
307,
604,
10,
21,
10,
22,
28,
1558,
13,
198,
198,
1135,
460,
2987,
15394,
262,
5290,
12,
7442,
1575,
329,
299,
28,
23,
11,
416,
4737,
366,
20,
1,
355,
674,
717,
1808,
13,
198,
1532,
356,
389,
1297,
326,
262,
7104,
1271,
318,
2440,
621,
642,
11,
674,
1218,
1808,
481,
307,
366,
22,
1600,
788,
356,
1183,
760,
329,
1728,
644,
262,
7104,
1271,
318,
357,
1640,
257,
2472,
1575,
286,
642,
10,
22,
28,
1065,
737,
198,
1532,
356,
389,
1297,
326,
262,
7104,
1271,
318,
2793,
621,
642,
11,
674,
1218,
1808,
481,
307,
366,
18,
1,
290,
611,
262,
7104,
1271,
318,
2793,
621,
513,
674,
2368,
1808,
481,
307,
366,
16,
1600,
3501,
257,
2472,
1575,
286,
642,
10,
18,
10,
16,
28,
24,
13,
198,
6385,
1105,
29,
24,
11,
262,
5290,
12,
7442,
1575,
329,
428,
4811,
318,
1105,
13,
1320,
338,
1365,
621,
644,
356,
8793,
4271,
351,
262,
366,
39491,
2989,
1,
4811,
26,
340,
318,
635,
1365,
621,
393,
4961,
284,
597,
584,
4811,
13,
198,
2396,
11,
287,
1109,
11,
356,
423,
655,
3417,
281,
16586,
4811,
329,
299,
28,
23,
13,
198,
198,
5756,
327,
7,
77,
8,
307,
262,
5290,
12,
7442,
1575,
8793,
416,
281,
16586,
4811,
329,
299,
11,
355,
3417,
2029,
13,
198,
19093,
327,
7,
16,
8,
796,
657,
11,
327,
7,
17,
8,
796,
352,
11,
327,
7,
18,
8,
796,
362,
290,
327,
7,
23,
8,
796,
1105,
13,
198,
28039,
11,
327,
7,
3064,
8,
796,
7337,
290,
327,
7,
77,
8,
796,
19038,
2425,
13,
198,
198,
16742,
327,
7,
77,
737,
198,
7061,
6,
198,
198,
2,
28186,
220,
198,
198,
2,
28186,
38066,
220,
198,
7061,
6,
198,
7061,
6,
198
] | 3.44152 | 684 |
import chainer
import chainer.functions as F
import chainer.links as L
import numpy as np
| [
11748,
6333,
263,
198,
11748,
6333,
263,
13,
12543,
2733,
355,
376,
198,
11748,
6333,
263,
13,
28751,
355,
406,
198,
11748,
299,
32152,
355,
45941,
198
] | 3.333333 | 27 |
import pytest
from foreshadow.cachemanager import CacheManager
from foreshadow.utils import get_transformer
from foreshadow.utils.testing import get_file_path
@pytest.fixture()
def smart_child():
"""Get a defined SmartTransformer subclass, TestSmartTransformer.
Note:
Always returns StandardScaler.
"""
from foreshadow.smart import SmartTransformer
from foreshadow.concrete import StandardScaler
yield TestSmartTransformer
def test_smarttransformer_instantiate():
"""Instantiating a SmartTransformer should fail"""
from foreshadow.smart import SmartTransformer
# Note: cannot use fixture since this is not a subclass of SmartTransformer
with pytest.raises(TypeError) as e:
SmartTransformer()
assert "Can't instantiate abstract class" in str(e.value)
def test_smarttransformer_notsubclassed():
"""SmartTransformer (get_transformer TypeError) not being implemented."""
from foreshadow.smart.smart import SmartTransformer
# Note: cannot use fixture since the metaclass implementation sets flags on
# class definition time.
with pytest.raises(TypeError) as e:
TestSmartTransformer()
assert "Can't instantiate abstract class" in str(e.value)
def test_smarttransformer_invalidtransformer(smart_child, mocker):
"""Test SmartTransformer initialization """
import pandas as pd
boston_path = get_file_path("data", "boston_housing.csv")
df = pd.read_csv(boston_path)
smart = smart_child()
smart.pick_transformer = mocker.Mock()
smart.pick_transformer.return_value = InvalidClass()
with pytest.raises(ValueError) as e:
smart.fit(df[["crim"]])
assert (
"is neither a scikit-learn Pipeline, FeatureUnion, a "
"wrapped foreshadow transformer, nor None."
) in str(e.value)
def test_smarttransformer_function(smart_child):
"""Test overall SmartTransformer functionality
Args:
smart_child: A subclass of SmartTransformer.
"""
import numpy as np
import pandas as pd
from foreshadow.concrete import StandardScaler
boston_path = get_file_path("data", "boston_housing.csv")
df = pd.read_csv(boston_path)
smart = smart_child(cache_manager=CacheManager())
smart_data = smart.fit_transform(df[["crim"]])
std = StandardScaler()
std_data = std.fit_transform(df[["crim"]])
assert smart_data.equals(std_data)
smart.fit(df[["crim"]])
smart_data = smart.transform(df[["crim"]])
std.fit(df[["crim"]])
std_data = std.transform(df[["crim"]])
# TODO, remove when SmartTransformer is no longer wrapped
# Column names will be different, thus np.allclose() is used
assert np.allclose(smart_data, std_data)
def test_smarttransformer_fitself(smart_child, mocker):
"""Test that fit returns self.
This is important so that .fit().transform()
Args:
smart_child: A subclass of SmartTransformer
"""
import pandas as pd
smart = smart_child(override="Imputer", name="test")
assert smart.fit(pd.DataFrame([1, 2, 3])) == smart
def test_smarttransformer_function_override(smart_child):
"""Test SmartTransformer override through parameter specification.
Args:
smart_child: A subclass of SmartTransformer.
"""
import numpy as np
import pandas as pd
from foreshadow.concrete import SimpleImputer
boston_path = get_file_path("data", "boston_housing.csv")
df = pd.read_csv(boston_path)
smart = smart_child(
transformer="SimpleImputer",
name="impute",
cache_manager=CacheManager(),
)
smart_data = smart.fit_transform(df[["crim"]])
assert isinstance(smart.transformer, SimpleImputer)
# assert smart.transformer.name == "impute"
# not relevant anymore.
std = SimpleImputer()
std_data = std.fit_transform(df[["crim"]])
assert smart_data.equals(std_data)
smart.fit(df[["crim"]])
smart_data = smart.transform(df[["crim"]])
std.fit(df[["crim"]])
std_data = std.transform(df[["crim"]])
assert std_data.columns[0] == "crim"
# TODO, remove when SmartTransformer is no longer wrapped
# Column names will be different, thus np.allclose() is used
assert np.allclose(smart_data, std_data)
def test_smarttransformer_function_override_invalid(smart_child):
"""Test invalid SmartTransformer override transformer class.
Args:
smart_child: A subclass of SmartTransformer.
"""
from foreshadow.exceptions import TransformerNotFound
with pytest.raises(TransformerNotFound) as e:
smart_child(transformer="BAD", cache_manager=CacheManager())
assert "Could not find transformer BAD in" in str(e.value)
def test_smarttransformer_set_params_override(smart_child):
"""Test invalid SmartTransformer override transformer class.
Args:
smart_child: A subclass of SmartTransformer.
"""
from foreshadow.concrete import StandardScaler
smart = smart_child(transformer="SimpleImputer")
smart.set_params(**{"transformer": "StandardScaler"})
assert isinstance(smart.transformer, StandardScaler)
def test_smarttransformer_set_params_empty(smart_child):
"""Test SmartTransformer empty set_params does not fail.
Args:
smart_child: A subclass of SmartTransformer.
"""
smart = smart_child()
smart.set_params()
assert smart.transformer is None
def test_smarttransformer_set_params_default(smart_child):
"""Test SmartTransformer pass-through set_params on selected transformer.
Args:
smart_child: A subclass of SmartTransformer.
"""
smart = smart_child()
smart.fit([1, 2, 3])
before = smart.__dict__
params = smart.get_params()
smart = smart_child().set_params(**params)
assert smart.__dict__ == before
def test_smarttransformer_get_params(smart_child):
"""Test SmartTransformer override with init kwargs.
Args:
smart_child: A subclass of SmartTransformer.
"""
import numpy as np
cm = CacheManager()
smart = smart_child(
transformer="SimpleImputer",
missing_values=np.nan,
strategy="mean",
cache_manager=cm,
)
smart.fit([1, 2, 3])
params = smart.get_params()
print(params)
assert np.isnan(params["transformer__missing_values"])
del params["transformer__missing_values"]
assert params == {
"transformer": smart.transformer,
"name": None,
"keep_columns": False,
"y_var": False,
"force_reresolve": False,
"should_resolve": False,
"cache_manager": cm,
"check_wrapped": True,
"transformer__copy": True,
# "transformer__missing_values": np.nan,
"transformer__strategy": "mean",
"transformer__verbose": 0,
# "transformer__axis": 0,
"transformer__add_indicator": False,
"transformer__fill_value": None,
}
def test_smarttransformer_empty_inverse(smart_child):
"""Test SmartTransformer inverse_transform.
Args:
smart_child: A subclass of SmartTransformer.
"""
smart = smart_child(cache_manager=CacheManager())
smart.fit([1, 2, 10])
smart.inverse_transform([])
def test_smarttransformer_should_resolve(smart_child, mocker):
"""Test SmartTransformer should_resolve functionality.
First test if the initial behavior works, only resolves the transformer
once and does not update chosen transformer on new data.
Next, test if enabling should resolve allows the transformer choice to be
updated but only once.
Lastly, test if force_reresolve allows the transformer choice to be updated
on each fit.
Args:
smart_child: A subclass of SmartTransformer.
"""
import pandas as pd
from foreshadow.concrete import StandardScaler, MinMaxScaler
smart = smart_child(cache_manager=CacheManager())
smart.pick_transformer = pick_transformer
data1 = pd.DataFrame([0])
data2 = pd.DataFrame([1])
smart.fit(data1)
assert isinstance(smart.transformer, StandardScaler)
smart.fit(data2)
assert isinstance(smart.transformer, StandardScaler)
smart.should_resolve = True
smart.fit(data2)
assert isinstance(smart.transformer, MinMaxScaler)
smart.fit(data1)
assert isinstance(smart.transformer, MinMaxScaler)
smart.force_reresolve = True
smart.fit(data1)
assert isinstance(smart.transformer, StandardScaler)
smart.fit(data2)
assert isinstance(smart.transformer, MinMaxScaler)
@pytest.mark.parametrize(
"transformer,input_csv",
[
("StandardScaler", get_file_path("data", "boston_housing.csv")),
("OneHotEncoder", get_file_path("data", "boston_housing.csv")),
("TfidfTransformer", get_file_path("data", "boston_housing.csv")),
],
)
def test_make_pandas_transformer_fit(transformer, input_csv):
"""Test pandas_wrap has initial transformer fit functionality.
Args:
transformer: wrapped transformer class name
input_csv: dataset to test on
"""
import pandas as pd
transformer = get_transformer(transformer)()
df = pd.read_csv(input_csv)
assert transformer.fit(df) == transformer
@pytest.mark.parametrize(
"transformer,expected_path",
[
("StandardScaler", "sklearn.preprocessing"),
("OneHotEncoder", "category_encoders"),
("TfidfTransformer", "sklearn.feature_extraction.text"),
],
)
def test_make_pandas_transformer_meta(transformer, expected_path):
"""Test that the wrapped transformer has proper metadata.
Args:
transformer: wrapped transformer class name
expected_path: path to the initial transformer
Returns:
"""
expected_class = get_transformer(transformer, source_lib=expected_path)
transformer = get_transformer(transformer)()
assert isinstance(transformer, expected_class) # should remain a subclass
assert type(transformer).__name__ == expected_class.__name__
assert transformer.__doc__ == expected_class.__doc__
@pytest.mark.parametrize(
"transformer,kwargs,sk_path,input_csv",
[
(
"StandardScaler",
{},
"sklearn.preprocessing",
get_file_path("data", "boston_housing.csv"),
),
(
"OneHotEncoder",
{},
"category_encoders",
get_file_path("data", "boston_housing.csv"),
),
(
"TfidfTransformer",
{},
"sklearn.feature_extraction.text",
get_file_path("data", "boston_housing.csv"),
),
],
)
def test_make_pandas_transformer_transform(
transformer, kwargs, sk_path, input_csv
):
"""Test wrapped transformer has the initial transform functionality.
Args:
transformer: wrapped transformer class name
kwargs: key word arguments for transformer initialization
sk_path: path to the module containing the wrapped sklearn
transformer
input_csv: dataset to test on
"""
import pandas as pd
import numpy as np
from scipy.sparse import issparse
sk_transformer = get_transformer(transformer, source_lib=sk_path)(**kwargs)
transformer = get_transformer(transformer)(**kwargs)
df = pd.read_csv(input_csv)
crim_df = df[["crim"]]
transformer.fit(crim_df)
sk_transformer.fit(crim_df)
sk_out = sk_transformer.transform(crim_df)
if issparse(sk_out):
sk_out = sk_out.toarray()
assert np.array_equal(transformer.transform(crim_df).values, sk_out)
@pytest.mark.parametrize(
"transformer,sk_path,input_csv",
[
(
"StandardScaler",
"sklearn.preprocessing",
get_file_path("data", "boston_housing.csv"),
),
(
"TfidfTransformer",
"sklearn.feature_extraction.text",
get_file_path("data", "boston_housing.csv"),
),
],
)
def test_make_pandas_transformer_fit_transform(
transformer, sk_path, input_csv
):
"""Test wrapped transformer has initial fit_transform functionality.
Args:
transformer: wrapped transformer
sk_path: path to the module containing the wrapped sklearn
transformer
input_csv: dataset to test on
"""
import pandas as pd
import numpy as np
from scipy.sparse import issparse
sk_transformer = get_transformer(transformer, source_lib=sk_path)()
transformer = get_transformer(transformer)()
df = pd.read_csv(input_csv)
crim_df = df[["crim"]]
sk_out = sk_transformer.fit_transform(crim_df)
if issparse(sk_out):
sk_out = sk_out.toarray()
assert np.array_equal(transformer.fit_transform(crim_df).values, sk_out)
@pytest.mark.parametrize(
"transformer,sk_path",
[
("StandardScaler", "sklearn.preprocessing"),
("TfidfTransformer", "sklearn.feature_extraction.text"),
],
)
def test_make_pandas_transformer_init(transformer, sk_path):
"""Test pandas_wrap has initial transformer init functionality.
Should be able to accept any parameters from the sklearn transformer and
initialize on the wrapped instance. They should also posses the is_wrapped
method.
Args:
transformer: wrapped transformer
sk_path: path to the module containing the wrapped sklearn
transformer
"""
sk_transformer = get_transformer(transformer, source_lib=sk_path)()
params = sk_transformer.get_params()
transformer = get_transformer(transformer)(**params)
| [
11748,
12972,
9288,
198,
198,
6738,
1674,
19106,
13,
23870,
37153,
1330,
34088,
13511,
198,
6738,
1674,
19106,
13,
26791,
1330,
651,
62,
7645,
16354,
198,
6738,
1674,
19106,
13,
26791,
13,
33407,
1330,
651,
62,
7753,
62,
6978,
628,
628,
198,
198,
31,
9078,
9288,
13,
69,
9602,
3419,
198,
4299,
4451,
62,
9410,
33529,
198,
220,
220,
220,
37227,
3855,
257,
5447,
10880,
8291,
16354,
47611,
11,
6208,
25610,
8291,
16354,
13,
628,
220,
220,
220,
5740,
25,
198,
220,
220,
220,
220,
220,
220,
220,
16622,
5860,
8997,
3351,
36213,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
422,
1674,
19106,
13,
27004,
1330,
10880,
8291,
16354,
198,
220,
220,
220,
422,
1674,
19106,
13,
1102,
38669,
1330,
8997,
3351,
36213,
628,
220,
220,
220,
7800,
6208,
25610,
8291,
16354,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
8625,
415,
9386,
33529,
198,
220,
220,
220,
37227,
6310,
17096,
803,
257,
10880,
8291,
16354,
815,
2038,
37811,
198,
220,
220,
220,
422,
1674,
19106,
13,
27004,
1330,
10880,
8291,
16354,
628,
220,
220,
220,
1303,
5740,
25,
2314,
779,
29220,
1201,
428,
318,
407,
257,
47611,
286,
10880,
8291,
16354,
198,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
6030,
12331,
8,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10880,
8291,
16354,
3419,
628,
220,
220,
220,
6818,
366,
6090,
470,
9113,
9386,
12531,
1398,
1,
287,
965,
7,
68,
13,
8367,
8,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
1662,
7266,
4871,
276,
33529,
198,
220,
220,
220,
37227,
25610,
8291,
16354,
357,
1136,
62,
7645,
16354,
5994,
12331,
8,
407,
852,
9177,
526,
15931,
198,
220,
220,
220,
422,
1674,
19106,
13,
27004,
13,
27004,
1330,
10880,
8291,
16354,
628,
220,
220,
220,
1303,
5740,
25,
2314,
779,
29220,
1201,
262,
1138,
330,
31172,
7822,
5621,
9701,
319,
198,
220,
220,
220,
1303,
1398,
6770,
640,
13,
628,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
6030,
12331,
8,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6208,
25610,
8291,
16354,
3419,
628,
220,
220,
220,
6818,
366,
6090,
470,
9113,
9386,
12531,
1398,
1,
287,
965,
7,
68,
13,
8367,
8,
628,
198,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
259,
12102,
7645,
16354,
7,
27004,
62,
9410,
11,
285,
12721,
2599,
198,
220,
220,
220,
37227,
14402,
10880,
8291,
16354,
37588,
37227,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
628,
220,
220,
220,
275,
5744,
62,
6978,
796,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
4943,
628,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
65,
5744,
62,
6978,
8,
628,
220,
220,
220,
4451,
796,
4451,
62,
9410,
3419,
198,
220,
220,
220,
4451,
13,
27729,
62,
7645,
16354,
796,
285,
12721,
13,
44,
735,
3419,
198,
220,
220,
220,
4451,
13,
27729,
62,
7645,
16354,
13,
7783,
62,
8367,
796,
17665,
9487,
3419,
628,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
11395,
12331,
8,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
13,
11147,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
6818,
357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
271,
6159,
257,
629,
1134,
270,
12,
35720,
37709,
11,
27018,
38176,
11,
257,
366,
198,
220,
220,
220,
220,
220,
220,
220,
366,
29988,
1496,
1674,
19106,
47385,
11,
4249,
6045,
526,
198,
220,
220,
220,
1267,
287,
965,
7,
68,
13,
8367,
8,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
8818,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
4045,
10880,
8291,
16354,
11244,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
299,
32152,
355,
45941,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
628,
220,
220,
220,
422,
1674,
19106,
13,
1102,
38669,
1330,
8997,
3351,
36213,
628,
220,
220,
220,
275,
5744,
62,
6978,
796,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
4943,
628,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
65,
5744,
62,
6978,
8,
628,
220,
220,
220,
4451,
796,
4451,
62,
9410,
7,
23870,
62,
37153,
28,
30562,
13511,
28955,
198,
220,
220,
220,
4451,
62,
7890,
796,
4451,
13,
11147,
62,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
14367,
796,
8997,
3351,
36213,
3419,
198,
220,
220,
220,
14367,
62,
7890,
796,
14367,
13,
11147,
62,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
6818,
4451,
62,
7890,
13,
4853,
874,
7,
19282,
62,
7890,
8,
628,
220,
220,
220,
4451,
13,
11147,
7,
7568,
58,
14692,
50086,
8973,
12962,
198,
220,
220,
220,
4451,
62,
7890,
796,
4451,
13,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
14367,
13,
11147,
7,
7568,
58,
14692,
50086,
8973,
12962,
198,
220,
220,
220,
14367,
62,
7890,
796,
14367,
13,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
1303,
16926,
46,
11,
4781,
618,
10880,
8291,
16354,
318,
645,
2392,
12908,
198,
220,
220,
220,
1303,
29201,
3891,
481,
307,
1180,
11,
4145,
45941,
13,
439,
19836,
3419,
318,
973,
198,
220,
220,
220,
6818,
45941,
13,
439,
19836,
7,
27004,
62,
7890,
11,
14367,
62,
7890,
8,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
11147,
944,
7,
27004,
62,
9410,
11,
285,
12721,
2599,
198,
220,
220,
220,
37227,
14402,
326,
4197,
5860,
2116,
13,
628,
220,
220,
220,
770,
318,
1593,
523,
326,
764,
11147,
22446,
35636,
3419,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
628,
220,
220,
220,
4451,
796,
4451,
62,
9410,
7,
2502,
13154,
2625,
3546,
10549,
1600,
1438,
2625,
9288,
4943,
198,
220,
220,
220,
6818,
4451,
13,
11147,
7,
30094,
13,
6601,
19778,
26933,
16,
11,
362,
11,
513,
60,
4008,
6624,
4451,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
8818,
62,
2502,
13154,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
10880,
8291,
16354,
20957,
832,
11507,
20855,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
299,
32152,
355,
45941,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
628,
220,
220,
220,
422,
1674,
19106,
13,
1102,
38669,
1330,
17427,
3546,
10549,
628,
220,
220,
220,
275,
5744,
62,
6978,
796,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
4943,
198,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
65,
5744,
62,
6978,
8,
628,
220,
220,
220,
4451,
796,
4451,
62,
9410,
7,
198,
220,
220,
220,
220,
220,
220,
220,
47385,
2625,
26437,
3546,
10549,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
2625,
11011,
1133,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
12940,
62,
37153,
28,
30562,
13511,
22784,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
4451,
62,
7890,
796,
4451,
13,
11147,
62,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
17427,
3546,
10549,
8,
198,
220,
220,
220,
1303,
6818,
4451,
13,
7645,
16354,
13,
3672,
6624,
366,
11011,
1133,
1,
198,
220,
220,
220,
1303,
407,
5981,
7471,
13,
628,
220,
220,
220,
14367,
796,
17427,
3546,
10549,
3419,
198,
220,
220,
220,
14367,
62,
7890,
796,
14367,
13,
11147,
62,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
6818,
4451,
62,
7890,
13,
4853,
874,
7,
19282,
62,
7890,
8,
628,
220,
220,
220,
4451,
13,
11147,
7,
7568,
58,
14692,
50086,
8973,
12962,
198,
220,
220,
220,
4451,
62,
7890,
796,
4451,
13,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
14367,
13,
11147,
7,
7568,
58,
14692,
50086,
8973,
12962,
198,
220,
220,
220,
14367,
62,
7890,
796,
14367,
13,
35636,
7,
7568,
58,
14692,
50086,
8973,
12962,
628,
220,
220,
220,
6818,
14367,
62,
7890,
13,
28665,
82,
58,
15,
60,
6624,
366,
50086,
1,
628,
220,
220,
220,
1303,
16926,
46,
11,
4781,
618,
10880,
8291,
16354,
318,
645,
2392,
12908,
198,
220,
220,
220,
1303,
29201,
3891,
481,
307,
1180,
11,
4145,
45941,
13,
439,
19836,
3419,
318,
973,
198,
220,
220,
220,
6818,
45941,
13,
439,
19836,
7,
27004,
62,
7890,
11,
14367,
62,
7890,
8,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
8818,
62,
2502,
13154,
62,
259,
12102,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
12515,
10880,
8291,
16354,
20957,
47385,
1398,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
422,
1674,
19106,
13,
1069,
11755,
1330,
3602,
16354,
3673,
21077,
628,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
8291,
16354,
3673,
21077,
8,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
7,
7645,
16354,
2625,
33,
2885,
1600,
12940,
62,
37153,
28,
30562,
13511,
28955,
628,
220,
220,
220,
6818,
366,
23722,
407,
1064,
47385,
33934,
287,
1,
287,
965,
7,
68,
13,
8367,
8,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
2617,
62,
37266,
62,
2502,
13154,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
12515,
10880,
8291,
16354,
20957,
47385,
1398,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
422,
1674,
19106,
13,
1102,
38669,
1330,
8997,
3351,
36213,
628,
220,
220,
220,
4451,
796,
4451,
62,
9410,
7,
7645,
16354,
2625,
26437,
3546,
10549,
4943,
198,
220,
220,
220,
4451,
13,
2617,
62,
37266,
7,
1174,
4895,
7645,
16354,
1298,
366,
23615,
3351,
36213,
20662,
8,
628,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
8997,
3351,
36213,
8,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
2617,
62,
37266,
62,
28920,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
10880,
8291,
16354,
6565,
900,
62,
37266,
857,
407,
2038,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
4451,
796,
4451,
62,
9410,
3419,
198,
220,
220,
220,
4451,
13,
2617,
62,
37266,
3419,
628,
220,
220,
220,
6818,
4451,
13,
7645,
16354,
318,
6045,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
2617,
62,
37266,
62,
12286,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
10880,
8291,
16354,
1208,
12,
9579,
900,
62,
37266,
319,
6163,
47385,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
4451,
796,
4451,
62,
9410,
3419,
198,
220,
220,
220,
4451,
13,
11147,
26933,
16,
11,
362,
11,
513,
12962,
198,
220,
220,
220,
878,
796,
4451,
13,
834,
11600,
834,
198,
220,
220,
220,
42287,
796,
4451,
13,
1136,
62,
37266,
3419,
198,
220,
220,
220,
4451,
796,
4451,
62,
9410,
22446,
2617,
62,
37266,
7,
1174,
37266,
8,
628,
220,
220,
220,
6818,
4451,
13,
834,
11600,
834,
6624,
878,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
1136,
62,
37266,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
10880,
8291,
16354,
20957,
351,
2315,
479,
86,
22046,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
299,
32152,
355,
45941,
628,
220,
220,
220,
12067,
796,
34088,
13511,
3419,
198,
220,
220,
220,
4451,
796,
4451,
62,
9410,
7,
198,
220,
220,
220,
220,
220,
220,
220,
47385,
2625,
26437,
3546,
10549,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
4814,
62,
27160,
28,
37659,
13,
12647,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4811,
2625,
32604,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
12940,
62,
37153,
28,
11215,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
4451,
13,
11147,
26933,
16,
11,
362,
11,
513,
12962,
628,
220,
220,
220,
42287,
796,
4451,
13,
1136,
62,
37266,
3419,
198,
220,
220,
220,
3601,
7,
37266,
8,
198,
220,
220,
220,
6818,
45941,
13,
271,
12647,
7,
37266,
14692,
7645,
16354,
834,
45688,
62,
27160,
8973,
8,
198,
220,
220,
220,
1619,
42287,
14692,
7645,
16354,
834,
45688,
62,
27160,
8973,
198,
220,
220,
220,
6818,
42287,
6624,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7645,
16354,
1298,
4451,
13,
7645,
16354,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
14894,
62,
28665,
82,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
88,
62,
7785,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3174,
62,
260,
411,
6442,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21754,
62,
411,
6442,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
23870,
62,
37153,
1298,
12067,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9122,
62,
29988,
1496,
1298,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7645,
16354,
834,
30073,
1298,
6407,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
7645,
16354,
834,
45688,
62,
27160,
1298,
45941,
13,
12647,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7645,
16354,
834,
2536,
4338,
1298,
366,
32604,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7645,
16354,
834,
19011,
577,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
366,
7645,
16354,
834,
22704,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7645,
16354,
834,
2860,
62,
521,
26407,
1298,
10352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
7645,
16354,
834,
20797,
62,
8367,
1298,
6045,
11,
198,
220,
220,
220,
1782,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
28920,
62,
259,
4399,
7,
27004,
62,
9410,
2599,
198,
220,
220,
220,
37227,
14402,
10880,
8291,
16354,
34062,
62,
35636,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
4451,
796,
4451,
62,
9410,
7,
23870,
62,
37153,
28,
30562,
13511,
28955,
198,
220,
220,
220,
4451,
13,
11147,
26933,
16,
11,
362,
11,
838,
12962,
628,
220,
220,
220,
4451,
13,
259,
4399,
62,
35636,
26933,
12962,
628,
198,
4299,
1332,
62,
27004,
7645,
16354,
62,
21754,
62,
411,
6442,
7,
27004,
62,
9410,
11,
285,
12721,
2599,
198,
220,
220,
220,
37227,
14402,
10880,
8291,
16354,
815,
62,
411,
6442,
11244,
13,
628,
220,
220,
220,
3274,
1332,
611,
262,
4238,
4069,
2499,
11,
691,
38709,
262,
47385,
198,
220,
220,
220,
1752,
290,
857,
407,
4296,
7147,
47385,
319,
649,
1366,
13,
628,
220,
220,
220,
7406,
11,
1332,
611,
15882,
815,
10568,
3578,
262,
47385,
3572,
284,
307,
198,
220,
220,
220,
6153,
475,
691,
1752,
13,
628,
220,
220,
220,
36778,
11,
1332,
611,
2700,
62,
260,
411,
6442,
3578,
262,
47385,
3572,
284,
307,
6153,
198,
220,
220,
220,
319,
1123,
4197,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4451,
62,
9410,
25,
317,
47611,
286,
10880,
8291,
16354,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
628,
220,
220,
220,
422,
1674,
19106,
13,
1102,
38669,
1330,
8997,
3351,
36213,
11,
1855,
11518,
3351,
36213,
628,
220,
220,
220,
4451,
796,
4451,
62,
9410,
7,
23870,
62,
37153,
28,
30562,
13511,
28955,
198,
220,
220,
220,
4451,
13,
27729,
62,
7645,
16354,
796,
2298,
62,
7645,
16354,
628,
220,
220,
220,
1366,
16,
796,
279,
67,
13,
6601,
19778,
26933,
15,
12962,
198,
220,
220,
220,
1366,
17,
796,
279,
67,
13,
6601,
19778,
26933,
16,
12962,
628,
220,
220,
220,
4451,
13,
11147,
7,
7890,
16,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
8997,
3351,
36213,
8,
198,
220,
220,
220,
4451,
13,
11147,
7,
7890,
17,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
8997,
3351,
36213,
8,
628,
220,
220,
220,
4451,
13,
21754,
62,
411,
6442,
796,
6407,
198,
220,
220,
220,
4451,
13,
11147,
7,
7890,
17,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
1855,
11518,
3351,
36213,
8,
198,
220,
220,
220,
4451,
13,
11147,
7,
7890,
16,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
1855,
11518,
3351,
36213,
8,
628,
220,
220,
220,
4451,
13,
3174,
62,
260,
411,
6442,
796,
6407,
198,
220,
220,
220,
4451,
13,
11147,
7,
7890,
16,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
8997,
3351,
36213,
8,
198,
220,
220,
220,
4451,
13,
11147,
7,
7890,
17,
8,
198,
220,
220,
220,
6818,
318,
39098,
7,
27004,
13,
7645,
16354,
11,
1855,
11518,
3351,
36213,
8,
628,
198,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
7645,
16354,
11,
15414,
62,
40664,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
23615,
3351,
36213,
1600,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
4943,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
3198,
21352,
27195,
12342,
1600,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
4943,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
51,
69,
312,
69,
8291,
16354,
1600,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
4943,
828,
198,
220,
220,
220,
16589,
198,
8,
198,
4299,
1332,
62,
15883,
62,
79,
392,
292,
62,
7645,
16354,
62,
11147,
7,
7645,
16354,
11,
5128,
62,
40664,
2599,
198,
220,
220,
220,
37227,
14402,
19798,
292,
62,
37150,
468,
4238,
47385,
4197,
11244,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
25,
12908,
47385,
1398,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
40664,
25,
27039,
284,
1332,
319,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
628,
220,
220,
220,
47385,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
8,
3419,
198,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
15414,
62,
40664,
8,
198,
220,
220,
220,
6818,
47385,
13,
11147,
7,
7568,
8,
6624,
47385,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
7645,
16354,
11,
40319,
62,
6978,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
23615,
3351,
36213,
1600,
366,
8135,
35720,
13,
3866,
36948,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
3198,
21352,
27195,
12342,
1600,
366,
22872,
62,
12685,
375,
364,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
51,
69,
312,
69,
8291,
16354,
1600,
366,
8135,
35720,
13,
30053,
62,
2302,
7861,
13,
5239,
12340,
198,
220,
220,
220,
16589,
198,
8,
198,
4299,
1332,
62,
15883,
62,
79,
392,
292,
62,
7645,
16354,
62,
28961,
7,
7645,
16354,
11,
2938,
62,
6978,
2599,
198,
220,
220,
220,
37227,
14402,
326,
262,
12908,
47385,
468,
1774,
20150,
13,
628,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
47385,
25,
12908,
47385,
1398,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
6978,
25,
3108,
284,
262,
4238,
47385,
628,
220,
220,
220,
16409,
25,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
2938,
62,
4871,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
11,
2723,
62,
8019,
28,
40319,
62,
6978,
8,
198,
220,
220,
220,
47385,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
8,
3419,
628,
220,
220,
220,
6818,
318,
39098,
7,
7645,
16354,
11,
2938,
62,
4871,
8,
220,
1303,
815,
3520,
257,
47611,
198,
220,
220,
220,
6818,
2099,
7,
7645,
16354,
737,
834,
3672,
834,
6624,
2938,
62,
4871,
13,
834,
3672,
834,
198,
220,
220,
220,
6818,
47385,
13,
834,
15390,
834,
6624,
2938,
62,
4871,
13,
834,
15390,
834,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
7645,
16354,
11,
46265,
22046,
11,
8135,
62,
6978,
11,
15414,
62,
40664,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
23615,
3351,
36213,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8135,
35720,
13,
3866,
36948,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3198,
21352,
27195,
12342,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
22872,
62,
12685,
375,
364,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
51,
69,
312,
69,
8291,
16354,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8135,
35720,
13,
30053,
62,
2302,
7861,
13,
5239,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
16589,
198,
8,
198,
4299,
1332,
62,
15883,
62,
79,
392,
292,
62,
7645,
16354,
62,
35636,
7,
198,
220,
220,
220,
47385,
11,
479,
86,
22046,
11,
1341,
62,
6978,
11,
5128,
62,
40664,
198,
2599,
198,
220,
220,
220,
37227,
14402,
12908,
47385,
468,
262,
4238,
6121,
11244,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
25,
12908,
47385,
1398,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
86,
22046,
25,
1994,
1573,
7159,
329,
47385,
37588,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1341,
62,
6978,
25,
3108,
284,
262,
8265,
7268,
262,
12908,
1341,
35720,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
40664,
25,
27039,
284,
1332,
319,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
198,
220,
220,
220,
1330,
299,
32152,
355,
45941,
198,
220,
220,
220,
422,
629,
541,
88,
13,
82,
29572,
1330,
1189,
29572,
628,
220,
220,
220,
1341,
62,
7645,
16354,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
11,
2723,
62,
8019,
28,
8135,
62,
6978,
5769,
1174,
46265,
22046,
8,
198,
220,
220,
220,
47385,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
5769,
1174,
46265,
22046,
8,
628,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
15414,
62,
40664,
8,
198,
220,
220,
220,
3606,
62,
7568,
796,
47764,
58,
14692,
50086,
8973,
60,
198,
220,
220,
220,
47385,
13,
11147,
7,
50086,
62,
7568,
8,
198,
220,
220,
220,
1341,
62,
7645,
16354,
13,
11147,
7,
50086,
62,
7568,
8,
198,
220,
220,
220,
1341,
62,
448,
796,
1341,
62,
7645,
16354,
13,
35636,
7,
50086,
62,
7568,
8,
198,
220,
220,
220,
611,
1189,
29572,
7,
8135,
62,
448,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1341,
62,
448,
796,
1341,
62,
448,
13,
1462,
18747,
3419,
198,
220,
220,
220,
6818,
45941,
13,
18747,
62,
40496,
7,
7645,
16354,
13,
35636,
7,
50086,
62,
7568,
737,
27160,
11,
1341,
62,
448,
8,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
7645,
16354,
11,
8135,
62,
6978,
11,
15414,
62,
40664,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
23615,
3351,
36213,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8135,
35720,
13,
3866,
36948,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
220,
220,
220,
220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
51,
69,
312,
69,
8291,
16354,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8135,
35720,
13,
30053,
62,
2302,
7861,
13,
5239,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
62,
7753,
62,
6978,
7203,
7890,
1600,
366,
65,
5744,
62,
50028,
13,
40664,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
10612,
198,
220,
220,
220,
16589,
198,
8,
198,
4299,
1332,
62,
15883,
62,
79,
392,
292,
62,
7645,
16354,
62,
11147,
62,
35636,
7,
198,
220,
220,
220,
47385,
11,
1341,
62,
6978,
11,
5128,
62,
40664,
198,
2599,
198,
220,
220,
220,
37227,
14402,
12908,
47385,
468,
4238,
4197,
62,
35636,
11244,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
25,
12908,
47385,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1341,
62,
6978,
25,
3108,
284,
262,
8265,
7268,
262,
12908,
1341,
35720,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
40664,
25,
27039,
284,
1332,
319,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
1330,
19798,
292,
355,
279,
67,
198,
220,
220,
220,
1330,
299,
32152,
355,
45941,
198,
220,
220,
220,
422,
629,
541,
88,
13,
82,
29572,
1330,
1189,
29572,
628,
220,
220,
220,
1341,
62,
7645,
16354,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
11,
2723,
62,
8019,
28,
8135,
62,
6978,
8,
3419,
198,
220,
220,
220,
47385,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
8,
3419,
628,
220,
220,
220,
47764,
796,
279,
67,
13,
961,
62,
40664,
7,
15414,
62,
40664,
8,
198,
220,
220,
220,
3606,
62,
7568,
796,
47764,
58,
14692,
50086,
8973,
60,
198,
220,
220,
220,
1341,
62,
448,
796,
1341,
62,
7645,
16354,
13,
11147,
62,
35636,
7,
50086,
62,
7568,
8,
198,
220,
220,
220,
611,
1189,
29572,
7,
8135,
62,
448,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1341,
62,
448,
796,
1341,
62,
448,
13,
1462,
18747,
3419,
198,
220,
220,
220,
6818,
45941,
13,
18747,
62,
40496,
7,
7645,
16354,
13,
11147,
62,
35636,
7,
50086,
62,
7568,
737,
27160,
11,
1341,
62,
448,
8,
628,
198,
31,
9078,
9288,
13,
4102,
13,
17143,
316,
380,
2736,
7,
198,
220,
220,
220,
366,
7645,
16354,
11,
8135,
62,
6978,
1600,
198,
220,
220,
220,
685,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
23615,
3351,
36213,
1600,
366,
8135,
35720,
13,
3866,
36948,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
5855,
51,
69,
312,
69,
8291,
16354,
1600,
366,
8135,
35720,
13,
30053,
62,
2302,
7861,
13,
5239,
12340,
198,
220,
220,
220,
16589,
198,
8,
198,
4299,
1332,
62,
15883,
62,
79,
392,
292,
62,
7645,
16354,
62,
15003,
7,
7645,
16354,
11,
1341,
62,
6978,
2599,
198,
220,
220,
220,
37227,
14402,
19798,
292,
62,
37150,
468,
4238,
47385,
2315,
11244,
13,
628,
220,
220,
220,
10358,
307,
1498,
284,
2453,
597,
10007,
422,
262,
1341,
35720,
47385,
290,
198,
220,
220,
220,
41216,
319,
262,
12908,
4554,
13,
1119,
815,
635,
1184,
274,
262,
318,
62,
29988,
1496,
198,
220,
220,
220,
2446,
13,
628,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
25,
12908,
47385,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1341,
62,
6978,
25,
3108,
284,
262,
8265,
7268,
262,
12908,
1341,
35720,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47385,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1341,
62,
7645,
16354,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
11,
2723,
62,
8019,
28,
8135,
62,
6978,
8,
3419,
198,
220,
220,
220,
42287,
796,
1341,
62,
7645,
16354,
13,
1136,
62,
37266,
3419,
198,
220,
220,
220,
47385,
796,
651,
62,
7645,
16354,
7,
7645,
16354,
5769,
1174,
37266,
8,
198
] | 2.645479 | 5,176 |
import h2o
h2o.init()
datasets = "https://raw.githubusercontent.com/DarrenCook/h2o/bk/datasets/"
data = h2o.import_file(datasets + "iris_wheader.csv")
y = "class"
x = data.names
x.remove(y)
train, valid, test = data.split_frame([0.75,0.15])
from h2o.estimators.random_forest import H2ORandomForestEstimator
m = H2ORandomForestEstimator(
ntrees=100,
stopping_metric="misclassification",
stopping_rounds=3,
stopping_tolerance=0.02, #2%
max_runtime_secs=60,
model_id="RF:stop_test"
)
m.train(x, y, train, validation_frame=valid)
| [
11748,
289,
17,
78,
198,
71,
17,
78,
13,
15003,
3419,
198,
198,
19608,
292,
1039,
796,
366,
5450,
1378,
1831,
13,
12567,
43667,
13,
785,
14,
32708,
918,
28937,
14,
71,
17,
78,
14,
65,
74,
14,
19608,
292,
1039,
30487,
198,
7890,
796,
289,
17,
78,
13,
11748,
62,
7753,
7,
19608,
292,
1039,
1343,
366,
29616,
62,
86,
25677,
13,
40664,
4943,
198,
88,
796,
366,
4871,
1,
198,
87,
796,
1366,
13,
14933,
198,
87,
13,
28956,
7,
88,
8,
198,
27432,
11,
4938,
11,
1332,
796,
1366,
13,
35312,
62,
14535,
26933,
15,
13,
2425,
11,
15,
13,
1314,
12962,
198,
198,
6738,
289,
17,
78,
13,
395,
320,
2024,
13,
25120,
62,
29623,
1330,
367,
17,
1581,
3749,
34605,
22362,
320,
1352,
198,
76,
796,
367,
17,
1581,
3749,
34605,
22362,
320,
1352,
7,
198,
220,
299,
83,
6037,
28,
3064,
11,
198,
220,
12225,
62,
4164,
1173,
2625,
25413,
4871,
2649,
1600,
198,
220,
12225,
62,
744,
82,
28,
18,
11,
198,
220,
12225,
62,
83,
37668,
28,
15,
13,
2999,
11,
220,
1303,
17,
4,
198,
220,
3509,
62,
43282,
62,
2363,
82,
28,
1899,
11,
198,
220,
2746,
62,
312,
2625,
32754,
25,
11338,
62,
9288,
1,
198,
220,
1267,
198,
76,
13,
27432,
7,
87,
11,
331,
11,
4512,
11,
21201,
62,
14535,
28,
12102,
8,
198
] | 2.39207 | 227 |
from __future__ import division
def strongly_connected_components(
successors_by_node,
omit_single_node_components=True,
low_infinite=2**30):
"""
successors_by_node = {
"node1": ["successor1", "successor2"],
"node2": ["successor1", "successor3"]
}
http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm
http://www.logarithmic.net/pfh-files/blog/01208083168/sort.py
Original implementation (by Paul Harrison), modified to accommodate
successors that do not appear as a key in successors_by_node.
"""
result = []
stack = []
low = {}
for node in successors_by_node:
visit(node)
return result
| [
6738,
11593,
37443,
834,
1330,
7297,
198,
198,
4299,
7634,
62,
15236,
62,
5589,
3906,
7,
198,
220,
220,
220,
220,
220,
41491,
62,
1525,
62,
17440,
11,
198,
220,
220,
220,
220,
220,
42848,
62,
29762,
62,
17440,
62,
5589,
3906,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
1877,
62,
10745,
9504,
28,
17,
1174,
1270,
2599,
198,
220,
37227,
198,
13138,
669,
62,
1525,
62,
17440,
796,
1391,
198,
220,
366,
17440,
16,
1298,
14631,
13138,
273,
16,
1600,
366,
13138,
273,
17,
33116,
198,
220,
366,
17440,
17,
1298,
14631,
13138,
273,
16,
1600,
366,
13138,
273,
18,
8973,
198,
92,
198,
198,
4023,
1378,
268,
13,
31266,
13,
2398,
14,
15466,
14,
47079,
13881,
4,
1983,
82,
62,
11576,
306,
62,
15236,
62,
5589,
3906,
62,
282,
42289,
198,
4023,
1378,
2503,
13,
6404,
283,
342,
9383,
13,
3262,
14,
79,
69,
71,
12,
16624,
14,
14036,
14,
486,
1238,
1795,
5999,
14656,
14,
30619,
13,
9078,
198,
198,
20556,
7822,
357,
1525,
3362,
17281,
828,
9518,
284,
15550,
198,
13138,
669,
326,
466,
407,
1656,
355,
257,
1994,
287,
41491,
62,
1525,
62,
17440,
13,
198,
220,
37227,
198,
220,
1255,
796,
17635,
198,
220,
8931,
796,
17635,
198,
220,
1877,
796,
23884,
198,
220,
329,
10139,
287,
41491,
62,
1525,
62,
17440,
25,
198,
220,
220,
220,
3187,
7,
17440,
8,
198,
220,
1441,
1255,
198
] | 2.807692 | 234 |
# Misc functions to operate on fasta files in the frame of the A. castellanii
# genome analysis project
# cmdoret, 20190502
from Bio import SeqIO
from BCBio import GFF
import time
import re
import os
def safe_request(fun):
"""
Wraps function requesting data to allow safe errors and retry.
Parameters
----------
fun : python function
The python function that queries a server
Returns
-------
wrapped_f : python function
A wrapped version of the input function which will call itself recursively
every 5 seconds if the server is overloaded and will return None if the
query record does not exist
"""
return wrapped_f
def retrieve_refseq_ids(in_ids, db, out_fa):
"""
Given a refseq db in fasta format and a list of incomplete query refseq ID,
extract the queried genomes into a new fasta file by matching the IDs.
Parameters
----------
in_ids : str
Path to a file containing one refseq ID per line.
db : str
Path to the refseq database in fasta format.
out_fa : str
Path to the output fasta file containing query genomes.
"""
query_ids = open(in_ids).read().splitlines()
found = []
with open(out_fa, "w") as genomes:
for query_rec in SeqIO.parse(db, "fasta"):
if re.search("|".join(query_ids), query_rec.id):
query_rec.id = re.search(r"[^\.]*", query_rec.id).group()
found.append(query_rec.id)
SeqIO.write(query_rec, genomes, "fasta")
print(
"%d genomes found among the %d queries." % (len(found), len(query_ids))
)
@safe_request
def fetch_fasta(seq_id, db="nucleotide", email="[email protected]"):
"""
Downloads a genome corresponding to input sequence ID.
Parameters
----------
seq_id : str
A refseq sequence accession ID (e.g. NC_19130).
db : str
A valid Entrez database name. Some possible values are: cdd, gap, dbvar,
epigenomics, nucest, gene, genome, gds, geoprofiles, nucgss, homologene,
mesh, nuccore, protein, snp, sra, taxonomy, unigene
email : str
User email address to download from refseq.
Returns
-------
seq_record : Bio.Seq
Seq object containing the query Fasta record.
"""
Entrez.email = email
with Entrez.efetch(
db=db, rettype="fasta", retmode="text", id=seq_id
) as handle:
seq_record = SeqIO.read(handle, "fasta")
return seq_record
@safe_request
def retrieve_id_annot(id, out_gff, mode="w", email="[email protected]"):
"""
Queries genbank record for an input ID and retrieves the genome annotations
in GFF format. Amino acid sequences are included in the GFF.
Parameters
----------
id : str
Sequence accession ID to query via Entrez.
out_gff : str
Path to the output GFF file.
mode : str
Mode in which to open the output GFF file. Should be 'w' or 'a'.
email : str
Personal email to provide when querying Entrez.
"""
handle = Entrez.efetch(
id=id,
db="nucleotide",
email=email,
rettype="gbwithparts",
retmode="full",
)
record = SeqIO.parse(handle, "genbank")
with open(out_gff, mode) as gff_handle:
GFF.write(record, gff_handle, include_fasta=False)
def gff_seq_extract(gff, fa):
"""
Extracts sequence from the attributes of CDS in a GFF into a fasta file.
The fasta headers are in the format >chrom_id|prot_id
Parameters
----------
gff_in : str
Path to the input GFF file containing "translation" and "protein_id" attributes.
fa_out : str
Path to the fasta file where the protein sequences should be written.
"""
with open(gff, "r") as gff_in, open(fa, "w") as fa_out:
for line in gff_in:
seq_ok, id_ok = False, False
fields = line.split("\t")
if fields[2] == "CDS" and not fields[0].startswith("#>"):
desc = fields[-1].split(";")
for attr in desc:
if re.search("protein_id=", attr):
prot_id = attr.split("=")[1]
id_ok = True
elif re.search("translation=", attr):
seq = attr.split("=")[1]
seq_ok = True
if seq_ok and id_ok:
header = ">" + fields[0] + "|" + prot_id
fa_out.writelines([header + "\n", seq])
| [
2,
29882,
5499,
284,
8076,
319,
3049,
64,
3696,
287,
262,
5739,
286,
262,
317,
13,
3350,
695,
3216,
72,
198,
2,
19270,
3781,
1628,
198,
2,
23991,
9997,
11,
580,
3829,
35126,
198,
6738,
16024,
1330,
1001,
80,
9399,
198,
6738,
11843,
42787,
1330,
402,
5777,
198,
11748,
640,
198,
11748,
302,
198,
11748,
28686,
628,
198,
4299,
3338,
62,
25927,
7,
12543,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27323,
862,
2163,
20623,
1366,
284,
1249,
3338,
8563,
290,
1005,
563,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
1257,
1058,
21015,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
383,
21015,
2163,
326,
20743,
257,
4382,
198,
220,
220,
220,
220,
198,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
12908,
62,
69,
1058,
21015,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
317,
12908,
2196,
286,
262,
5128,
2163,
543,
481,
869,
2346,
664,
1834,
2280,
198,
220,
220,
220,
220,
220,
220,
220,
790,
642,
4201,
611,
262,
4382,
318,
50068,
290,
481,
1441,
6045,
611,
262,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
1700,
857,
407,
2152,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1441,
12908,
62,
69,
628,
198,
4299,
19818,
62,
5420,
41068,
62,
2340,
7,
259,
62,
2340,
11,
20613,
11,
503,
62,
13331,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
11259,
257,
1006,
41068,
20613,
287,
3049,
64,
5794,
290,
257,
1351,
286,
17503,
12405,
1006,
41068,
4522,
11,
198,
220,
220,
220,
7925,
262,
42517,
798,
42136,
656,
257,
649,
3049,
64,
2393,
416,
12336,
262,
32373,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
287,
62,
2340,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
257,
2393,
7268,
530,
1006,
41068,
4522,
583,
1627,
13,
198,
220,
220,
220,
20613,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
262,
1006,
41068,
6831,
287,
3049,
64,
5794,
13,
198,
220,
220,
220,
503,
62,
13331,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
262,
5072,
3049,
64,
2393,
7268,
12405,
42136,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
12405,
62,
2340,
796,
1280,
7,
259,
62,
2340,
737,
961,
22446,
35312,
6615,
3419,
198,
220,
220,
220,
1043,
796,
17635,
198,
220,
220,
220,
351,
1280,
7,
448,
62,
13331,
11,
366,
86,
4943,
355,
42136,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
12405,
62,
8344,
287,
1001,
80,
9399,
13,
29572,
7,
9945,
11,
366,
7217,
64,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
302,
13,
12947,
7203,
91,
1911,
22179,
7,
22766,
62,
2340,
828,
12405,
62,
8344,
13,
312,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
8344,
13,
312,
796,
302,
13,
12947,
7,
81,
17912,
61,
59,
8183,
9,
1600,
12405,
62,
8344,
13,
312,
737,
8094,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1043,
13,
33295,
7,
22766,
62,
8344,
13,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1001,
80,
9399,
13,
13564,
7,
22766,
62,
8344,
11,
42136,
11,
366,
7217,
64,
4943,
198,
220,
220,
220,
3601,
7,
198,
220,
220,
220,
220,
220,
220,
220,
36521,
67,
42136,
1043,
1871,
262,
4064,
67,
20743,
526,
4064,
357,
11925,
7,
9275,
828,
18896,
7,
22766,
62,
2340,
4008,
198,
220,
220,
220,
1267,
628,
198,
31,
21230,
62,
25927,
198,
4299,
21207,
62,
7217,
64,
7,
41068,
62,
312,
11,
20613,
2625,
77,
14913,
45608,
1600,
3053,
2625,
46248,
31,
12888,
13,
785,
1,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
50093,
257,
19270,
11188,
284,
5128,
8379,
4522,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
33756,
62,
312,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
317,
1006,
41068,
8379,
1895,
295,
4522,
357,
68,
13,
70,
13,
8823,
62,
1129,
12952,
737,
198,
220,
220,
220,
20613,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
317,
4938,
7232,
21107,
6831,
1438,
13,
2773,
1744,
3815,
389,
25,
269,
1860,
11,
7625,
11,
20613,
7785,
11,
198,
220,
220,
220,
220,
220,
220,
220,
49651,
31994,
11,
299,
1229,
395,
11,
9779,
11,
19270,
11,
308,
9310,
11,
30324,
305,
16624,
11,
299,
1229,
70,
824,
11,
3488,
928,
1734,
11,
198,
220,
220,
220,
220,
220,
220,
220,
19609,
11,
14364,
535,
382,
11,
7532,
11,
3013,
79,
11,
264,
430,
11,
1687,
30565,
11,
555,
328,
1734,
198,
220,
220,
220,
3053,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
11787,
3053,
2209,
284,
4321,
422,
1006,
41068,
13,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
33756,
62,
22105,
1058,
16024,
13,
4653,
80,
198,
220,
220,
220,
220,
220,
220,
220,
1001,
80,
2134,
7268,
262,
12405,
12549,
64,
1700,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
7232,
21107,
13,
12888,
796,
3053,
198,
220,
220,
220,
351,
7232,
21107,
13,
891,
7569,
7,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
28,
9945,
11,
1005,
4906,
2625,
7217,
64,
1600,
1005,
14171,
2625,
5239,
1600,
4686,
28,
41068,
62,
312,
198,
220,
220,
220,
1267,
355,
5412,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33756,
62,
22105,
796,
1001,
80,
9399,
13,
961,
7,
28144,
11,
366,
7217,
64,
4943,
198,
220,
220,
220,
1441,
33756,
62,
22105,
628,
198,
31,
21230,
62,
25927,
198,
4299,
19818,
62,
312,
62,
34574,
7,
312,
11,
503,
62,
70,
487,
11,
4235,
2625,
86,
1600,
3053,
2625,
46248,
31,
12888,
13,
785,
1,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2264,
10640,
2429,
17796,
1700,
329,
281,
5128,
4522,
290,
13236,
1158,
262,
19270,
37647,
198,
220,
220,
220,
287,
402,
5777,
5794,
13,
39869,
78,
7408,
16311,
389,
3017,
287,
262,
402,
5777,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
4686,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
45835,
1895,
295,
4522,
284,
12405,
2884,
7232,
21107,
13,
198,
220,
220,
220,
503,
62,
70,
487,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
262,
5072,
402,
5777,
2393,
13,
198,
220,
220,
220,
4235,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10363,
287,
543,
284,
1280,
262,
5072,
402,
5777,
2393,
13,
10358,
307,
705,
86,
6,
393,
705,
64,
4458,
198,
220,
220,
220,
3053,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
15644,
3053,
284,
2148,
618,
42517,
1112,
7232,
21107,
13,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
5412,
796,
7232,
21107,
13,
891,
7569,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
28,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
2625,
77,
14913,
45608,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3053,
28,
12888,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
4906,
2625,
22296,
4480,
42632,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
14171,
2625,
12853,
1600,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1700,
796,
1001,
80,
9399,
13,
29572,
7,
28144,
11,
366,
5235,
17796,
4943,
198,
220,
220,
220,
351,
1280,
7,
448,
62,
70,
487,
11,
4235,
8,
355,
308,
487,
62,
28144,
25,
198,
220,
220,
220,
220,
220,
220,
220,
402,
5777,
13,
13564,
7,
22105,
11,
308,
487,
62,
28144,
11,
2291,
62,
7217,
64,
28,
25101,
8,
628,
198,
4299,
308,
487,
62,
41068,
62,
2302,
974,
7,
70,
487,
11,
24685,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
29677,
82,
8379,
422,
262,
12608,
286,
327,
5258,
287,
257,
402,
5777,
656,
257,
3049,
64,
2393,
13,
198,
220,
220,
220,
383,
3049,
64,
24697,
389,
287,
262,
5794,
1875,
28663,
62,
312,
91,
11235,
62,
312,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
308,
487,
62,
259,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
262,
5128,
402,
5777,
2393,
7268,
366,
41519,
1,
290,
366,
48693,
62,
312,
1,
12608,
13,
198,
220,
220,
220,
24685,
62,
448,
1058,
965,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
284,
262,
3049,
64,
2393,
810,
262,
7532,
16311,
815,
307,
3194,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
351,
1280,
7,
70,
487,
11,
366,
81,
4943,
355,
308,
487,
62,
259,
11,
1280,
7,
13331,
11,
366,
86,
4943,
355,
24685,
62,
448,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
308,
487,
62,
259,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33756,
62,
482,
11,
4686,
62,
482,
796,
10352,
11,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7032,
796,
1627,
13,
35312,
7203,
59,
83,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7032,
58,
17,
60,
6624,
366,
34,
5258,
1,
290,
407,
7032,
58,
15,
4083,
9688,
2032,
342,
7203,
2,
24618,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1715,
796,
7032,
58,
12,
16,
4083,
35312,
7203,
26,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
708,
81,
287,
1715,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
302,
13,
12947,
7203,
48693,
62,
312,
28,
1600,
708,
81,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1237,
62,
312,
796,
708,
81,
13,
35312,
7203,
2625,
38381,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
482,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
302,
13,
12947,
7203,
41519,
28,
1600,
708,
81,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33756,
796,
708,
81,
13,
35312,
7203,
2625,
38381,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33756,
62,
482,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
33756,
62,
482,
290,
4686,
62,
482,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13639,
796,
366,
24618,
1343,
7032,
58,
15,
60,
1343,
366,
91,
1,
1343,
1237,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24685,
62,
448,
13,
8933,
20655,
26933,
25677,
1343,
37082,
77,
1600,
33756,
12962,
628
] | 2.343445 | 1,945 |
import unittest
from expression_builder.expression_builder import ExpressionBuilder
# noinspection PyPep8Naming
| [
11748,
555,
715,
395,
198,
198,
6738,
5408,
62,
38272,
13,
38011,
62,
38272,
1330,
41986,
32875,
628,
198,
220,
220,
220,
1303,
645,
1040,
14978,
9485,
47,
538,
23,
45,
3723,
198
] | 3.606061 | 33 |
# Static typing
from typing import List
def getTrackName(apiResponse) -> List[str]:
'''
This function returns the string name of a single track from the reponse provided by the spotify API.
https://developer.spotify.com/console/get-playlist-tracks/
'''
name = apiResponse['track']['name']
artists = []
# Iterate through each artist
for artist in apiResponse['track']['artists']:
artists.append(artist['name'])
artistName = ', '.join(artists)
return f"{artistName} - {name}"
| [
2,
36125,
19720,
198,
6738,
19720,
1330,
7343,
198,
198,
4299,
651,
24802,
5376,
7,
15042,
31077,
8,
4613,
7343,
58,
2536,
5974,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
770,
2163,
5860,
262,
4731,
1438,
286,
257,
2060,
2610,
422,
262,
1128,
2591,
2810,
416,
262,
4136,
1958,
7824,
13,
198,
220,
220,
220,
3740,
1378,
16244,
263,
13,
20485,
1958,
13,
785,
14,
41947,
14,
1136,
12,
1759,
4868,
12,
46074,
14,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1438,
796,
40391,
31077,
17816,
11659,
6,
7131,
6,
3672,
20520,
198,
220,
220,
220,
7912,
796,
17635,
628,
220,
220,
220,
1303,
40806,
378,
832,
1123,
6802,
198,
220,
220,
220,
329,
6802,
287,
40391,
31077,
17816,
11659,
6,
7131,
6,
433,
1023,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
7912,
13,
33295,
7,
49016,
17816,
3672,
6,
12962,
198,
220,
220,
220,
220,
198,
220,
220,
220,
6802,
5376,
796,
46083,
45302,
22179,
7,
433,
1023,
8,
628,
220,
220,
220,
1441,
277,
1,
90,
49016,
5376,
92,
532,
1391,
3672,
36786,
628
] | 2.87027 | 185 |
RD_VERSION = 0x00
WRITE_INFO = 0x01
READ_INFO = 0x02
SEND_RAW = 0x03
| [
198,
35257,
62,
43717,
796,
657,
87,
405,
198,
18564,
12709,
62,
10778,
796,
657,
87,
486,
198,
15675,
62,
10778,
220,
796,
657,
87,
2999,
198,
50,
10619,
62,
20530,
796,
657,
87,
3070,
628
] | 2 | 36 |
from django.contrib.auth.backends import BaseBackend
from django.contrib.auth.models import User
from integrations.discord.models import DiscordCommunity, DiscordUser
from urllib import parse
import urllib.request
import json
import logging
logger = logging.getLogger(__name__)
| [
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
1891,
2412,
1330,
7308,
7282,
437,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
4132,
9143,
13,
15410,
585,
13,
27530,
1330,
39462,
20012,
11,
39462,
12982,
198,
6738,
2956,
297,
571,
1330,
21136,
198,
11748,
2956,
297,
571,
13,
25927,
198,
11748,
33918,
198,
11748,
18931,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198
] | 3.531646 | 79 |
from epiinfo import CSUtilities
from epiinfo import randata
| [
6738,
2462,
72,
10951,
1330,
9429,
18274,
2410,
198,
6738,
2462,
72,
10951,
1330,
43720,
1045,
198
] | 3.529412 | 17 |
# Q = int(input())
while (True):
try:
x,n = input().split()
x = float(x)
n = int(n)
print( '{:.4f}'.format(search(x,n)) )
except:
break
| [
198,
2,
1195,
796,
493,
7,
15414,
28955,
198,
4514,
357,
17821,
2599,
198,
197,
28311,
25,
198,
197,
197,
87,
11,
77,
796,
5128,
22446,
35312,
3419,
198,
197,
197,
87,
796,
12178,
7,
87,
8,
198,
197,
197,
77,
796,
493,
7,
77,
8,
198,
197,
197,
4798,
7,
705,
90,
25,
13,
19,
69,
92,
4458,
18982,
7,
12947,
7,
87,
11,
77,
4008,
1267,
198,
197,
16341,
25,
198,
197,
197,
9032,
198
] | 1.935065 | 77 |
# !usr/bin/env python
# -*- coding:utf-8 -*-
if __name__ == "__main__":
print("hello")
| [
198,
2,
5145,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
40477,
12,
23,
220,
532,
9,
12,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
3601,
7203,
31373,
4943,
198
] | 2.155556 | 45 |
if __name__ == '__main__':
with open("input.txt", 'r') as f:
data = f.readlines()
dancers="abcdefghijklmnop"
print(dancers)
instructions = data[0].strip().split(',')
for i in range(0, 1000000000):
for instruction in instructions:
command=instruction[0]
pars = instruction[1:]
if command=="s":
length = int(pars)
tail = dancers[-length:]
dancers=tail+dancers[0:-length]
elif command=="p":
a1, a2 = pars.split('/')
i1 = dancers.find(a1)
i2 = dancers.find(a2)
dancers = [char for char in dancers]
dancers[i1]=a2
dancers[i2]=a1
dancers = "".join(dancers)
elif command=="x":
a1, a2 = [int(x) for x in pars.split('/')]
dancers = [char for char in dancers]
dancers[a1], dancers[a2] = dancers[a2], dancers[a1]
dancers = "".join(dancers)
if dancers=="abcdefghijklmnop":
print("found it")
print(i)
print(dancers)
| [
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
351,
1280,
7203,
15414,
13,
14116,
1600,
705,
81,
11537,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1366,
796,
277,
13,
961,
6615,
3419,
628,
198,
220,
220,
220,
35837,
2625,
39305,
4299,
456,
2926,
41582,
10295,
404,
1,
198,
220,
220,
220,
3601,
7,
67,
20811,
8,
198,
220,
220,
220,
7729,
796,
1366,
58,
15,
4083,
36311,
22446,
35312,
7,
3256,
11537,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
15,
11,
1802,
24598,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
329,
12064,
287,
7729,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3141,
28,
8625,
2762,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13544,
796,
12064,
58,
16,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3141,
855,
1,
82,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4129,
796,
493,
7,
79,
945,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7894,
796,
35837,
58,
12,
13664,
47715,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
28,
13199,
10,
67,
20811,
58,
15,
21912,
13664,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
3141,
855,
1,
79,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
16,
11,
257,
17,
796,
13544,
13,
35312,
10786,
14,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
16,
796,
35837,
13,
19796,
7,
64,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
17,
796,
35837,
13,
19796,
7,
64,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
796,
685,
10641,
329,
1149,
287,
35837,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
58,
72,
16,
22241,
64,
17,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
58,
72,
17,
22241,
64,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
796,
366,
1911,
22179,
7,
67,
20811,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
3141,
855,
1,
87,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
16,
11,
257,
17,
796,
685,
600,
7,
87,
8,
329,
2124,
287,
13544,
13,
35312,
10786,
14,
11537,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
796,
685,
10641,
329,
1149,
287,
35837,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
58,
64,
16,
4357,
35837,
58,
64,
17,
60,
796,
35837,
58,
64,
17,
4357,
35837,
58,
64,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35837,
796,
366,
1911,
22179,
7,
67,
20811,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
35837,
855,
1,
39305,
4299,
456,
2926,
41582,
10295,
404,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
9275,
340,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
72,
8,
628,
220,
220,
220,
3601,
7,
67,
20811,
8,
198
] | 1.821317 | 638 |
# SyntaxError: annotated name 'var' can't be global
var = 0
foo() | [
2,
26375,
897,
12331,
25,
24708,
515,
1438,
705,
7785,
6,
460,
470,
307,
3298,
198,
198,
7785,
796,
657,
198,
21943,
3419
] | 2.869565 | 23 |
import ast
import pkg_resources
import unittest
from rgkit.settings import settings
from rgkit import rg
map_data = ast.literal_eval(
open(pkg_resources.resource_filename('rgkit', 'maps/default.py')).read())
settings.init_map(map_data)
| [
11748,
6468,
198,
11748,
279,
10025,
62,
37540,
198,
11748,
555,
715,
395,
198,
198,
6738,
48670,
15813,
13,
33692,
1330,
6460,
198,
6738,
48670,
15813,
1330,
48670,
198,
198,
8899,
62,
7890,
796,
6468,
13,
18250,
1691,
62,
18206,
7,
198,
220,
220,
220,
1280,
7,
35339,
62,
37540,
13,
31092,
62,
34345,
10786,
41345,
15813,
3256,
705,
31803,
14,
12286,
13,
9078,
11537,
737,
961,
28955,
198,
33692,
13,
15003,
62,
8899,
7,
8899,
62,
7890,
8,
628
] | 3.0375 | 80 |
from sklearn.linear_model._base import LinearClassifierMixin, SparseCoefMixin
from sklearn.base import BaseEstimator
from sklearn.utils import check_X_y
from sklearn.utils.multiclass import unique_labels
from abc import abstractmethod
import numpy as np
| [
6738,
1341,
35720,
13,
29127,
62,
19849,
13557,
8692,
1330,
44800,
9487,
7483,
35608,
259,
11,
1338,
17208,
7222,
891,
35608,
259,
198,
6738,
1341,
35720,
13,
8692,
1330,
7308,
22362,
320,
1352,
198,
6738,
1341,
35720,
13,
26791,
1330,
2198,
62,
55,
62,
88,
198,
6738,
1341,
35720,
13,
26791,
13,
16680,
291,
31172,
1330,
3748,
62,
23912,
1424,
198,
6738,
450,
66,
1330,
12531,
24396,
198,
198,
11748,
299,
32152,
355,
45941,
628
] | 3.413333 | 75 |
import sys, argparse
parser = argparse.ArgumentParser(
description='''Download and extract zip archive(s) from
https://www.sec.gov/dera/data/financial-statement-data-sets.html.''')
parser.add_argument(
'-path',
type=str,
help='''Directory path that zip archives will be saved to. May be absolute
or relative. Defaults to (creates) an ./sec_zip subdirectory within the
current working directory when no argument is specified.''')
parser.add_argument(
'-destination', '-dest',
type=str,
help='''Directory path to a folder that extracted data files will be saved
to. May be absolute or relative. Defaults to the current working directory
if no argument is provided.''')
parser.add_argument(
'-qtr',
type=str,
help='''Single financial quarter (ie: 2017q1) to be downloaded from sec.gov.
When used, qtr overrides -startqtr and -endqtr arguments if also used. Use
-qtr latest to download the latest available quarter.''')
parser.add_argument(
'-startqtr', '-start',
type=str,
default='2009q1',
help='''The starting financial quarter when downloading a range of zip
archives from sec.gov. Defaults to 2009q1, the earliest financial period
available.''')
parser.add_argument(
'-endqtr', '-end',
type=str,
help='''The ending financial quarter when downloading a range of zip
archives from sec.gov. Defaults to the latest available quarter when no
argument is specified.''')
parser.add_argument(
'-singledir', '-s',
action='store_true',
help='''By default zip archives are extracted to subdirectories that mirror
each individual archive. Use the -singledir switch to extract all data files
directly to -destination, appending filenames with the applicable financial
period.''')
parser.add_argument(
'-rmzip', '-r',
action='store_true',
help='''By default zip archives will persist after extraction. Use the
-rmzip switch to remove each archive after extraction, as well as any
parent directory specified by -path (if empty) after extraction.''')
parser.add_argument(
'-download', '-d',
action='store_true',
help='''Use the -download switch to download the specified zip archive(s)
without subsequent file extraction.''')
parser.add_argument(
'-extract', '-e',
action='store_true',
help='''Use the -extract switch to extract the specified zip archive(s) (no
download).''')
| [
11748,
25064,
11,
1822,
29572,
198,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
198,
220,
220,
220,
6764,
28,
7061,
6,
10002,
290,
7925,
19974,
15424,
7,
82,
8,
422,
220,
198,
220,
220,
220,
3740,
1378,
2503,
13,
2363,
13,
9567,
14,
1082,
64,
14,
7890,
14,
46921,
12,
26090,
12,
7890,
12,
28709,
13,
6494,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
6978,
3256,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
1037,
28,
7061,
6,
43055,
3108,
326,
19974,
22415,
481,
307,
7448,
284,
13,
1737,
307,
4112,
220,
198,
220,
220,
220,
393,
3585,
13,
2896,
13185,
284,
357,
20123,
274,
8,
281,
24457,
2363,
62,
13344,
850,
34945,
1626,
262,
220,
198,
220,
220,
220,
1459,
1762,
8619,
618,
645,
4578,
318,
7368,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
16520,
1883,
3256,
705,
12,
16520,
3256,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
1037,
28,
7061,
6,
43055,
3108,
284,
257,
9483,
326,
21242,
1366,
3696,
481,
307,
7448,
220,
198,
220,
220,
220,
284,
13,
1737,
307,
4112,
393,
3585,
13,
2896,
13185,
284,
262,
1459,
1762,
8619,
220,
198,
220,
220,
220,
611,
645,
4578,
318,
2810,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
80,
2213,
3256,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
1037,
28,
7061,
6,
28008,
3176,
3860,
357,
494,
25,
2177,
80,
16,
8,
284,
307,
15680,
422,
792,
13,
9567,
13,
220,
198,
220,
220,
220,
1649,
973,
11,
10662,
2213,
23170,
1460,
532,
9688,
80,
2213,
290,
532,
437,
80,
2213,
7159,
611,
635,
973,
13,
5765,
220,
198,
220,
220,
220,
532,
80,
2213,
3452,
284,
4321,
262,
3452,
1695,
3860,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
9688,
80,
2213,
3256,
705,
12,
9688,
3256,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
4277,
11639,
10531,
80,
16,
3256,
198,
220,
220,
220,
1037,
28,
7061,
6,
464,
3599,
3176,
3860,
618,
22023,
257,
2837,
286,
19974,
220,
198,
220,
220,
220,
22415,
422,
792,
13,
9567,
13,
2896,
13185,
284,
3717,
80,
16,
11,
262,
14555,
3176,
2278,
220,
198,
220,
220,
220,
1695,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
437,
80,
2213,
3256,
705,
12,
437,
3256,
198,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
1037,
28,
7061,
6,
464,
7464,
3176,
3860,
618,
22023,
257,
2837,
286,
19974,
220,
198,
220,
220,
220,
22415,
422,
792,
13,
9567,
13,
2896,
13185,
284,
262,
3452,
1695,
3860,
618,
645,
220,
198,
220,
220,
220,
4578,
318,
7368,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
12215,
992,
343,
3256,
705,
12,
82,
3256,
198,
220,
220,
220,
2223,
11639,
8095,
62,
7942,
3256,
198,
220,
220,
220,
1037,
28,
7061,
6,
3886,
4277,
19974,
22415,
389,
21242,
284,
850,
12942,
1749,
326,
10162,
220,
198,
220,
220,
220,
1123,
1981,
15424,
13,
5765,
262,
532,
12215,
992,
343,
5078,
284,
7925,
477,
1366,
3696,
220,
198,
220,
220,
220,
3264,
284,
532,
16520,
1883,
11,
598,
1571,
1226,
268,
1047,
351,
262,
9723,
3176,
220,
198,
220,
220,
220,
2278,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
26224,
13344,
3256,
705,
12,
81,
3256,
198,
220,
220,
220,
2223,
11639,
8095,
62,
7942,
3256,
198,
220,
220,
220,
1037,
28,
7061,
6,
3886,
4277,
19974,
22415,
481,
21160,
706,
22236,
13,
5765,
262,
220,
198,
220,
220,
220,
532,
26224,
13344,
5078,
284,
4781,
1123,
15424,
706,
22236,
11,
355,
880,
355,
597,
220,
198,
220,
220,
220,
2560,
8619,
7368,
416,
532,
6978,
357,
361,
6565,
8,
706,
22236,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
15002,
3256,
705,
12,
67,
3256,
198,
220,
220,
220,
2223,
11639,
8095,
62,
7942,
3256,
198,
220,
220,
220,
1037,
28,
7061,
6,
11041,
262,
532,
15002,
5078,
284,
4321,
262,
7368,
19974,
15424,
7,
82,
8,
220,
198,
220,
220,
220,
1231,
8840,
2393,
22236,
2637,
7061,
8,
198,
198,
48610,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
705,
12,
2302,
974,
3256,
705,
12,
68,
3256,
198,
220,
220,
220,
2223,
11639,
8095,
62,
7942,
3256,
198,
220,
220,
220,
1037,
28,
7061,
6,
11041,
262,
532,
2302,
974,
5078,
284,
7925,
262,
7368,
19974,
15424,
7,
82,
8,
357,
3919,
220,
198,
220,
220,
220,
4321,
737,
7061,
11537,
628,
198
] | 3.035496 | 817 |
from itertools import groupby
from unstdlib import now, get_many
from sqlalchemy import orm
from briefmetrics import api, model, tasks
from briefmetrics.web.environment import Response, httpexceptions
from briefmetrics.lib.controller import Controller, Context
from briefmetrics.lib.exceptions import APIControllerError, APIError
from .api import expose_api, handle_api
@expose_api('report.create')
@expose_api('report.combine')
@expose_api('report.delete')
@expose_api('subscription.create')
@expose_api('subscription.delete')
@expose_api('funnel.create')
@expose_api('funnel.clear')
# TODO: Move this somewhere else?
| [
6738,
340,
861,
10141,
1330,
1448,
1525,
198,
6738,
15014,
67,
8019,
1330,
783,
11,
651,
62,
21834,
198,
6738,
44161,
282,
26599,
1330,
393,
76,
198,
198,
6738,
4506,
4164,
10466,
1330,
40391,
11,
2746,
11,
8861,
198,
6738,
4506,
4164,
10466,
13,
12384,
13,
38986,
1330,
18261,
11,
1841,
24900,
11755,
198,
6738,
4506,
4164,
10466,
13,
8019,
13,
36500,
1330,
22741,
11,
30532,
198,
6738,
4506,
4164,
10466,
13,
8019,
13,
1069,
11755,
1330,
3486,
2149,
756,
10646,
12331,
11,
7824,
12331,
198,
198,
6738,
764,
15042,
1330,
15651,
62,
15042,
11,
5412,
62,
15042,
628,
198,
31,
1069,
3455,
62,
15042,
10786,
13116,
13,
17953,
11537,
628,
198,
31,
1069,
3455,
62,
15042,
10786,
13116,
13,
24011,
500,
11537,
628,
198,
31,
1069,
3455,
62,
15042,
10786,
13116,
13,
33678,
11537,
628,
198,
31,
1069,
3455,
62,
15042,
10786,
7266,
33584,
13,
17953,
11537,
628,
198,
31,
1069,
3455,
62,
15042,
10786,
7266,
33584,
13,
33678,
11537,
628,
198,
31,
1069,
3455,
62,
15042,
10786,
12543,
4954,
13,
17953,
11537,
628,
198,
31,
1069,
3455,
62,
15042,
10786,
12543,
4954,
13,
20063,
11537,
628,
198,
2,
16926,
46,
25,
10028,
428,
7382,
2073,
30,
628
] | 3.20603 | 199 |
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from flask import session
from sklearn.preprocessing import StandardScaler, LabelEncoder
from sklearn.model_selection import train_test_split, cross_val_score, KFold
from sklearn.tree import DecisionTreeClassifier, plot_tree
from sklearn.metrics import (
accuracy_score,
classification_report,
confusion_matrix,
make_scorer,
)
from skylearn.preprocessing import generic_preprocessing as gprep
classification_Reports = []
confusion_Matrix = []
accuracies = []
target_Names = []
| [
11748,
19798,
292,
355,
279,
67,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
384,
397,
1211,
355,
3013,
82,
198,
6738,
42903,
1330,
6246,
198,
6738,
1341,
35720,
13,
3866,
36948,
1330,
8997,
3351,
36213,
11,
36052,
27195,
12342,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
11,
3272,
62,
2100,
62,
26675,
11,
509,
37,
727,
198,
6738,
1341,
35720,
13,
21048,
1330,
26423,
27660,
9487,
7483,
11,
7110,
62,
21048,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
357,
198,
220,
220,
220,
9922,
62,
26675,
11,
198,
220,
220,
220,
17923,
62,
13116,
11,
198,
220,
220,
220,
10802,
62,
6759,
8609,
11,
198,
220,
220,
220,
787,
62,
1416,
11934,
11,
198,
8,
198,
6738,
1341,
2349,
1501,
13,
3866,
36948,
1330,
14276,
62,
3866,
36948,
355,
308,
46012,
198,
198,
4871,
2649,
62,
37844,
796,
17635,
198,
10414,
4241,
62,
46912,
796,
17635,
198,
4134,
333,
13433,
796,
17635,
198,
16793,
62,
36690,
796,
17635,
628,
198
] | 3.272222 | 180 |
# vim: set fileencoding=utf-8 :
#
# Copyright (c) SAS Institute Inc.
#
# 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 testsuite
# Bootstrap the testsuite
testsuite.setup()
import os
import re
import StringIO
import urllib
from conary.lib import util
import testbase
from catalogService.restClient import ResponseError
from catalogService.rest import baseDriver
from catalogService.rest.drivers import vcloud as dvcloud
from catalogService.rest.models import clouds
from catalogService.rest.models import credentials
from catalogService.rest.models import descriptor
from catalogService.rest.models import images
from catalogService.rest.models import instances
from catalogService_test import mockedData
_xmlNewCloud = """
<descriptorData>
<alias>vcloud2</alias>
<description>description for vcloud2</description>
<serverName>vcloud2.eng.rpath.com</serverName>
<organization>rPath</organization>
<port>2443</port>
</descriptorData>"""
_xmlNewCreds = """
<descriptorData>
<username>abc</username>
<password>12345678</password>
</descriptorData>
"""
if __name__ == "__main__":
testsuite.main()
| [
2,
43907,
25,
900,
2393,
12685,
7656,
28,
40477,
12,
23,
1058,
198,
2,
198,
2,
15069,
357,
66,
8,
35516,
5136,
3457,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
2,
628,
198,
11748,
1332,
2385,
578,
198,
2,
18892,
26418,
262,
1332,
2385,
578,
198,
9288,
2385,
578,
13,
40406,
3419,
198,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
10903,
9399,
198,
11748,
2956,
297,
571,
198,
198,
6738,
369,
560,
13,
8019,
1330,
7736,
198,
198,
11748,
1332,
8692,
198,
198,
6738,
18388,
16177,
13,
2118,
11792,
1330,
18261,
12331,
198,
198,
6738,
18388,
16177,
13,
2118,
1330,
2779,
32103,
198,
6738,
18388,
16177,
13,
2118,
13,
36702,
1330,
410,
17721,
355,
288,
85,
17721,
198,
6738,
18388,
16177,
13,
2118,
13,
27530,
1330,
15114,
198,
6738,
18388,
16177,
13,
2118,
13,
27530,
1330,
18031,
198,
6738,
18388,
16177,
13,
2118,
13,
27530,
1330,
43087,
198,
6738,
18388,
16177,
13,
2118,
13,
27530,
1330,
4263,
198,
6738,
18388,
16177,
13,
2118,
13,
27530,
1330,
10245,
198,
198,
6738,
18388,
16177,
62,
9288,
1330,
29180,
6601,
628,
198,
62,
19875,
3791,
18839,
796,
37227,
198,
27,
20147,
1968,
273,
6601,
29,
198,
220,
1279,
26011,
29,
85,
17721,
17,
3556,
26011,
29,
198,
220,
1279,
11213,
29,
11213,
329,
410,
17721,
17,
3556,
11213,
29,
198,
220,
1279,
15388,
5376,
29,
85,
17721,
17,
13,
1516,
13,
81,
6978,
13,
785,
3556,
15388,
5376,
29,
198,
220,
1279,
9971,
1634,
29,
81,
15235,
3556,
9971,
1634,
29,
198,
220,
1279,
634,
29,
1731,
3559,
3556,
634,
29,
198,
3556,
20147,
1968,
273,
6601,
29,
37811,
198,
198,
62,
19875,
3791,
34,
445,
82,
796,
37227,
198,
27,
20147,
1968,
273,
6601,
29,
198,
220,
1279,
29460,
29,
39305,
3556,
29460,
29,
198,
220,
1279,
28712,
29,
10163,
2231,
30924,
3556,
28712,
29,
198,
3556,
20147,
1968,
273,
6601,
29,
198,
37811,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1332,
2385,
578,
13,
12417,
3419,
198
] | 3.44186 | 473 |
#!/usr/bin/env python
"""
given a point relative to the baseframe, calculate the necessary pan+tilt angle to point camera at it
given a pan+tilt angle, calculate the point relative to the base frame
"""
import unittest
#https://github.com/ros/geometry/blob/hydro-devel/tf/src/tf/transformations.py
from tf import transformations as tf
import numpy as np
from ros_homebot_python import constants as c
from ros_homebot_python import utils
if __name__ == '__main__':
unittest.main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
37811,
198,
35569,
257,
966,
3585,
284,
262,
2779,
14535,
11,
15284,
262,
3306,
3425,
10,
83,
2326,
9848,
284,
966,
4676,
379,
340,
198,
35569,
257,
3425,
10,
83,
2326,
9848,
11,
15284,
262,
966,
3585,
284,
262,
2779,
5739,
198,
37811,
198,
198,
11748,
555,
715,
395,
198,
198,
2,
5450,
1378,
12567,
13,
785,
14,
4951,
14,
469,
15748,
14,
2436,
672,
14,
15511,
305,
12,
2934,
626,
14,
27110,
14,
10677,
14,
27110,
14,
35636,
602,
13,
9078,
198,
6738,
48700,
1330,
38226,
355,
48700,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
686,
82,
62,
11195,
13645,
62,
29412,
1330,
38491,
355,
269,
198,
6738,
686,
82,
62,
11195,
13645,
62,
29412,
1330,
3384,
4487,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 3.189542 | 153 |
import logging
from os import getenv
__all__ = ['log', 'check_for_tokens']
logging.basicConfig(level=logging.INFO,
format='%(levelname)s: %(asctime)s -'
' %(funcName)s - %(message)s')
log = logging.getLogger('webkin')
| [
11748,
18931,
198,
6738,
28686,
1330,
651,
24330,
198,
198,
834,
439,
834,
796,
37250,
6404,
3256,
705,
9122,
62,
1640,
62,
83,
482,
641,
20520,
198,
198,
6404,
2667,
13,
35487,
16934,
7,
5715,
28,
6404,
2667,
13,
10778,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5794,
11639,
4,
7,
5715,
3672,
8,
82,
25,
4064,
7,
292,
310,
524,
8,
82,
532,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4064,
7,
20786,
5376,
8,
82,
532,
4064,
7,
20500,
8,
82,
11537,
198,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
10786,
12384,
5116,
11537,
628
] | 2.062992 | 127 |
""" This module contains configuration utilities. """
import json
import os
FJSON = 'dautils.json'
def file_exists(tocheck):
""" Checks whether a file exists.
:param tocheck: The path of the file.
:returns: True if the file exists.
"""
return os.path.isfile(tocheck)
def read_rc():
""" Reads a configuration file in the JSON format.
:returns: A dictionary representing the contents \
of the configuration file.
"""
old = None
if file_exists(FJSON):
with open(FJSON) as json_file:
old = json.load(json_file)
return old
def update_rc(key, updates):
""" Updates the JSON configuration file.
:param key: The key of the record to update.
:param updates: Values with which to update the relevant record.
"""
config = {key: updates}
old = read_rc()
if old:
old.update(config)
config = old
with open(FJSON, 'w') as json_file:
json.dump(config, json_file, indent=4, sort_keys=True)
| [
37811,
770,
8265,
4909,
8398,
20081,
13,
37227,
198,
11748,
33918,
198,
11748,
28686,
628,
198,
37,
40386,
796,
705,
67,
2306,
4487,
13,
17752,
6,
628,
198,
4299,
2393,
62,
1069,
1023,
7,
83,
30848,
694,
2599,
198,
220,
220,
220,
37227,
47719,
1771,
257,
2393,
7160,
13,
628,
220,
220,
220,
1058,
17143,
284,
9122,
25,
383,
3108,
286,
262,
2393,
13,
628,
220,
220,
220,
1058,
7783,
82,
25,
6407,
611,
262,
2393,
7160,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
28686,
13,
6978,
13,
4468,
576,
7,
83,
30848,
694,
8,
628,
198,
4299,
1100,
62,
6015,
33529,
198,
220,
220,
220,
37227,
4149,
82,
257,
8398,
2393,
287,
262,
19449,
5794,
13,
628,
220,
220,
220,
1058,
7783,
82,
25,
317,
22155,
10200,
262,
10154,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
286,
262,
8398,
2393,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1468,
796,
6045,
628,
220,
220,
220,
611,
2393,
62,
1069,
1023,
7,
37,
40386,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
37,
40386,
8,
355,
33918,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1468,
796,
33918,
13,
2220,
7,
17752,
62,
7753,
8,
628,
220,
220,
220,
1441,
1468,
628,
198,
4299,
4296,
62,
6015,
7,
2539,
11,
5992,
2599,
198,
220,
220,
220,
37227,
28090,
262,
19449,
8398,
2393,
13,
628,
220,
220,
220,
1058,
17143,
1994,
25,
383,
1994,
286,
262,
1700,
284,
4296,
13,
198,
220,
220,
220,
1058,
17143,
5992,
25,
27068,
351,
543,
284,
4296,
262,
5981,
1700,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4566,
796,
1391,
2539,
25,
5992,
92,
198,
220,
220,
220,
1468,
796,
1100,
62,
6015,
3419,
628,
220,
220,
220,
611,
1468,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1468,
13,
19119,
7,
11250,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
1468,
628,
220,
220,
220,
351,
1280,
7,
37,
40386,
11,
705,
86,
11537,
355,
33918,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33918,
13,
39455,
7,
11250,
11,
33918,
62,
7753,
11,
33793,
28,
19,
11,
3297,
62,
13083,
28,
17821,
8,
198
] | 2.676316 | 380 |
from django.urls import path
from .views import BlogDetailView, BlogListView
urlpatterns = [
path('post/<int:pk>/', BlogDetailView.as_view(), name='post_detail'),
path('', BlogListView.as_view(), name='home'),
]
| [
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
198,
198,
6738,
764,
33571,
1330,
14001,
11242,
603,
7680,
11,
14001,
8053,
7680,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
10786,
7353,
14,
27,
600,
25,
79,
74,
29,
14,
3256,
14001,
11242,
603,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
7353,
62,
49170,
33809,
198,
220,
220,
220,
3108,
10786,
3256,
14001,
8053,
7680,
13,
292,
62,
1177,
22784,
1438,
11639,
11195,
33809,
198,
60,
198
] | 2.707317 | 82 |
from time import sleep
import rospy
from geometry_msgs.msg import Quaternion
from geometry_msgs.msg import Vector3
from mavros_msgs.msg import Thrust
from mavros_msgs.msg import AttitudeTarget
node = rospy.init_node("thrust_test")
rate = rospy.Rate(20) # Hz
pub = rospy.Publisher('/mavros/setpoint_raw/attitude', AttitudeTarget, queue_size=1)
print("looping!")
while True:
msg = AttitudeTarget()
msg.orientation = Quaternion(x=0.0, y=0.0, z=0.0, w=1.0)
msg.body_rate = Vector3(x=0.0, y=0.0, z=0.0)
msg.thrust = -0.001
pub.publish(msg)
rate.sleep()
print("Sending thrust [%f]!" % msg.thrust)
| [
6738,
640,
1330,
3993,
198,
198,
11748,
686,
2777,
88,
198,
6738,
22939,
62,
907,
14542,
13,
19662,
1330,
2264,
9205,
295,
198,
6738,
22939,
62,
907,
14542,
13,
19662,
1330,
20650,
18,
198,
6738,
285,
615,
4951,
62,
907,
14542,
13,
19662,
1330,
49794,
198,
6738,
285,
615,
4951,
62,
907,
14542,
13,
19662,
1330,
3460,
3984,
21745,
198,
198,
17440,
796,
686,
2777,
88,
13,
15003,
62,
17440,
7203,
400,
11469,
62,
9288,
4943,
198,
198,
4873,
796,
686,
2777,
88,
13,
32184,
7,
1238,
8,
220,
1303,
26109,
198,
12984,
796,
686,
2777,
88,
13,
46471,
10786,
14,
76,
615,
4951,
14,
2617,
4122,
62,
1831,
14,
1078,
3984,
3256,
3460,
3984,
21745,
11,
16834,
62,
7857,
28,
16,
8,
198,
198,
4798,
7203,
5439,
15816,
2474,
8,
198,
4514,
6407,
25,
198,
220,
220,
220,
31456,
796,
3460,
3984,
21745,
3419,
198,
220,
220,
220,
31456,
13,
13989,
341,
796,
2264,
9205,
295,
7,
87,
28,
15,
13,
15,
11,
331,
28,
15,
13,
15,
11,
1976,
28,
15,
13,
15,
11,
266,
28,
16,
13,
15,
8,
198,
220,
220,
220,
31456,
13,
2618,
62,
4873,
796,
20650,
18,
7,
87,
28,
15,
13,
15,
11,
331,
28,
15,
13,
15,
11,
1976,
28,
15,
13,
15,
8,
198,
220,
220,
220,
31456,
13,
400,
11469,
796,
532,
15,
13,
8298,
198,
220,
220,
220,
2240,
13,
12984,
1836,
7,
19662,
8,
628,
220,
220,
220,
2494,
13,
42832,
3419,
198,
220,
220,
220,
3601,
7203,
50,
1571,
14613,
685,
4,
69,
60,
2474,
4064,
31456,
13,
400,
11469,
8,
198
] | 2.349624 | 266 |
"""
Created on Mar 8, 2020
@author: hwase
"""
import settings as S
import yagmail
if __name__ == '__main__':
contents = ['This is the body, and here is just text http://somedomain/image.png',
'You can find an audio file attached.', '/local/path/song.mp3']
# yagmail.register(sender_email, 'vwxaotmoawdfwxzx') # trader@2020
yagmail.SMTP(S.MAIL_SENDER, S.MAIL_PASSWORD).send('[email protected]', 'test', contents)
| [
37811,
201,
198,
41972,
319,
1526,
807,
11,
12131,
201,
198,
201,
198,
31,
9800,
25,
289,
86,
589,
201,
198,
37811,
201,
198,
11748,
6460,
355,
311,
201,
198,
11748,
331,
363,
4529,
201,
198,
201,
198,
201,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
201,
198,
220,
220,
220,
10154,
796,
37250,
1212,
318,
262,
1767,
11,
290,
994,
318,
655,
2420,
2638,
1378,
82,
296,
3836,
391,
14,
9060,
13,
11134,
3256,
201,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1639,
460,
1064,
281,
6597,
2393,
7223,
2637,
11,
31051,
12001,
14,
6978,
14,
34050,
13,
3149,
18,
20520,
201,
198,
220,
220,
220,
1303,
331,
363,
4529,
13,
30238,
7,
82,
2194,
62,
12888,
11,
705,
85,
86,
27865,
313,
5908,
707,
7568,
49345,
42592,
11537,
220,
1303,
31791,
31,
42334,
201,
198,
220,
220,
220,
331,
363,
4529,
13,
12310,
7250,
7,
50,
13,
5673,
4146,
62,
50,
10619,
1137,
11,
311,
13,
5673,
4146,
62,
47924,
54,
12532,
737,
21280,
10786,
3287,
26400,
13,
38006,
31,
14816,
13,
785,
3256,
705,
9288,
3256,
10154,
8,
201,
198
] | 2.345178 | 197 |
from game import Game, TAVERN, TavernTile
import math
| [
6738,
983,
1330,
3776,
11,
21664,
5959,
45,
11,
32693,
35103,
198,
11748,
10688,
198
] | 3.6 | 15 |
# Define here the models for your scraped items
#
# See documentation in:
# https://docs.scrapy.org/en/latest/topics/items.html
import scrapy
if __name__ == '__main__':
item = LianjiaItem()
item['联系方式'] = 'fasgseg'
for k, v in item.items():
print(k, v) | [
2,
2896,
500,
994,
262,
4981,
329,
534,
15881,
276,
3709,
198,
2,
198,
2,
4091,
10314,
287,
25,
198,
2,
3740,
1378,
31628,
13,
1416,
2416,
88,
13,
2398,
14,
268,
14,
42861,
14,
4852,
873,
14,
23814,
13,
6494,
198,
198,
11748,
15881,
88,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
2378,
796,
406,
666,
73,
544,
7449,
3419,
198,
220,
220,
220,
2378,
17816,
164,
223,
242,
163,
111,
119,
43095,
28156,
237,
20520,
796,
705,
69,
292,
70,
325,
70,
6,
198,
220,
220,
220,
329,
479,
11,
410,
287,
2378,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
74,
11,
410,
8
] | 2.262295 | 122 |
"""Minimal Oware server
This server doesn't actually implement the Oware game. It simply
allows a single client to connect, and speaks the game protocol well
enough to allow that client to run.
"""
import pickle
import socket
from ..model.board import Board
from ..util import ByteFIFO
if __name__ == '__main__':
main()
| [
37811,
9452,
4402,
440,
1574,
4382,
198,
198,
1212,
4382,
1595,
470,
1682,
3494,
262,
440,
1574,
983,
13,
632,
2391,
198,
47205,
257,
2060,
5456,
284,
2018,
11,
290,
9209,
262,
983,
8435,
880,
198,
48229,
284,
1249,
326,
5456,
284,
1057,
13,
198,
198,
37811,
198,
198,
11748,
2298,
293,
198,
11748,
17802,
198,
6738,
11485,
19849,
13,
3526,
1330,
5926,
198,
6738,
11485,
22602,
1330,
30589,
37,
5064,
46,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 3.604396 | 91 |
# Import standard python modules
import threading
import time
import os
import sys
# Import paho MQTT client.
import paho.mqtt.client as mqtt
# Define callback functions which will be called when certain events happen.
# Define Functions for Threading
if __name__ == "__main__":
if(len(sys.argv)!=2):
sys.stderr.write('Usage: "{0}" $hostAddress\n'.format(sys.argv[0]))
os._exit(1)
# Setup MQTT Client Instance
client = mqtt.Client()
# Setup Callbacks
client.on_connect = on_connect
client.on_disconnect=on_disconnect
# Setup Control Vars
client.connectedFlag=False
client.messageSend="0"
# Connect to the Broker server.
print("Conectando al broker")
client.connect(host=sys.argv[1], port=1883, keepalive=60)
client.loop_start()
while not client.connectedFlag:
print("Esperando conexión")
time.sleep(1)
# Setup Threading, to publish message every 10 seconds
hilo0=threading.Thread(target=send_message, args=(client,))
hilo0.start()
# Mod publish value
while client.messageSend!="x": # char 'x' to exit
client.messageSend=input("Ingrese nuevo valor para el tanque\n")
client.loop_stop()
client.disconnect()
| [
2,
17267,
3210,
21015,
13103,
198,
11748,
4704,
278,
198,
11748,
640,
198,
11748,
28686,
198,
11748,
25064,
198,
198,
2,
17267,
279,
17108,
337,
48,
15751,
5456,
13,
198,
11748,
279,
17108,
13,
76,
80,
926,
13,
16366,
355,
285,
80,
926,
198,
198,
2,
2896,
500,
23838,
5499,
543,
481,
307,
1444,
618,
1728,
2995,
1645,
13,
198,
198,
2,
2896,
500,
40480,
329,
14122,
278,
198,
197,
197,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
197,
361,
7,
11925,
7,
17597,
13,
853,
85,
31520,
28,
17,
2599,
198,
197,
197,
17597,
13,
301,
1082,
81,
13,
13564,
10786,
28350,
25,
45144,
15,
36786,
720,
4774,
20231,
59,
77,
4458,
18982,
7,
17597,
13,
853,
85,
58,
15,
60,
4008,
198,
197,
197,
418,
13557,
37023,
7,
16,
8,
198,
197,
198,
197,
2,
31122,
337,
48,
15751,
20985,
2262,
590,
198,
197,
16366,
796,
285,
80,
926,
13,
11792,
3419,
628,
197,
2,
31122,
4889,
10146,
198,
197,
16366,
13,
261,
62,
8443,
796,
319,
62,
8443,
198,
197,
16366,
13,
261,
62,
6381,
8443,
28,
261,
62,
6381,
8443,
628,
197,
2,
31122,
6779,
569,
945,
198,
197,
16366,
13,
15236,
34227,
28,
25101,
198,
197,
16366,
13,
20500,
25206,
2625,
15,
1,
628,
197,
2,
8113,
284,
262,
2806,
6122,
4382,
13,
198,
197,
4798,
7203,
3103,
478,
25440,
435,
20426,
4943,
198,
197,
16366,
13,
8443,
7,
4774,
28,
17597,
13,
853,
85,
58,
16,
4357,
2493,
28,
1507,
5999,
11,
1394,
282,
425,
28,
1899,
8,
198,
197,
16366,
13,
26268,
62,
9688,
3419,
198,
197,
4514,
407,
5456,
13,
15236,
34227,
25,
198,
197,
197,
4798,
7203,
23041,
525,
25440,
369,
1069,
72,
18840,
4943,
198,
197,
197,
2435,
13,
42832,
7,
16,
8,
198,
197,
198,
197,
2,
31122,
14122,
278,
11,
284,
7715,
3275,
790,
838,
4201,
198,
197,
71,
18526,
15,
28,
16663,
278,
13,
16818,
7,
16793,
28,
21280,
62,
20500,
11,
26498,
16193,
16366,
11,
4008,
198,
197,
71,
18526,
15,
13,
9688,
3419,
628,
197,
2,
3401,
7715,
1988,
198,
197,
4514,
5456,
13,
20500,
25206,
0,
2625,
87,
1298,
1303,
1149,
705,
87,
6,
284,
8420,
198,
197,
197,
16366,
13,
20500,
25206,
28,
15414,
7203,
27682,
260,
325,
299,
518,
13038,
1188,
273,
31215,
1288,
25706,
4188,
59,
77,
4943,
198,
197,
16366,
13,
26268,
62,
11338,
3419,
198,
197,
16366,
13,
6381,
8443,
3419,
198,
197,
198
] | 2.809756 | 410 |
import os
import numpy as np
import chainer
| [
11748,
28686,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
6333,
263,
198
] | 3.214286 | 14 |
# coding: utf-8
import math
import ctypes
from objc_util import parse_struct
glk2 = parse_struct('{glkvec2=fff}')
'GLKVector2Make', 'GLKVector2MakeWithArray', 'GLKVector2Length', 'GLKVector2Distance', 'GLKVector2Negate', 'GLKVector2Normalize', 'GLKVector2AddScalar', 'GLKVector2SubtractScalar', 'GLKVector2MultiplyScalar', 'GLKVector2DivideScalar', 'GLKVector2Add', 'GLKVector2Subtract', 'GLKVector2Multiply', 'GLKVector2Divide', 'GLKVector2DotProduct', 'GLKVector2Lerp', 'GLKVector2Project', 'GLKVector2Maximum', 'GLKVector2Minimum', 'GLKVector2EqualToScalar', 'GLKVector2AllEqualToVector4', 'GLKVector2AllGreaterThanOrEqualToScalar',
__all__ = ['GLKVector2', 'setGLKVector2', 'getGLKVector2']
if __name__ == '__main__':
v = GLKVector2Make(1, 1)
print(v)
print(GLKVector2AddScalar(v, 10))
print(GLKVector2Length(GLKVector2Normalize(GLKVector2AddScalar(v, 10))))
print(GLKVector2Minimum(v, GLKVector2MultiplyScalar(v, 35)))
print(GLKVector2Normalize(GLKVector2AddScalar(v, 10)))
print(GLKVector2AllGreaterThanScalar(v, 1.1))
| [
2,
19617,
25,
3384,
69,
12,
23,
198,
11748,
10688,
198,
11748,
269,
19199,
198,
6738,
26181,
66,
62,
22602,
1330,
21136,
62,
7249,
628,
628,
628,
198,
4743,
74,
17,
796,
21136,
62,
7249,
10786,
90,
4743,
74,
35138,
17,
28,
20972,
92,
11537,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198,
6,
8763,
42,
38469,
17,
12050,
3256,
705,
8763,
42,
38469,
17,
12050,
3152,
19182,
3256,
705,
8763,
42,
38469,
17,
24539,
3256,
705,
8763,
42,
38469,
17,
45767,
3256,
705,
8763,
42,
38469,
17,
32863,
378,
3256,
705,
8763,
42,
38469,
17,
26447,
1096,
3256,
705,
8763,
42,
38469,
17,
4550,
3351,
282,
283,
3256,
705,
8763,
42,
38469,
17,
7004,
83,
974,
3351,
282,
283,
3256,
705,
8763,
42,
38469,
17,
15205,
541,
306,
3351,
282,
283,
3256,
705,
8763,
42,
38469,
17,
24095,
485,
3351,
282,
283,
3256,
705,
8763,
42,
38469,
17,
4550,
3256,
705,
8763,
42,
38469,
17,
7004,
83,
974,
3256,
705,
8763,
42,
38469,
17,
15205,
541,
306,
3256,
705,
8763,
42,
38469,
17,
24095,
485,
3256,
705,
8763,
42,
38469,
17,
35,
313,
15667,
3256,
705,
8763,
42,
38469,
17,
43,
263,
79,
3256,
705,
8763,
42,
38469,
17,
16775,
3256,
705,
8763,
42,
38469,
17,
40541,
3256,
705,
8763,
42,
38469,
17,
44046,
3256,
705,
8763,
42,
38469,
17,
36,
13255,
2514,
3351,
282,
283,
3256,
705,
8763,
42,
38469,
17,
3237,
36,
13255,
2514,
38469,
19,
3256,
705,
8763,
42,
38469,
17,
3237,
13681,
263,
817,
272,
5574,
36,
13255,
2514,
3351,
282,
283,
3256,
628,
628,
628,
198,
198,
834,
439,
834,
796,
37250,
8763,
42,
38469,
17,
3256,
705,
2617,
8763,
42,
38469,
17,
3256,
705,
1136,
8763,
42,
38469,
17,
20520,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
410,
796,
10188,
42,
38469,
17,
12050,
7,
16,
11,
352,
8,
198,
220,
3601,
7,
85,
8,
198,
220,
3601,
7,
8763,
42,
38469,
17,
4550,
3351,
282,
283,
7,
85,
11,
838,
4008,
198,
220,
3601,
7,
8763,
42,
38469,
17,
24539,
7,
8763,
42,
38469,
17,
26447,
1096,
7,
8763,
42,
38469,
17,
4550,
3351,
282,
283,
7,
85,
11,
838,
35514,
198,
220,
3601,
7,
8763,
42,
38469,
17,
44046,
7,
85,
11,
10188,
42,
38469,
17,
15205,
541,
306,
3351,
282,
283,
7,
85,
11,
3439,
22305,
198,
220,
3601,
7,
8763,
42,
38469,
17,
26447,
1096,
7,
8763,
42,
38469,
17,
4550,
3351,
282,
283,
7,
85,
11,
838,
22305,
198,
220,
3601,
7,
8763,
42,
38469,
17,
3237,
13681,
263,
817,
272,
3351,
282,
283,
7,
85,
11,
352,
13,
16,
4008,
198
] | 2.41387 | 447 |
from MaltegoTransform import *
from mcrits_utils import *
crits = mcrits()
me = MaltegoTransform()
me.parseArguments(sys.argv)
id_ = me.getVar('id')
crits_type = me.getVar('crits_type')
for result in crits.get_related(crits_type, id_, 'Actor'):
# For each related object, get the details.
obj = crits.get_single_obj('Actor', result[1])
# For each identifer, get the name.
identifiers = []
for id_dict in obj['identifiers']:
id_obj = crits.get_single_obj('ActorIdentifier',
id_dict['identifier_id'])
identifiers.append(id_obj['name'])
ent = me.addEntity(result[0], obj['name'])
ent.addAdditionalFields(fieldName='id',
displayName='id',
value=result[1])
ent.addAdditionalFields(fieldName='aliases',
displayName='Aliases',
value=obj['aliases'])
ent.addAdditionalFields(fieldName='identifiers',
displayName='Identifiers',
value=identifiers)
me.returnOutput()
| [
6738,
4434,
660,
2188,
41762,
1330,
1635,
198,
6738,
285,
22213,
82,
62,
26791,
1330,
1635,
198,
198,
22213,
82,
796,
285,
22213,
82,
3419,
198,
198,
1326,
796,
4434,
660,
2188,
41762,
3419,
198,
1326,
13,
29572,
28100,
2886,
7,
17597,
13,
853,
85,
8,
198,
312,
62,
796,
502,
13,
1136,
19852,
10786,
312,
11537,
198,
22213,
82,
62,
4906,
796,
502,
13,
1136,
19852,
10786,
22213,
82,
62,
4906,
11537,
198,
198,
1640,
1255,
287,
1955,
82,
13,
1136,
62,
5363,
7,
22213,
82,
62,
4906,
11,
4686,
62,
11,
705,
40277,
6,
2599,
198,
220,
220,
220,
1303,
1114,
1123,
3519,
2134,
11,
651,
262,
3307,
13,
198,
220,
220,
220,
26181,
796,
1955,
82,
13,
1136,
62,
29762,
62,
26801,
10786,
40277,
3256,
1255,
58,
16,
12962,
198,
220,
220,
220,
1303,
1114,
1123,
1852,
7087,
11,
651,
262,
1438,
13,
198,
220,
220,
220,
42814,
796,
17635,
198,
220,
220,
220,
329,
4686,
62,
11600,
287,
26181,
17816,
738,
13350,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
26801,
796,
1955,
82,
13,
1136,
62,
29762,
62,
26801,
10786,
40277,
33234,
7483,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4686,
62,
11600,
17816,
738,
7483,
62,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
42814,
13,
33295,
7,
312,
62,
26801,
17816,
3672,
6,
12962,
198,
220,
220,
220,
920,
796,
502,
13,
2860,
32398,
7,
20274,
58,
15,
4357,
26181,
17816,
3672,
6,
12962,
198,
220,
220,
220,
920,
13,
2860,
17699,
15878,
82,
7,
3245,
5376,
11639,
312,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3359,
5376,
11639,
312,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
28,
20274,
58,
16,
12962,
198,
220,
220,
220,
920,
13,
2860,
17699,
15878,
82,
7,
3245,
5376,
11639,
7344,
1386,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3359,
5376,
11639,
37893,
1386,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
28,
26801,
17816,
7344,
1386,
6,
12962,
198,
220,
220,
220,
920,
13,
2860,
17699,
15878,
82,
7,
3245,
5376,
11639,
738,
13350,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3359,
5376,
11639,
33234,
13350,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
28,
738,
13350,
8,
198,
198,
1326,
13,
7783,
26410,
3419,
198
] | 2.060886 | 542 |
#!/usr/bin/env python
import sys
import os
import unittest
from mock import patch, MagicMock, ANY, call
import pylacuna.core.map
import ast
from sys import version_info
if version_info.major == 2:
import __builtin__ as builtins # pylint:disable=import-error
else:
import builtins # pylint:disable=import-error
GET_STAR_MAP_RESPONSE = ast.literaleval('''
{u'id': 7,
u'jsonrpc': u'2.0',
u'result': {u'stars': [{u'bodies': [{u'id': u'356648',
u'image': u'p18-1',
u'name': u'Kleahien 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 4200,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 3200,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2600,
u'zircon': 1},
u'size': u'50',
u'star_id': u'49528',
u'star_name': u'Kleahien',
u'type': u'habitable planet',
u'water': 7600,
u'x': u'416',
u'y': u'-261',
u'zone': u'1|-1'},
{u'id': u'356649',
u'image': u'p28-2',
u'name': u'Kleahien 2',
u'orbit': u'2',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'68',
u'star_id': u'49528',
u'star_name': u'Kleahien',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'417',
u'y': u'-262',
u'zone': u'1|-1'},
{u'empire': {u'alignment': u'hostile',
u'id': u'38995',
u'is_isolationist': u'0',
u'name': u'dev'},
u'id': u'356650',
u'image': u'p38-3',
u'name': u'Polyhedra 3',
u'orbit': u'3',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49528',
u'star_name': u'Kleahien',
u'type': u'habitable planet',
u'water': 8000,
u'x': u'417',
u'y': u'-264',
u'zone': u'1|-1'},
{u'id': u'356651',
u'image': u'a22-5',
u'name': u'Kleahien 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 900,
u'beryl': 1,
u'chalcopyrite': 700,
u'chromite': 900,
u'fluorite': 100,
u'galena': 800,
u'goethite': 400,
u'gold': 100,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 500,
u'methane': 1,
u'monazite': 300,
u'rutile': 800,
u'sulfur': 1,
u'trona': 400,
u'uraninite': 1,
u'zircon': 200},
u'size': u'6',
u'star_id': u'49528',
u'star_name': u'Kleahien',
u'type': u'asteroid',
u'x': u'414',
u'y': u'-265',
u'zone': u'1|-1'},
{u'id': u'356652',
u'image': u'p37-6',
u'name': u'Kleahien 6',
u'orbit': u'6',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'60',
u'star_id': u'49528',
u'star_name': u'Kleahien',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'413',
u'y': u'-264',
u'zone': u'1|-1'},
{u'id': u'356653',
u'image': u'p7-8',
u'name': u'Kleahien 8',
u'orbit': u'8',
u'ore': {u'anthracite': 1,
u'bauxite': 1700,
u'beryl': 1000,
u'chalcopyrite': 2800,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2400,
u'gold': 1,
u'gypsum': 2100,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'57',
u'star_id': u'49528',
u'star_name': u'Kleahien',
u'type': u'habitable planet',
u'water': 5700,
u'x': u'414',
u'y': u'-261',
u'zone': u'1|-1'}],
u'color': u'magenta',
u'id': u'49528',
u'influence': u'0',
u'name': u'Kleahien',
u'x': u'415',
u'y': u'-263',
u'zone': u'1|-1'},
{u'bodies': [{u'id': u'359536',
u'image': u'pg4-1',
u'name': u'Chea Oobixy 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 2000,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 14000,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 4000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'105',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'gas giant',
u'water': 0,
u'x': u'418',
u'y': u'-251',
u'zone': u'1|-1'},
{u'id': u'359537',
u'image': u'p7-2',
u'name': u'Chea Oobixy 2',
u'orbit': u'2',
u'ore': {u'anthracite': 1,
u'bauxite': 1700,
u'beryl': 1000,
u'chalcopyrite': 2800,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2400,
u'gold': 1,
u'gypsum': 2100,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'66',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'habitable planet',
u'water': 5700,
u'x': u'419',
u'y': u'-252',
u'zone': u'1|-1'},
{u'id': u'359538',
u'image': u'p10-3',
u'name': u'Tau chy 1',
u'orbit': u'3',
u'ore': {u'anthracite': 500,
u'bauxite': 1,
u'beryl': 250,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 250,
u'galena': 1,
u'goethite': 1000,
u'gold': 1,
u'gypsum': 500,
u'halite': 1,
u'kerogen': 500,
u'magnetite': 5000,
u'methane': 500,
u'monazite': 250,
u'rutile': 1,
u'sulfur': 500,
u'trona': 500,
u'uraninite': 1,
u'zircon': 250},
u'size': u'45',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'habitable planet',
u'water': 6800,
u'x': u'419',
u'y': u'-254',
u'zone': u'1|-1'},
{u'id': u'359539',
u'image': u'p18-4',
u'name': u'Toppie Terra',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 4200,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 3200,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2600,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'habitable planet',
u'water': 7600,
u'x': u'418',
u'y': u'-255',
u'zone': u'1|-1'},
{u'id': u'359540',
u'image': u'pg4-5',
u'name': u'Chea Oobixy 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 2000,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 14000,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 4000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'95',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'gas giant',
u'water': 0,
u'x': u'416',
u'y': u'-255',
u'zone': u'1|-1'},
{u'id': u'359541',
u'image': u'p38-6',
u'name': u'Chea Oobixy 6',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'55',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'habitable planet',
u'water': 8000,
u'x': u'415',
u'y': u'-254',
u'zone': u'1|-1'},
{u'id': u'359542',
u'image': u'p5-7',
u'name': u'Chea Oobixy 7',
u'orbit': u'7',
u'ore': {u'anthracite': 1,
u'bauxite': 2250,
u'beryl': 1,
u'chalcopyrite': 250,
u'chromite': 1,
u'fluorite': 1,
u'galena': 2250,
u'goethite': 1250,
u'gold': 1,
u'gypsum': 1250,
u'halite': 250,
u'kerogen': 1,
u'magnetite': 250,
u'methane': 250,
u'monazite': 1,
u'rutile': 1250,
u'sulfur': 250,
u'trona': 250,
u'uraninite': 250,
u'zircon': 1},
u'size': u'52',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'habitable planet',
u'water': 6200,
u'x': u'415',
u'y': u'-252',
u'zone': u'1|-1'},
{u'id': u'359543',
u'image': u'p37-8',
u'name': u'Chea Oobixy 8',
u'orbit': u'8',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'49',
u'star_id': u'49928',
u'star_name': u'Chea Oobixy',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'416',
u'y': u'-251',
u'zone': u'1|-1'}],
u'color': u'blue',
u'id': u'49928',
u'influence': u'0',
u'name': u'Chea Oobixy',
u'x': u'417',
u'y': u'-253',
u'zone': u'1|-1'},
{u'bodies': [{u'id': u'362428',
u'image': u'a13-1',
u'name': u'Tchia Thowdo Oxy 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 6574,
u'uraninite': 1,
u'zircon': 2590},
u'size': u'10',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'418',
u'y': u'-241',
u'zone': u'1|0'},
{u'id': u'362429',
u'image': u'a12-2',
u'name': u'Tchia Thowdo Oxy 2',
u'orbit': u'2',
u'ore': {u'anthracite': 289,
u'bauxite': 269,
u'beryl': 313,
u'chalcopyrite': 299,
u'chromite': 320,
u'fluorite': 307,
u'galena': 278,
u'goethite': 292,
u'gold': 310,
u'gypsum': 311,
u'halite': 301,
u'kerogen': 284,
u'magnetite': 296,
u'methane': 285,
u'monazite': 319,
u'rutile': 258,
u'sulfur': 324,
u'trona': 293,
u'uraninite': 276,
u'zircon': 275},
u'size': u'6',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'419',
u'y': u'-242',
u'zone': u'1|0'},
{u'id': u'362430',
u'image': u'a3-3',
u'name': u'Tchia Thowdo Oxy 3',
u'orbit': u'3',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1000,
u'zircon': 8000},
u'size': u'9',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'419',
u'y': u'-244',
u'zone': u'1|0'},
{u'id': u'362431',
u'image': u'a20-4',
u'name': u'Tchia Thowdo Oxy 4',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 6342,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'2',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'418',
u'y': u'-245',
u'zone': u'1|0'},
{u'id': u'362432',
u'image': u'a20-5',
u'name': u'Tchia Thowdo Oxy 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 6342,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'6',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'416',
u'y': u'-245',
u'zone': u'1|0'},
{u'id': u'362433',
u'image': u'a14-6',
u'name': u'Tchia Thowdo Oxy 6',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 3038,
u'goethite': 2895,
u'gold': 1,
u'gypsum': 2897,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'9',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'415',
u'y': u'-244',
u'zone': u'1|0'},
{u'id': u'362434',
u'image': u'a12-7',
u'name': u'Tchia Thowdo Oxy 7',
u'orbit': u'7',
u'ore': {u'anthracite': 289,
u'bauxite': 269,
u'beryl': 313,
u'chalcopyrite': 299,
u'chromite': 320,
u'fluorite': 307,
u'galena': 278,
u'goethite': 292,
u'gold': 310,
u'gypsum': 311,
u'halite': 301,
u'kerogen': 284,
u'magnetite': 296,
u'methane': 285,
u'monazite': 319,
u'rutile': 258,
u'sulfur': 324,
u'trona': 293,
u'uraninite': 276,
u'zircon': 275},
u'size': u'4',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'415',
u'y': u'-242',
u'zone': u'1|0'},
{u'id': u'362435',
u'image': u'a2-8',
u'name': u'Tchia Thowdo Oxy 8',
u'orbit': u'8',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 4000,
u'chalcopyrite': 5000,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1000},
u'size': u'2',
u'star_id': u'50328',
u'star_name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'416',
u'y': u'-241',
u'zone': u'1|0'}],
u'color': u'white',
u'id': u'50328',
u'influence': u'227',
u'name': u'Tchia Thowdo Oxy',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'x': u'417',
u'y': u'-243',
u'zone': u'1|0'},
{u'bodies': [{u'id': u'360995',
u'image': u'a20-1',
u'name': u'Oum Froassoo Sta 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 6342,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'5',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'424',
u'y': u'-243',
u'zone': u'1|0'},
{u'id': u'360996',
u'image': u'a14-2',
u'name': u'Oum Froassoo Sta 2',
u'orbit': u'2',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 3038,
u'goethite': 2895,
u'gold': 1,
u'gypsum': 2897,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'8',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'425',
u'y': u'-244',
u'zone': u'1|0'},
{u'id': u'360997',
u'image': u'a3-3',
u'name': u'Oum Froassoo Sta 3',
u'orbit': u'3',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1000,
u'zircon': 8000},
u'size': u'3',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'425',
u'y': u'-246',
u'zone': u'1|0'},
{u'id': u'360998',
u'image': u'pg3-4',
u'name': u'Oum Froassoo Sta 4',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 4000,
u'halite': 14000,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 2000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'88',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'gas giant',
u'water': 0,
u'x': u'424',
u'y': u'-247',
u'zone': u'1|0'},
{u'id': u'360999',
u'image': u'pg4-5',
u'name': u'Oum Froassoo Sta 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 2000,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 14000,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 4000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'107',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'gas giant',
u'water': 0,
u'x': u'422',
u'y': u'-247',
u'zone': u'1|0'},
{u'id': u'361000',
u'image': u'a18-6',
u'name': u'Oum Froassoo Sta 6',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 4120,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 3326,
u'uraninite': 1,
u'zircon': 1},
u'size': u'7',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'421',
u'y': u'-246',
u'zone': u'1|0'},
{u'id': u'361001',
u'image': u'a13-7',
u'name': u'Oum Froassoo Sta 7',
u'orbit': u'7',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 6574,
u'uraninite': 1,
u'zircon': 2590},
u'size': u'6',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'421',
u'y': u'-244',
u'zone': u'1|0'},
{u'id': u'361002',
u'image': u'a4-8',
u'name': u'Oum Froassoo Sta 8',
u'orbit': u'8',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1000,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 9000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'3',
u'star_id': u'50129',
u'star_name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'422',
u'y': u'-243',
u'zone': u'1|0'}],
u'color': u'white',
u'id': u'50129',
u'influence': u'254',
u'name': u'Oum Froassoo Sta',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'x': u'423',
u'y': u'-245',
u'zone': u'1|0'},
{u'bodies': [{u'id': u'358097',
u'image': u'pg3-1',
u'name': u'Ouss Siek 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 4000,
u'halite': 14000,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 2000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'104',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'type': u'gas giant',
u'water': 0,
u'x': u'425',
u'y': u'-253',
u'zone': u'1|-1'},
{u'id': u'358098',
u'image': u'p28-2',
u'name': u'Ouss Siek 2',
u'orbit': u'2',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'64',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'426',
u'y': u'-254',
u'zone': u'1|-1'},
{u'build_queue_len': 7,
u'build_queue_size': 9,
u'building_count': 43,
u'empire': {u'alignment': u'self',
u'id': u'51819',
u'is_isolationist': u'1',
u'name': u'MikeTwo'},
u'energy_capacity': u'280094',
u'energy_hour': u'3537',
u'energy_stored': u'104737',
u'food_capacity': u'284472',
u'food_hour': 5171,
u'food_stored': 284472,
u'happiness': u'352459',
u'happiness_hour': u'680',
u'id': u'358099',
u'image': u'p38-3',
u'incoming_enemy_ships': [{u'date_arrives': u'06 09 2015 18:33:00 +0000',
u'id': u'51549238',
u'is_ally': 0,
u'is_own': 0}],
u'name': u'Cloraphorm III',
u'needs_surface_refresh': u'0',
u'neutral_entry': u'10 07 2015 07:26:44 +0000',
u'num_incoming_ally': u'0',
u'num_incoming_enemy': u'1',
u'num_incoming_own': u'0',
u'orbit': u'3',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'ore_capacity': u'295866',
u'ore_hour': 7794,
u'ore_stored': 202664,
u'plots_available': u'2',
u'population': 2880000,
u'propaganda_boost': u'0',
u'size': u'45',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'surface_version': u'358',
u'type': u'habitable planet',
u'waste_capacity': u'289133',
u'waste_hour': u'239',
u'waste_stored': u'288328',
u'water': 8000,
u'water_capacity': u'280094',
u'water_hour': u'5476',
u'water_stored': u'280094',
u'x': u'426',
u'y': u'-256',
u'zone': u'1|-1'},
{u'id': u'358100',
u'image': u'a7-4',
u'name': u'Ouss Siek 4',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3291,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1239,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2377,
u'zircon': 1},
u'size': u'5',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'type': u'asteroid',
u'x': u'425',
u'y': u'-257',
u'zone': u'1|-1'},
{u'id': u'358101',
u'image': u'p28-5',
u'name': u'Ouss Siek 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'56',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'423',
u'y': u'-257',
u'zone': u'1|-1'},
{u'id': u'358102',
u'image': u'p37-6',
u'name': u'Ouss Siek 6',
u'orbit': u'6',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'53',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'422',
u'y': u'-256',
u'zone': u'1|-1'},
{u'id': u'358103',
u'image': u'pg3-7',
u'name': u'Ouss Siek 7',
u'orbit': u'7',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 4000,
u'halite': 14000,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 2000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'86',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'type': u'gas giant',
u'water': 0,
u'x': u'422',
u'y': u'-254',
u'zone': u'1|-1'},
{u'id': u'358104',
u'image': u'p37-8',
u'name': u'Ouss Siek 8',
u'orbit': u'8',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'69',
u'star_id': u'49729',
u'star_name': u'Ouss Siek',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'423',
u'y': u'-253',
u'zone': u'1|-1'}],
u'color': u'blue',
u'id': u'49729',
u'influence': u'0',
u'name': u'Ouss Siek',
u'x': u'424',
u'y': u'-255',
u'zone': u'1|-1'},
{u'bodies': [{u'id': u'355186',
u'image': u'a12-1',
u'name': u'Iondeuzz 1',
u'orbit': u'1',
u'ore': {u'anthracite': 289,
u'bauxite': 269,
u'beryl': 313,
u'chalcopyrite': 299,
u'chromite': 320,
u'fluorite': 307,
u'galena': 278,
u'goethite': 292,
u'gold': 310,
u'gypsum': 311,
u'halite': 301,
u'kerogen': 284,
u'magnetite': 296,
u'methane': 285,
u'monazite': 319,
u'rutile': 258,
u'sulfur': 324,
u'trona': 293,
u'uraninite': 276,
u'zircon': 275},
u'size': u'8',
u'star_id': u'49329',
u'star_name': u'Iondeuzz',
u'type': u'asteroid',
u'x': u'426',
u'y': u'-265',
u'zone': u'1|-1'},
{u'id': u'355187',
u'image': u'p13-2',
u'name': u'Iondeuzz 2',
u'orbit': u'2',
u'ore': {u'anthracite': 1500,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1300,
u'chromite': 1400,
u'fluorite': 1,
u'galena': 2200,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1500,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 2100,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'66',
u'star_id': u'49329',
u'star_name': u'Iondeuzz',
u'type': u'habitable planet',
u'water': 8300,
u'x': u'427',
u'y': u'-266',
u'zone': u'1|-1'},
{u'id': u'355188',
u'image': u'p10-3',
u'name': u'Iondeuzz 3',
u'orbit': u'3',
u'ore': {u'anthracite': 500,
u'bauxite': 1,
u'beryl': 250,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 250,
u'galena': 1,
u'goethite': 1000,
u'gold': 1,
u'gypsum': 500,
u'halite': 1,
u'kerogen': 500,
u'magnetite': 5000,
u'methane': 500,
u'monazite': 250,
u'rutile': 1,
u'sulfur': 500,
u'trona': 500,
u'uraninite': 1,
u'zircon': 250},
u'size': u'45',
u'star_id': u'49329',
u'star_name': u'Iondeuzz',
u'type': u'habitable planet',
u'water': 6800,
u'x': u'427',
u'y': u'-268',
u'zone': u'1|-1'},
{u'id': u'355189',
u'image': u'p18-4',
u'name': u"Khim'bar",
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 4200,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 3200,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2600,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49329',
u'star_name': u'Iondeuzz',
u'type': u'habitable planet',
u'water': 7600,
u'x': u'426',
u'y': u'-269',
u'zone': u'1|-1'},
{u'id': u'355190',
u'image': u'p28-5',
u'name': u'Iondeuzz 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'58',
u'star_id': u'49329',
u'star_name': u'Iondeuzz',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'424',
u'y': u'-269',
u'zone': u'1|-1'},
{u'id': u'355191',
u'image': u'p38-6',
u'name': u'Iondeuzz 6',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'55',
u'star_id': u'49329',
u'star_name': u'Iondeuzz',
u'type': u'habitable planet',
u'water': 8000,
u'x': u'423',
u'y': u'-268',
u'zone': u'1|-1'},
{u'id': u'355192',
u'image': u'p5-8',
u'name': u'Iondeuzz 8',
u'orbit': u'8',
u'ore': {u'anthracite': 1,
u'bauxite': 2250,
u'beryl': 1,
u'chalcopyrite': 250,
u'chromite': 1,
u'fluorite': 1,
u'galena': 2250,
u'goethite': 1250,
u'gold': 1,
u'gypsum': 1250,
u'halite': 250,
u'kerogen': 1,
u'magnetite': 250,
u'methane': 250,
u'monazite': 1,
u'rutile': 1250,
u'sulfur': 250,
u'trona': 250,
u'uraninite': 250,
u'zircon': 1},
u'size': u'53',
u'star_id': u'49329',
u'star_name': u'Iondeuzz',
u'type': u'habitable planet',
u'water': 6200,
u'x': u'424',
u'y': u'-265',
u'zone': u'1|-1'}],
u'color': u'yellow',
u'id': u'49329',
u'influence': u'0',
u'name': u'Iondeuzz',
u'x': u'425',
u'y': u'-267',
u'zone': u'1|-1'},
{u'bodies': [{u'id': u'301055',
u'image': u'p36-4',
u'name': u'Aegh Oxyeufr 4',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 100,
u'beryl': 1,
u'chalcopyrite': 100,
u'chromite': 100,
u'fluorite': 1,
u'galena': 1,
u'goethite': 100,
u'gold': 1,
u'gypsum': 100,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 100,
u'rutile': 100,
u'sulfur': 100,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 30000,
u'x': u'431',
u'y': u'-263',
u'zone': u'1|-1'},
{u'empire': {u'alignment': u'hostile',
u'id': u'50180',
u'is_isolationist': u'0',
u'name': u'Cybertronian Defense League'},
u'id': u'332066',
u'image': u'p35-3',
u'name': u'in4',
u'orbit': u'3',
u'ore': {u'anthracite': 500,
u'bauxite': 500,
u'beryl': 500,
u'chalcopyrite': 500,
u'chromite': 500,
u'fluorite': 500,
u'galena': 500,
u'goethite': 500,
u'gold': 500,
u'gypsum': 500,
u'halite': 500,
u'kerogen': 500,
u'magnetite': 500,
u'methane': 500,
u'monazite': 500,
u'rutile': 500,
u'sulfur': 500,
u'trona': 500,
u'uraninite': 500,
u'zircon': 500},
u'size': u'70',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 9467,
u'x': u'432',
u'y': u'-262',
u'zone': u'1|-1'},
{u'id': u'356654',
u'image': u'p10-1',
u'name': u'Ovoahuij 1',
u'orbit': u'1',
u'ore': {u'anthracite': 500,
u'bauxite': 1,
u'beryl': 250,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 250,
u'galena': 1,
u'goethite': 1000,
u'gold': 1,
u'gypsum': 500,
u'halite': 1,
u'kerogen': 500,
u'magnetite': 5000,
u'methane': 500,
u'monazite': 250,
u'rutile': 1,
u'sulfur': 500,
u'trona': 500,
u'uraninite': 1,
u'zircon': 250},
u'size': u'55',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 6800,
u'x': u'431',
u'y': u'-259',
u'zone': u'1|-1'},
{u'id': u'356655',
u'image': u'p18-2',
u'name': u'Ovoahuij 2',
u'orbit': u'2',
u'ore': {u'anthracite': 1,
u'bauxite': 4200,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 3200,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2600,
u'zircon': 1},
u'size': u'52',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 7600,
u'x': u'432',
u'y': u'-260',
u'zone': u'1|-1'},
{u'id': u'356658',
u'image': u'p18-5',
u'name': u'Ovoahuij 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 4200,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 3200,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2600,
u'zircon': 1},
u'size': u'65',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 7600,
u'x': u'429',
u'y': u'-263',
u'zone': u'1|-1'},
{u'id': u'356659',
u'image': u'p28-6',
u'name': u'Alajuwon',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'428',
u'y': u'-262',
u'zone': u'1|-1'},
{u'id': u'356660',
u'image': u'p38-7',
u'name': u'Ovoahuij 7',
u'orbit': u'7',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'59',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 8000,
u'x': u'428',
u'y': u'-260',
u'zone': u'1|-1'},
{u'id': u'356661',
u'image': u'p5-8',
u'name': u'Ovoahuij 8',
u'orbit': u'8',
u'ore': {u'anthracite': 1,
u'bauxite': 2250,
u'beryl': 1,
u'chalcopyrite': 250,
u'chromite': 1,
u'fluorite': 1,
u'galena': 2250,
u'goethite': 1250,
u'gold': 1,
u'gypsum': 1250,
u'halite': 250,
u'kerogen': 1,
u'magnetite': 250,
u'methane': 250,
u'monazite': 1,
u'rutile': 1250,
u'sulfur': 250,
u'trona': 250,
u'uraninite': 250,
u'zircon': 1},
u'size': u'56',
u'star_id': u'49529',
u'star_name': u'Ovoahuij',
u'type': u'habitable planet',
u'water': 6200,
u'x': u'429',
u'y': u'-259',
u'zone': u'1|-1'}],
u'color': u'blue',
u'id': u'49529',
u'influence': u'0',
u'name': u'Ovoahuij',
u'x': u'430',
u'y': u'-261',
u'zone': u'1|-1'},
{u'bodies': [{u'id': u'353720',
u'image': u'a7-1',
u'name': u'Plia Osloy Sai 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3291,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1239,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2377,
u'zircon': 1},
u'size': u'4',
u'star_id': u'49129',
u'star_name': u'Plia Osloy Sai',
u'type': u'asteroid',
u'x': u'433',
u'y': u'-268',
u'zone': u'1|-1'},
{u'id': u'353721',
u'image': u'p28-2',
u'name': u'severus',
u'orbit': u'2',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49129',
u'star_name': u'Plia Osloy Sai',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'434',
u'y': u'-269',
u'zone': u'1|-1'},
{u'id': u'353722',
u'image': u'p38-4',
u'name': u'Plia Osloy Sai 4',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'51',
u'star_id': u'49129',
u'star_name': u'Plia Osloy Sai',
u'type': u'habitable planet',
u'water': 8000,
u'x': u'433',
u'y': u'-272',
u'zone': u'1|-1'},
{u'id': u'353723',
u'image': u'p5-5',
u'name': u'Plia Osloy Sai 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 2250,
u'beryl': 1,
u'chalcopyrite': 250,
u'chromite': 1,
u'fluorite': 1,
u'galena': 2250,
u'goethite': 1250,
u'gold': 1,
u'gypsum': 1250,
u'halite': 250,
u'kerogen': 1,
u'magnetite': 250,
u'methane': 250,
u'monazite': 1,
u'rutile': 1250,
u'sulfur': 250,
u'trona': 250,
u'uraninite': 250,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49129',
u'star_name': u'Plia Osloy Sai',
u'type': u'habitable planet',
u'water': 6200,
u'x': u'431',
u'y': u'-272',
u'zone': u'1|-1'},
{u'id': u'353724',
u'image': u'p37-6',
u'name': u'T8TE Alpha',
u'orbit': u'6',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49129',
u'star_name': u'Plia Osloy Sai',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'430',
u'y': u'-271',
u'zone': u'1|-1'},
{u'id': u'353725',
u'image': u'p37-7',
u'name': u'Plia Osloy Sai 7',
u'orbit': u'7',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'64',
u'star_id': u'49129',
u'star_name': u'Plia Osloy Sai',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'430',
u'y': u'-269',
u'zone': u'1|-1'},
{u'id': u'353726',
u'image': u'p5-8',
u'name': u'Plia Osloy Sai 8',
u'orbit': u'8',
u'ore': {u'anthracite': 1,
u'bauxite': 2250,
u'beryl': 1,
u'chalcopyrite': 250,
u'chromite': 1,
u'fluorite': 1,
u'galena': 2250,
u'goethite': 1250,
u'gold': 1,
u'gypsum': 1250,
u'halite': 250,
u'kerogen': 1,
u'magnetite': 250,
u'methane': 250,
u'monazite': 1,
u'rutile': 1250,
u'sulfur': 250,
u'trona': 250,
u'uraninite': 250,
u'zircon': 1},
u'size': u'61',
u'star_id': u'49129',
u'star_name': u'Plia Osloy Sai',
u'type': u'habitable planet',
u'water': 6200,
u'x': u'431',
u'y': u'-268',
u'zone': u'1|-1'}],
u'color': u'magenta',
u'id': u'49129',
u'influence': u'0',
u'name': u'Plia Osloy Sai',
u'x': u'432',
u'y': u'-270',
u'zone': u'1|-1'},
{u'bodies': [{u'id': u'359544',
u'image': u'p7-1',
u'name': u'Iostr Ufeass 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 1700,
u'beryl': 1000,
u'chalcopyrite': 2800,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2400,
u'gold': 1,
u'gypsum': 2100,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'habitable planet',
u'water': 5700,
u'x': u'433',
u'y': u'-250',
u'zone': u'1|-1'},
{u'id': u'359545',
u'image': u'p10-2',
u'name': u'Coraton',
u'orbit': u'2',
u'ore': {u'anthracite': 500,
u'bauxite': 1,
u'beryl': 250,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 250,
u'galena': 1,
u'goethite': 1000,
u'gold': 1,
u'gypsum': 500,
u'halite': 1,
u'kerogen': 500,
u'magnetite': 5000,
u'methane': 500,
u'monazite': 250,
u'rutile': 1,
u'sulfur': 500,
u'trona': 500,
u'uraninite': 1,
u'zircon': 250},
u'size': u'45',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'habitable planet',
u'water': 6800,
u'x': u'434',
u'y': u'-251',
u'zone': u'1|-1'},
{u'id': u'359546',
u'image': u'p37-3',
u'name': u'Iostr Ufeass 3',
u'orbit': u'3',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'434',
u'y': u'-253',
u'zone': u'1|-1'},
{u'id': u'359547',
u'image': u'a16-4',
u'name': u'Iostr Ufeass 4',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 1894,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1793,
u'galena': 1,
u'goethite': 1,
u'gold': 2132,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 2018,
u'uraninite': 1,
u'zircon': 1},
u'size': u'5',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'asteroid',
u'x': u'433',
u'y': u'-254',
u'zone': u'1|-1'},
{u'id': u'359548',
u'image': u'p10-5',
u'name': u'Iostr Ufeass 5',
u'orbit': u'5',
u'ore': {u'anthracite': 500,
u'bauxite': 1,
u'beryl': 250,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 250,
u'galena': 1,
u'goethite': 1000,
u'gold': 1,
u'gypsum': 500,
u'halite': 1,
u'kerogen': 500,
u'magnetite': 5000,
u'methane': 500,
u'monazite': 250,
u'rutile': 1,
u'sulfur': 500,
u'trona': 500,
u'uraninite': 1,
u'zircon': 250},
u'size': u'57',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'habitable planet',
u'water': 6800,
u'x': u'431',
u'y': u'-254',
u'zone': u'1|-1'},
{u'id': u'359549',
u'image': u'pg3-6',
u'name': u'Iostr Ufeass 6',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 4000,
u'halite': 14000,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 2000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'90',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'gas giant',
u'water': 0,
u'x': u'430',
u'y': u'-253',
u'zone': u'1|-1'},
{u'id': u'359550',
u'image': u'p28-7',
u'name': u'Iostr Ufeass 7',
u'orbit': u'7',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'51',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'430',
u'y': u'-251',
u'zone': u'1|-1'},
{u'id': u'359551',
u'image': u'p38-8',
u'name': u'Iostr Ufeass 8',
u'orbit': u'8',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'49',
u'star_id': u'49929',
u'star_name': u'Iostr Ufeass',
u'type': u'habitable planet',
u'water': 8000,
u'x': u'431',
u'y': u'-250',
u'zone': u'1|-1'}],
u'color': u'white',
u'id': u'49929',
u'influence': u'0',
u'name': u'Iostr Ufeass',
u'x': u'432',
u'y': u'-252',
u'zone': u'1|-1'},
{u'bodies': [{u'id': u'362436',
u'image': u'a1-1',
u'name': u'Vlea Isphern Oaly 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1000,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 9000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'7',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'433',
u'y': u'-241',
u'zone': u'1|0'},
{u'id': u'362437',
u'image': u'a20-2',
u'name': u'Vlea Isphern Oaly 2',
u'orbit': u'2',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 6342,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'1',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'434',
u'y': u'-242',
u'zone': u'1|0'},
{u'id': u'362438',
u'image': u'a1-3',
u'name': u'Vlea Isphern Oaly 3',
u'orbit': u'3',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1000,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 9000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'4',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'434',
u'y': u'-244',
u'zone': u'1|0'},
{u'id': u'362439',
u'image': u'a23-4',
u'name': u'Vlea Isphern Oaly 4',
u'orbit': u'4',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1000,
u'chalcopyrite': 1000,
u'chromite': 1000,
u'fluorite': 1000,
u'galena': 1000,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1000,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1000},
u'size': u'8',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'433',
u'y': u'-245',
u'zone': u'1|0'},
{u'id': u'362440',
u'image': u'a13-5',
u'name': u'Vlea Isphern Oaly 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 6574,
u'uraninite': 1,
u'zircon': 2590},
u'size': u'7',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'431',
u'y': u'-245',
u'zone': u'1|0'},
{u'id': u'362441',
u'image': u'a2-6',
u'name': u'Vlea Isphern Oaly 6',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 4000,
u'chalcopyrite': 5000,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1000},
u'size': u'3',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'430',
u'y': u'-244',
u'zone': u'1|0'},
{u'id': u'362442',
u'image': u'a9-7',
u'name': u'Vlea Isphern Oaly 7',
u'orbit': u'7',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 5500,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'6',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'430',
u'y': u'-242',
u'zone': u'1|0'},
{u'id': u'362443',
u'image': u'a10-8',
u'name': u'Vlea Isphern Oaly 8',
u'orbit': u'8',
u'ore': {u'anthracite': 6250,
u'bauxite': 108,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 55,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 300,
u'uraninite': 1,
u'zircon': 1},
u'size': u'9',
u'star_id': u'50329',
u'star_name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'type': u'asteroid',
u'x': u'431',
u'y': u'-241',
u'zone': u'1|0'}],
u'color': u'magenta',
u'id': u'50329',
u'influence': u'276',
u'name': u'Vlea Isphern Oaly',
u'station': {u'id': u'360983',
u'name': u'SASS 5',
u'x': u'424',
u'y': u'-213'},
u'x': u'432',
u'y': u'-243',
u'zone': u'1|0'},
{u'color': u'blue',
u'id': u'50130',
u'influence': u'192',
u'name': u'Aw Ohaeph Vli',
u'x': u'438',
u'y': u'-247',
u'zone': u'1|0'},
{u'bodies': [{u'id': u'358105',
u'image': u'p13-1',
u'name': u'Chou Idow 1',
u'orbit': u'1',
u'ore': {u'anthracite': 1500,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1300,
u'chromite': 1400,
u'fluorite': 1,
u'galena': 2200,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1500,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 2100,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'45',
u'star_id': u'49730',
u'star_name': u'Chou Idow',
u'type': u'habitable planet',
u'water': 8300,
u'x': u'440',
u'y': u'-254',
u'zone': u'1|-1'},
{u'id': u'358106',
u'image': u'p10-2',
u'name': u'Chou Idow 2',
u'orbit': u'2',
u'ore': {u'anthracite': 500,
u'bauxite': 1,
u'beryl': 250,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 250,
u'galena': 1,
u'goethite': 1000,
u'gold': 1,
u'gypsum': 500,
u'halite': 1,
u'kerogen': 500,
u'magnetite': 5000,
u'methane': 500,
u'monazite': 250,
u'rutile': 1,
u'sulfur': 500,
u'trona': 500,
u'uraninite': 1,
u'zircon': 250},
u'size': u'63',
u'star_id': u'49730',
u'star_name': u'Chou Idow',
u'type': u'habitable planet',
u'water': 6800,
u'x': u'441',
u'y': u'-255',
u'zone': u'1|-1'},
{u'empire': {u'alignment': u'hostile',
u'id': u'46258',
u'is_isolationist': u'0',
u'name': u'Last Legion'},
u'id': u'358107',
u'image': u'p18-3',
u'name': u'in1',
u'orbit': u'3',
u'ore': {u'anthracite': 1,
u'bauxite': 4200,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 3200,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2600,
u'zircon': 1},
u'size': u'70',
u'star_id': u'49730',
u'star_name': u'Chou Idow',
u'type': u'habitable planet',
u'water': 7600,
u'x': u'441',
u'y': u'-257',
u'zone': u'1|-1'},
{u'id': u'358108',
u'image': u'p28-5',
u'name': u'Chou Idow 5',
u'orbit': u'5',
u'ore': {u'anthracite': 1,
u'bauxite': 1500,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 2500,
u'gold': 1,
u'gypsum': 2000,
u'halite': 3500,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 1500,
u'zircon': 1},
u'size': u'58',
u'star_id': u'49730',
u'star_name': u'Chou Idow',
u'type': u'habitable planet',
u'water': 9230,
u'x': u'438',
u'y': u'-258',
u'zone': u'1|-1'},
{u'id': u'358109',
u'image': u'p38-6',
u'name': u'Chou Idow 6',
u'orbit': u'6',
u'ore': {u'anthracite': 1,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 3000,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 1,
u'magnetite': 1,
u'methane': 1,
u'monazite': 1,
u'rutile': 1,
u'sulfur': 7000,
u'trona': 1,
u'uraninite': 1,
u'zircon': 1},
u'size': u'55',
u'star_id': u'49730',
u'star_name': u'Chou Idow',
u'type': u'habitable planet',
u'water': 8000,
u'x': u'437',
u'y': u'-257',
u'zone': u'1|-1'},
{u'id': u'358110',
u'image': u'p5-7',
u'name': u'Chou Idow 7',
u'orbit': u'7',
u'ore': {u'anthracite': 1,
u'bauxite': 2250,
u'beryl': 1,
u'chalcopyrite': 250,
u'chromite': 1,
u'fluorite': 1,
u'galena': 2250,
u'goethite': 1250,
u'gold': 1,
u'gypsum': 1250,
u'halite': 250,
u'kerogen': 1,
u'magnetite': 250,
u'methane': 250,
u'monazite': 1,
u'rutile': 1250,
u'sulfur': 250,
u'trona': 250,
u'uraninite': 250,
u'zircon': 1},
u'size': u'52',
u'star_id': u'49730',
u'star_name': u'Chou Idow',
u'type': u'habitable planet',
u'water': 6200,
u'x': u'437',
u'y': u'-255',
u'zone': u'1|-1'},
{u'id': u'358111',
u'image': u'p37-8',
u'name': u'Chou Idow 8',
u'orbit': u'8',
u'ore': {u'anthracite': 2000,
u'bauxite': 1,
u'beryl': 1,
u'chalcopyrite': 1,
u'chromite': 1,
u'fluorite': 1,
u'galena': 1,
u'goethite': 1,
u'gold': 1,
u'gypsum': 1,
u'halite': 1,
u'kerogen': 2000,
u'magnetite': 2000,
u'methane': 1,
u'monazite': 2000,
u'rutile': 1,
u'sulfur': 1,
u'trona': 1,
u'uraninite': 2000,
u'zircon': 1},
u'size': u'50',
u'star_id': u'49730',
u'star_name': u'Chou Idow',
u'type': u'habitable planet',
u'water': 6225,
u'x': u'438',
u'y': u'-254',
u'zone': u'1|-1'}],
u'color': u'green',
u'id': u'49730',
u'influence': u'0',
u'name': u'Chou Idow',
u'x': u'439',
u'y': u'-256',
u'zone': u'1|-1'},
{u'color': u'magenta',
u'id': u'49330',
u'influence': u'0',
u'name': u'Eckladdee',
u'x': u'440',
u'y': u'-267',
u'zone': u'1|-1'}],
u'status': {u'empire': {u'alliance_id': u'1785',
u'colonies': {u'358099': u'Cloraphorm III'},
u'essentia': 0,
u'has_new_messages': u'0',
u'home_planet_id': u'358099',
u'id': u'51819',
u'insurrect_value': u'100000',
u'is_isolationist': u'1',
u'latest_message_id': u'0',
u'name': u'MikeTwo',
u'next_colony_cost': u'100000',
u'next_colony_srcs': u'100000',
u'next_station_cost': u'108696',
u'planets': {u'358099': u'Cloraphorm III'},
u'primary_embassy_id': u'5048765',
u'rpc_count': 276,
u'self_destruct_active': u'0',
u'self_destruct_date': u'08 06 2015 05:49:38 +0000',
u'stations': {},
u'status_message': u'Just getting started',
u'tech_level': u'9'},
u'server': {u'rpc_limit': 10000,
u'star_map_size': {u'x': [-1500, 1500], u'y': [-1500, 1500]},
u'time': u'10 07 2015 17:41:04 +0000',
u'version': 3.0911}}}}
''')
if __name__ == '__main__':
unittest.main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
11748,
25064,
198,
11748,
28686,
198,
11748,
555,
715,
395,
198,
6738,
15290,
1330,
8529,
11,
6139,
44,
735,
11,
15529,
11,
869,
198,
198,
11748,
279,
2645,
330,
9613,
13,
7295,
13,
8899,
198,
198,
11748,
6468,
198,
198,
6738,
25064,
1330,
2196,
62,
10951,
198,
361,
2196,
62,
10951,
13,
22478,
6624,
362,
25,
198,
220,
220,
220,
1330,
11593,
18780,
259,
834,
355,
3170,
1040,
220,
1303,
279,
2645,
600,
25,
40223,
28,
11748,
12,
18224,
198,
17772,
25,
198,
220,
220,
220,
1330,
3170,
1040,
220,
1303,
279,
2645,
600,
25,
40223,
28,
11748,
12,
18224,
198,
198,
18851,
62,
46678,
62,
33767,
62,
19535,
47,
1340,
5188,
796,
6468,
13,
17201,
1000,
2100,
7,
7061,
6,
198,
90,
84,
6,
312,
10354,
767,
11,
198,
334,
6,
17752,
81,
14751,
10354,
334,
6,
17,
13,
15,
3256,
198,
334,
821,
82,
586,
10354,
1391,
84,
338,
83,
945,
10354,
685,
90,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
32066,
34287,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1507,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
42,
293,
993,
2013,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
604,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
513,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
47197,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
1120,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
42,
293,
993,
2013,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
767,
8054,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35218,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
30057,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
32066,
33300,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
42,
293,
993,
2013,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3104,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
42,
293,
993,
2013,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
38547,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29119,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
368,
5111,
10354,
1391,
84,
6,
282,
16747,
10354,
334,
6,
4774,
576,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
2548,
33438,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
271,
62,
271,
21417,
396,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
1549,
1990,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
2327,
2791,
1120,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
34220,
704,
430,
513,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
42,
293,
993,
2013,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
38547,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
18897,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
4349,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1828,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
42,
293,
993,
2013,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
15897,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
13037,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
15897,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
10460,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
7337,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
5867,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
10460,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
7337,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
939,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
42,
293,
993,
2013,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
37309,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22980,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
4309,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
42,
293,
993,
2013,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
1899,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
42,
293,
993,
2013,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
44103,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
18897,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
4310,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
22,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
42,
293,
993,
2013,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
35665,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
2579,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
48548,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
38123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3553,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
42,
293,
993,
2013,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
7632,
405,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
37309,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
30057,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
1101,
25781,
64,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
33781,
2078,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
42,
293,
993,
2013,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35038,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29558,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2623,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
6024,
19,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
1478,
830,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
13348,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
22649,
6175,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
39667,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28072,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
22,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
35665,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
2579,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
48548,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
38123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2791,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
7632,
405,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45068,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22800,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2548,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
940,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
559,
442,
88,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8646,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
7410,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45068,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2670,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1507,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
2514,
381,
494,
24118,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
604,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
513,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
47197,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
767,
8054,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
39667,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
13381,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
1821,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
6024,
19,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
1478,
830,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3865,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
22649,
6175,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35218,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
13381,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
3901,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2816,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35038,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
3682,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
20,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4309,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
2167,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35038,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22800,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
3559,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2920,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35218,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28072,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
17585,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
28324,
2078,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
7376,
64,
440,
672,
844,
88,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
38547,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28592,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1485,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
718,
46900,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
1679,
3829,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
940,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
39667,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28872,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1065,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
38902,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
38249,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
35897,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
31011,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
20959,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
38369,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
39174,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
41569,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
28947,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
35592,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
25643,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
40654,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
41922,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
33015,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
40385,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
37528,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
38595,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
37224,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
38147,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
25829,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45068,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
27877,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
18,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
513,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
38055,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
24,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45068,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25707,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
3132,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1238,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
604,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
718,
31575,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
39667,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22995,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2624,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1238,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
718,
31575,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35218,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22995,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2091,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1415,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
1542,
2548,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
2579,
3865,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
2579,
5607,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
24,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35038,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25707,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2682,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1065,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
38902,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
38249,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
35897,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
31011,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
20959,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
38369,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
39174,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
41569,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
28947,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
35592,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
25643,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
40654,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
41922,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
33015,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
40385,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
37528,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
38595,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
37224,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
38147,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
25829,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35038,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
27877,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2327,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
17,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8576,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
35218,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28872,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
11186,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
31938,
2078,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
24403,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
354,
544,
536,
322,
4598,
35471,
3256,
198,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
38547,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26660,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
15277,
33438,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1238,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
718,
31575,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26660,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
15277,
38565,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1415,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
1542,
2548,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
2579,
3865,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
2579,
5607,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
32114,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25707,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
15277,
39647,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
18,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
513,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
38055,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
32114,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26912,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
15277,
34808,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
6024,
18,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
604,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
1478,
830,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3459,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
22649,
6175,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
23753,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
15277,
17032,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
6024,
19,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
1478,
830,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
15982,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
22649,
6175,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
44361,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
23753,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
12825,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1507,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
604,
10232,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
4747,
2075,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
46636,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26912,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
47705,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1485,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
718,
46900,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
1679,
3829,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
46636,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25707,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
3064,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
19,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
50138,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
44361,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26660,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
11186,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
33548,
1959,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
24970,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
388,
9734,
562,
2238,
44919,
3256,
198,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43356,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22995,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
2327,
1795,
5607,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
6024,
18,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
1478,
830,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
13464,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
22649,
6175,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
32114,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28592,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
1795,
4089,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2414,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42780,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
11249,
62,
36560,
62,
11925,
10354,
767,
11,
198,
220,
220,
220,
220,
220,
334,
6,
11249,
62,
36560,
62,
7857,
10354,
860,
11,
198,
220,
220,
220,
220,
220,
334,
6,
16894,
62,
9127,
10354,
5946,
11,
198,
220,
220,
220,
220,
220,
334,
6,
368,
5111,
10354,
1391,
84,
6,
282,
16747,
10354,
334,
338,
7046,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
44085,
1129,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
271,
62,
271,
21417,
396,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
16073,
7571,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
6,
22554,
62,
42404,
10354,
334,
6,
2078,
405,
5824,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
22554,
62,
9769,
10354,
334,
6,
2327,
2718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
22554,
62,
301,
1850,
10354,
334,
6,
940,
2857,
2718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
19425,
62,
42404,
10354,
334,
6,
2078,
2598,
4761,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
19425,
62,
9769,
10354,
642,
27192,
11,
198,
220,
220,
220,
220,
220,
334,
6,
19425,
62,
301,
1850,
10354,
2579,
2598,
4761,
11,
198,
220,
220,
220,
220,
220,
334,
6,
71,
42661,
10354,
334,
6,
2327,
1731,
3270,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
71,
42661,
62,
9769,
10354,
334,
6,
37397,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
2327,
1795,
2079,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
259,
4976,
62,
46970,
62,
26313,
10354,
685,
90,
84,
1549,
378,
62,
283,
380,
1158,
10354,
334,
6,
3312,
7769,
1853,
1248,
25,
2091,
25,
405,
1343,
2388,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
45969,
2920,
23721,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
334,
6,
271,
62,
453,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
334,
6,
271,
62,
593,
10354,
657,
92,
4357,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
2601,
273,
6570,
579,
6711,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
50032,
62,
42029,
62,
5420,
3447,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
29797,
62,
13000,
10354,
334,
6,
940,
8753,
1853,
8753,
25,
2075,
25,
2598,
1343,
2388,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
22510,
62,
259,
4976,
62,
453,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
22510,
62,
259,
4976,
62,
46970,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
22510,
62,
259,
4976,
62,
593,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
6,
382,
62,
42404,
10354,
334,
6,
1959,
3365,
2791,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
62,
9769,
10354,
767,
50242,
11,
198,
220,
220,
220,
220,
220,
334,
6,
382,
62,
301,
1850,
10354,
1160,
2075,
2414,
11,
198,
220,
220,
220,
220,
220,
334,
6,
489,
1747,
62,
15182,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
39748,
10354,
35419,
2388,
11,
198,
220,
220,
220,
220,
220,
334,
6,
22930,
43589,
62,
39521,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
333,
2550,
62,
9641,
10354,
334,
6,
31128,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
86,
4594,
62,
42404,
10354,
334,
6,
27693,
16945,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
86,
4594,
62,
9769,
10354,
334,
6,
23516,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
86,
4594,
62,
301,
1850,
10354,
334,
6,
2078,
5999,
2078,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
62,
42404,
10354,
334,
6,
2078,
405,
5824,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
62,
9769,
10354,
334,
6,
20,
35435,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
62,
301,
1850,
10354,
334,
6,
2078,
405,
5824,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42780,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
11645,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
3064,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
22,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
604,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
513,
33551,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
1105,
2670,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
2242,
3324,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
32114,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28676,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
6659,
486,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3980,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43356,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28676,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
15377,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4310,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
44361,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
11645,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
15197,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
6024,
18,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
1478,
830,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4521,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
22649,
6175,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
44361,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
13464,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3388,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43356,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28592,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
17585,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
38073,
1959,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
1046,
48931,
74,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
13381,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
28567,
25096,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1065,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
14378,
4715,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
38902,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
38249,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
35897,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
31011,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
20959,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
38369,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
39174,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
41569,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
28947,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
35592,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
25643,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
40654,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
41922,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
33015,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
40385,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
37528,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
38595,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
37224,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
38147,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
25829,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42780,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22980,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
28567,
23451,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1485,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
14378,
4715,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
36058,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
36641,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
362,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
38123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2791,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
807,
6200,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42363,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25540,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
28567,
20356,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
940,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
14378,
4715,
513,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8646,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
7410,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42363,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25022,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
28567,
23362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1507,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
1,
33155,
320,
6,
5657,
1600,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
604,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
513,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
47197,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
767,
8054,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42780,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26276,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
28567,
19782,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
14378,
4715,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3365,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26276,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
28567,
26492,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
14378,
4715,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2816,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43356,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25022,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
28567,
17477,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
20,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
14378,
4715,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4310,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
2167,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22980,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
36022,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
2920,
37967,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
14378,
4715,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
32114,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25674,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
18938,
47838,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2623,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
32,
68,
456,
35471,
68,
3046,
81,
604,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
1802,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
513,
2388,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29558,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
368,
5111,
10354,
1391,
84,
6,
282,
16747,
10354,
334,
6,
4774,
576,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
33548,
1795,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
271,
62,
271,
21417,
396,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
20418,
4835,
1313,
666,
5947,
4041,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
2091,
1238,
2791,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2327,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
259,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
5323,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2154,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10048,
3134,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45331,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29119,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
4051,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
940,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8646,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2816,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
7410,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25191,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
2816,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1507,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
604,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
513,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
47197,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4309,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
767,
8054,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45331,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
21719,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
3365,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1507,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
604,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
513,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
47197,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2996,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
767,
8054,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
11785,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29558,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
3270,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
2348,
1228,
84,
26502,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40173,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29119,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
1899,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40173,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
21719,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2791,
5333,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
20,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3980,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
2167,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
11785,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25191,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
17585,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
33781,
1959,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
46,
13038,
12196,
2926,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
31794,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
30057,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
2327,
2718,
1238,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
22,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
513,
33551,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
1105,
2670,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
2242,
3324,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42117,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25022,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2718,
2481,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
338,
964,
385,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
47101,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26276,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2718,
1828,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
604,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4349,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42117,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2718,
1954,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
20,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
2167,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
29807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2718,
1731,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
51,
23,
9328,
12995,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
31794,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28977,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2718,
1495,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2414,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
31794,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26276,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
2718,
2075,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
20,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
5333,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
2167,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25022,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
1101,
25781,
64,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
2920,
18741,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
3646,
544,
440,
6649,
726,
25251,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45331,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
20233,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2598,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
22,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
35665,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
2579,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
48548,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
38123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
7632,
405,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42117,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
9031,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
940,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
10606,
13951,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8646,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
7410,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
47101,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28072,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
3510,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
513,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
47101,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28592,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2857,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1433,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
604,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
1248,
5824,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
1596,
6052,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
362,
19924,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
2864,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42117,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2780,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
940,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8646,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3553,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
7410,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
2920,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
6024,
18,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
1478,
830,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3829,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
22649,
6175,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
657,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
31794,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28592,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
3865,
1120,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4349,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
31794,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28072,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
30743,
43697,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2920,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
9031,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
11186,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
28324,
1959,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
40,
455,
81,
471,
5036,
562,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45331,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22800,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2623,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
16,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
50138,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42117,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28872,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1238,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
718,
31575,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
47101,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
27877,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2548,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
16,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
513,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
50138,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
47101,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25707,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
2670,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1954,
12,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
604,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
19,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8576,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
42117,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22995,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
1821,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
1485,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
718,
46900,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
1679,
3829,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
22995,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
3901,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
17,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
30123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8576,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
31794,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25707,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
3682,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
24,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
642,
4059,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
31794,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
27877,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2623,
1731,
3559,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
64,
940,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
8190,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
15495,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
5996,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5867,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
24,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
1603,
1868,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
50080,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28872,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
1101,
25781,
64,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
31938,
1959,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
27988,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
53,
293,
64,
1148,
79,
2881,
440,
3400,
3256,
198,
220,
220,
220,
334,
338,
83,
341,
10354,
1391,
84,
6,
312,
10354,
334,
6,
15277,
4089,
18,
3256,
198,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
50,
10705,
642,
3256,
198,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
40090,
3256,
198,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26427,
6,
5512,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
45331,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
26660,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
1391,
84,
6,
8043,
10354,
334,
6,
17585,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
33548,
1270,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
17477,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
23155,
440,
3099,
27446,
569,
4528,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43704,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
23753,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
15,
6,
5512,
198,
220,
220,
1391,
84,
6,
65,
5042,
10354,
685,
90,
84,
6,
312,
10354,
334,
6,
31128,
13348,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1485,
12,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
352,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
36058,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
36641,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
362,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
38123,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2231,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
807,
6200,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
25644,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
15801,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
940,
12,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
362,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
17,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
23336,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
5323,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
8646,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
5066,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
7410,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
39710,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
13381,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
368,
5111,
10354,
1391,
84,
6,
282,
16747,
10354,
334,
6,
4774,
576,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
3510,
25600,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
271,
62,
271,
21417,
396,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
5956,
15778,
6,
5512,
198,
220,
220,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
31128,
15982,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
1507,
12,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
259,
16,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
18,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
604,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
513,
2167,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
47197,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2154,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
767,
8054,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
39710,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28676,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
15711,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2078,
12,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
642,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
20,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
33507,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
3439,
405,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
20007,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
3365,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
10190,
1270,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43704,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25600,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
14454,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2548,
12,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
718,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
21,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
20343,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
50205,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
2816,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
38055,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43284,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
28676,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
2327,
6659,
940,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
20,
12,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
767,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
22,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
2534,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
1105,
1120,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
8646,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
4309,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
718,
2167,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43284,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
13381,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
220,
220,
1391,
84,
6,
312,
10354,
334,
6,
31128,
16243,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
9060,
10354,
334,
6,
79,
2718,
12,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
807,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
42594,
10354,
334,
6,
23,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
382,
10354,
1391,
84,
6,
29313,
11510,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
65,
14644,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
527,
2645,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
38009,
22163,
2417,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
28663,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
35522,
273,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
13528,
8107,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
2188,
2788,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
24267,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
1360,
862,
388,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
14201,
578,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
6122,
6644,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
363,
3262,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
2788,
1531,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
1101,
261,
1031,
578,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
81,
315,
576,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
338,
4754,
333,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
470,
1313,
64,
10354,
352,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
42211,
9504,
10354,
4751,
11,
198,
220,
220,
220,
220,
220,
220,
334,
6,
89,
343,
1102,
10354,
352,
5512,
198,
220,
220,
220,
220,
220,
334,
338,
1096,
10354,
334,
6,
1120,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
220,
220,
334,
338,
18870,
62,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
220,
220,
334,
470,
2981,
10354,
334,
6,
5976,
4674,
5440,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
7050,
10354,
8190,
1495,
11,
198,
220,
220,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
43704,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
24970,
3256,
198,
220,
220,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
220,
220,
334,
6,
8043,
10354,
334,
6,
14809,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
38073,
1270,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
1925,
280,
5121,
322,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
47106,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
11645,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
5512,
198,
220,
220,
1391,
84,
6,
8043,
10354,
334,
1101,
25781,
64,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
2920,
26073,
3256,
198,
220,
220,
220,
334,
6,
10745,
23079,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
36,
694,
75,
2860,
1453,
3256,
198,
220,
220,
220,
334,
6,
87,
10354,
334,
6,
25644,
3256,
198,
220,
220,
220,
334,
6,
88,
10354,
334,
29001,
25674,
3256,
198,
220,
220,
220,
334,
6,
11340,
10354,
334,
6,
16,
91,
12,
16,
6,
92,
4357,
198,
220,
334,
338,
83,
7240,
10354,
1391,
84,
6,
368,
5111,
10354,
1391,
84,
6,
439,
3610,
62,
312,
10354,
334,
6,
1558,
5332,
3256,
198,
220,
220,
220,
334,
6,
4033,
17300,
10354,
1391,
84,
6,
2327,
1795,
2079,
10354,
334,
6,
2601,
273,
6570,
579,
6711,
6,
5512,
198,
220,
220,
220,
334,
6,
408,
298,
544,
10354,
657,
11,
198,
220,
220,
220,
334,
6,
10134,
62,
3605,
62,
37348,
1095,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
11195,
62,
47427,
62,
312,
10354,
334,
6,
2327,
1795,
2079,
3256,
198,
220,
220,
220,
334,
6,
312,
10354,
334,
6,
44085,
1129,
3256,
198,
220,
220,
220,
334,
6,
1040,
333,
2554,
62,
8367,
10354,
334,
6,
3064,
830,
3256,
198,
220,
220,
220,
334,
6,
271,
62,
271,
21417,
396,
10354,
334,
6,
16,
3256,
198,
220,
220,
220,
334,
6,
42861,
62,
20500,
62,
312,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
6,
3672,
10354,
334,
6,
16073,
7571,
3256,
198,
220,
220,
220,
334,
6,
19545,
62,
4033,
1647,
62,
15805,
10354,
334,
6,
3064,
830,
3256,
198,
220,
220,
220,
334,
6,
19545,
62,
4033,
1647,
62,
10677,
82,
10354,
334,
6,
3064,
830,
3256,
198,
220,
220,
220,
334,
6,
19545,
62,
17529,
62,
15805,
10354,
334,
6,
15711,
38205,
3256,
198,
220,
220,
220,
334,
6,
11578,
1039,
10354,
1391,
84,
6,
2327,
1795,
2079,
10354,
334,
6,
2601,
273,
6570,
579,
6711,
6,
5512,
198,
220,
220,
220,
334,
6,
39754,
62,
24419,
11720,
62,
312,
10354,
334,
6,
1120,
2780,
29143,
3256,
198,
220,
220,
220,
334,
6,
81,
14751,
62,
9127,
10354,
38147,
11,
198,
220,
220,
220,
334,
338,
7046,
62,
35678,
62,
5275,
10354,
334,
6,
15,
3256,
198,
220,
220,
220,
334,
338,
7046,
62,
35678,
62,
4475,
10354,
334,
6,
2919,
9130,
1853,
8870,
25,
2920,
25,
2548,
1343,
2388,
3256,
198,
220,
220,
220,
334,
338,
83,
602,
10354,
1391,
5512,
198,
220,
220,
220,
334,
338,
83,
7240,
62,
20500,
10354,
334,
6,
5703,
1972,
2067,
3256,
198,
220,
220,
220,
334,
470,
3055,
62,
5715,
10354,
334,
6,
24,
6,
5512,
198,
220,
220,
334,
338,
18497,
10354,
1391,
84,
6,
81,
14751,
62,
32374,
10354,
33028,
11,
198,
220,
220,
220,
334,
338,
18870,
62,
8899,
62,
7857,
10354,
1391,
84,
6,
87,
10354,
25915,
33698,
11,
20007,
4357,
334,
6,
88,
10354,
25915,
33698,
11,
20007,
60,
5512,
198,
220,
220,
220,
334,
470,
524,
10354,
334,
6,
940,
8753,
1853,
1596,
25,
3901,
25,
3023,
1343,
2388,
3256,
198,
220,
220,
220,
334,
1053,
3808,
295,
10354,
513,
13,
2931,
1157,
11709,
11709,
198,
7061,
11537,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 1.613346 | 44,704 |
#Write a guessing game where the user has to guess a secret number.
# After every guess the program tells the user whether their number was too large or too small.
# At the end the number of tries needed should be printed.
# It counts only as one try if they input the same number multiple times consecutively.
import random
lov=[]
secretnum=random.randrange(1,100)
print(secretnum)
guess=()
print("Please input your guess")
while guess!=secretnum:
guess = input()
while guess.isdigit() == False:
print("Your input is not a valid number, please try again")
guess = input()
if int(guess)<secretnum:
print("Your input number is lower than the secret number, try higher")
print("Please input your guess again")
lov.append(guess)
if int(guess)>secretnum:
print("Your input number is higher than the secret number, try lower")
print("Please input your guess again")
lov.append(guess)
if int(guess)==secretnum:
#count times user have tried to input
lov=list(set(lov))
count=len(lov)+1
print("Bingo, You've guessed it correcly in {} times".format(count))
| [
2,
16594,
257,
25260,
983,
810,
262,
2836,
468,
284,
4724,
257,
3200,
1271,
13,
198,
2,
2293,
790,
4724,
262,
1430,
4952,
262,
2836,
1771,
511,
1271,
373,
1165,
1588,
393,
1165,
1402,
13,
198,
2,
1629,
262,
886,
262,
1271,
286,
8404,
2622,
815,
307,
10398,
13,
198,
2,
632,
9853,
691,
355,
530,
1949,
611,
484,
5128,
262,
976,
1271,
3294,
1661,
12358,
2280,
13,
198,
11748,
4738,
198,
27086,
28,
21737,
198,
21078,
22510,
28,
25120,
13,
25192,
9521,
7,
16,
11,
3064,
8,
198,
4798,
7,
21078,
22510,
8,
198,
5162,
408,
28,
3419,
198,
4798,
7203,
5492,
5128,
534,
4724,
4943,
198,
4514,
4724,
0,
28,
21078,
22510,
25,
198,
220,
220,
220,
4724,
796,
5128,
3419,
198,
220,
220,
220,
981,
4724,
13,
9409,
328,
270,
3419,
6624,
10352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
7120,
5128,
318,
407,
257,
4938,
1271,
11,
3387,
1949,
757,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
4724,
796,
5128,
3419,
198,
220,
220,
220,
611,
493,
7,
5162,
408,
8,
27,
21078,
22510,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
7120,
5128,
1271,
318,
2793,
621,
262,
3200,
1271,
11,
1949,
2440,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5492,
5128,
534,
4724,
757,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
42900,
13,
33295,
7,
5162,
408,
8,
198,
220,
220,
220,
611,
493,
7,
5162,
408,
8,
29,
21078,
22510,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
7120,
5128,
1271,
318,
2440,
621,
262,
3200,
1271,
11,
1949,
2793,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5492,
5128,
534,
4724,
757,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
42900,
13,
33295,
7,
5162,
408,
8,
198,
220,
220,
220,
611,
493,
7,
5162,
408,
8,
855,
21078,
22510,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9127,
1661,
2836,
423,
3088,
284,
5128,
198,
220,
220,
220,
220,
220,
220,
220,
42900,
28,
4868,
7,
2617,
7,
27086,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
954,
28,
11925,
7,
27086,
47762,
16,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
33,
32735,
11,
921,
1053,
25183,
340,
1162,
8344,
306,
287,
23884,
1661,
1911,
18982,
7,
9127,
4008,
628
] | 2.934509 | 397 |
import os
from tkinter import filedialog, messagebox
from dialogs.password_prompt import askpassword
DOCUMENT_PATH = os.path.expanduser("~")
FILETYPE_ALL = ("All types", "*.*")
FILETYPE_PDF = ("PDF File", "*.pdf")
FILETYPE_CSV = ("CSV File", "*.csv")
DIALOG_TITLE = "Select {} file"
SAVE_DIALOG_TITLE = "Save as {} file"
| [
11748,
28686,
198,
6738,
256,
74,
3849,
1330,
5717,
498,
519,
11,
3275,
3524,
198,
198,
6738,
17310,
82,
13,
28712,
62,
16963,
457,
1330,
1265,
28712,
198,
198,
38715,
5883,
3525,
62,
34219,
796,
28686,
13,
6978,
13,
11201,
392,
7220,
7203,
93,
4943,
198,
25664,
25216,
62,
7036,
796,
5855,
3237,
3858,
1600,
366,
9,
15885,
4943,
198,
25664,
25216,
62,
20456,
796,
5855,
20456,
9220,
1600,
366,
24620,
12315,
4943,
198,
25664,
25216,
62,
7902,
53,
796,
5855,
7902,
53,
9220,
1600,
366,
24620,
40664,
4943,
198,
35,
12576,
7730,
62,
49560,
2538,
796,
366,
17563,
23884,
2393,
1,
198,
4090,
6089,
62,
35,
12576,
7730,
62,
49560,
2538,
796,
366,
16928,
355,
23884,
2393,
1,
628,
628,
628
] | 2.688525 | 122 |
from django.apps import AppConfig
| [
6738,
42625,
14208,
13,
18211,
1330,
2034,
16934,
628
] | 3.888889 | 9 |
import torch
import torch.nn.functional as F
from typing import Optional
from torch import Tensor
# flags required to enable jit fusion kernels
torch._C._jit_set_profiling_mode(False)
torch._C._jit_set_profiling_executor(False)
torch._C._jit_override_can_fuse_on_cpu(True)
torch._C._jit_override_can_fuse_on_gpu(True)
@torch.jit.script
@torch.jit.script
| [
11748,
28034,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
6738,
19720,
1330,
32233,
198,
6738,
28034,
1330,
309,
22854,
198,
198,
2,
9701,
2672,
284,
7139,
474,
270,
21748,
50207,
198,
13165,
354,
13557,
34,
13557,
45051,
62,
2617,
62,
5577,
4386,
62,
14171,
7,
25101,
8,
198,
13165,
354,
13557,
34,
13557,
45051,
62,
2617,
62,
5577,
4386,
62,
18558,
38409,
7,
25101,
8,
198,
13165,
354,
13557,
34,
13557,
45051,
62,
2502,
13154,
62,
5171,
62,
69,
1904,
62,
261,
62,
36166,
7,
17821,
8,
198,
13165,
354,
13557,
34,
13557,
45051,
62,
2502,
13154,
62,
5171,
62,
69,
1904,
62,
261,
62,
46999,
7,
17821,
8,
628,
628,
198,
31,
13165,
354,
13,
45051,
13,
12048,
628,
198,
31,
13165,
354,
13,
45051,
13,
12048,
198
] | 2.734848 | 132 |
# Copyright (c) ZenML GmbH 2021. 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:
#
# 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.
from typing import Optional
import click
from zenml.cli import utils as cli_utils
from zenml.cli.cli import cli
from zenml.core.repo import Repository
@cli.group("container-registry")
def container_registry() -> None:
"""Utilities for container registries."""
@container_registry.command("get")
def get_active_container_registry() -> None:
"""Gets the container registry of the active stack."""
name = Repository().get_active_stack().container_registry_name
if name:
cli_utils.declare(f"Active container registry: {name}")
else:
cli_utils.declare(
f"No container registry set for current active stack: {Repository().get_active_stack_key()}"
)
@container_registry.command(
"register", context_settings=dict(ignore_unknown_options=True)
)
@click.argument(
"name",
required=True,
type=click.STRING,
)
@click.option(
"--uri",
"-u",
help="The URI for the container registry to register.",
required=True,
type=click.STRING,
)
def register_container_registry(name: str, uri: str) -> None:
"""Register a container registry."""
from zenml.container_registries import BaseContainerRegistry
repo = Repository()
registry = BaseContainerRegistry(uri=uri, repo_path=repo.path)
repo.get_service().register_container_registry(name, registry)
cli_utils.declare(f"Container registry `{name}` successfully registered!")
@container_registry.command("list")
def list_container_registries() -> None:
"""List all available container registries from service."""
repo = Repository()
service = repo.get_service()
if len(service.container_registries) == 0:
cli_utils.warning("No container registries registered!")
return
active_container_registry = str(
repo.get_active_stack().container_registry_name
)
service = repo.get_service()
cli_utils.title("Container registries:")
cli_utils.print_table(
cli_utils.format_component_list(
service.container_registries, active_container_registry
)
)
@container_registry.command(
"describe",
help="Show details about the current active container registry.",
)
@click.argument(
"container_registry_name",
type=click.STRING,
required=False,
)
def describe_container_registry(
container_registry_name: Optional[str],
) -> None:
"""Show details about the current active container registry."""
repo = Repository()
container_registry_name = container_registry_name or str(
repo.get_active_stack().container_registry_name
)
container_registries = repo.get_service().container_registries
if len(container_registries) == 0:
cli_utils.warning("No container registries registered!")
return
try:
container_registry_details = container_registries[
container_registry_name
]
except KeyError:
cli_utils.error(
f"Container registry `{container_registry_name}` does not exist."
)
return
cli_utils.title("Container Registry:")
if (
repo.get_active_stack().container_registry_name
== container_registry_name
):
cli_utils.declare("**ACTIVE**\n")
else:
cli_utils.declare("")
cli_utils.declare(f"NAME: {container_registry_name}")
cli_utils.print_component_properties(container_registry_details.dict())
@container_registry.command("delete")
@click.argument("container_registry_name", type=str)
def delete_container_registry(container_registry_name: str) -> None:
"""Delete a container registry."""
service = Repository().get_service()
service.delete_container_registry(container_registry_name)
cli_utils.declare(f"Deleted container registry: {container_registry_name}")
| [
2,
220,
15069,
357,
66,
8,
14760,
5805,
402,
2022,
39,
33448,
13,
1439,
6923,
33876,
13,
198,
2,
198,
2,
220,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
220,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
220,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
25,
198,
2,
198,
2,
220,
220,
220,
220,
220,
220,
3740,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
220,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
220,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
220,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
198,
2,
220,
393,
17142,
13,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
198,
2,
220,
21627,
290,
11247,
739,
262,
13789,
13,
198,
198,
6738,
19720,
1330,
32233,
198,
198,
11748,
3904,
198,
198,
6738,
1976,
268,
4029,
13,
44506,
1330,
3384,
4487,
355,
537,
72,
62,
26791,
198,
6738,
1976,
268,
4029,
13,
44506,
13,
44506,
1330,
537,
72,
198,
6738,
1976,
268,
4029,
13,
7295,
13,
260,
7501,
1330,
1432,
13264,
628,
198,
31,
44506,
13,
8094,
7203,
34924,
12,
2301,
4592,
4943,
198,
4299,
9290,
62,
2301,
4592,
3419,
4613,
6045,
25,
198,
220,
220,
220,
37227,
18274,
2410,
329,
9290,
4214,
1678,
526,
15931,
628,
198,
31,
34924,
62,
2301,
4592,
13,
21812,
7203,
1136,
4943,
198,
4299,
651,
62,
5275,
62,
34924,
62,
2301,
4592,
3419,
4613,
6045,
25,
198,
220,
220,
220,
37227,
38,
1039,
262,
9290,
20478,
286,
262,
4075,
8931,
526,
15931,
198,
220,
220,
220,
1438,
796,
1432,
13264,
22446,
1136,
62,
5275,
62,
25558,
22446,
34924,
62,
2301,
4592,
62,
3672,
198,
220,
220,
220,
611,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
32446,
533,
7,
69,
1,
13739,
9290,
20478,
25,
1391,
3672,
92,
4943,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
32446,
533,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
2949,
9290,
20478,
900,
329,
1459,
4075,
8931,
25,
1391,
6207,
13264,
22446,
1136,
62,
5275,
62,
25558,
62,
2539,
3419,
36786,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
31,
34924,
62,
2301,
4592,
13,
21812,
7,
198,
220,
220,
220,
366,
30238,
1600,
4732,
62,
33692,
28,
11600,
7,
46430,
62,
34680,
62,
25811,
28,
17821,
8,
198,
8,
198,
31,
12976,
13,
49140,
7,
198,
220,
220,
220,
366,
3672,
1600,
198,
220,
220,
220,
2672,
28,
17821,
11,
198,
220,
220,
220,
2099,
28,
12976,
13,
18601,
2751,
11,
198,
8,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
366,
438,
9900,
1600,
198,
220,
220,
220,
27444,
84,
1600,
198,
220,
220,
220,
1037,
2625,
464,
43975,
329,
262,
9290,
20478,
284,
7881,
33283,
198,
220,
220,
220,
2672,
28,
17821,
11,
198,
220,
220,
220,
2099,
28,
12976,
13,
18601,
2751,
11,
198,
8,
198,
4299,
7881,
62,
34924,
62,
2301,
4592,
7,
3672,
25,
965,
11,
2956,
72,
25,
965,
8,
4613,
6045,
25,
198,
220,
220,
220,
37227,
38804,
257,
9290,
20478,
526,
15931,
628,
220,
220,
220,
422,
1976,
268,
4029,
13,
34924,
62,
2301,
32995,
1330,
7308,
29869,
8081,
4592,
628,
220,
220,
220,
29924,
796,
1432,
13264,
3419,
198,
220,
220,
220,
20478,
796,
7308,
29869,
8081,
4592,
7,
9900,
28,
9900,
11,
29924,
62,
6978,
28,
260,
7501,
13,
6978,
8,
198,
220,
220,
220,
29924,
13,
1136,
62,
15271,
22446,
30238,
62,
34924,
62,
2301,
4592,
7,
3672,
11,
20478,
8,
198,
220,
220,
220,
537,
72,
62,
26791,
13,
32446,
533,
7,
69,
1,
29869,
20478,
4600,
90,
3672,
92,
63,
7675,
6823,
2474,
8,
628,
198,
31,
34924,
62,
2301,
4592,
13,
21812,
7203,
4868,
4943,
198,
4299,
1351,
62,
34924,
62,
2301,
32995,
3419,
4613,
6045,
25,
198,
220,
220,
220,
37227,
8053,
477,
1695,
9290,
4214,
1678,
422,
2139,
526,
15931,
198,
220,
220,
220,
29924,
796,
1432,
13264,
3419,
198,
220,
220,
220,
2139,
796,
29924,
13,
1136,
62,
15271,
3419,
198,
220,
220,
220,
611,
18896,
7,
15271,
13,
34924,
62,
2301,
32995,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
43917,
7203,
2949,
9290,
4214,
1678,
6823,
2474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
4075,
62,
34924,
62,
2301,
4592,
796,
965,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29924,
13,
1136,
62,
5275,
62,
25558,
22446,
34924,
62,
2301,
4592,
62,
3672,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2139,
796,
29924,
13,
1136,
62,
15271,
3419,
198,
220,
220,
220,
537,
72,
62,
26791,
13,
7839,
7203,
29869,
4214,
1678,
25,
4943,
198,
220,
220,
220,
537,
72,
62,
26791,
13,
4798,
62,
11487,
7,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
18982,
62,
42895,
62,
4868,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2139,
13,
34924,
62,
2301,
32995,
11,
4075,
62,
34924,
62,
2301,
4592,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1267,
628,
198,
31,
34924,
62,
2301,
4592,
13,
21812,
7,
198,
220,
220,
220,
366,
20147,
4892,
1600,
198,
220,
220,
220,
1037,
2625,
15307,
3307,
546,
262,
1459,
4075,
9290,
20478,
33283,
198,
8,
198,
31,
12976,
13,
49140,
7,
198,
220,
220,
220,
366,
34924,
62,
2301,
4592,
62,
3672,
1600,
198,
220,
220,
220,
2099,
28,
12976,
13,
18601,
2751,
11,
198,
220,
220,
220,
2672,
28,
25101,
11,
198,
8,
198,
4299,
6901,
62,
34924,
62,
2301,
4592,
7,
198,
220,
220,
220,
9290,
62,
2301,
4592,
62,
3672,
25,
32233,
58,
2536,
4357,
198,
8,
4613,
6045,
25,
198,
220,
220,
220,
37227,
15307,
3307,
546,
262,
1459,
4075,
9290,
20478,
526,
15931,
198,
220,
220,
220,
29924,
796,
1432,
13264,
3419,
198,
220,
220,
220,
9290,
62,
2301,
4592,
62,
3672,
796,
9290,
62,
2301,
4592,
62,
3672,
393,
965,
7,
198,
220,
220,
220,
220,
220,
220,
220,
29924,
13,
1136,
62,
5275,
62,
25558,
22446,
34924,
62,
2301,
4592,
62,
3672,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
9290,
62,
2301,
32995,
796,
29924,
13,
1136,
62,
15271,
22446,
34924,
62,
2301,
32995,
198,
220,
220,
220,
611,
18896,
7,
34924,
62,
2301,
32995,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
43917,
7203,
2949,
9290,
4214,
1678,
6823,
2474,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9290,
62,
2301,
4592,
62,
36604,
796,
9290,
62,
2301,
32995,
58,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9290,
62,
2301,
4592,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
2361,
198,
220,
220,
220,
2845,
7383,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
18224,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
1,
29869,
20478,
4600,
90,
34924,
62,
2301,
4592,
62,
3672,
92,
63,
857,
407,
2152,
526,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
537,
72,
62,
26791,
13,
7839,
7203,
29869,
33432,
25,
4943,
198,
220,
220,
220,
611,
357,
198,
220,
220,
220,
220,
220,
220,
220,
29924,
13,
1136,
62,
5275,
62,
25558,
22446,
34924,
62,
2301,
4592,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
6624,
9290,
62,
2301,
4592,
62,
3672,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
32446,
533,
7203,
1174,
10659,
9306,
1174,
59,
77,
4943,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
26791,
13,
32446,
533,
7203,
4943,
198,
220,
220,
220,
537,
72,
62,
26791,
13,
32446,
533,
7,
69,
1,
20608,
25,
1391,
34924,
62,
2301,
4592,
62,
3672,
92,
4943,
198,
220,
220,
220,
537,
72,
62,
26791,
13,
4798,
62,
42895,
62,
48310,
7,
34924,
62,
2301,
4592,
62,
36604,
13,
11600,
28955,
628,
198,
31,
34924,
62,
2301,
4592,
13,
21812,
7203,
33678,
4943,
198,
31,
12976,
13,
49140,
7203,
34924,
62,
2301,
4592,
62,
3672,
1600,
2099,
28,
2536,
8,
198,
4299,
12233,
62,
34924,
62,
2301,
4592,
7,
34924,
62,
2301,
4592,
62,
3672,
25,
965,
8,
4613,
6045,
25,
198,
220,
220,
220,
37227,
38727,
257,
9290,
20478,
526,
15931,
198,
220,
220,
220,
2139,
796,
1432,
13264,
22446,
1136,
62,
15271,
3419,
198,
220,
220,
220,
2139,
13,
33678,
62,
34924,
62,
2301,
4592,
7,
34924,
62,
2301,
4592,
62,
3672,
8,
198,
220,
220,
220,
537,
72,
62,
26791,
13,
32446,
533,
7,
69,
1,
5005,
33342,
9290,
20478,
25,
1391,
34924,
62,
2301,
4592,
62,
3672,
92,
4943,
198
] | 2.825336 | 1,563 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.