Project

Profile

Help

Issue #7110

closed

pulpcore-client - packaging does not state that python 2.7 is not supported

Added by wibbit almost 4 years ago. Updated over 3 years ago.

Status:
CLOSED - CURRENTRELEASE
Priority:
Normal
Assignee:
Category:
-
Sprint/Milestone:
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Sprint:
Sprint 79
Quarter:

Description

When attempting to upload an artefact using pulpcore-client, I'm greeted with a Unicode error.

Trace is below, I've also included the value of msg, in case that's of assistance.

UnicodeDecodeError Traceback (most recent call last) [48/4497] in () ----> 1 server.upload_artifact('/tmp/bats-python38-pycryptodomex-3.9.7-1.el7.x86_64.rpm')

/opt/systems/python/site_syseng/prog/pulpctl/poc.py in upload_artifact(self, file_path) 122 upload = self.uploads.update(upload_href=upload.pulp_href, 123 file=file_chunk.name, --> 124 content_range=content_range) 125 offset += chunk_size 126 sha256hasher.update(chunk)

/opt/bats/lib/python2.7/site-packages/pulpcore/client/pulpcore/api/uploads_api.pyc in update(self, upload_href, content_range, file, **kwargs) 639 """ 640 kwargs['_return_http_data_only'] = True --> 641 return self.update_with_http_info(upload_href, content_range, file, **kwargs) # noqa: E501 642 643 def update_with_http_info(self, upload_href, content_range, file, **kwargs): # noqa: E501

/opt/bats/lib/python2.7/site-packages/pulpcore/client/pulpcore/api/uploads_api.pyc in update_with_http_info(self, upload_href, content_range, file, **kwargs) 748 _preload_content=local_var_params.get('_preload_content', True), 749 _request_timeout=local_var_params.get('_request_timeout'), --> 750 collection_formats=collection_formats)

/opt/bats/lib/python2.7/site-packages/pulpcore/client/pulpcore/api_client.pyc in call_api(self, resource_path, method, path_params, query_params, header_params, body, post_params, files, response_type, auth_settings, async_req, _return_http_data_only, collection_formats, _preload_content, _request_timeout, _host) 351 response_type, auth_settings, 352 _return_http_data_only, collection_formats, --> 353 _preload_content, _request_timeout, _host) 354 355 return self.pool.apply_async(self.__call_api, (resource_path,

/opt/bats/lib/python2.7/site-packages/pulpcore/client/pulpcore/api_client.pyc in __call_api(self, resource_path, method, path_params, query_params, header_params, body, post_params, files, response_type, auth_settings, _return_http_data_only, collection_formats, _preload_content, _request_timeout, _host) 182 post_params=post_params, body=body, 183 _preload_content=_preload_content, --> 184 _request_timeout=_request_timeout) 185 186 self.last_response = response_data

/opt/bats/lib/python2.7/site-packages/pulpcore/client/pulpcore/api_client.pyc in request(self, method, url, query_params, headers, post_params, body, _preload_content, _request_timeout) 403 _preload_content=_preload_content, 404 _request_timeout=_request_timeout, --> 405 body=body) 406 elif method == "PATCH": 407 return self.rest_client.PATCH(url,

/opt/bats/lib/python2.7/site-packages/pulpcore/client/pulpcore/rest.pyc in PUT(self, url, headers, query_params, post_params, body, _preload_content, _request_timeout) 284 _preload_content=_preload_content, 285 _request_timeout=_request_timeout, --> 286 body=body) 287 288 def PATCH(self, url, headers=None, query_params=None, post_params=None,

/opt/bats/lib/python2.7/site-packages/pulpcore/client/pulpcore/rest.pyc in request(self, method, url, query_params, headers, body, post_params, _preload_content, _request_timeout) 186 preload_content=_preload_content, 187 timeout=timeout, --> 188 headers=headers) 189 # Pass a string parameter directly in the body to support 190 # other content types than Json when body argument is

/opt/bats/lib/python2.7/site-packages/urllib3/request.pyc in request(self, method, url, fields, headers, **urlopen_kw) 68 return self.request_encode_body(method, url, fields=fields, 69 headers=headers, ---> 70 **urlopen_kw) 71 72 def request_encode_url(self, method, url, fields=None, headers=None,

/opt/bats/lib/python2.7/site-packages/urllib3/request.pyc in request_encode_body(self, method, url, fields, headers, encode_multipart, multipart_boundary, **urlopen_kw) 146 extra_kw.update(urlopen_kw) 147 --> 148 return self.urlopen(method, url, **extra_kw)

/opt/bats/lib/python2.7/site-packages/urllib3/poolmanager.pyc in urlopen(self, method, url, redirect, **kw) 319 response = conn.urlopen(method, url, **kw) 320 else: --> 321 response = conn.urlopen(method, u.request_uri, **kw) 322 323 redirect_location = redirect and response.get_redirect_location()

/opt/bats/lib/python2.7/site-packages/urllib3/connectionpool.pyc in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw) 599 timeout=timeout_obj, 600 body=body, headers=headers, --> 601 chunked=chunked) 602 603 # If we're going to release the connection in finally:, then

/opt/bats/lib/python2.7/site-packages/urllib3/connectionpool.pyc in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw) 355 conn.request_chunked(method, url, **httplib_request_kw) 356 else: --> 357 conn.request(method, url, **httplib_request_kw) 358 359 # Reset the timeout for the recv() on the socket

/opt/bats/lib/python2.7/httplib.pyc in request(self, method, url, body, headers) 999 def request(self, method, url, body=None, headers={}): 1000 """Send a complete request to the server.""" -> 1001 self._send_request(method, url, body, headers) 1002 1003 def _set_content_length(self, body):

/opt/bats/lib/python2.7/httplib.pyc in _send_request(self, method, url, body, headers) 1033 for hdr, value in headers.iteritems(): 1034 self.putheader(hdr, value) -> 1035 self.endheaders(body) 1036 1037 def getresponse(self, buffering=False):

/opt/bats/lib/python2.7/httplib.pyc in endheaders(self, message_body) 995 else: 996 raise CannotSendHeader() --> 997 self._send_output(message_body) 998 999 def request(self, method, url, body=None, headers={}):

/opt/bats/lib/python2.7/httplib.pyc in _send_output(self, message_body) 846 # between delayed ack and the Nagle algorithm. 847 if isinstance(message_body, str): --> 848 msg += message_body 849 message_body = None 850 self.send(msg)

UnicodeDecodeError: 'ascii' codec can't decode byte 0xed in position 145: ordinal not in range(128)

In [5]: %debug

/opt/bats/lib/python2.7/httplib.py(848)_send_output() 846 # between delayed ack and the Nagle algorithm. 847 if isinstance(message_body, str): --> 848 msg += message_body 849 message_body = None 850 self.send(msg)

ipdb> msg u'PUT /pulp/api/v3/uploads/bef1a8ff-3573-43e0-8762-50175ddf6b5e/ HTTP/1.1\r\nHost: pulp-master.test\r\nAccept-Encoding: identity\r\nContent-Length: 16569\r\nContent-Range: bytes 0-19999/11656128\r\nContent-Type: multipart/form-data; boundary=4ef4823629244adfb6b80e485fb05df5\r\nAuthorization: Basic YWRtaW46cGFzc3dvcm Q=\r\nAccept: application/json\r\nUser-Agent: OpenAPI-Generator/3.4.1/python\r\n\r\n'

Actions #1

Updated by wibbit almost 4 years ago

For clarity, the specific issue appears to be the concatenation of msg and message_body.

I'm including both msg (again) and message_body below.

ipdb> msg u'PUT /pulp/api/v3/uploads/bef1a8ff-3573-43e0-8762-50175ddf6b5e/ HTTP/1.1\r\nHost: pulp-master.test\r\nAccept-Encoding: identity\r\nContent-Length: 16569\r\nContent-Range: bytes 0-19999/11656128\r\nContent-Type: multipart/form-data; boundary=4ef4823629244adfb6b80e485fb05df5\r\nAuthorization: Basic YWRtaW46cGFzc3dvcmQ=\r\nAccept: application/json\r\nUser-Agent: OpenAPI-Generator/3.4.1/python\r\n\r\n'

ipdb> message_body [86/4859]'--4ef4823629244adfb6b80e485fb05df5\r\nContent-Disposition: form-data; name="file"; filename="tmpo1Y3r5"\r\nContent-Type: application/octet-stream\r\n\r\n\xed\xab\xee\xdb\x03\x00\x00\x00\x00\x01bats-python38-pycryptodomex-3.9.7-1.el7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\xad\xe8\x01\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00T\x00\x00\x00>\x00\x00\x00\x07\x00\x00\x00D\x00\x00\x00\x10\x00\x00\x01\r\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x03\xe8\x00\x00\x00\x04\x00\x00\x00,\x00\x00\x00\x01\x00\x00\x03\xec\x00\x00\x00\x07\x00\x00\x000\x00\x00\x00\x10\x00\x00\x03\xef\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\x01c01028c12ab49baffb8580aa5f0dd0623c0073d4\x00\x00\x00\x00\x00\xb1\xda\xa8\xf2}\xe1\xf8\xbb\xdb\x97\x0fK\x93:\xd6~\xdb\xb8j\x02x\x81\xdc\x00\x00\x00>\x00\x00\x00\x07\xf f\xff\xff\xb0\x00\x00\x00\x10\x00\x00\x00\x00\x8e\xad\xe8\x01\x00\x00\x00\x00\x00\x00\x007\x00\x03,0\x00\x00\x00?\x00\x00\x00\x07\x00\x03, \x00\x00\x00\x10\x00\x00\x00d\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x03\xe8\x00\x00\x00\x06\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x03\xe9\x00\x00\x00\x06\x00
x00\x00\x1e\x00\x00\x00\x01\x00\x00\x03\xea\x00\x00\x00\x06\x00\x00\x00$\x00\x00\x00\x01\x00\x00\x03\xec\x00\x00\x00\t\x00\x00\x00*\x00\x00\x00\x01\x00\x00\x03\xed\x00\x00\x00\t\x00\x00\x00K\x00\x00\x00\x01\x00\x00\x03\xee\x00\x00\x00\x04\x00\x00\x06x\x00\x00\x00\x01\x00\x00\x03\xef\x00\x00\x00\x06\x00\x00\x06|\x00
x00\x00\x01\x00\x00\x03\xf1\x00\x00\x00\x04\x00\x00\x06\xa0\x00\x00\x00\x01\x00\x00\x03\xf3\x00\x00\x00\x06\x00\x00\x06\xa4\x00\x00\x00\x01\x00\x00\x03\xf6\x00\x00\x00\x06\x00\x00\x06\xb8\x00\x00\x00\x01\x00\x00\x03\xf8\x00\x00\x00\t\x00\x00\x06\xd3\x00\x00\x00\x01\x00\x00\x03\xfc\x00\x00\x00\x06\x00\x00\x06\xdf\x00 \x00\x00\x01\x00\x00\x03\xfd\x00\x00\x00\x06\x00\x00\x06\xfc\x00\x00\x00\x01\x00\x00\x03\xfe\x00\x00\x00\x06\x00\x00\x07\x02\x00\x00\x00\x01\x00\x00\x04\x04\x00\x00\x00\x04\x00\x00\x07\x0c\x00\x00\x05V\x00\x00\x04\x06\x00\x00\x00\x03\x00\x00\x1cd\x00\x00\x05V\x00\x00\x04\t\x00\x00\x00\x03\x00\x00'\x10\x00\x00\x05V
x00\x00\x04\n\x00\x00\x00\x04\x00\x001\xbc\x00\x00\x05V\x00\x00\x04\x0b\x00\x00\x00\x08\x00\x00G\x14\x00\x00\x05V\x00\x00\x04\x0c\x00\x00\x00\x08\x00\x01\x91\xea\x00\x00\x05V\x00\x00\x04\r\x00\x00\x00\x04\x00\x01\x97@\x00\x00\x05V\x00\x00\x04\x0f\x00\x00\x00\x08\x00\x01\xac\x98\x00\x00\x05V\x00\x00\x04\x10\x00\x00\x 00\x08\x00\x01\xc7F\x00\x00\x05V\x00\x00\x04\x14\x00\x00\x00\x06\x00\x01\xe1\xf4\x00\x00\x00\x01\x00\x00\x04\x15\x00\x00\x00\x04\x00\x01\xe2$\x00\x00\x05V\x00\x00\x04\x17\x00\x00\x00\x08\x00\x01\xf7|\x00\x00\x00\x02\x00\x00\x04\x18\x00\x00\x00\x04\x00\x01\xf7\xbc\x00\x00\x00\r\x00\x00\x04\x19\x00\x00\x00\x08\x00\x01 \xf7\xf0\x00\x00\x00\r\x00\x00\x04\x1a\x00\x00\x00\x08\x00\x01\xf9-\x00\x00\x00\r\x00\x00\x04(\x00\x00\x00\x06\x00\x01\xf9Y\x00\x00\x00\x01\x00\x00\x048\x00\x00\x00\x04\x00\x01\xf9\x00\x00\x00\x01\x00\x00\x049\x00\x00\x00\x08\x00\x01\xf9d\x00\x00\x00\x01\x00\x00\x04:\x00\x00\x00\x08\x00\x01\xf9\x82\x00\x00\x00\x01\ x00\x00\x04G\x00\x00\x00\x04\x00\x01\xf9\x98\x00\x00\x05V\x00\x00\x04H\x00\x00\x00\x04\x00\x02\x0e\xf0\x00\x00\x05V\x00\x00\x04I\x00\x00\x00\x08\x00\x02$H\x00\x00\x05V\x00\x00\x04X\x00\x00\x00\x04\x00\x02)\xa0\x00\x00\x00\x02\x00\x00\x04Y\x00\x00\x00\x08\x00\x02)\xa8\x00\x00\x00\x02\x00\x00\x04\\\x00\x00\x00\x04\x00 \x02)\xc0\x00\x00\x05V\x00\x00\x04]\x00\x00\x00\x08\x00\x02?\x18\x00\x00\x05V\x00\x00\x04^\x00\x00\x00\x08\x00\x02\xaa6\x00\x00\x00A\x00\x00\x04b\x00\x00\x00\x06\x00\x02\xbc\xb9\x00\x00\x00\x01\x00\x00\x04d\x00\x00\x00\x06\x00\x02\xbdP\x00\x00\x00\x01\x00\x00\x04e\x00\x00\x00\x06\x00\x02\xbdU\x00\x00\x00\x01\x00\x00 \x04f\x00\x00\x00\x06\x00\x02\xbdX\x00\x00\x00\x01\x00\x00\x04l\x00\x00\x00\x06\x00\x02\xbdZ\x00\x00\x00\x01\x00\x00\x04t\x00\x00\x00\x04\x00\x02\xbdt\x00\x00\x05V\x00\x00\x04u\x00\x00\x00\x04\x00\x02\xd2\xcc\x00\x00\x05V\x00\x00\x04v\x00\x00\x00\x08\x00\x02\xe8$\x00\x00\x003\x00\x00\x04w\x00\x00\x00\x04\x00\x02\xfe \x00\x00\x05V\x00\x00\x04x\x00\x00\x00\x04\x00\x03\x13x\x00\x00\x05V\x00\x00\x04y\x00\x00\x00\x04\x00\x03(\xd0\x00\x00\x00\xd3\x00\x00\x13\x93\x00\x00\x00\x04\x00\x03,\x1c\x00\x00\x00\x01C\x00bats-python38-pycryptodomex\x003.9.7\x001.el7\x00Cryptographic library for Python\x00PyCryptodome is a self-contained Python package of low-level\ncryptographic primitives.\n\nIt supports Python 2.6 and 2.7, Python 3.4 and newer, and PyPy.\n\nAll modules are installed under the ``Cryptodome`` package.\n\nCheck the pycryptodome_ project for the equivalent library that\nworks under the ``Crypto`` package.\n\nPyCryptodome is a fork of PyCry pto. It brings several enhancements\nwith respect to the last official version of PyCrypto (2.6.1),\nfor instance:\n\n* Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)\n* Accelerated AES on Intel platforms via AES-NI\n* First class support for PyPy\n* Elliptic curves cryptography (NIST P-256, P-384 and P-52 1 curves only)\n* Better and more compact API (nonceandiv attributes for ciphers,\n automatic generation of random nonces and IVs, simplified CTR cipher mode,\n and more)\n* SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms\n* Salsa20 and ChaCha20 stream ciphers\n* scrypt and HKDF\n* Deterministic (EC) DSA\n* Password-protected PKCS#8 key containers\n* Shamir\'s Secret Sharing scheme\n* Random numbers get sourced directly from the OS (and not from a CSPRNG in userspace)\n* Simplified install process, including better support for Windows\n* Cleaner RSA and DSA key generation (largely based on FIPS 186-4)\n* Major c lean ups and simplification of the code base\n\nPyCryptodome is not a wrapper to a separate C library like *OpenSSL*.\nTo the largest possible extent, algorithms are implemented in pure Python.\nOnly the pieces that are extremely critical to performance (e.g. block ciphers)\nare implemented as C extensions.\x00\x00^ \xf1\xccgdev-rhel7-bats-python-pycryptodomex\x00\x02tImCboe Global Markets\x00BSD, Public Domain, Apache\x00Development\x00https://www.pycryptodome.org\x00linux\x00x86_64\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00%a\x00\x00"|\x00\x00\x05k\x00\x00"|\x00\x00\x19\xae\x00\x00\x16\xaf\x00\x00\x03\xd6\x00\x00 \x16\xaf\x00\x00\x140\x00\x00\x10\xcd\x00\x00\x01\xaf\x00\x00\x10\xcd\x00\x00\x17X\x00\x00\x14\xf3\x00\x00\x03\xfa\x00\x00\x14\xf3\x00\x00\x17\xc7\x00\x00\x15i\x00\x00\x03\xd7\x00\x00\x15i\x00\x00*\x02\x00\x00!\x9c\x00\x00\x02\xfa\x00\x00!K\x00\x00-)\x00\x00,f\x00\x00\x04,\x00\x00+\xfb\x00\x00\x17K\x00\x00\x14\xed\x 00\x00\x03\xc3\x00\x00\x14\xed\x00\x00\x1b\x16\x00\x00\x19\xd1\x00\x00\x04\t\x00\x00\x19\xd1\x00\x00"\xb0\x00\x00\x1f\xb8\x00\x00\x04\x9f\x00\x00\x1f\xb8\x00\x00\x1f+\x00\x00\x1e\x00\x00\x00\x02;\x00\x00\x1d\xcb\x00\x00\x18\xe1\x00\x00\x14\x9d\x00\x00\x02\xe8\x00\x00\x14\x9d\x00\x00\x1b@\x00\x00\x14a\x00\x00\x0f8\x0 0\x00\x01\x0e\x00\x00\x0f8\x00\x00+\xa8\x00\x00\x0bH\x00\x00\x08\xa0\x00\x00\x00\x00\x00\x00\x08\xa0\x00\x00\x10\x00\x00\x00\x1f\xff\x00\x00\x1f\xff\x00\x00\x15\x0e\x00\x00\x15\x0e\x00\x00\x0e\x9f\x00\x00\x0e\x9f\x00\x00\x13q\x00\x00\x13q\x00\x00\x13\xe2\x00\x00\x13\xe2\x00\x00\x1d\x12\x00\x00\x1d\x12\x00\x00&\xd6\x 00\x00&\xd6\x00\x00\x13s\x00\x00\x13s\x00\x00\x18+\x00\x00\x18+\x00\x00\x1b\xef\x00\x00\x1b\xef\x00\x00\x1b\x13\x00\x00\x1b\x13\x00\x00\x12\x08\x00\x00\x12\x08\x00\x00\r\x8d\x00\x00\r\x8d\x00\x00\x06\xb9\x00\x00\x06\xb9\x00\x00\x1d@\x00\x00\x1d@\x00\x00F\xbd\x00\x00F\xbd\x00\x00\x1e\xae\x00\x00\x1e\xae\x00\x00+J\x00 \x00+J\x00\x0004\x00\x0004\x00\x00\x16\xcc\x00\x00\x16\xcc\x00\x00C\x03\x00\x00C\x03\x00\x009\x90\x00\x009\x90\x00\x00\x1c\xff\x00\x00\x1c\xff\x00\x00\x12\xd2\x00\x00\x12\xd2\x00\x00.\x87\x00\x00.\x87\x00\x00+\x80\x00\x00*\xdb\x00\x00!M\x00\x00\x02\xb3\x00\x00!M\x00\x00_\x9c\x00\x00N\x81\x00\x00\x06@\x00\x00M\n\x00\ x00*E\x00\x00"\x9c\x00\x00\x02\xdb\x00\x00"\x9c\x00\x00>0\x00\x000T\x00\x00\x03$\x00\x000T\x00\x008\xcf\x00\x004r\x00\x00\x06\t\x00\x004r\x00\x00 \x1e\x00\x00\x1a\x1a\x00\x00\x02T\x00\x00\x1a\x1a\x00\x00S\x9a\x00\x00L\xea\x00\x00\x06\x05\x00\x00LG\x00\x00M~\x00\x00@\xe1\x00\x00\x04\xcf\x00\x00@q\x00\x00(=\x00\x00 \x be\x00\x00\x02\xb7\x00\x00 \xbe\x00\x00\x1b\x95\x00\x00\x15\x12\x00\x00\x02,\x00\x00\x15\x12\x00\x007\x0e\x00\x003\xb0\x00\x00\x04\xed\x00\x003\xb0\x00\x00k\xc8\x00\x00+\xe0\x00\x00+\xb0\x00\x00;\xa8\x00\x00K\xc8\x00\x00+p\x00\x00+\xd8\x00\x00+\xe8\x00\x00\xab\xd8\x00\x00\xab\xc0\x00\x00\x1a\xe8\x00\x00;\xb8\x00\x00 ,\x00\x00\x00\x1b\x80\x00\x00\x10\x00\x00\x00$\xe0\x00\x00 \x0e\x00\x00\x03m\x00\x00 \x0e\x00\x00$\xe6\x00\x00 \x14\x00\x00\x02\xe3\x00\x00 \x14\x00\x00(\xd0\x00\x00#\xcc\x00\x00\x03\x1d\x00\x00#\x9b\x00\x00\x1b\x96\x00\x00\x18|\x00\x00\x02p\x00\x00\x18|\x00\x00\x17\xeb\x00\x00\x14\x03\x00\x00\x01\xec\x00\x00\x14\x0 3\x00\x00\x19\xc6\x00\x00\x15\xe9\x00\x00\x02\x14\x00\x00\x15\xe9\x00\x00\x19\xe6\x00\x00\x18%\x00\x00\x01\xec\x00\x00\x17\xda\x00\x00\x1f\xaa\x00\x00\x1e9\x00\x00\x02\x99\x00\x00\x1e9\x00\x00\x04\xbb\x00\x00\x01Y\x00\x00\x00b\x00\x00\x01Y\x00\x00\x19\n\x00\x00\x14\xe5\x00\x00\x02\x04\x00\x00\x14\xe5\x00\x00\x04\x84 \x00\x00\x01\x1f\x00\x00\x00\xa9\x00\x00\x01\x1f\x00\x00\x1a.\x00\x00\x18B\x00\x00\x02\x18\x00\x00\x17\xf7\x00\x00\x1b\x01\x00\x00\x18\xbf\x00\x00\x02 \x00\x00\x18\x93\x00\x00\x1a\xfd\x00\x00\x18\xbb\x00\x00\x02d\x00\x00\x18\x8f\x00\x00\x1a\xff\x00\x00\x18\xbb\x00\x00\x02 \x00\x00\x18\x8f\x00\x00\x14\xb6\x00\x00\x12 T\x00\x00\x01\xf8\x00\x00\x12T\x00\x00\x14\xb6\x00\x00\x12T\x00\x00\x01\xf8\x00\x00\x12T\x00\x00\x14\xb6\x00\x00\x12T\x00\x00\x01\xf8\x00\x00\x12T\x00\x00\x14\xb8\x00\x00\x12U\x00\x00\x01\xf8\x00\x00\x12U\x00\x00\x1e4\x00\x00\x1b\x8b\x00\x00\x02n\x00\x00\x1b_\x00\x00\x120\x00\x00\x0e5\x00\x00\x01\xb5\x00\x00\x0e5\x0 0\x00\x120\x00\x00\x0e5\x00\x00\x01\xb5\x00\x00\x0e5\x00\x00+\xe0\x00\x00+\xd8\x00\x00+\xc8\x00\x00+\xc8\x00\x00+\xf0\x00\x00+\xd0\x00\x00;\xf0\x00\x00L\x00\x00\x00L\x00\x00\x00L\x08\x00\x00L\x08\x00\x00\x04_\x00\x00\x01J\x00\x00\x00\x00\x00\x00\x01J\x00\x00\x10\x00\x00\x00\x1c\\\x00\x00\x1c\\\x00\x00\x1cb\x00\x00\x 1cb\x00\x00\x1d\xe9\x00\x00\x1d\xe9\x00\x00\x15<\x00\x00\x15<\x00\x00\x11\x8e\x00\x00\x11\x8e\x00\x00\x13x\x00\x00\x13x\x00\x00\x150\x00\x00\x150\x00\x00\x1a\xa3\x00\x00\x1a\xa3\x00\x00\x01;\x00\x00\x01;\x00\x00\x12~\x00\x00\x12~\x00\x00\x01\x04\x00\x00\x01\x04\x00\x00\x15G\x00\x00\x15G\x00\x00\x15\xf8\x00\x00\x15\x f8\x00\x00\x15\xf4\x00\x00\x15\xf4\x00\x00\x15\xf4\x00\x00\x15\xf4\x00\x00\x0f\xb4\x00\x00\x0f\xb4\x00\x00\x0f\xb4\x00\x00\x0f\xb4\x00\x00\x0f\xb4\x00\x00\x0f\xb4\x00\x00\x0f\xb5\x00\x00\x0f\xb5\x00\x00\x18y\x00\x00\x18y\x00\x00\x0b\xde\x00\x00\x0b\xde\x00\x00\x0b\xde\x00\x00\x0b\xde\x00\x00\x01"\x00\x00\x01"\x00\x0 0\x14\x01\x00\x00\x14\x01\x00\x00\x1b\xa0\x00\x00\x1b@\x00\x00,\x00\x00\x00+\xe8\x00\x00\x1b\xce\x00\x00\x16\xd8\x00\x00\x02\xe5\x00\x00\x16\xd8\x00\x00\x10\x00\x00\x00\x1b<\x00\x00\x14\xde\x00\x00\x01/\x00\x00\x14\xde\x00\x00"\x07\x00\x00\x16\xa7\x00\x00\x01\xda\x00\x00\x16\xa7\x00\x00?\xe0\x00\x00+!\x00\x00\x01\xe 9\x00\x00+!\x00\x00\x06\x04\x00\x00\x00\xc0\x00\x00\x00\xc0\x00\x00\x10\x00\x00\x00\x11\xda\x00\x00\x11\xda\x00\x00\x14\xbb\x00\x00\x14\xbb\x00\x00%1\x00\x00%1\x00\x00\x00\xb4\x00\x00\x00\xb4\x00\x00\x10\x00\x00\x00\x07\xfa\x00\x00\x02\x82\x00\x00\x00X\x00\x00\x02\x82\x00\x00,X\x00\x00"\x95\x00\x00\x037\x00\x00"\\\x 00\x00(\xf6\x00\x006\xb4\x00\x00\rY\x00\x006\xb4\x00\x00\x0f\xb0\x00\x00\t\xde\x00\x00\x00\x87\x00\x00\t\xde\x00\x00b\xe5\x00\x00b\x8e\x00\x00\x00N\x00\x00b\x8e\x00\x00+D\x00\x009\t\x00\x00\x00Q\x00\x009\t\x00\x00\x00\x00\x00\x00\x00\x98\x00\x00\x00\x98\x00\x00\x10\x00\x00\x00\x026\x00\x00\x026\x00\x00\x1c\xfa\x00\x 00\x1c\xfa\x00\x00*A\x00\x00*A\x00\x00\x07\xe2\x00\x00\x07\xe2\x00\x00L\xc4\x00\x00L\xc4\x00\x00)g\x00\x00)g\x00\x00\x00\x9c\x00\x00\x00\x9c\x00\x00}\xd0\x00\x00\x10\x00\x00\x00M\xb9\x00\x00O\x92\x00\x00\x05g\x00\x00O\x92\x00\x00*k\x00\x00\'\x89\x00\x00\x02\x8e\x00\x00\'\x89\x00\x00\x06\x0c\x00\x00\x00\xce\x00\x00\x 00+\x00\x00\x00\xce\x00\x00\x10\x00\x00\x00F\xc1\x00\x00F\xc1\x00\x00$>\x00\x00$>\x00\x00\x00\xc2\x00\x00\x00\xc2\x00\x00\x1b\xa0\x00\x00\x10\x00\x00\x00W[\x00\x00W\x0e\x00\x00\x05I\x00\x00V\xc7\x00\x00\xa4E\x00\x00\x90f\x00\x00\t6\x00\x00\x8f\xf3\x00\x00!\xb7\x00\x00#\xe9\x00\x00\x02\xa2\x00\x00#\xe9\x00\x00p\xa2\x 00\x00h\x8e\x00\x00\x07-\x00\x00hc\x00\x00\x0c3\x00\x00\x08c\x00\x00\x00\x00\x00\x00\x08c\x00\x00\x10\x00\x00\x00K,\x00\x00K,\x00\x00w\x9e\x00\x00w\x9e\x00\x00\x1cG\x00\x00\x1cG\x00\x00W\x16\x00\x00W\x16\x00\x00\x06\xa1\x00\x00\x06\xa1\x00\x00\x0b\xe2\x00\x00\x0b\xe2\x00\n\xce\xd8\x00\x00\x14\x1a\x00\x00\x0f(\x00\x0 0\x01D\x00\x00\x0f(\x00\x00\x10\x00\x00\x00\x07\x15\x00\x00\x07\x15\x00\x00\x01o\x00\x00\x07\x15\x00\x00\x10\x00\x00\x00\x04\xee\x00\x00\x04\xee\x00\x00\r<\x00\x00\r<\x00\x00\x14~\x00\x00\x10\xf1\x00\x00\x03\'\x00\x00\x10\xba\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x0e|\x00\x00\tw\x00\x00\tw\x00\x00\x10\x00\x00\x00\ x07E\x00\x00\x07E\x00\x00+\xe0\x00\x00+\xe0\x00\x00\xcc&\x00\x00\xcc&\x00\x00\x0f\xd5\x00\x00\x0f\xd5\x00\x00O/\x00\x00O/\x00\x00\x13\xb8\x00\x00\x13\xb8\x00\x00\x08\xba\x00\x00\x08\xba\x00\x007\xb5\x00\x007\xb5\x00\x00e\xba\x00\x00e\xba\x00\x00)!\x00\x00)!\x00\x009\xce\x00\x009\xce\x00\x00:8\x00\x00:8\x00\x00X\x7f\ x00\x00X\x7f\x00\x00/\xfd\x00\x00/\xfd\x00\x00\x11!\x00\x00\x11!\x00\x00VU\x00\x00VU\x00\x00g}\x00\x00g}\x00\x00G\xd3\x00\x00G\xd3\x00\x00\x18\x84\x00\x00\x18\x84\x00\x00\x16\x92\x00\x00\x16\x92\x00\x00B\x9a\x00\x00B\x9a\x00\x00@\xf2\x00\x00@\xf2\x00\x00%\xce\x00\x00%\xce\x00\x00K\xf5\x00\x00K\xf5\x00\x00Bx\x00\x00; ~\x00\x00;~\x00\x01\x18\x93\x00\x01!G\x00\x01!G\x00\x00\x19\x96\x00\x00\x16W\x00\x00\x16W\x00\x00\xad\x00\x00W\xc8\x00\x00W\xc8\x00\x00\x1c\x96\x00\x00\x1c\x01\x00\x00\x1c\x01\x00\x00\r'\x00\x00\x0c;\x00\x00\x0c;\x00\x00M^\x00\x00L\xde\x00\x00Ld\x00\x00\x94\x97\x00\x00\x81\xe1\x00\x00\x81[\x00\x00?"\x00\x008y\x00
x007\xcd\x00\x00S\x9a\x00\x00G\xf2\x00\x00G\xf2\x00\x00N1\x00\x00FW\x00\x00F2\x00\x00y^\x00\x00vt\x00\x00un\x00\x00>\x9b\x00\x007\xfc\x00\x007\xfc\x00\x00\x1aD\x00\x00\x17\x8c\x00\x00\x17k\x00\x00s3\x00\x00n\x9c\x00\x00m\xb8\x00\x00\x95f\x00\x00\x81\x94\x00\x00\x81[\x00\x00n\xf6\x00\x00[g\x00\x00[g\x00\x00$o\x00\x00 \xdb\x00\x00 \xdb\x00\x00 \xf6\x00\x00\x1ca\x00\x00\x1ca\x00\x00R\x85\x00\x00Vo\x00\x00V\x0b\x00\x00A\x7f\x00\x00@\x93\x00\x00@\x93\x00\x00)b\x00\x00<Y\x00\x00<\x10\x00\x00Y\xd6\x00\x00YS\x00\x00Y\x1a\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\n\xe3\x00\x00\n1\x00\x00\t?\x00\x00\x1f6\x00\x00&\x92\x00\x00\x1b\xf2\x00\x 00\x92\x00\x00\x00\x9e\x80\x00\x00\xab\x00\x00\x00%\xb6\x00\x00&\xf6\x00\x00(6\x00\x00\xba\xe9\x00\x010i\x00\x01\xb5\xe9\x00\x00\xba\xe9\x00\x00\xca\xe9\x00\x00\xda\xe9\x00\x00\n\xe6\x00\x00\n4\x00\x00\tB\x00\x00\x1f9\x00\x00&\x95\x00\x00\x1b\xf5\x00\x00\x92\x03\x00\x00\x9e\x83\x00\x00\xab\x03\x00\x00%\xb9\x00\x00&
xf9\x00\x00(9\x00\x00\xba\xec\x00\x010l\x00\x01\xb5\xec\x00\x00\xba\xec\x00\x00\xca\xec\x00\x00\xda\xec\x00\x00\x07\x9c\x00\x00\x07b\x00\x00\x06\xe8\x00\x00\x15_\x00\x00\x1bS\x00\x00\x14s\x00\x00c!\x00\x00o\xa1\x00\x00|!\x00\x00\x0b\xef\x00\x00\r/\x00\x00\x0eo\x00\x00~\xea\x00\x00\xd6j\x00\x01=\xea\x00\x00~\xea\x00
x00\x8e\xea\x00\x00\x9e\xea\x00\x00\n\xe3\x00\x00\n1\x00\x00\t?\x00\x00\x1f6\x00\x00&\x92\x00\x00\x1b\xf2\x00\x00\x92\x00\x00\x00\x9e\x80\x00\x00\xab\x00\x00\x00%\xb6\x00\x00&\xf6\x00\x00(6\x00\x00\xba\xe9\x00\x010i\x00\x01\xb5\xe9\x00\x00\xba\xe9\x00\x00\xca\xe9\x00\x00\xda\xe9\x00\x00\x01h\x00)\xf0\xbe\x00,\xb8\xf b\x00\x00\x10\x00\x00\x00\x00\xc3\x00\x00\x19\\x00\x00\x19\\x00\x00>\x12\x00\x00\x1fT\x00\x00\x12\xd3\x00\x006[\x00\x00>\x1c\x00\x00\x19^\x00\x00\x19^\x00\x00>\x14\x00\x00\x1fV\x00\x00\x12\xd5\x00\x006]\x00\x00>\x1e\x00\x00\rU\x00\x00\rU\x00\x000\x13\x00\x00\x18U\x00\x00\x0e\xac\x00\x00*\x1c\x00\x000\x1d\x00\x00\x 17\x90\x00\x00\x17\x90\x00\x00\x19\\x00\x00\x19\\x00\x00>\x12\x00\x00\x1fT\x00\x00\x12\xd3\x00\x006[\x00\x00>\x1c\x00\x00\x10\x00\x00\x060\xb2\x00\x03\x9d\xb2\x00\x01KP\x00\x02\tO\x00\x02\xb6,\x00\x02\xfeX\x00\x00\x8a\t\x00\x00l\x15\x00\x00\x7f\xd2\x00\x00k\xff\x00\x00\x8e;\x00\x00k\xbf\x00\x00z4\x00\x00k}\x00\x00 sj\x00\x00\x96k\x00\x00\xc2\xcf\x00\x00\x92!\x00\x00\x9f\xba\x00\x00\xbe\x19\x00\x00\xf7\x86\x00\x00\xb8\xc3\x00\x00\xe08\x00\x13B\x8c\x00\x04xW\x00\x06uZ\x00\x08j\xf8\x00\x02\xc5\xb7\x00\x00\x10\x00\x00\x00\r\xcd\x00\x00\t\x00\x00\t\x00\x00\x10\x00\x00\x00\x07O\x00\x00\x07O\x00\x00\x1c=\x00\x00\x1c=\x00\x00-\xf4
x00\x00-\xf4\x00\x00%V\x00\x00%V\x00\x00'\xa7\x00\x00'\xa7\x00\x00\x052\x00\x00\x052\x00\x00\x05L\x00\x00\x05L\x00\x00\x08\xb6\x00\x00\x08\xb6\x00\x008\xcf\x00\x008\xcf\x00\x00\x06\x08\x00\x00\x06\x08\x00\x00\x08\x8f\x00\x00\x08\x8f\x00\x00\x05T\x00\x00\x05T\x00\x00\x08\xb2\x00\x00\x08\xb2\x00\x00\x05\xd7\x00\x00
x05\xd7\x00\x00\x07\xe7\x00\x00\x07\xe7\x00\x00\x07\xe7\x00\x00\x07\xe7\x00\x00\x07\xe7\x00\x00\x07\xe7\x00\x00\x07\xe8\x00\x00\x07\xe8\x00\x00\r\xee\x00\x00\r\xee\x00\x00\x0f\xf6\x00\x00\x0f\xf6\x00\x00\x18\xf2\x00\x00\x18\xf2\x00\x00&\xec\x00\x00&~\x00\x00&~\x00\x00:i\x00\x00;a\x00\x00;a\x00\x006z\x00\x00.\xf3\x00 \x00.\xba\x00\x005\x00\x00\x00,\xeb\x00\x00,\xeb\x00\x00\t \x00\x00\x07\x11\x00\x00\x07\x11\x00\x00\t7\x00\x00\x073\x00\x00\x073\x00\x00\x0c\xe4\x00\x00\x0b\xcd\x00\x00\x0b\xcd\x00\x00G\xe6\x00\x00B6\x00\x00B6\x00\x00\ns\x00\x00\x07\xe1\x00\x00\x07\xe1\x00\x00\x0b\x90\x00\x00\x08#\x00\x00\x08#\x00\x00\t\xed\x00\x00
x07>\x00\x00\x07>\x00\x00\x0e5\x00\x00\x0b\xc1\x00\x00\x0b\xc1\x00\x00\n\xa2\x00\x00\x07p\x00\x00\x07p\x00\x00\x0b:\x00\x00\n\x9a\x00\x00\n\x9a\x00\x00\x0b;\x00\x00\n\x9a\x00\x00\n\x9a\x00\x00\x0b:\x00\x00\n\x9a\x00\x00\n\x9a\x00\x00\x0b;\x00\x00\n\x9b\x00\x00\n\x9b\x00\x00\x14\xb6\x00\x00\x13A\x00\x00\x13A\x00\x00
x12\xb2\x00\x00\x16[\x00\x00\x16[\x00\x00#\xc8\x00\x00$\xa4\x00\x00$\xa4\x00\x00\x10\x00\x00\x00\x10\x00\x00\x02\x12F\x00\x00\x12\x85\x00\x00#d\x00\x00\x10\x00\x00\x01\x92G\x00\x00\x05\x85\x00\x00\n\x04\x00\x00\x10\x00\x00\x00"\x1f\x00\x00\x10\x00\x00\x00\x8f\xc0\x00\x00k\x90\x00\x00o\x98\x00\x00\x10\x00\x00\x01P\xb 3\x00\x01X\xb3\x00\x01x\xb2\x00\x01\x98\xb3\x00\x05\x18h\x00\x05\x18h\x00\x00\x10\x00\x00\x00\x01<\x00\x00\x01D\x00\x00\x01d\x00\x00\x01\x84\x00\x04\x96\xc5\x00\x04\x98\xcd\x00\x04\xa0\xed\x00\x04\xa9\r\x00\x01O\xba\x00\x01W\xba\x00\x01w\xba\x00\x01\x97\xba\x00\x00\x00S\x00\x00\x10\x00\x00\x01a\x8e\x00\x00\x10\x00\x 00\x00\x07\xd2\x00\x00\x03\x95\x00\x00\x03\x95\x00\x00\x10\x00\x00\x00\x02\xb3\x00\x00\x02\xb3\x00\x00\t\t\x00\x00\t\t\x00\x007\xd7\x00\x007\xd7\x00\x00\r\x8d\x00\x00\rQ\x00\x00\rQ\x00\x00D\xa6\x00\x00_,\x00\x00_,\x00\x00\x10\x00\x00\x00\x08A\x00\x00\x03\xee\x00\x00\x03\xee\x00\x00\x10\x00\x00\x00\x02\xf8\x00\x00\x0 2\xf8\x00\x00g\xdd\x00\x00g\xdd\x00\x00\x0e-\x00\x00\x0e-\x00\x00\x18\n\x00\x00\x18\n\x00\x00t4\x00\x00\x9f\xd1\x00\x00\x9e\xcb\x00\x00\x13%\x00\x00\x13\x15\x00\x00\x13\x15\x00\x00\x1f\xc7\x00\x00\x1f\xa8\x00\x00\x1f\xa8\x00\x00\x10\x00\x00\x00\x06\xe3\x00\x00\x040\x00\x00\x040\x00\x00\x10\x00\x00\x00\x03*\x00\x00\x 03*\x00\x00hP\x00\x00hP\x00\x00\x10\xee\x00\x00\x10\xee\x00\x00\x066\x00\x00\x066\x00\x00\x86\xe1\x00\x00\xa4\xa4\x00\x00\xa4V\x00\x00\x17\n\x00\x00\x17\xed\x00\x00\x17\xed\x00\x00\x08\xac\x00\x00\t\x10\x00\x00\t\x10\x00\x00\x10\x00\x00\x00\x10\x00\x00\x019\x04\x00\x01\x81>\x00\x01\xdc\xf8\x00\x02?\xb9\x00\x00\x10\x 00\x00\x00\x08\x9b\x00\x00\x05j\x00\x00\x05j\x00\x00\x10\x00\x00\x00\x04\x1b\x00\x00\x04\x1b\x00\x00"L\x00\x00"L\x00\x00b\xbc\x00\x00b\xbc\x00\x00\x1c\xc9\x00\x00\x1c\xc9\x00\x00'\x05\x00\x00'\x05\x00\x00Y\xab\x00\x00Y\xab\x00\x00~]\x00\x00~]\x00\x00W\x8b\x00\x00W\x8b\x00\x00%P\x00\x00)u\x00\x00)u\x00\x00|,\x00\x0 0\x8bs\x00\x00\x8a\xbd\x00\x00!\xdf\x00\x00$l\x00\x00$l\x00\x00/\xbc\x00\x001\xab\x00\x001\xab\x00\x00c\x94\x00\x00i\xcd\x00\x00i\xcd\x00\x00\xc4 \x00\x00\xb6P\x00\x00\xb3\xc7\x00\x00\\xe2\x00\x00p\xa4\x00\x00p\xa4\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x02v\x00\x00\x00y\x00\x00\x00\xe3\x00\x00\x01.\x00\x00\x01:\x 00\x00\x01:\x00\x00\x01:\x00\x00\x01,\x00\x00\x01+\x00\x00\x02\r\x00\x00\x00\xf1\x00\x00\x02B\x00\x00\x00\xf1\x00\x00\x00\xb3\x00\x00\x01>\x00\x00\x00\x8a\x00\x00\x00\xf1\x00\x00\x00[\x00\x00\x00\xb2\x00\x00\x00;\x00\x00\x00\x86\x00\x00\x00\xa1\x00\x00\x01\x91\x00\x00\x02W\x00\x00\x03P\x00\x00\x00\xa7\x00\x00\x01 \x 00\x00\x01{\x00\x00\x01{\x00\x00\x01{\x00\x00\x01i\x00\x00\x01\x00\x00\x02z\x00\x00\x012\x00\x00\x02\xaf\x00\x00\x012\x00\x00\x01 \x00\x00\x01\xd0\x00\x00\x00\xb9\x00\x00\x012\x00\x00\x00x\x00\x00\x00\xd7\x00\x00\x00H\x00\x00\x00\x96\x00\x00\x00\xcd\x00\x00\x01\xd1\x00\x00\x02\xac\x00\x00\x04N\x00\x00\x00\xdf\x00\x 00\x01m\x00\x00\x01\xbc\x00\x00\x01\xbc\x00\x00\x01\xbc\x00\x00\x01\xb6\x00\x00\x01\xad\x00\x00\x02\xf4\x00\x00\x01\x80\x00\x00\x03!\x00\x00\x01\x80\x00\x00\x01a\x00\x00\x02*\x00\x00\x00\xf1\x00\x00\x01\x80\x00\x00\x00\x9e\x00\x00\x01\x0c\x00\x00\x00Z\x00\x00\x00\xae\x00\x00\x00\xfd\x00\x00\x02\x1b\x00\x00\x03\x12\x 00\x00\n[\x00\x00\t\xec\x00\x00\t\xec\x00\x00\x00\x1f\x00\x00\x00\x1b\x00\x00\x00\x1b\x00\x00\'\t\x00\x008w\x00\x00K\xdd\x00\x00\x10\x00\x00\x00\x02\x93\x00\x00\x00!\x00\x00\x06\x8b\x00\x00\x073\x00\x00\x06\xa8\x00\x00\x07h\x00\x00\x06\xac\x00\x00\x01}\x00\x00\x10\x00\x00\x00\x06\n\x00\x00\x03\x96\x00\x00\x03\x96\x0 0\x00\x10\x00\x00\x00\x02\xb4\x00\x00\x02\xb4\x00\x00\x0c\x9d\x00\x00\x0c\x9d\x00\x00\x1bf\x00\x00\x11S\x00\x00\x11S\x00\x00\x10\x00\x00\x00\x06\x1c\x00\x00\x03\xff\x00\x00\x03\xff\x00\x00\x10\x00\x00\x00\x02\xf8\x00\x00\x02\xf8\x00\x00\x93\xf5\x00\x00\x93\xf5\x00\x000\xa8\x00\x000\xa8\x00\x008\xf5\x00\x008\xf5\x00\ x00\xbd\x89\x00\x00\xbe\xa8\x00\x00\xbd\xbf\x00\x006\x89\x00\x00@\x84\x00\x00@K\x00\x00=\xda\x00\x00JU\x00\x00I\xbb\x00\x00\x10\x00\x00\x00\x10\x00\x00\x05\x14\xc5\x00\x04\xe5\x84\x00\x00\x10\x00\x00\x00\x00\xe9\x00\x01\x1d\x84\x00\x00\xe6\xcb\x00\x00\x10\x00\x00\x03\xafq\x00\x01J\xf1\x00\tp\x9f\x00\x00\x10\x00\x00\ x03|\x96\x00\x012X\x00\x03\xc9n\x00\x00\x10\x00\x00\x05\x85k\x00\x01\xef\xc5\x00\x02\xc9\xb4\x00\x02\x13\xd4\x00\x02\xed\x01\x00\x02\xefq\x00\x02\xfb\x0e\x00\x03O=\x00\x02ii\x00\x03H\xc6\x00\x02\x95\x90\x00\x032]\x00\x03=o\x00\x03\x98\x05\x00\x02\xf0\xb0\x00\x03\x91W\x00\x03\x16r\x00\x03\xcc\x02\x00\x03\xda\x19\x00\ x04\x11!\x00\x03Q\xae\x00\x04\nn\x00\x04\xd4\xd4\x00\x04\ri\x00\x04\xd0V\x00\x14X\xe6\x00\x05\xe0\xee\x00\x00\xf7L\x00\x01\x1cU\x00\x01$\xab\x00\x00\x94\x0f\x00\x00\x91G\x00\x01\x8e[\x00\x01\xf8\r\x00\x039\xf3\x00\x07\x13\x91\x00\x05\xaf<\x00\x02\xaf\x02\x00\x02\xc4\x8b\x00\x02\xcf\xd9\x00\x02\xc5d\x00\x02\xc2\x9a\x 00\x02\xc5d\x00\x02\xc5d\x00\x02\xcd\xf8\x00\x02\xcb.\x00\x02\xb9n\x00\x03\xad\x00\x03\x9d\xa5\x00\x03\xbdJ\x00\x03\xc1\x14\x00\x03\xc1\x14\x00\x03\xc8\xde\x00\x03\xb1\x1e\x00\x04\x90\x02\x00\x04\xc6\x90\x00\x04\x90\x02\x00\x05d\xaf\x00\x00\x10\x00\x00\x00\x07\xe5\x00\x00\x05\x08\x00\x00\x05\x08\x00\x00\x10\x00\x00 \x00\x03\xd3\x00\x00\x03\xd3\x00\x00\x08\x17\x00\x00\x08\x17\x00\x00\x131\x00\x00\x131\x00\x00T\x1a\x00\x00T\x1a\x00\x00\x0e\xd2\x00\x00\x0e\xd2\x00\x00\x06F\x00\x00\x06F\x00\x00\x1e\x93\x00\x00\x1e\x93\x00\x00\x08\xa6\x00\x00\x0b\x92\x00\x00\x0b\x92\x00\x00\x16\n\x00\x00\x1d.\x00\x00\x1d.\x00\x00r\xff\x00\x00u"\x00 \x00u"\x00\x00\x18\xf1\x00\x00\x17\xa9\x00\x00\x17\xa9\x00\x00\x04a\x00\x00\x08\xf5\x00\x00\x08\xf5\x00\x00)z\x00\x00c\x00\x00c\x00\x00\x0ef\x00\x00\x0c\x91\x00\x00\x0c\x91\x00\x00\x05\xe2\x00\x00\x02\xa0\x00\x00\x02\xa0\x00\x00\x10\x00\x00\x00\t\xcd\x00\x00\t\xcd\x00\x00\x02.\x00\x00\x02.\x00\x00\x08a\x00\x00\x08 a\x00\x00\x04\x95\x00\x00\x04\x95\x00\x00\x10\x05\x00\x00\n\x8f\x00\x00\n\x8f\x00\x00\x07\x9d\x00\x00\x06\x1a\x00\x00\x06\x1a\x00\x00\x10\x00\x00\x00;F\x00\x006\xe0\x00\x00\x04N\x00\x006\x9c\x00\x00\x087\x00\x00\x046\x00\x00\x01\x18\x00\x00\x046\x00\x00\x07\xc9\x00\x00\x03\xca\x00\x00\x00\x9d\x00\x00\x03\xca\x00\x00 \x06\x96\x00\x00\x01v\x00\x00\x01v\x00\x00\x10\x00\x00\x00/2\x00\x00/2\x00\x00\x03*\x00\x00\x03*\x00\x00\x02\xdd\x00\x00\x02\xdd\x00\x00\x01V\x00\x00\x01V\x00\x00\x15\xb8\x00\x00\x15\xb8\x00\x00*"\x00\x00*"\x00\x00"-\x00\x00\x18\xc0\x00\x00\x028\x00\x00\x18\xc0\x00\x004\xb6\x00\x00/c\x00\x00\x04\x14\x00\x00/1\x00\x0 0\x10\x00\x00\x00\n\xfb\x00\x00\x07Z\x00\x00\x01"\x00\x00\x07Z\x00\x00\x10\x85\x00\x00\n]\x00\x00\x00\xee\x00\x00\n]\x00\x00R\xd4\x00\x00p\x12\x00\x00\x00\x9f\x00\x00p\x12\x00\x00\x07\x9f\x00\x00\x04\x8b\x00\x00\x04\x8b\x00\x00\x10\x00\x00\x00\x06\xdf\x00\x00\x06\xdf\x00\x00\x08\xdc\x00\x00\x08\xdc\x00\x00i'\x00\x0 0i'\x00\x00\x04j\x00\x00\x04j\x00\x00\x02\xc1\x00\x00\x02\xc1\x00\x00\x03X\x00\x00\x03X\x00\x00!\xf1\x00\x00!\xf1\x00\x00j\xd1\x00\x00j\xd1\x00\x00\xea \x00\x00\xea \x00\x00\x12\xc8\x00\x00\x12\xc8\x00\x00\x0bd\x00\x00\x0bd\x00\x00\x07\xcd\x00\x00\x03a\x00\x00\x00;\x00\x00\x03a\x00\x00\x1b0\x00\x00\x08\x87\x00\x00
x03\xef\x00\x00\x00d\x00\x00\x03\xef\x00\x00'\xde\x00\x00.\x18\x00\x00\x03\x8a\x00\x00.\x18\x00\x00\x1a\xc0\x00\x00{\xb7\x00\x00{\x0e\x00\x00\r\xfb\x00\x00z\xdf\x00\x01r4\x00\x01\xbd.\x00\x00\x03\xcf\x00\x01\xbc\xfc\x00\x00\x14~\x00\x00\x19\x14\x00\x00\x038\x00\x00\x19\x14\x00\x00\x14\x06\x00\x00\r\x8f\x00\x00\x00
xf3\x00\x00\r\x8f\x00\x00\x00\xb8\x00\x00\x01\xa9\x00\x00\x00c\x00\x00\x01\xa9\x00\x00\x10\x00\x00\x00\x01\xb8\x00\x00\x01\xb8\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\r\xdf\x00\x00\x9e\x05\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x0bA\xedA\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa 4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81 \xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81 \xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4
x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\x edA\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\x[1/4859] a4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x8 1\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x8 1\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xed\x81\xed\x81\xed\x81\xa4\x81\xa4 \x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\x a4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xedA\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4
x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xedA\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa 4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xedA\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x8 1\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4 \x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81
xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xedA\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4 \x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81
xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81
xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81
xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4 \x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81
xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xedA\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\x a4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81
xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\x a4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xedA\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa 4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xedA\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x 81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa 4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x8 1\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xedA\xed\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x 81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa 4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x 81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81
xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x8 1\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4 \x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4A\xed\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x81\xa4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x 00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0 0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00
x00\x00\x00\x00\x00\x00\x00^\xf1\xccS^\xf1\xccT^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde ^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccQ^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccQ^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\x cc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf 1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xccQ^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^ O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xc cR^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccS^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x8 4\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O \x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xcc R^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1
xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\x f1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^\xf1\xccQ^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccS^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR ^\xf1\xccR^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xccS^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84
xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xccQ^\xf1\xccS^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x 84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xccQ^\xf1\xccS^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^O\x84\xde^ \xf1\xccR^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xccQ^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccT^O\x84\xde^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^O\x84\xde^\xf1\xccR^O\x84\x de^\xf1\xccR^\xf1\xccT^\xf1\xccT^O\x84\xde^\xf1\xccR^\xf1\xccR^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1 \xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc?^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^\xf1\xcc?^\xf1\xcc>^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^
xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xd e^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^O\x84\xde^\xf1\xccR^\xf1\xccR^\xf1\xcc>^\xf1\xcc>\\x95 \xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\\x95\xde\xcb\r\n--4ef4823629244adfb6b80e485fb05df5--\r
n'

Actions #2

Updated by dkliban@redhat.com over 3 years ago

  • Status changed from NEW to CLOSED - WONTFIX

We are not supporting Python 2.7 for client libraries.

Actions #3

Updated by dkliban@redhat.com over 3 years ago

  • Subject changed from pulpcore-client - Artifact upload fails when using python27 to pulpcore-client - packaging does not state that python 2.7 is not supported
  • Status changed from CLOSED - WONTFIX to NEW

We should update the pulp-openapi-generator repository to build python clients with python 3.6+ support listed in the setup.py

Actions #4

Updated by fao89 over 3 years ago

  • Triaged changed from No to Yes
  • Sprint set to Sprint 78

we also need to update the docs: https://github.com/pulp/pulp_file/pull/416

Actions #5

Updated by rchan over 3 years ago

  • Sprint changed from Sprint 78 to Sprint 79
Actions #6

Updated by dalley over 3 years ago

  • Status changed from NEW to ASSIGNED
  • Assignee set to dalley
Actions #7

Updated by dalley over 3 years ago

  • Status changed from ASSIGNED to POST

@Fabricio, since your PR is still open, would you mind the relevant line to your PR?

https://github.com/pulp/pulp-openapi-generator/pull/36

Added by dalley over 3 years ago

Revision d8a54809 | View on GitHub

Add a Python3-only restriction to the generated client bindings

closes: #7110 https://pulp.plan.io/issues/7110

Actions #8

Updated by dalley over 3 years ago

  • Status changed from POST to MODIFIED
Actions #9

Updated by ttereshc over 3 years ago

  • Sprint/Milestone set to 3.8.0
Actions #10

Updated by ttereshc over 3 years ago

  • Status changed from MODIFIED to CLOSED - CURRENTRELEASE

Also available in: Atom PDF