From 82b92e3cd180723a354cdeb0f0f1d593f1b5eb0d Mon Sep 17 00:00:00 2001 From: Priyanshu Singh Date: Fri, 13 Feb 2026 21:05:08 +0530 Subject: [PATCH 001/110] gh-143637: Fix re-entrant mutation of ancillary data in socket.sendmsg() (#143892) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Victor Stinner Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> --- Lib/test/test_socket.py | 18 ++++++++++++++++++ ...6-01-17-08-44-25.gh-issue-143637.qyPqDo.rst | 1 + Modules/socketmodule.c | 13 ++++++++----- 3 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-01-17-08-44-25.gh-issue-143637.qyPqDo.rst diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 934b7137096bc0..3806ad988db214 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2222,6 +2222,24 @@ def test_addressinfo_enum(self): source=_socket) enum._test_simple_enum(CheckedAddressInfo, socket.AddressInfo) + @unittest.skipUnless(hasattr(socket.socket, "sendmsg"),"sendmsg not supported") + def test_sendmsg_reentrant_ancillary_mutation(self): + + class Mut: + def __index__(self): + seq.clear() + return 0 + + seq = [ + (socket.SOL_SOCKET, Mut(), b'x'), + (socket.SOL_SOCKET, 0, b'x'), + ] + + left, right = socket.socketpair() + self.addCleanup(left.close) + self.addCleanup(right.close) + self.assertRaises(OSError, left.sendmsg, [b'x'], seq) + @unittest.skipUnless(HAVE_SOCKET_CAN, 'SocketCan required for this test.') class BasicCANTest(unittest.TestCase): diff --git a/Misc/NEWS.d/next/Library/2026-01-17-08-44-25.gh-issue-143637.qyPqDo.rst b/Misc/NEWS.d/next/Library/2026-01-17-08-44-25.gh-issue-143637.qyPqDo.rst new file mode 100644 index 00000000000000..cbb21194d5b387 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-01-17-08-44-25.gh-issue-143637.qyPqDo.rst @@ -0,0 +1 @@ +Fixed a crash in socket.sendmsg() that could occur if ancillary data is mutated re-entrantly during argument parsing. diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index ee78ad01598262..d4df40c78e8a4f 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -4983,11 +4983,13 @@ _socket_socket_sendmsg_impl(PySocketSockObject *s, PyObject *data_arg, if (cmsg_arg == NULL) ncmsgs = 0; else { - if ((cmsg_fast = PySequence_Fast(cmsg_arg, - "sendmsg() argument 2 must be an " - "iterable")) == NULL) + cmsg_fast = PySequence_Tuple(cmsg_arg); + if (cmsg_fast == NULL) { + PyErr_SetString(PyExc_TypeError, + "sendmsg() argument 2 must be an iterable"); goto finally; - ncmsgs = PySequence_Fast_GET_SIZE(cmsg_fast); + } + ncmsgs = PyTuple_GET_SIZE(cmsg_fast); } #ifndef CMSG_SPACE @@ -5007,8 +5009,9 @@ _socket_socket_sendmsg_impl(PySocketSockObject *s, PyObject *data_arg, controllen = controllen_last = 0; while (ncmsgbufs < ncmsgs) { size_t bufsize, space; + PyObject *item = PyTuple_GET_ITEM(cmsg_fast, ncmsgbufs); - if (!PyArg_Parse(PySequence_Fast_GET_ITEM(cmsg_fast, ncmsgbufs), + if (!PyArg_Parse(item, "(iiy*):[sendmsg() ancillary data items]", &cmsgs[ncmsgbufs].level, &cmsgs[ncmsgbufs].type, From d625f7da33bf8eb57fb7e1a05deae3f68bf4d00f Mon Sep 17 00:00:00 2001 From: Colin McAllister Date: Fri, 13 Feb 2026 11:17:53 -0600 Subject: [PATCH 002/110] gh-144787: [tests] Allow TLS v1.2 to be minimum version (GH-144790) Allow TLS v1.2 to be minimum version Updates test_min_max_version to allow TLS v1.2 to be minimum version if TLS 1.0 and 1.1 are disabled in OpenSSL. --- Lib/test/test_ssl.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 6023c89bca03f9..7e9ba735b3ce66 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -1156,7 +1156,12 @@ def test_min_max_version(self): ctx.maximum_version = ssl.TLSVersion.MINIMUM_SUPPORTED self.assertIn( ctx.maximum_version, - {ssl.TLSVersion.TLSv1, ssl.TLSVersion.TLSv1_1, ssl.TLSVersion.SSLv3} + { + ssl.TLSVersion.TLSv1, + ssl.TLSVersion.TLSv1_1, + ssl.TLSVersion.TLSv1_2, + ssl.TLSVersion.SSLv3, + } ) ctx.minimum_version = ssl.TLSVersion.MAXIMUM_SUPPORTED From 928602c0ac385eca81b90956ba8d36d04e7dd6de Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 13 Feb 2026 12:48:52 -0600 Subject: [PATCH 003/110] gh-144551: Update Windows builds to use OpenSSL 3.0.19 (GH-144793) --- .../2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst | 1 + Misc/externals.spdx.json | 8 ++++---- PCbuild/get_externals.bat | 4 ++-- PCbuild/python.props | 4 ++-- PCbuild/readme.txt | 2 +- 5 files changed, 10 insertions(+), 9 deletions(-) create mode 100644 Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst diff --git a/Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst b/Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst new file mode 100644 index 00000000000000..81ff2f4a18c1e7 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst @@ -0,0 +1 @@ +Updated bundled version of OpenSSL to 3.0.19. diff --git a/Misc/externals.spdx.json b/Misc/externals.spdx.json index dba01de8352d52..a4321a8b9d7c1c 100644 --- a/Misc/externals.spdx.json +++ b/Misc/externals.spdx.json @@ -70,21 +70,21 @@ "checksums": [ { "algorithm": "SHA256", - "checksumValue": "9b07560b6c1afa666bd78b8d3aa5c83fdda02149afdf048596d5b0e0dac1ee55" + "checksumValue": "c6ea8a5423f3966923060db2089f869017dfb10bcf2037394146e7a74caec0a8" } ], - "downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/openssl-3.0.18.tar.gz", + "downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/openssl-3.0.19.tar.gz", "externalRefs": [ { "referenceCategory": "SECURITY", - "referenceLocator": "cpe:2.3:a:openssl:openssl:3.0.18:*:*:*:*:*:*:*", + "referenceLocator": "cpe:2.3:a:openssl:openssl:3.0.19:*:*:*:*:*:*:*", "referenceType": "cpe23Type" } ], "licenseConcluded": "NOASSERTION", "name": "openssl", "primaryPackagePurpose": "SOURCE", - "versionInfo": "3.0.18" + "versionInfo": "3.0.19" }, { "SPDXID": "SPDXRef-PACKAGE-sqlite", diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index 9d02e2121cc623..2aed6cfa72d5a2 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -54,7 +54,7 @@ echo.Fetching external libraries... set libraries= set libraries=%libraries% bzip2-1.0.8 if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4 -if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.0.18 +if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.0.19 set libraries=%libraries% mpdecimal-4.0.0 set libraries=%libraries% sqlite-3.50.4.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.15.0 @@ -79,7 +79,7 @@ echo.Fetching external binaries... set binaries= if NOT "%IncludeLibffi%"=="false" set binaries=%binaries% libffi-3.4.4 -if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-3.0.18 +if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-3.0.19 if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.15.0 if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06 if NOT "%IncludeLLVM%"=="false" set binaries=%binaries% llvm-21.1.4.0 diff --git a/PCbuild/python.props b/PCbuild/python.props index 7840e2a1cfc8e2..dcefc28058609f 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -82,8 +82,8 @@ $(libffiDir)$(ArchName)\ $(libffiOutDir)include $(ExternalsDir)\mpdecimal-4.0.0\ - $(ExternalsDir)openssl-3.0.18\ - $(ExternalsDir)openssl-bin-3.0.18\$(ArchName)\ + $(ExternalsDir)openssl-3.0.19\ + $(ExternalsDir)openssl-bin-3.0.19\$(ArchName)\ $(opensslOutDir)include $(ExternalsDir)\nasm-2.11.06\ $(ExternalsDir)\zlib-1.3.1\ diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index c5d38296070e02..dc7b6acb9c043a 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -218,7 +218,7 @@ _lzma https://tukaani.org/xz/ _ssl - Python wrapper for version 3.0.15 of the OpenSSL secure sockets + Python wrapper for version 3.0.19 of the OpenSSL secure sockets library, which is itself downloaded from our binaries repository at https://github.com/python/cpython-bin-deps and built by openssl.vcxproj. From b933ef92619db2a103a26c70e69b6d31978eb566 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 13 Feb 2026 13:06:07 -0600 Subject: [PATCH 004/110] gh-144551: Update CI to use latest OpenSSL versions (GH-144794) Also update _ssl_data_36.h to include an added symbol from 3.6.1. --- .github/workflows/build.yml | 2 +- Modules/_ssl_data_36.h | 9 +++++++-- Tools/ssl/multissltests.py | 10 +++++----- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 046e678f8c1b4b..f9a6fb61272e44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -261,7 +261,7 @@ jobs: # Keep 1.1.1w in our list despite it being upstream EOL and otherwise # unsupported as it most resembles other 1.1.1-work-a-like ssl APIs # supported by important vendors such as AWS-LC. - openssl_ver: [1.1.1w, 3.0.18, 3.3.5, 3.4.3, 3.5.4, 3.6.0] + openssl_ver: [1.1.1w, 3.0.19, 3.3.6, 3.4.4, 3.5.5, 3.6.1] # See Tools/ssl/make_ssl_data.py for notes on adding a new version env: OPENSSL_VER: ${{ matrix.openssl_ver }} diff --git a/Modules/_ssl_data_36.h b/Modules/_ssl_data_36.h index 02b8b66e80fce2..5a2e0d067e2dc7 100644 --- a/Modules/_ssl_data_36.h +++ b/Modules/_ssl_data_36.h @@ -1,6 +1,6 @@ /* File generated by Tools/ssl/make_ssl_data.py */ -/* Generated on 2026-01-17T13:03:49.335767+00:00 */ -/* Generated from Git commit openssl-3.6.0-0-g7b371d80d9 */ +/* Generated on 2026-02-13T18:19:19.227109+00:00 */ +/* Generated from Git commit openssl-3.6.1-0-gc9a9e5b10 */ /* generated from args.lib2errnum */ static struct py_ssl_library_code library_codes[] = { @@ -1668,6 +1668,11 @@ static struct py_ssl_error_code error_codes[] = { #else {"CERTIFICATE_VERIFY_ERROR", 46, 100}, #endif + #ifdef CMS_R_CIPHER_AEAD_IN_ENVELOPED_DATA + {"CIPHER_AEAD_IN_ENVELOPED_DATA", ERR_LIB_CMS, CMS_R_CIPHER_AEAD_IN_ENVELOPED_DATA}, + #else + {"CIPHER_AEAD_IN_ENVELOPED_DATA", 46, 200}, + #endif #ifdef CMS_R_CIPHER_AEAD_SET_TAG_ERROR {"CIPHER_AEAD_SET_TAG_ERROR", ERR_LIB_CMS, CMS_R_CIPHER_AEAD_SET_TAG_ERROR}, #else diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 828fb8b44f9b08..a08e0518f457f5 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -49,11 +49,11 @@ ] OPENSSL_RECENT_VERSIONS = [ - "3.0.18", - "3.3.5", - "3.4.3", - "3.5.4", - "3.6.0", + "3.0.19", + "3.3.6", + "3.4.4", + "3.5.5", + "3.6.1", # See make_ssl_data.py for notes on adding a new version. ] From 629a363ddd2889f023d5925506e61f5b6647accd Mon Sep 17 00:00:00 2001 From: Rafael Weingartner-Ortner <38643099+RafaelWO@users.noreply.github.com> Date: Fri, 13 Feb 2026 20:51:56 +0100 Subject: [PATCH 005/110] gh-136672: Docs: Move parts of Enum HOWTO to API Docs (GH-139176) To avoid duplicate content in the Enum HOWTO and API documentation which is not automatically synced, the section about supported __dunder__ and _sunder names is moved from HOWTO to API docs. See also https://github.com/python/cpython/pull/136791 --- Doc/howto/enum.rst | 82 +++++++------------------------------------- Doc/library/enum.rst | 57 ++++++++++++++++++++++++------ 2 files changed, 58 insertions(+), 81 deletions(-) diff --git a/Doc/howto/enum.rst b/Doc/howto/enum.rst index 7713aede6d564a..93850b57af2c65 100644 --- a/Doc/howto/enum.rst +++ b/Doc/howto/enum.rst @@ -965,75 +965,16 @@ want one of them to be the value:: Finer Points -^^^^^^^^^^^^ - -Supported ``__dunder__`` names -"""""""""""""""""""""""""""""" - -:attr:`~enum.EnumType.__members__` is a read-only ordered mapping of ``member_name``:``member`` -items. It is only available on the class. - -:meth:`~object.__new__`, if specified, must create and return the enum members; it is -also a very good idea to set the member's :attr:`~Enum._value_` appropriately. Once -all the members are created it is no longer used. - - -Supported ``_sunder_`` names -"""""""""""""""""""""""""""" +------------ -- :attr:`~Enum._name_` -- name of the member -- :attr:`~Enum._value_` -- value of the member; can be set in ``__new__`` -- :meth:`~Enum._missing_` -- a lookup function used when a value is not found; - may be overridden -- :attr:`~Enum._ignore_` -- a list of names, either as a :class:`list` or a - :class:`str`, that will not be transformed into members, and will be removed - from the final class -- :meth:`~Enum._generate_next_value_` -- used to get an appropriate value for - an enum member; may be overridden -- :meth:`~Enum._add_alias_` -- adds a new name as an alias to an existing - member. -- :meth:`~Enum._add_value_alias_` -- adds a new value as an alias to an - existing member. See `MultiValueEnum`_ for an example. +Supported ``__dunder__`` and ``_sunder_`` names +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - .. note:: - - For standard :class:`Enum` classes the next value chosen is the highest - value seen incremented by one. - - For :class:`Flag` classes the next value chosen will be the next highest - power-of-two. - - .. versionchanged:: 3.13 - Prior versions would use the last seen value instead of the highest value. - -.. versionadded:: 3.6 ``_missing_``, ``_order_``, ``_generate_next_value_`` -.. versionadded:: 3.7 ``_ignore_`` -.. versionadded:: 3.13 ``_add_alias_``, ``_add_value_alias_`` - -To help keep Python 2 / Python 3 code in sync an :attr:`~Enum._order_` attribute can -be provided. It will be checked against the actual order of the enumeration -and raise an error if the two do not match:: - - >>> class Color(Enum): - ... _order_ = 'RED GREEN BLUE' - ... RED = 1 - ... BLUE = 3 - ... GREEN = 2 - ... - Traceback (most recent call last): - ... - TypeError: member order does not match _order_: - ['RED', 'BLUE', 'GREEN'] - ['RED', 'GREEN', 'BLUE'] - -.. note:: - - In Python 2 code the :attr:`~Enum._order_` attribute is necessary as definition - order is lost before it can be recorded. +The supported ``__dunder__`` and ``_sunder_`` names can be found in the :ref:`Enum API documentation `. _Private__names -""""""""""""""" +^^^^^^^^^^^^^^^ :ref:`Private names ` are not converted to enum members, but remain normal attributes. @@ -1042,7 +983,7 @@ but remain normal attributes. ``Enum`` member type -"""""""""""""""""""" +^^^^^^^^^^^^^^^^^^^^ Enum members are instances of their enum class, and are normally accessed as ``EnumClass.member``. In certain situations, such as writing custom enum @@ -1055,7 +996,7 @@ recommended. Creating members that are mixed with other data types -""""""""""""""""""""""""""""""""""""""""""""""""""""" +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ When subclassing other data types, such as :class:`int` or :class:`str`, with an :class:`Enum`, all values after the ``=`` are passed to that data type's @@ -1069,7 +1010,7 @@ constructor. For example:: Boolean value of ``Enum`` classes and members -""""""""""""""""""""""""""""""""""""""""""""" +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Enum classes that are mixed with non-:class:`Enum` types (such as :class:`int`, :class:`str`, etc.) are evaluated according to the mixed-in @@ -1084,7 +1025,7 @@ Plain :class:`Enum` classes always evaluate as :data:`True`. ``Enum`` classes with methods -""""""""""""""""""""""""""""" +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ If you give your enum subclass extra methods, like the `Planet`_ class below, those methods will show up in a :func:`dir` of the member, @@ -1097,7 +1038,7 @@ but not of the class:: Combining members of ``Flag`` -""""""""""""""""""""""""""""" +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Iterating over a combination of :class:`Flag` members will only return the members that are comprised of a single bit:: @@ -1117,7 +1058,7 @@ are comprised of a single bit:: ``Flag`` and ``IntFlag`` minutia -"""""""""""""""""""""""""""""""" +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Using the following snippet for our examples:: @@ -1478,6 +1419,7 @@ alias:: behaviors as well as disallowing aliases. If the only desired change is disallowing aliases, the :func:`unique` decorator can be used instead. +.. _multi-value-enum: MultiValueEnum ^^^^^^^^^^^^^^^^^ diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index ec7cbfb52b6e99..de56048f56a243 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -307,6 +307,28 @@ Data Types No longer used, kept for backward compatibility. (class attribute, removed during class creation). + The :attr:`~Enum._order_` attribute can be provided to help keep Python 2 / Python 3 code in sync. + It will be checked against the actual order of the enumeration and raise an error if the two do not match:: + + >>> class Color(Enum): + ... _order_ = 'RED GREEN BLUE' + ... RED = 1 + ... BLUE = 3 + ... GREEN = 2 + ... + Traceback (most recent call last): + ... + TypeError: member order does not match _order_: + ['RED', 'BLUE', 'GREEN'] + ['RED', 'GREEN', 'BLUE'] + + .. note:: + + In Python 2 code the :attr:`~Enum._order_` attribute is necessary as definition + order is lost before it can be recorded. + + .. versionadded:: 3.6 + .. attribute:: Enum._ignore_ ``_ignore_`` is only used during creation and is removed from the @@ -316,6 +338,8 @@ Data Types names will also be removed from the completed enumeration. See :ref:`TimePeriod ` for an example. + .. versionadded:: 3.7 + .. method:: Enum.__dir__(self) Returns ``['__class__', '__doc__', '__module__', 'name', 'value']`` and @@ -346,7 +370,16 @@ Data Types :last_values: A list of the previous values. A *staticmethod* that is used to determine the next value returned by - :class:`auto`:: + :class:`auto`. + + .. note:: + For standard :class:`Enum` classes the next value chosen is the highest + value seen incremented by one. + + For :class:`Flag` classes the next value chosen will be the next highest + power-of-two. + + This method may be overridden, e.g.:: >>> from enum import auto, Enum >>> class PowersOfThree(Enum): @@ -359,6 +392,10 @@ Data Types >>> PowersOfThree.SECOND.value 9 + .. versionadded:: 3.6 + .. versionchanged:: 3.13 + Prior versions would use the last seen value instead of the highest value. + .. method:: Enum.__init__(self, *args, **kwds) By default, does nothing. If multiple values are given in the member @@ -397,6 +434,8 @@ Data Types >>> Build('deBUG') + .. versionadded:: 3.6 + .. method:: Enum.__new__(cls, *args, **kwds) By default, doesn't exist. If specified, either in the enum class @@ -490,7 +529,8 @@ Data Types >>> Color(42) - Raises a :exc:`ValueError` if the value is already linked with a different member. + | Raises a :exc:`ValueError` if the value is already linked with a different member. + | See :ref:`multi-value-enum` for an example. .. versionadded:: 3.13 @@ -889,6 +929,8 @@ Data Types --------------- +.. _enum-dunder-sunder: + Supported ``__dunder__`` names """""""""""""""""""""""""""""" @@ -896,7 +938,7 @@ Supported ``__dunder__`` names items. It is only available on the class. :meth:`~Enum.__new__`, if specified, must create and return the enum members; -it is also a very good idea to set the member's :attr:`!_value_` appropriately. +it is also a very good idea to set the member's :attr:`~Enum._value_` appropriately. Once all the members are created it is no longer used. @@ -912,17 +954,10 @@ Supported ``_sunder_`` names from the final class - :attr:`~Enum._order_` -- no longer used, kept for backward compatibility (class attribute, removed during class creation) + - :meth:`~Enum._generate_next_value_` -- used to get an appropriate value for an enum member; may be overridden - .. note:: - - For standard :class:`Enum` classes the next value chosen is the highest - value seen incremented by one. - - For :class:`Flag` classes the next value chosen will be the next highest - power-of-two. - - :meth:`~Enum._add_alias_` -- adds a new name as an alias to an existing member. - :meth:`~Enum._add_value_alias_` -- adds a new value as an alias to an From 543f56fe8d264315f2413414638216fac01f3ade Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 13 Feb 2026 15:43:05 -0600 Subject: [PATCH 006/110] gh-144551: Update Windows builds to use OpenSSL 3.5.5 (GH-144796) --- .../2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst | 2 +- Misc/externals.spdx.json | 8 ++++---- PCbuild/get_externals.bat | 4 ++-- PCbuild/python.props | 4 ++-- PCbuild/readme.txt | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst b/Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst index 81ff2f4a18c1e7..810985a352baeb 100644 --- a/Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst +++ b/Misc/NEWS.d/next/Windows/2026-02-13-11-07-51.gh-issue-144551.ENtMYD.rst @@ -1 +1 @@ -Updated bundled version of OpenSSL to 3.0.19. +Updated bundled version of OpenSSL to 3.5.5. diff --git a/Misc/externals.spdx.json b/Misc/externals.spdx.json index a4321a8b9d7c1c..c96367f57fb3f2 100644 --- a/Misc/externals.spdx.json +++ b/Misc/externals.spdx.json @@ -70,21 +70,21 @@ "checksums": [ { "algorithm": "SHA256", - "checksumValue": "c6ea8a5423f3966923060db2089f869017dfb10bcf2037394146e7a74caec0a8" + "checksumValue": "619b30acf7d9b13c9d0ba90d17349e8b524c380cd23d39334b143f74dc4e5ec9" } ], - "downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/openssl-3.0.19.tar.gz", + "downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/openssl-3.5.5.tar.gz", "externalRefs": [ { "referenceCategory": "SECURITY", - "referenceLocator": "cpe:2.3:a:openssl:openssl:3.0.19:*:*:*:*:*:*:*", + "referenceLocator": "cpe:2.3:a:openssl:openssl:3.5.5:*:*:*:*:*:*:*", "referenceType": "cpe23Type" } ], "licenseConcluded": "NOASSERTION", "name": "openssl", "primaryPackagePurpose": "SOURCE", - "versionInfo": "3.0.19" + "versionInfo": "3.5.5" }, { "SPDXID": "SPDXRef-PACKAGE-sqlite", diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index 2aed6cfa72d5a2..f80a025fb3bc78 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -54,7 +54,7 @@ echo.Fetching external libraries... set libraries= set libraries=%libraries% bzip2-1.0.8 if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4 -if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.0.19 +if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.5.5 set libraries=%libraries% mpdecimal-4.0.0 set libraries=%libraries% sqlite-3.50.4.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.15.0 @@ -79,7 +79,7 @@ echo.Fetching external binaries... set binaries= if NOT "%IncludeLibffi%"=="false" set binaries=%binaries% libffi-3.4.4 -if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-3.0.19 +if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-3.5.5 if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.15.0 if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06 if NOT "%IncludeLLVM%"=="false" set binaries=%binaries% llvm-21.1.4.0 diff --git a/PCbuild/python.props b/PCbuild/python.props index dcefc28058609f..82e6365bb397a5 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -82,8 +82,8 @@ $(libffiDir)$(ArchName)\ $(libffiOutDir)include $(ExternalsDir)\mpdecimal-4.0.0\ - $(ExternalsDir)openssl-3.0.19\ - $(ExternalsDir)openssl-bin-3.0.19\$(ArchName)\ + $(ExternalsDir)openssl-3.5.5\ + $(ExternalsDir)openssl-bin-3.5.5\$(ArchName)\ $(opensslOutDir)include $(ExternalsDir)\nasm-2.11.06\ $(ExternalsDir)\zlib-1.3.1\ diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index dc7b6acb9c043a..b98a956034c537 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -218,7 +218,7 @@ _lzma https://tukaani.org/xz/ _ssl - Python wrapper for version 3.0.19 of the OpenSSL secure sockets + Python wrapper for version 3.5 of the OpenSSL secure sockets library, which is itself downloaded from our binaries repository at https://github.com/python/cpython-bin-deps and built by openssl.vcxproj. From 7359bb8dacc055bdcbb61f8fa4e375b25eedffd9 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 13 Feb 2026 16:50:15 -0600 Subject: [PATCH 007/110] gh-144551: Update OpenSSL version references in Mac/BuildScript/ (GH-144810) --- Mac/BuildScript/README.rst | 2 +- Mac/BuildScript/resources/ReadMe.rtf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mac/BuildScript/README.rst b/Mac/BuildScript/README.rst index e44e74f3a49234..54341a81c26743 100644 --- a/Mac/BuildScript/README.rst +++ b/Mac/BuildScript/README.rst @@ -73,7 +73,7 @@ download them. - builds the following third-party libraries - * OpenSSL 3.0.x + * OpenSSL 3.5.x * Tcl/Tk 8.6.x * NCurses * SQLite diff --git a/Mac/BuildScript/resources/ReadMe.rtf b/Mac/BuildScript/resources/ReadMe.rtf index ee5ba4707dfea4..d81bcd5c745baa 100644 --- a/Mac/BuildScript/resources/ReadMe.rtf +++ b/Mac/BuildScript/resources/ReadMe.rtf @@ -19,7 +19,7 @@ \f1\b \cf0 \ul \ulc0 Certificate verification and OpenSSL\ \f0\b0 \ulnone \ -This package includes its own private copy of OpenSSL 3.0. The trust certificates in system and user keychains managed by the +This package includes its own private copy of OpenSSL 3.5. The trust certificates in system and user keychains managed by the \f2\i Keychain Access \f0\i0 application and the \f2\i security From fdbc135f9cf57599cca8aeeed947d0b736fdb197 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 13 Feb 2026 17:02:11 -0600 Subject: [PATCH 008/110] gh-144551: Update various CI jobs to OpenSSL 3.5 (GH-144808) Also includes a fix to the address sanitizer build to build the `_ssl` module against the expected OpenSSL build. --- .github/workflows/build.yml | 6 +++--- .github/workflows/reusable-macos.yml | 4 ++-- .github/workflows/reusable-ubuntu.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f9a6fb61272e44..f302cb049326b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -428,7 +428,7 @@ jobs: needs: build-context if: needs.build-context.outputs.run-ubuntu == 'true' env: - OPENSSL_VER: 3.0.18 + OPENSSL_VER: 3.5.5 PYTHONSTRICTEXTENSIONBUILD: 1 steps: - uses: actions/checkout@v6 @@ -539,7 +539,7 @@ jobs: matrix: os: [ubuntu-24.04] env: - OPENSSL_VER: 3.0.18 + OPENSSL_VER: 3.5.5 PYTHONSTRICTEXTENSIONBUILD: 1 ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0 steps: @@ -574,7 +574,7 @@ jobs: run: | echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV" - name: Configure CPython - run: ./configure --config-cache --with-address-sanitizer --without-pymalloc + run: ./configure --config-cache --with-address-sanitizer --without-pymalloc --with-openssl="$OPENSSL_DIR" - name: Build CPython run: make -j4 - name: Display build info diff --git a/.github/workflows/reusable-macos.yml b/.github/workflows/reusable-macos.yml index 7eef66bd9d9324..6afbf6595d93e3 100644 --- a/.github/workflows/reusable-macos.yml +++ b/.github/workflows/reusable-macos.yml @@ -35,7 +35,7 @@ jobs: run: echo "IMAGE_OS_VERSION=${ImageOS}-${ImageVersion}" >> "$GITHUB_ENV" - name: Install Homebrew dependencies run: | - brew install pkg-config openssl@3.0 xz gdbm tcl-tk@9 make + brew install pkg-config openssl@3.5 xz gdbm tcl-tk@9 make # Because alternate versions are not symlinked into place by default: brew link --overwrite tcl-tk@9 - name: Configure CPython @@ -50,7 +50,7 @@ jobs: --enable-safety \ ${{ inputs.free-threading && '--disable-gil' || '' }} \ --prefix=/opt/python-dev \ - --with-openssl="$(brew --prefix openssl@3.0)" + --with-openssl="$(brew --prefix openssl@3.5)" - name: Build CPython if : ${{ inputs.free-threading || inputs.os != 'macos-15-intel' }} run: gmake -j8 diff --git a/.github/workflows/reusable-ubuntu.yml b/.github/workflows/reusable-ubuntu.yml index ad725e92f2b20f..03f41069b8430d 100644 --- a/.github/workflows/reusable-ubuntu.yml +++ b/.github/workflows/reusable-ubuntu.yml @@ -27,7 +27,7 @@ jobs: runs-on: ${{ inputs.os }} timeout-minutes: 60 env: - OPENSSL_VER: 3.0.18 + OPENSSL_VER: 3.5.5 PYTHONSTRICTEXTENSIONBUILD: 1 TERM: linux steps: From 75d4839fa9069241ca9c3ee45ad8369ef9777500 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sat, 14 Feb 2026 06:06:15 +0100 Subject: [PATCH 009/110] gh-138912: Improve MATCH_CLASS opcode performance (GH-138915) Only check for duplicates if there is at least one positional pattern. With a test case for duplicate keyword attributes. --- Lib/test/test_syntax.py | 6 ++ ...-09-15-13-28-48.gh-issue-138912.61EYbn.rst | 1 + Python/ceval.c | 67 ++++++++++--------- 3 files changed, 44 insertions(+), 30 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2025-09-15-13-28-48.gh-issue-138912.61EYbn.rst diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py index 19427f2469ec43..e48749626fccad 100644 --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -2345,6 +2345,12 @@ Traceback (most recent call last): SyntaxError: positional patterns follow keyword patterns + >>> match ...: + ... case Foo(y=1, x=2, y=3): + ... ... + Traceback (most recent call last): + SyntaxError: attribute name repeated in class pattern: y + >>> match ...: ... case C(a=b, c, d=e, f, g=h, i, j=k, ...): ... ... diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2025-09-15-13-28-48.gh-issue-138912.61EYbn.rst b/Misc/NEWS.d/next/Core_and_Builtins/2025-09-15-13-28-48.gh-issue-138912.61EYbn.rst new file mode 100644 index 00000000000000..f5d312a289fe21 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2025-09-15-13-28-48.gh-issue-138912.61EYbn.rst @@ -0,0 +1 @@ +Improve :opcode:`MATCH_CLASS` performance by up to 52% in certain cases. Patch by Marc Mueller. diff --git a/Python/ceval.c b/Python/ceval.c index 758b142d7a720e..ab2eef560370f5 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -509,15 +509,18 @@ match_class_attr(PyThreadState *tstate, PyObject *subject, PyObject *type, PyObject *name, PyObject *seen) { assert(PyUnicode_CheckExact(name)); - assert(PySet_CheckExact(seen)); - if (PySet_Contains(seen, name) || PySet_Add(seen, name)) { - if (!_PyErr_Occurred(tstate)) { - // Seen it before! - _PyErr_Format(tstate, PyExc_TypeError, - "%s() got multiple sub-patterns for attribute %R", - ((PyTypeObject*)type)->tp_name, name); + // Only check for duplicates if seen is not NULL. + if (seen != NULL) { + assert(PySet_CheckExact(seen)); + if (PySet_Contains(seen, name) || PySet_Add(seen, name)) { + if (!_PyErr_Occurred(tstate)) { + // Seen it before! + _PyErr_Format(tstate, PyExc_TypeError, + "%s() got multiple sub-patterns for attribute %R", + ((PyTypeObject*)type)->tp_name, name); + } + return NULL; } - return NULL; } PyObject *attr; (void)PyObject_GetOptionalAttr(subject, name, &attr); @@ -540,14 +543,26 @@ _PyEval_MatchClass(PyThreadState *tstate, PyObject *subject, PyObject *type, if (PyObject_IsInstance(subject, type) <= 0) { return NULL; } + // Short circuit if there aren't any arguments: + Py_ssize_t nkwargs = PyTuple_GET_SIZE(kwargs); + Py_ssize_t nattrs = nargs + nkwargs; + if (!nattrs) { + return PyTuple_New(0); + } // So far so good: - PyObject *seen = PySet_New(NULL); - if (seen == NULL) { - return NULL; + PyObject *seen = NULL; + // Only check for duplicates if there is at least one positional attribute + // and two or more attributes in total. Duplicate keyword attributes are + // detected during the compile stage and raise a SyntaxError. + if (nargs > 0 && nattrs > 1) { + seen = PySet_New(NULL); + if (seen == NULL) { + return NULL; + } } - PyObject *attrs = PyList_New(0); + PyObject *attrs = PyTuple_New(nattrs); if (attrs == NULL) { - Py_DECREF(seen); + Py_XDECREF(seen); return NULL; } // NOTE: From this point on, goto fail on failure: @@ -588,9 +603,8 @@ _PyEval_MatchClass(PyThreadState *tstate, PyObject *subject, PyObject *type, } if (match_self) { // Easy. Copy the subject itself, and move on to kwargs. - if (PyList_Append(attrs, subject) < 0) { - goto fail; - } + assert(PyTuple_GET_ITEM(attrs, 0) == NULL); + PyTuple_SET_ITEM(attrs, 0, Py_NewRef(subject)); } else { for (Py_ssize_t i = 0; i < nargs; i++) { @@ -606,36 +620,29 @@ _PyEval_MatchClass(PyThreadState *tstate, PyObject *subject, PyObject *type, if (attr == NULL) { goto fail; } - if (PyList_Append(attrs, attr) < 0) { - Py_DECREF(attr); - goto fail; - } - Py_DECREF(attr); + assert(PyTuple_GET_ITEM(attrs, i) == NULL); + PyTuple_SET_ITEM(attrs, i, attr); } } Py_CLEAR(match_args); } // Finally, the keyword subpatterns: - for (Py_ssize_t i = 0; i < PyTuple_GET_SIZE(kwargs); i++) { + for (Py_ssize_t i = 0; i < nkwargs; i++) { PyObject *name = PyTuple_GET_ITEM(kwargs, i); PyObject *attr = match_class_attr(tstate, subject, type, name, seen); if (attr == NULL) { goto fail; } - if (PyList_Append(attrs, attr) < 0) { - Py_DECREF(attr); - goto fail; - } - Py_DECREF(attr); + assert(PyTuple_GET_ITEM(attrs, nargs + i) == NULL); + PyTuple_SET_ITEM(attrs, nargs + i, attr); } - Py_SETREF(attrs, PyList_AsTuple(attrs)); - Py_DECREF(seen); + Py_XDECREF(seen); return attrs; fail: // We really don't care whether an error was raised or not... that's our // caller's problem. All we know is that the match failed. Py_XDECREF(match_args); - Py_DECREF(seen); + Py_XDECREF(seen); Py_DECREF(attrs); return NULL; } From 5922149a5033ec1151320864e605adf88f53f280 Mon Sep 17 00:00:00 2001 From: Yilei Date: Sat, 14 Feb 2026 03:41:28 -0800 Subject: [PATCH 010/110] gh-144766: Fix a crash in fork child process when perf support is enabled. (#144795) --- Lib/test/test_perf_profiler.py | 41 +++++++++++++++++++ ...-02-13-18-30-59.gh-issue-144766.JGu3x3.rst | 1 + Python/perf_trampoline.c | 6 +++ 3 files changed, 48 insertions(+) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-18-30-59.gh-issue-144766.JGu3x3.rst diff --git a/Lib/test/test_perf_profiler.py b/Lib/test/test_perf_profiler.py index 66348619073909..597e6599352049 100644 --- a/Lib/test/test_perf_profiler.py +++ b/Lib/test/test_perf_profiler.py @@ -170,6 +170,47 @@ def baz(): self.assertNotIn(f"py::bar:{script}", child_perf_file_contents) self.assertNotIn(f"py::baz:{script}", child_perf_file_contents) + @unittest.skipIf(support.check_bolt_optimized(), "fails on BOLT instrumented binaries") + def test_trampoline_works_after_fork_with_many_code_objects(self): + code = """if 1: + import gc, os, sys, signal + + # Create many code objects so trampoline_refcount > 1 + for i in range(50): + exec(compile(f"def _dummy_{i}(): pass", f"", "exec")) + + pid = os.fork() + if pid == 0: + # Child: create and destroy new code objects, + # then collect garbage. If the old code watcher + # survived the fork, the double-decrement of + # trampoline_refcount will cause a SIGSEGV. + for i in range(50): + exec(compile(f"def _child_{i}(): pass", f"", "exec")) + gc.collect() + os._exit(0) + else: + _, status = os.waitpid(pid, 0) + if os.WIFSIGNALED(status): + print(f"FAIL: child killed by signal {os.WTERMSIG(status)}", file=sys.stderr) + sys.exit(1) + sys.exit(os.WEXITSTATUS(status)) + """ + with temp_dir() as script_dir: + script = make_script(script_dir, "perftest", code) + env = {**os.environ, "PYTHON_JIT": "0"} + with subprocess.Popen( + [sys.executable, "-Xperf", script], + text=True, + stderr=subprocess.PIPE, + stdout=subprocess.PIPE, + env=env, + ) as process: + stdout, stderr = process.communicate() + + self.assertEqual(process.returncode, 0, stderr) + self.assertEqual(stderr, "") + @unittest.skipIf(support.check_bolt_optimized(), "fails on BOLT instrumented binaries") def test_sys_api(self): for define_eval_hook in (False, True): diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-18-30-59.gh-issue-144766.JGu3x3.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-18-30-59.gh-issue-144766.JGu3x3.rst new file mode 100644 index 00000000000000..d9613c95af1915 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-18-30-59.gh-issue-144766.JGu3x3.rst @@ -0,0 +1 @@ +Fix a crash in fork child process when perf support is enabled. diff --git a/Python/perf_trampoline.c b/Python/perf_trampoline.c index c0dc1f7a49bdca..0d835f3b7f56a9 100644 --- a/Python/perf_trampoline.c +++ b/Python/perf_trampoline.c @@ -618,6 +618,12 @@ _PyPerfTrampoline_AfterFork_Child(void) int was_active = _PyIsPerfTrampolineActive(); _PyPerfTrampoline_Fini(); if (was_active) { + // After fork, Fini may leave the old code watcher registered + // if trampolined code objects from the parent still exist + // (trampoline_refcount > 0). Clear it unconditionally before + // Init registers a new one, to prevent two watchers sharing + // the same globals and double-decrementing trampoline_refcount. + perf_trampoline_reset_state(); _PyPerfTrampoline_Init(1); } } From 14cbd0e6afa98355bdc6749b8230fed4c9b21bd6 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Sat, 14 Feb 2026 15:09:01 +0100 Subject: [PATCH 011/110] remove unused _PyFunction_LookupByVersion (GH-144814) --- Include/internal/pycore_function.h | 1 - Objects/funcobject.c | 26 -------------------------- Python/optimizer.c | 1 - 3 files changed, 28 deletions(-) diff --git a/Include/internal/pycore_function.h b/Include/internal/pycore_function.h index 522e03c6696993..9c2121f59a4a0c 100644 --- a/Include/internal/pycore_function.h +++ b/Include/internal/pycore_function.h @@ -30,7 +30,6 @@ _PyFunction_IsVersionValid(uint32_t version) extern uint32_t _PyFunction_GetVersionForCurrentState(PyFunctionObject *func); PyAPI_FUNC(void) _PyFunction_SetVersion(PyFunctionObject *func, uint32_t version); void _PyFunction_ClearCodeByVersion(uint32_t version); -PyFunctionObject *_PyFunction_LookupByVersion(uint32_t version, PyObject **p_code); extern PyObject *_Py_set_function_type_params( PyThreadState* unused, PyObject *func, PyObject *type_params); diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 8f4ff4e42392c2..ee0c46a95b9708 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -373,32 +373,6 @@ _PyFunction_ClearCodeByVersion(uint32_t version) #endif } -PyFunctionObject * -_PyFunction_LookupByVersion(uint32_t version, PyObject **p_code) -{ -#ifdef Py_GIL_DISABLED - return NULL; -#else - PyInterpreterState *interp = _PyInterpreterState_GET(); - struct _func_version_cache_item *slot = get_cache_item(interp, version); - if (slot->code) { - assert(PyCode_Check(slot->code)); - PyCodeObject *code = (PyCodeObject *)slot->code; - if (code->co_version == version) { - *p_code = slot->code; - } - } - else { - *p_code = NULL; - } - if (slot->func && slot->func->func_version == version) { - assert(slot->func->func_code == slot->code); - return slot->func; - } - return NULL; -#endif -} - uint32_t _PyFunction_GetVersionForCurrentState(PyFunctionObject *func) { diff --git a/Python/optimizer.c b/Python/optimizer.c index bf5d8a28264635..12ef7c3fc0adf5 100644 --- a/Python/optimizer.c +++ b/Python/optimizer.c @@ -8,7 +8,6 @@ #include "pycore_bitutils.h" // _Py_popcount32() #include "pycore_ceval.h" // _Py_set_eval_breaker_bit #include "pycore_code.h" // _Py_GetBaseCodeUnit -#include "pycore_function.h" // _PyFunction_LookupByVersion() #include "pycore_interpframe.h" #include "pycore_object.h" // _PyObject_GC_UNTRACK() #include "pycore_opcode_metadata.h" // _PyOpcode_OpName[] From caac966b0051578b60b4b07fe341174f25d9f8b1 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Sat, 14 Feb 2026 18:39:10 +0100 Subject: [PATCH 012/110] fix warnings in jit builds (GH-144817) --- Python/jit.c | 2 +- Python/optimizer.c | 5 +++-- Python/optimizer_analysis.c | 8 ++++---- Python/optimizer_bytecodes.c | 13 ++++++++----- Python/optimizer_cases.c.h | 11 +++++++---- 5 files changed, 23 insertions(+), 16 deletions(-) diff --git a/Python/jit.c b/Python/jit.c index 0791d042710efb..3e0a0aa8bfcc81 100644 --- a/Python/jit.c +++ b/Python/jit.c @@ -164,7 +164,7 @@ mark_executable(unsigned char *memory, size_t size) jit_error("unable to flush instruction cache"); return -1; } - int old; + DWORD old; int failed = !VirtualProtect(memory, size, PAGE_EXECUTE_READ, &old); #else __builtin___clear_cache((char *)memory, (char *)memory + size); diff --git a/Python/optimizer.c b/Python/optimizer.c index 12ef7c3fc0adf5..466729b158d345 100644 --- a/Python/optimizer.c +++ b/Python/optimizer.c @@ -1044,7 +1044,7 @@ _PyJit_TryInitializeTracing( tracer->initial_state.func = (PyFunctionObject *)Py_NewRef(func); tracer->initial_state.executor = (_PyExecutorObject *)Py_XNewRef(current_executor); tracer->initial_state.exit = exit; - tracer->initial_state.stack_depth = stack_pointer - _PyFrame_Stackbase(frame); + tracer->initial_state.stack_depth = (int)(stack_pointer - _PyFrame_Stackbase(frame)); tracer->initial_state.chain_depth = chain_depth; tracer->prev_state.dependencies_still_valid = true; tracer->prev_state.instr_code = (PyCodeObject *)Py_NewRef(_PyFrame_GetCode(frame)); @@ -1486,7 +1486,7 @@ stack_allocate(_PyUOpInstruction *buffer, _PyUOpInstruction *output, int length) write++; depth = _PyUop_Caching[uop].entries[depth].output; } - return write - output; + return (int)(write - output); } static int @@ -2130,6 +2130,7 @@ executor_to_gv(_PyExecutorObject *executor, FILE *out) assert(inst->format == UOP_FORMAT_JUMP); _PyUOpInstruction const *exit_inst = &executor->trace[inst->jump_target]; uint16_t base_exit_opcode = _PyUop_Uncached[exit_inst->opcode]; + (void)base_exit_opcode; assert(base_exit_opcode == _EXIT_TRACE || base_exit_opcode == _DYNAMIC_EXIT); exit = (_PyExitData *)exit_inst->operand0; } diff --git a/Python/optimizer_analysis.c b/Python/optimizer_analysis.c index 7bd6970e5fd2dc..c6a513ad220b63 100644 --- a/Python/optimizer_analysis.c +++ b/Python/optimizer_analysis.c @@ -398,7 +398,7 @@ get_test_bit_for_bools(void) { uintptr_t true_bits = (uintptr_t)&_Py_TrueStruct; #endif for (int i = 4; i < 8; i++) { - if ((true_bits ^ false_bits) & (1 << i)) { + if ((true_bits ^ false_bits) & (uintptr_t)(1 << i)) { return i; } } @@ -412,8 +412,8 @@ test_bit_set_in_true(int bit) { #else uintptr_t true_bits = (uintptr_t)&_Py_TrueStruct; #endif - assert((true_bits ^ ((uintptr_t)&_Py_FalseStruct)) & (1 << bit)); - return true_bits & (1 << bit); + assert((true_bits ^ ((uintptr_t)&_Py_FalseStruct)) & (uintptr_t)(1 << bit)); + return true_bits & (uintptr_t)(1 << bit); } #ifdef Py_DEBUG @@ -504,7 +504,7 @@ optimize_uops( stack_pointer = ctx->frame->stack_pointer; } - DUMP_UOP(ctx, "abs", this_instr - trace, this_instr, stack_pointer); + DUMP_UOP(ctx, "abs", (int)(this_instr - trace), this_instr, stack_pointer); _PyUOpInstruction *out_ptr = ctx->out_buffer.next; diff --git a/Python/optimizer_bytecodes.c b/Python/optimizer_bytecodes.c index 7c928e6502a412..2b35628ad99999 100644 --- a/Python/optimizer_bytecodes.c +++ b/Python/optimizer_bytecodes.c @@ -109,11 +109,13 @@ dummy_func(void) { } op(_STORE_ATTR_INSTANCE_VALUE, (offset/1, value, owner -- o)) { + (void)offset; (void)value; o = owner; } op(_STORE_ATTR_WITH_HINT, (hint/1, value, owner -- o)) { + (void)hint; (void)value; o = owner; } @@ -320,7 +322,8 @@ dummy_func(void) { r = right; } - op(_BINARY_OP_EXTEND, (left, right -- res, l, r)) { + op(_BINARY_OP_EXTEND, (descr/4, left, right -- res, l, r)) { + (void)descr; res = sym_new_not_null(ctx); l = left; r = right; @@ -386,7 +389,7 @@ dummy_func(void) { assert(PyLong_CheckExact(sym_get_const(ctx, sub_st))); long index = PyLong_AsLong(sym_get_const(ctx, sub_st)); assert(index >= 0); - int tuple_length = sym_tuple_length(tuple_st); + Py_ssize_t tuple_length = sym_tuple_length(tuple_st); if (tuple_length != -1 && index < tuple_length) { ADD_OP(_NOP, 0, 0); } @@ -951,7 +954,7 @@ dummy_func(void) { ctx->done = true; break; } - int returning_stacklevel = this_instr->operand1; + int returning_stacklevel = (int)this_instr->operand1; if (ctx->curr_frame_depth >= 2) { PyCodeObject *expected_code = ctx->frames[ctx->curr_frame_depth - 2].code; if (expected_code == returning_code) { @@ -979,7 +982,7 @@ dummy_func(void) { break; } _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = this_instr->operand1; + int returning_stacklevel = (int)this_instr->operand1; if (frame_pop(ctx, returning_code, returning_stacklevel)) { break; } @@ -1001,7 +1004,7 @@ dummy_func(void) { break; } _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = this_instr->operand1; + int returning_stacklevel = (int)this_instr->operand1; if (frame_pop(ctx, returning_code, returning_stacklevel)) { break; } diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 24ae511ebcde31..7faa699a058249 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -896,6 +896,7 @@ right = stack_pointer[-1]; left = stack_pointer[-2]; PyObject *descr = (PyObject *)this_instr->operand0; + (void)descr; res = sym_new_not_null(ctx); l = left; r = right; @@ -1046,7 +1047,7 @@ assert(PyLong_CheckExact(sym_get_const(ctx, sub_st))); long index = PyLong_AsLong(sym_get_const(ctx, sub_st)); assert(index >= 0); - int tuple_length = sym_tuple_length(tuple_st); + Py_ssize_t tuple_length = sym_tuple_length(tuple_st); if (tuple_length != -1 && index < tuple_length) { ADD_OP(_NOP, 0, 0); } @@ -1271,7 +1272,7 @@ ctx->done = true; break; } - int returning_stacklevel = this_instr->operand1; + int returning_stacklevel = (int)this_instr->operand1; if (ctx->curr_frame_depth >= 2) { PyCodeObject *expected_code = ctx->frames[ctx->curr_frame_depth - 2].code; if (expected_code == returning_code) { @@ -1351,7 +1352,7 @@ break; } _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = this_instr->operand1; + int returning_stacklevel = (int)this_instr->operand1; if (frame_pop(ctx, returning_code, returning_stacklevel)) { break; } @@ -2033,6 +2034,7 @@ owner = stack_pointer[-1]; value = stack_pointer[-2]; uint16_t offset = (uint16_t)this_instr->operand0; + (void)offset; (void)value; o = owner; CHECK_STACK_BOUNDS(-1); @@ -2049,6 +2051,7 @@ owner = stack_pointer[-1]; value = stack_pointer[-2]; uint16_t hint = (uint16_t)this_instr->operand0; + (void)hint; (void)value; o = owner; CHECK_STACK_BOUNDS(-1); @@ -3595,7 +3598,7 @@ break; } _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = this_instr->operand1; + int returning_stacklevel = (int)this_instr->operand1; if (frame_pop(ctx, returning_code, returning_stacklevel)) { break; } From 645f5c4a737b3eab29d0b7bcd4ec5f8bd36f332d Mon Sep 17 00:00:00 2001 From: Benedikt Johannes Date: Sat, 14 Feb 2026 20:20:33 +0100 Subject: [PATCH 013/110] gh-144822: remove redundant decref in `codegen.c` (#144823) --- Python/codegen.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/codegen.c b/Python/codegen.c index 32a03e7212eeab..42fccb07d31dba 100644 --- a/Python/codegen.c +++ b/Python/codegen.c @@ -1422,7 +1422,6 @@ codegen_function_body(compiler *c, stmt_ty s, int is_async, Py_ssize_t funcflags PyCodeObject *co = _PyCompile_OptimizeAndAssemble(c, 1); _PyCompile_ExitScope(c); if (co == NULL) { - Py_XDECREF(co); return ERROR; } int ret = codegen_make_closure(c, LOC(s), co, funcflags); From e6110efd03259acd1895cff63fbfa115ac5f16dc Mon Sep 17 00:00:00 2001 From: Ramin Farajpour Cami Date: Sun, 15 Feb 2026 18:09:57 +0330 Subject: [PATCH 014/110] gh-144759: Fix undefined behavior from NULL pointer arithmetic in lexer (#144788) Guard against NULL pointer arithmetic in `_PyLexer_remember_fstring_buffers` and `_PyLexer_restore_fstring_buffers`. When `start` or `multi_line_start` are NULL (uninitialized in tok_mode_stack[0]), performing `NULL - tok->buf` is undefined behavior. Add explicit NULL checks to store -1 as sentinel and restore NULL accordingly. Add test_lexer_buffer_realloc_with_null_start to test_repl.py that exercises the code path where the lexer buffer is reallocated while tok_mode_stack[0] has NULL start/multi_line_start pointers. This triggers _PyLexer_remember_fstring_buffers and verifies the NULL checks prevent undefined behavior. --- Lib/test/test_repl.py | 16 ++++++++++++++++ ...026-02-13-12-00-00.gh-issue-144759.d3qYpe.rst | 4 ++++ Parser/lexer/buffer.c | 8 ++++---- 3 files changed, 24 insertions(+), 4 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-12-00-00.gh-issue-144759.d3qYpe.rst diff --git a/Lib/test/test_repl.py b/Lib/test/test_repl.py index 6cdb1ca65c6aed..40965835bcec00 100644 --- a/Lib/test/test_repl.py +++ b/Lib/test/test_repl.py @@ -143,6 +143,22 @@ def test_multiline_string_parsing(self): output = kill_python(p) self.assertEqual(p.returncode, 0) + @cpython_only + def test_lexer_buffer_realloc_with_null_start(self): + # gh-144759: NULL pointer arithmetic in the lexer when start and + # multi_line_start are NULL (uninitialized in tok_mode_stack[0]) + # and the lexer buffer is reallocated while parsing long input. + long_value = "a" * 2000 + user_input = dedent(f"""\ + x = f'{{{long_value!r}}}' + print(x) + """) + p = spawn_repl() + p.stdin.write(user_input) + output = kill_python(p) + self.assertEqual(p.returncode, 0) + self.assertIn(long_value, output) + def test_close_stdin(self): user_input = dedent(''' import os diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-12-00-00.gh-issue-144759.d3qYpe.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-12-00-00.gh-issue-144759.d3qYpe.rst new file mode 100644 index 00000000000000..46786d0672b0a8 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-13-12-00-00.gh-issue-144759.d3qYpe.rst @@ -0,0 +1,4 @@ +Fix undefined behavior in the lexer when ``start`` and ``multi_line_start`` +pointers are ``NULL`` in ``_PyLexer_remember_fstring_buffers()`` and +``_PyLexer_restore_fstring_buffers()``. The ``NULL`` pointer arithmetic +(``NULL - valid_pointer``) is now guarded with explicit ``NULL`` checks. diff --git a/Parser/lexer/buffer.c b/Parser/lexer/buffer.c index 63aa1ea2ad4f60..e122fd0d9878ea 100644 --- a/Parser/lexer/buffer.c +++ b/Parser/lexer/buffer.c @@ -13,8 +13,8 @@ _PyLexer_remember_fstring_buffers(struct tok_state *tok) for (index = tok->tok_mode_stack_index; index >= 0; --index) { mode = &(tok->tok_mode_stack[index]); - mode->start_offset = mode->start - tok->buf; - mode->multi_line_start_offset = mode->multi_line_start - tok->buf; + mode->start_offset = mode->start == NULL ? -1 : mode->start - tok->buf; + mode->multi_line_start_offset = mode->multi_line_start == NULL ? -1 : mode->multi_line_start - tok->buf; } } @@ -27,8 +27,8 @@ _PyLexer_restore_fstring_buffers(struct tok_state *tok) for (index = tok->tok_mode_stack_index; index >= 0; --index) { mode = &(tok->tok_mode_stack[index]); - mode->start = tok->buf + mode->start_offset; - mode->multi_line_start = tok->buf + mode->multi_line_start_offset; + mode->start = mode->start_offset < 0 ? NULL : tok->buf + mode->start_offset; + mode->multi_line_start = mode->multi_line_start_offset < 0 ? NULL : tok->buf + mode->multi_line_start_offset; } } From 50c479e613beccf38b6ac2e5fe4e03dab8bbcb28 Mon Sep 17 00:00:00 2001 From: Kumar Aditya Date: Sun, 15 Feb 2026 20:21:54 +0530 Subject: [PATCH 015/110] add whatsnew entry for `PyUnstable_SetImmortal` and `PyDatetime_IMPORT` (#144830) --- Doc/c-api/datetime.rst | 9 +++++++++ Doc/whatsnew/3.15.rst | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/Doc/c-api/datetime.rst b/Doc/c-api/datetime.rst index 127d7c9c91a3d5..d7b4e116c49e35 100644 --- a/Doc/c-api/datetime.rst +++ b/Doc/c-api/datetime.rst @@ -30,6 +30,10 @@ macros. This is not compatible with subinterpreters. + .. versionchanged:: 3.15 + + This macro is now thread safe. + .. c:type:: PyDateTime_CAPI Structure containing the fields for the datetime C API. @@ -44,6 +48,11 @@ macros. This variable is only available once :c:macro:`PyDateTime_IMPORT` succeeds. + .. versionchanged:: 3.15 + + This variable should not be accessed directly as direct access is not thread-safe. + Use :c:func:`PyDateTime_IMPORT` instead. + .. c:type:: PyDateTime_Date This subtype of :c:type:`PyObject` represents a Python date object. diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index 0e440ccfd011f0..cd80947924684d 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -1563,6 +1563,8 @@ New features thread state. (Contributed by Victor Stinner in :gh:`139653`.) +* Add :c:func:`PyUnstable_SetImmortal` C-API function to mark objects as :term:`immortal`. + (Contributed by Kumar Aditya in :gh:`143300`.) Changed C APIs -------------- @@ -1571,6 +1573,9 @@ Changed C APIs flag is set then :c:macro:`Py_TPFLAGS_HAVE_GC` must be set too. (Contributed by Sergey Miryanov in :gh:`134786`.) +* :c:macro:`PyDateTime_IMPORT` is now thread safe. Code that directly checks ``PyDateTimeAPI`` + for ``NULL`` should be updated to call :c:macro:`PyDateTime_IMPORT` instead. + (Contributed by Kumar Aditya in :gh:`141563`.) Porting to Python 3.15 ---------------------- From 5a6615ff9281b4f5204d18159e19cd6e92b0fb9a Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Sun, 15 Feb 2026 16:07:03 +0000 Subject: [PATCH 016/110] gh-142349: Add CODEOWNERS for lazy imports (#144840) --- .github/CODEOWNERS | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 6b6074be0a5728..a12fae18d51c21 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -292,6 +292,12 @@ Python/jit.c @brandtbucher @savannahostrowski @diegorusso Tools/jit/ @brandtbucher @savannahostrowski @diegorusso InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner +# Lazy imports (PEP 810) +Objects/lazyimportobject.c @twouters @DinoV @pablogsal +Include/internal/pycore_lazyimportobject.h @twouters @DinoV @pablogsal +Lib/test/test_import/test_lazy_imports.py @twouters @DinoV @pablogsal +Lib/test/test_import/data/lazy_imports/ @twouters @DinoV @pablogsal + # Micro-op / μop / Tier 2 Optimiser Python/optimizer.c @markshannon @Fidget-Spinner Python/optimizer_analysis.c @markshannon @tomasr8 @Fidget-Spinner @savannahostrowski From 23c488d6197191d355be6733699a295c20806932 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Sun, 15 Feb 2026 16:11:16 +0000 Subject: [PATCH 017/110] Format CODEOWNERS file (#144842) --- .github/CODEOWNERS | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a12fae18d51c21..32b883213685b2 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -293,10 +293,10 @@ Tools/jit/ @brandtbucher @savannahostrowski @diegorusso InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner # Lazy imports (PEP 810) -Objects/lazyimportobject.c @twouters @DinoV @pablogsal -Include/internal/pycore_lazyimportobject.h @twouters @DinoV @pablogsal -Lib/test/test_import/test_lazy_imports.py @twouters @DinoV @pablogsal -Lib/test/test_import/data/lazy_imports/ @twouters @DinoV @pablogsal +Objects/lazyimportobject.c @twouters @DinoV @pablogsal +Include/internal/pycore_lazyimportobject.h @twouters @DinoV @pablogsal +Lib/test/test_import/test_lazy_imports.py @twouters @DinoV @pablogsal +Lib/test/test_import/data/lazy_imports/ @twouters @DinoV @pablogsal # Micro-op / μop / Tier 2 Optimiser Python/optimizer.c @markshannon @Fidget-Spinner From 5fe139cc39fb8110b3d6cbed6224d7c8f5d91987 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Sun, 15 Feb 2026 18:36:47 +0000 Subject: [PATCH 018/110] gh-144727: Add test for circular lazy import crash (#144727) (#144838) Add a regression test ensuring that circular lazy imports raise a proper error (ImportCycleError) instead of crashing with a segfault. The crash was fixed in gh-144733 but no test was added at the time. --- Lib/test/test_import/test_lazy_imports.py | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Lib/test/test_import/test_lazy_imports.py b/Lib/test/test_import/test_lazy_imports.py index 1193af9589034b..a4c9c14ae2b5f8 100644 --- a/Lib/test/test_import/test_lazy_imports.py +++ b/Lib/test/test_import/test_lazy_imports.py @@ -8,6 +8,8 @@ import threading import types import unittest +import tempfile +import os try: import _testcapi @@ -598,6 +600,39 @@ def test_error_during_module_execution_propagates(self): self.assertEqual(result.returncode, 0, f"stdout: {result.stdout}, stderr: {result.stderr}") self.assertIn("OK", result.stdout) + def test_circular_lazy_import_does_not_crash_for_gh_144727(self): + with tempfile.TemporaryDirectory() as tmpdir: + a_path = os.path.join(tmpdir, "a.py") + b_path = os.path.join(tmpdir, "b.py") + + with open(a_path, "w") as f: + f.write(textwrap.dedent("""\ + lazy import b + + def something(): + b.hello() + + something() + """)) + + with open(b_path, "w") as f: + f.write(textwrap.dedent("""\ + lazy import a + + def hello(): + print(a) + """)) + + result = subprocess.run( + [sys.executable, a_path], + capture_output=True, + text=True, + cwd=tmpdir, + ) + # Should get a proper Python error, not a crash + self.assertEqual(result.returncode, 1) + self.assertIn("Error", result.stderr) + class GlobalsAndDictTests(unittest.TestCase): """Tests for globals() and __dict__ behavior with lazy imports. From 300de1e98ac236bc887b49c0fbd7398266237b36 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" <68491+gpshead@users.noreply.github.com> Date: Sun, 15 Feb 2026 17:43:39 -0800 Subject: [PATCH 019/110] gh-86519: Add prefixmatch APIs to the re module (GH-31137) Adds `prefixmatch` APIs to the re module as an alternate name for our long existing `match` APIs to help alleviate a common Python confusion for those coming from other languages regular expression libraries. These alleviate common confusion around what "match" means as Python is different than other popular languages regex libraries in our use of the term as an API name. The original `match` names are **NOT being deprecated**. Source tooling like linters, IDEs, and LLMs could suggest using `prefixmatch` instead of match to improve code health and reduce cognitive burden of understanding the intent of code when configured for a modern minimum Python version. See the documentation changes for a better description. Discussions took place in the PR, in the issue, and finally at https://discuss.python.org/t/add-re-prefixmatch-deprecate-re-match/105927 Co-Authored-By: Claude Opus 4.5 Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Co-Authored-By: Claude Opus 4.6 --- Doc/library/re.rst | 193 +++++++++++------- Doc/whatsnew/3.15.rst | 15 +- Lib/re/__init__.py | 38 ++-- Lib/test/test_inspect/test_inspect.py | 5 +- Lib/test/test_re.py | 22 +- .../2022-02-05-00-15-03.bpo-42353.0ebVGG.rst | 10 + Modules/_sre/clinic/sre.c.h | 38 ++-- Modules/_sre/sre.c | 53 ++++- 8 files changed, 251 insertions(+), 123 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2022-02-05-00-15-03.bpo-42353.0ebVGG.rst diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 734301317283fb..df99acf354bf1b 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -837,7 +837,7 @@ Flags value:: def myfunc(text, flag=re.NOFLAG): - return re.match(text, flag) + return re.search(text, flag) .. versionadded:: 3.11 @@ -893,8 +893,8 @@ Functions Compile a regular expression pattern into a :ref:`regular expression object `, which can be used for matching using its - :func:`~Pattern.match`, :func:`~Pattern.search` and other methods, described - below. + :func:`~Pattern.prefixmatch`, + :func:`~Pattern.search`, and other methods, described below. The expression's behaviour can be modified by specifying a *flags* value. Values can be any of the `flags`_ variables, combined using bitwise OR @@ -903,11 +903,11 @@ Functions The sequence :: prog = re.compile(pattern) - result = prog.match(string) + result = prog.search(string) is equivalent to :: - result = re.match(pattern, string) + result = re.search(pattern, string) but using :func:`re.compile` and saving the resulting regular expression object for reuse is more efficient when the expression will be used several @@ -933,6 +933,7 @@ Functions (the ``|`` operator). +.. function:: prefixmatch(pattern, string, flags=0) .. function:: match(pattern, string, flags=0) If zero or more characters at the beginning of *string* match the regular @@ -940,8 +941,10 @@ Functions ``None`` if the string does not match the pattern; note that this is different from a zero-length match. - Note that even in :const:`MULTILINE` mode, :func:`re.match` will only match - at the beginning of the string and not at the beginning of each line. + .. note:: + + Even in :const:`MULTILINE` mode, this will only match at the + beginning of the string and not at the beginning of each line. If you want to locate a match anywhere in *string*, use :func:`search` instead (see also :ref:`search-vs-match`). @@ -950,6 +953,18 @@ Functions Values can be any of the `flags`_ variables, combined using bitwise OR (the ``|`` operator). + This function now has two names and has long been known as + :func:`~re.match`. Use that name when you need to retain compatibility with + older Python versions. + + .. versionchanged:: next + The alternate :func:`~re.prefixmatch` name of this API was added as a + more explicitly descriptive name than :func:`~re.match`. Use it to better + express intent. The norm in other languages and regular expression + implementations is to use the term *match* to refer to the behavior of + what Python has always called :func:`~re.search`. + See :ref:`prefixmatch-vs-match`. + .. function:: fullmatch(pattern, string, flags=0) @@ -1271,6 +1286,7 @@ Regular Expression Objects >>> pattern.search("dog", 1) # No match; search doesn't include the "d" +.. method:: Pattern.prefixmatch(string[, pos[, endpos]]) .. method:: Pattern.match(string[, pos[, endpos]]) If zero or more characters at the *beginning* of *string* match this regular @@ -1278,17 +1294,32 @@ Regular Expression Objects string does not match the pattern; note that this is different from a zero-length match. + Note that even in :const:`MULTILINE` mode, this will only match at the + beginning of the string and not at the beginning of each line. + The optional *pos* and *endpos* parameters have the same meaning as for the :meth:`~Pattern.search` method. :: >>> pattern = re.compile("o") - >>> pattern.match("dog") # No match as "o" is not at the start of "dog". - >>> pattern.match("dog", 1) # Match as "o" is the 2nd character of "dog". + >>> pattern.prefixmatch("dog") # No match as "o" is not at the start of "dog". + >>> pattern.prefixmatch("dog", 1) # Match as "o" is the 2nd character of "dog". If you want to locate a match anywhere in *string*, use :meth:`~Pattern.search` instead (see also :ref:`search-vs-match`). + This method now has two names and has long been known as + :meth:`~Pattern.match`. Use that name when you need to retain compatibility + with older Python versions. + + .. versionchanged:: next + The alternate :meth:`~Pattern.prefixmatch` name of this API was added as + a more explicitly descriptive name than :meth:`~Pattern.match`. Use it to + better express intent. The norm in other languages and regular expression + implementations is to use the term *match* to refer to the behavior of + what Python has always called :meth:`~Pattern.search`. + See :ref:`prefixmatch-vs-match`. + .. method:: Pattern.fullmatch(string[, pos[, endpos]]) @@ -1376,8 +1407,7 @@ Since :meth:`~Pattern.match` and :meth:`~Pattern.search` return ``None`` when there is no match, you can test whether there was a match with a simple ``if`` statement:: - match = re.search(pattern, string) - if match: + if match := re.search(pattern, string): process(match) .. class:: Match @@ -1415,15 +1445,15 @@ when there is no match, you can test whether there was a match with a simple If a group is contained in a part of the pattern that matched multiple times, the last match is returned. :: - >>> m = re.match(r"(\w+) (\w+)", "Isaac Newton, physicist") + >>> m = re.search(r"\A(\w+) (\w+)", "Norwegian Blue, pining for the fjords") >>> m.group(0) # The entire match - 'Isaac Newton' + 'Norwegian Blue' >>> m.group(1) # The first parenthesized subgroup. - 'Isaac' + 'Norwegian' >>> m.group(2) # The second parenthesized subgroup. - 'Newton' + 'Blue' >>> m.group(1, 2) # Multiple arguments give us a tuple. - ('Isaac', 'Newton') + ('Norwegian', 'Blue') If the regular expression uses the ``(?P...)`` syntax, the *groupN* arguments may also be strings identifying groups by their group name. If a @@ -1432,23 +1462,23 @@ when there is no match, you can test whether there was a match with a simple A moderately complicated example:: - >>> m = re.match(r"(?P\w+) (?P\w+)", "Malcolm Reynolds") - >>> m.group('first_name') - 'Malcolm' - >>> m.group('last_name') - 'Reynolds' + >>> m = re.search(r"(?P\w+) (?P\w+)", "killer rabbit") + >>> m.group('adjective') + 'killer' + >>> m.group('animal') + 'rabbit' Named groups can also be referred to by their index:: >>> m.group(1) - 'Malcolm' + 'killer' >>> m.group(2) - 'Reynolds' + 'rabbit' If a group matches multiple times, only the last match is accessible:: - >>> m = re.match(r"(..)+", "a1b2c3") # Matches 3 times. - >>> m.group(1) # Returns only the last match. + >>> m = re.search(r"(..)+", "a1b2c3") # Matches 3 times. + >>> m.group(1) # Returns only the last match. 'c3' @@ -1457,21 +1487,21 @@ when there is no match, you can test whether there was a match with a simple This is identical to ``m.group(g)``. This allows easier access to an individual group from a match:: - >>> m = re.match(r"(\w+) (\w+)", "Isaac Newton, physicist") + >>> m = re.search(r"(\w+) (\w+)", "Norwegian Blue, pining for the fjords") >>> m[0] # The entire match - 'Isaac Newton' + 'Norwegian Blue' >>> m[1] # The first parenthesized subgroup. - 'Isaac' + 'Norwegian' >>> m[2] # The second parenthesized subgroup. - 'Newton' + 'Blue' Named groups are supported as well:: - >>> m = re.match(r"(?P\w+) (?P\w+)", "Isaac Newton") - >>> m['first_name'] - 'Isaac' - >>> m['last_name'] - 'Newton' + >>> m = re.search(r"(?P\w+) (?P\w+)", "killer rabbit") + >>> m['adjective'] + 'killer' + >>> m['animal'] + 'rabbit' .. versionadded:: 3.6 @@ -1484,7 +1514,7 @@ when there is no match, you can test whether there was a match with a simple For example:: - >>> m = re.match(r"(\d+)\.(\d+)", "24.1632") + >>> m = re.search(r"(\d+)\.(\d+)", "24.1632") >>> m.groups() ('24', '1632') @@ -1492,7 +1522,7 @@ when there is no match, you can test whether there was a match with a simple might participate in the match. These groups will default to ``None`` unless the *default* argument is given:: - >>> m = re.match(r"(\d+)\.?(\d+)?", "24") + >>> m = re.search(r"(\d+)\.?(\d+)?", "24") >>> m.groups() # Second group defaults to None. ('24', None) >>> m.groups('0') # Now, the second group defaults to '0'. @@ -1505,9 +1535,9 @@ when there is no match, you can test whether there was a match with a simple the subgroup name. The *default* argument is used for groups that did not participate in the match; it defaults to ``None``. For example:: - >>> m = re.match(r"(?P\w+) (?P\w+)", "Malcolm Reynolds") + >>> m = re.search(r"(?P\w+) (?P\w+)", "killer rabbit") >>> m.groupdict() - {'first_name': 'Malcolm', 'last_name': 'Reynolds'} + {'adjective': 'killer', 'animal': 'rabbit'} .. method:: Match.start([group]) @@ -1610,42 +1640,41 @@ representing the card with that value. To see if a given string is a valid hand, one could do the following:: - >>> valid = re.compile(r"^[a2-9tjqk]{5}$") - >>> displaymatch(valid.match("akt5q")) # Valid. + >>> valid_hand_re = re.compile(r"^[a2-9tjqk]{5}$") + >>> displaymatch(valid_hand_re.search("akt5q")) # Valid. "" - >>> displaymatch(valid.match("akt5e")) # Invalid. - >>> displaymatch(valid.match("akt")) # Invalid. - >>> displaymatch(valid.match("727ak")) # Valid. + >>> displaymatch(valid_hand_re.search("akt5e")) # Invalid. + >>> displaymatch(valid_hand_re.search("akt")) # Invalid. + >>> displaymatch(valid_hand_re.search("727ak")) # Valid. "" That last hand, ``"727ak"``, contained a pair, or two of the same valued cards. To match this with a regular expression, one could use backreferences as such:: - >>> pair = re.compile(r".*(.).*\1") - >>> displaymatch(pair.match("717ak")) # Pair of 7s. + >>> pair_re = re.compile(r".*(.).*\1") + >>> displaymatch(pair_re.prefixmatch("717ak")) # Pair of 7s. "" - >>> displaymatch(pair.match("718ak")) # No pairs. - >>> displaymatch(pair.match("354aa")) # Pair of aces. + >>> displaymatch(pair_re.prefixmatch("718ak")) # No pairs. + >>> displaymatch(pair_re.prefixmatch("354aa")) # Pair of aces. "" To find out what card the pair consists of, one could use the :meth:`~Match.group` method of the match object in the following manner:: - >>> pair = re.compile(r".*(.).*\1") - >>> pair.match("717ak").group(1) + >>> pair_re = re.compile(r".*(.).*\1") + >>> pair_re.prefixmatch("717ak").group(1) '7' - # Error because re.match() returns None, which doesn't have a group() method: - >>> pair.match("718ak").group(1) + # Error because prefixmatch() returns None, which doesn't have a group() method: + >>> pair_re.prefixmatch("718ak").group(1) Traceback (most recent call last): File "", line 1, in - re.match(r".*(.).*\1", "718ak").group(1) + pair_re.prefixmatch("718ak").group(1) AttributeError: 'NoneType' object has no attribute 'group' - >>> pair.match("354aa").group(1) + >>> pair_re.prefixmatch("354aa").group(1) 'a' - Simulating scanf() ^^^^^^^^^^^^^^^^^^ @@ -1694,23 +1723,22 @@ The equivalent regular expression would be :: .. _search-vs-match: -search() vs. match() -^^^^^^^^^^^^^^^^^^^^ +search() vs. prefixmatch() +^^^^^^^^^^^^^^^^^^^^^^^^^^ .. sectionauthor:: Fred L. Drake, Jr. Python offers different primitive operations based on regular expressions: -+ :func:`re.match` checks for a match only at the beginning of the string ++ :func:`re.prefixmatch` checks for a match only at the beginning of the string + :func:`re.search` checks for a match anywhere in the string (this is what Perl does by default) + :func:`re.fullmatch` checks for entire string to be a match - For example:: - >>> re.match("c", "abcdef") # No match - >>> re.search("c", "abcdef") # Match + >>> re.prefixmatch("c", "abcdef") # No match + >>> re.search("c", "abcdef") # Match >>> re.fullmatch("p.*n", "python") # Match @@ -1719,19 +1747,46 @@ For example:: Regular expressions beginning with ``'^'`` can be used with :func:`search` to restrict the match at the beginning of the string:: - >>> re.match("c", "abcdef") # No match - >>> re.search("^c", "abcdef") # No match - >>> re.search("^a", "abcdef") # Match + >>> re.prefixmatch("c", "abcdef") # No match + >>> re.search("^c", "abcdef") # No match + >>> re.search("^a", "abcdef") # Match -Note however that in :const:`MULTILINE` mode :func:`match` only matches at the +Note however that in :const:`MULTILINE` mode :func:`prefixmatch` only matches at the beginning of the string, whereas using :func:`search` with a regular expression beginning with ``'^'`` will match at the beginning of each line. :: - >>> re.match("X", "A\nB\nX", re.MULTILINE) # No match + >>> re.prefixmatch("X", "A\nB\nX", re.MULTILINE) # No match >>> re.search("^X", "A\nB\nX", re.MULTILINE) # Match +.. _prefixmatch-vs-match: + +prefixmatch() vs. match() +^^^^^^^^^^^^^^^^^^^^^^^^^ + +Why is the :func:`~re.match` function and method discouraged in +favor of the longer :func:`~re.prefixmatch` spelling? + +Many other languages have gained regex support libraries since regular +expressions were added to Python. However in the most popular of those, they +use the term *match* in their APIs to mean the unanchored behavior provided in +Python by :func:`~re.search`. Thus use of the plain term *match* can be +unclear to those used to other languages when reading or writing code and +not familiar with the Python API's divergence from what otherwise become the +industry norm. + +Quoting from the Zen Of Python (``python3 -m this``): *"Explicit is better than +implicit"*. Anyone reading the name :func:`~re.prefixmatch` is likely to +understand the intended semantics. When reading :func:`~re.match` there remains +a seed of doubt about the intended behavior to anyone not already familiar with +this old Python gotcha. + +We **do not** plan to deprecate and remove the older *match* name, +as it has been used in code for over 30 years. +Code supporting older versions of Python should continue to use *match*. + +.. versionadded:: next Making a Phonebook ^^^^^^^^^^^^^^^^^^ @@ -1851,9 +1906,9 @@ every backslash (``'\'``) in a regular expression would have to be prefixed with another one to escape it. For example, the two following lines of code are functionally identical:: - >>> re.match(r"\W(.)\1\W", " ff ") + >>> re.search(r"\W(.)\1\W", " ff ") - >>> re.match("\\W(.)\\1\\W", " ff ") + >>> re.search("\\W(.)\\1\\W", " ff ") When one wants to match a literal backslash, it must be escaped in the regular @@ -1861,9 +1916,9 @@ expression. With raw string notation, this means ``r"\\"``. Without raw string notation, one must use ``"\\\\"``, making the following lines of code functionally identical:: - >>> re.match(r"\\", r"\\") + >>> re.search(r"\\", r"\\") - >>> re.match("\\\\", r"\\") + >>> re.search("\\\\", r"\\") diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index cd80947924684d..5dca1545b144ef 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -824,6 +824,19 @@ pickle (Contributed by Zackery Spytz and Serhiy Storchaka in :gh:`77188`.) +re +-- + +* :func:`re.prefixmatch` and a corresponding :meth:`~re.Pattern.prefixmatch` + have been added as alternate more explicit names for the existing + :func:`re.match` and :meth:`~re.Pattern.match` APIs. These are intended + to be used to alleviate confusion around what *match* means by following the + Zen of Python's *"Explicit is better than implicit"* mantra. Most other + language regular expression libraries use an API named *match* to mean what + Python has always called *search*. + (Contributed by Gregory P. Smith in :gh:`86519`.) + + resource -------- @@ -1285,7 +1298,7 @@ Diego Russo in :gh:`140683` and :gh:`142305`.) Removed -======= +======== ctypes ------ diff --git a/Lib/re/__init__.py b/Lib/re/__init__.py index ecec16e9005f3b..e6d29fd7a403b6 100644 --- a/Lib/re/__init__.py +++ b/Lib/re/__init__.py @@ -85,17 +85,18 @@ \\ Matches a literal backslash. This module exports the following functions: - match Match a regular expression pattern to the beginning of a string. - fullmatch Match a regular expression pattern to all of a string. - search Search a string for the presence of a pattern. - sub Substitute occurrences of a pattern found in a string. - subn Same as sub, but also return the number of substitutions made. - split Split a string by the occurrences of a pattern. - findall Find all occurrences of a pattern in a string. - finditer Return an iterator yielding a Match object for each match. - compile Compile a pattern into a Pattern object. - purge Clear the regular expression cache. - escape Backslash all non-alphanumerics in a string. + prefixmatch Match a regular expression pattern to the beginning of a str. + match The original name of prefixmatch prior to 3.15. + fullmatch Match a regular expression pattern to all of a string. + search Search a string for the presence of a pattern. + sub Substitute occurrences of a pattern found in a string. + subn Same as sub, but also return the number of substitutions made. + split Split a string by the occurrences of a pattern. + findall Find all occurrences of a pattern in a string. + finditer Return an iterator yielding a Match object for each match. + compile Compile a pattern into a Pattern object. + purge Clear the regular expression cache. + escape Backslash all non-alphanumerics in a string. Each function other than purge and escape can take an optional 'flags' argument consisting of one or more of the following module constants, joined by "|". @@ -130,7 +131,7 @@ # public symbols __all__ = [ - "match", "fullmatch", "search", "sub", "subn", "split", + "prefixmatch", "match", "fullmatch", "search", "sub", "subn", "split", "findall", "finditer", "compile", "purge", "escape", "error", "Pattern", "Match", "A", "I", "L", "M", "S", "X", "U", "ASCII", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE", @@ -159,10 +160,13 @@ class RegexFlag: # -------------------------------------------------------------------- # public interface -def match(pattern, string, flags=0): +def prefixmatch(pattern, string, flags=0): """Try to apply the pattern at the start of the string, returning a Match object, or None if no match was found.""" - return _compile(pattern, flags).match(string) + return _compile(pattern, flags).prefixmatch(string) + +# Our original name which was less explicitly clear about the behavior for prefixmatch. +match = prefixmatch def fullmatch(pattern, string, flags=0): """Try to apply the pattern to all of the string, returning @@ -311,7 +315,7 @@ def escape(pattern): return pattern.translate(_special_chars_map).encode('latin1') Pattern = type(_compiler.compile('', 0)) -Match = type(_compiler.compile('', 0).match('')) +Match = type(_compiler.compile('', 0).prefixmatch('')) # -------------------------------------------------------------------- # internals @@ -410,10 +414,10 @@ def __init__(self, lexicon, flags=0): def scan(self, string): result = [] append = result.append - match = self.scanner.scanner(string).match + _match = self.scanner.scanner(string).prefixmatch i = 0 while True: - m = match() + m = _match() if not m: break j = m.end() diff --git a/Lib/test/test_inspect/test_inspect.py b/Lib/test/test_inspect/test_inspect.py index e4a3a7d9add2c2..32bb47de04b113 100644 --- a/Lib/test/test_inspect/test_inspect.py +++ b/Lib/test/test_inspect/test_inspect.py @@ -6277,7 +6277,10 @@ def test_pwd_module_has_signatures(self): def test_re_module_has_signatures(self): import re - methods_no_signature = {'Match': {'group'}} + methods_no_signature = { + 'Match': {'group'}, + 'Pattern': {'match'}, # It is now an alias for prefixmatch + } self._test_module_has_signatures(re, methods_no_signature=methods_no_signature, good_exceptions={'error', 'PatternError'}) diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index 9f6f04bf6b8347..5e19307b815a1b 100644 --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -90,10 +90,13 @@ def test_search_star_plus(self): self.assertEqual(re.search('x+', 'axx').span(), (1, 3)) self.assertIsNone(re.search('x', 'aaa')) self.assertEqual(re.match('a*', 'xxx').span(0), (0, 0)) + self.assertEqual(re.prefixmatch('a*', 'xxx').span(0), (0, 0)) self.assertEqual(re.match('a*', 'xxx').span(), (0, 0)) self.assertEqual(re.match('x*', 'xxxa').span(0), (0, 3)) + self.assertEqual(re.prefixmatch('x*', 'xxxa').span(0), (0, 3)) self.assertEqual(re.match('x*', 'xxxa').span(), (0, 3)) self.assertIsNone(re.match('a+', 'xxx')) + self.assertIsNone(re.prefixmatch('a+', 'xxx')) def test_branching(self): """Test Branching @@ -180,6 +183,7 @@ def test_bug_449000(self): def test_bug_1661(self): # Verify that flags do not get silently ignored with compiled patterns pattern = re.compile('.') + self.assertRaises(ValueError, re.prefixmatch, pattern, 'A', re.I) self.assertRaises(ValueError, re.match, pattern, 'A', re.I) self.assertRaises(ValueError, re.search, pattern, 'A', re.I) self.assertRaises(ValueError, re.findall, pattern, 'A', re.I) @@ -517,6 +521,8 @@ def test_re_match(self): self.assertEqual(re.match(b'(a)', string).group(0), b'a') self.assertEqual(re.match(b'(a)', string).group(1), b'a') self.assertEqual(re.match(b'(a)', string).group(1, 1), (b'a', b'a')) + self.assertEqual(re.prefixmatch(b'(a)', string).group(1, 1), + (b'a', b'a')) for a in ("\xe0", "\u0430", "\U0001d49c"): self.assertEqual(re.match(a, a).groups(), ()) self.assertEqual(re.match('(%s)' % a, a).groups(), (a,)) @@ -558,10 +564,8 @@ def __index__(self): self.assertEqual(m.group(2, 1), ('b', 'a')) self.assertEqual(m.group(Index(2), Index(1)), ('b', 'a')) - def test_match_getitem(self): - pat = re.compile('(?:(?Pa)|(?Pb))(?Pc)?') - - m = pat.match('a') + def do_test_match_getitem(self, match_fn): + m = match_fn('a') self.assertEqual(m['a1'], 'a') self.assertEqual(m['b2'], None) self.assertEqual(m['c3'], None) @@ -585,7 +589,7 @@ def test_match_getitem(self): with self.assertRaisesRegex(IndexError, 'no such group'): 'a1={a2}'.format_map(m) - m = pat.match('ac') + m = match_fn('ac') self.assertEqual(m['a1'], 'a') self.assertEqual(m['b2'], None) self.assertEqual(m['c3'], 'c') @@ -602,6 +606,14 @@ def test_match_getitem(self): # No len(). self.assertRaises(TypeError, len, m) + def test_match_getitem(self): + pat = re.compile('(?:(?Pa)|(?Pb))(?Pc)?') + self.do_test_match_getitem(pat.match) + + def test_prefixmatch_getitem(self): + pat = re.compile('(?:(?Pa)|(?Pb))(?Pc)?') + self.do_test_match_getitem(pat.prefixmatch) + def test_re_fullmatch(self): # Issue 16203: Proposal: add re.fullmatch() method. self.assertEqual(re.fullmatch(r"a", "a").span(), (0, 1)) diff --git a/Misc/NEWS.d/next/Library/2022-02-05-00-15-03.bpo-42353.0ebVGG.rst b/Misc/NEWS.d/next/Library/2022-02-05-00-15-03.bpo-42353.0ebVGG.rst new file mode 100644 index 00000000000000..a3e0a3e14af1fa --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-02-05-00-15-03.bpo-42353.0ebVGG.rst @@ -0,0 +1,10 @@ +The :mod:`re` module gains a new :func:`re.prefixmatch` function as an +explicit spelling of what has to date always been known as :func:`re.match`. +:class:`re.Pattern` similary gains a :meth:`re.Pattern.prefixmatch` method. + +Why? Explicit is better than implicit. Other widely used languages all use +the term "match" to mean what Python uses the term "search" for. The +unadorened "match" name in Python has been a frequent case of confusion and +coding bugs due to the inconsistency with the rest if the software industry. + +We do not plan to deprecate and remove the older ``match`` name. diff --git a/Modules/_sre/clinic/sre.c.h b/Modules/_sre/clinic/sre.c.h index d2f25a71495cda..b49bf4e058b69b 100644 --- a/Modules/_sre/clinic/sre.c.h +++ b/Modules/_sre/clinic/sre.c.h @@ -164,22 +164,22 @@ _sre_unicode_tolower(PyObject *module, PyObject *arg) return return_value; } -PyDoc_STRVAR(_sre_SRE_Pattern_match__doc__, -"match($self, /, string, pos=0, endpos=sys.maxsize)\n" +PyDoc_STRVAR(_sre_SRE_Pattern_prefixmatch__doc__, +"prefixmatch($self, /, string, pos=0, endpos=sys.maxsize)\n" "--\n" "\n" "Matches zero or more characters at the beginning of the string."); -#define _SRE_SRE_PATTERN_MATCH_METHODDEF \ - {"match", _PyCFunction_CAST(_sre_SRE_Pattern_match), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_match__doc__}, +#define _SRE_SRE_PATTERN_PREFIXMATCH_METHODDEF \ + {"prefixmatch", _PyCFunction_CAST(_sre_SRE_Pattern_prefixmatch), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Pattern_prefixmatch__doc__}, static PyObject * -_sre_SRE_Pattern_match_impl(PatternObject *self, PyTypeObject *cls, - PyObject *string, Py_ssize_t pos, - Py_ssize_t endpos); +_sre_SRE_Pattern_prefixmatch_impl(PatternObject *self, PyTypeObject *cls, + PyObject *string, Py_ssize_t pos, + Py_ssize_t endpos); static PyObject * -_sre_SRE_Pattern_match(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) +_sre_SRE_Pattern_prefixmatch(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) { PyObject *return_value = NULL; #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) @@ -205,7 +205,7 @@ _sre_SRE_Pattern_match(PyObject *self, PyTypeObject *cls, PyObject *const *args, static const char * const _keywords[] = {"string", "pos", "endpos", NULL}; static _PyArg_Parser _parser = { .keywords = _keywords, - .fname = "match", + .fname = "prefixmatch", .kwtuple = KWTUPLE, }; #undef KWTUPLE @@ -254,7 +254,7 @@ _sre_SRE_Pattern_match(PyObject *self, PyTypeObject *cls, PyObject *const *args, endpos = ival; } skip_optional_pos: - return_value = _sre_SRE_Pattern_match_impl((PatternObject *)self, cls, string, pos, endpos); + return_value = _sre_SRE_Pattern_prefixmatch_impl((PatternObject *)self, cls, string, pos, endpos); exit: return return_value; @@ -1523,25 +1523,25 @@ _sre_SRE_Match___deepcopy__(PyObject *self, PyObject *memo) return return_value; } -PyDoc_STRVAR(_sre_SRE_Scanner_match__doc__, -"match($self, /)\n" +PyDoc_STRVAR(_sre_SRE_Scanner_prefixmatch__doc__, +"prefixmatch($self, /)\n" "--\n" "\n"); -#define _SRE_SRE_SCANNER_MATCH_METHODDEF \ - {"match", _PyCFunction_CAST(_sre_SRE_Scanner_match), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Scanner_match__doc__}, +#define _SRE_SRE_SCANNER_PREFIXMATCH_METHODDEF \ + {"prefixmatch", _PyCFunction_CAST(_sre_SRE_Scanner_prefixmatch), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _sre_SRE_Scanner_prefixmatch__doc__}, static PyObject * -_sre_SRE_Scanner_match_impl(ScannerObject *self, PyTypeObject *cls); +_sre_SRE_Scanner_prefixmatch_impl(ScannerObject *self, PyTypeObject *cls); static PyObject * -_sre_SRE_Scanner_match(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) +_sre_SRE_Scanner_prefixmatch(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) { if (nargs || (kwnames && PyTuple_GET_SIZE(kwnames))) { - PyErr_SetString(PyExc_TypeError, "match() takes no arguments"); + PyErr_SetString(PyExc_TypeError, "prefixmatch() takes no arguments"); return NULL; } - return _sre_SRE_Scanner_match_impl((ScannerObject *)self, cls); + return _sre_SRE_Scanner_prefixmatch_impl((ScannerObject *)self, cls); } PyDoc_STRVAR(_sre_SRE_Scanner_search__doc__, @@ -1568,4 +1568,4 @@ _sre_SRE_Scanner_search(PyObject *self, PyTypeObject *cls, PyObject *const *args #ifndef _SRE_SRE_PATTERN__FAIL_AFTER_METHODDEF #define _SRE_SRE_PATTERN__FAIL_AFTER_METHODDEF #endif /* !defined(_SRE_SRE_PATTERN__FAIL_AFTER_METHODDEF) */ -/*[clinic end generated code: output=bbf42e1de3bdd3ae input=a9049054013a1b77]*/ +/*[clinic end generated code: output=0c867efb64e020aa input=a9049054013a1b77]*/ diff --git a/Modules/_sre/sre.c b/Modules/_sre/sre.c index 59ff9078e6cff4..d6cdd861fd85a2 100644 --- a/Modules/_sre/sre.c +++ b/Modules/_sre/sre.c @@ -766,7 +766,7 @@ sre_search(SRE_STATE* state, SRE_CODE* pattern) } /*[clinic input] -_sre.SRE_Pattern.match +_sre.SRE_Pattern.prefixmatch cls: defining_class / @@ -778,10 +778,10 @@ Matches zero or more characters at the beginning of the string. [clinic start generated code]*/ static PyObject * -_sre_SRE_Pattern_match_impl(PatternObject *self, PyTypeObject *cls, - PyObject *string, Py_ssize_t pos, - Py_ssize_t endpos) -/*[clinic end generated code: output=ec6208ea58a0cca0 input=4bdb9c3e564d13ac]*/ +_sre_SRE_Pattern_prefixmatch_impl(PatternObject *self, PyTypeObject *cls, + PyObject *string, Py_ssize_t pos, + Py_ssize_t endpos) +/*[clinic end generated code: output=a0e079fb4f875240 input=e2a7e68ea47d048c]*/ { _sremodulestate *module_state = get_sre_module_state_by_class(cls); SRE_STATE state; @@ -809,6 +809,7 @@ _sre_SRE_Pattern_match_impl(PatternObject *self, PyTypeObject *cls, return match; } + /*[clinic input] _sre.SRE_Pattern.fullmatch @@ -2671,7 +2672,7 @@ _sre_SRE_Match___deepcopy___impl(MatchObject *self, PyObject *memo) } PyDoc_STRVAR(match_doc, -"The result of re.match() and re.search().\n\ +"The result of re.search(), re.prefixmatch(), and re.fullmatch().\n\ Match objects always have a boolean value of True."); PyDoc_STRVAR(match_group_doc, @@ -2863,7 +2864,7 @@ scanner_end(ScannerObject* self) } /*[clinic input] -_sre.SRE_Scanner.match +_sre.SRE_Scanner.prefixmatch cls: defining_class / @@ -2871,8 +2872,8 @@ _sre.SRE_Scanner.match [clinic start generated code]*/ static PyObject * -_sre_SRE_Scanner_match_impl(ScannerObject *self, PyTypeObject *cls) -/*[clinic end generated code: output=6e22c149dc0f0325 input=b5146e1f30278cb7]*/ +_sre_SRE_Scanner_prefixmatch_impl(ScannerObject *self, PyTypeObject *cls) +/*[clinic end generated code: output=02b3b9d2954a2157 input=3049b20466c56a8e]*/ { _sremodulestate *module_state = get_sre_module_state_by_class(cls); SRE_STATE* state = &self->state; @@ -3170,7 +3171,12 @@ pattern_richcompare(PyObject *lefto, PyObject *righto, int op) #include "clinic/sre.c.h" static PyMethodDef pattern_methods[] = { - _SRE_SRE_PATTERN_MATCH_METHODDEF + _SRE_SRE_PATTERN_PREFIXMATCH_METHODDEF + /* "match" reuses the prefixmatch Clinic-generated parser and impl + * to avoid duplicating the argument parsing boilerplate code. */ + {"match", _PyCFunction_CAST(_sre_SRE_Pattern_prefixmatch), + METH_METHOD|METH_FASTCALL|METH_KEYWORDS, + _sre_SRE_Pattern_prefixmatch__doc__}, _SRE_SRE_PATTERN_FULLMATCH_METHODDEF _SRE_SRE_PATTERN_SEARCH_METHODDEF _SRE_SRE_PATTERN_SUB_METHODDEF @@ -3297,7 +3303,12 @@ static PyType_Spec match_spec = { }; static PyMethodDef scanner_methods[] = { - _SRE_SRE_SCANNER_MATCH_METHODDEF + _SRE_SRE_SCANNER_PREFIXMATCH_METHODDEF + /* "match" reuses the prefixmatch Clinic-generated parser and impl + * to avoid duplicating the argument parsing boilerplate code. */ + {"match", _PyCFunction_CAST(_sre_SRE_Scanner_prefixmatch), + METH_METHOD|METH_FASTCALL|METH_KEYWORDS, + _sre_SRE_Scanner_prefixmatch__doc__}, _SRE_SRE_SCANNER_SEARCH_METHODDEF {NULL, NULL} }; @@ -3401,11 +3412,31 @@ do { \ } \ } while (0) + +#ifdef Py_DEBUG +static void +_assert_match_aliases_prefixmatch(PyMethodDef *methods) +{ + PyMethodDef *prefixmatch_md = &methods[0]; + PyMethodDef *match_md = &methods[1]; + assert(strcmp(prefixmatch_md->ml_name, "prefixmatch") == 0); + assert(strcmp(match_md->ml_name, "match") == 0); + assert(match_md->ml_meth == prefixmatch_md->ml_meth); + assert(match_md->ml_flags == prefixmatch_md->ml_flags); + assert(match_md->ml_doc == prefixmatch_md->ml_doc); +} +#endif + static int sre_exec(PyObject *m) { _sremodulestate *state; +#ifdef Py_DEBUG + _assert_match_aliases_prefixmatch(pattern_methods); + _assert_match_aliases_prefixmatch(scanner_methods); +#endif + /* Create heap types */ state = get_sre_module_state(m); CREATE_TYPE(m, state->Pattern_Type, &pattern_spec); From c91638ca0671b8038831f963ed44e66cdda006a2 Mon Sep 17 00:00:00 2001 From: Ramin Farajpour Cami Date: Mon, 16 Feb 2026 06:13:07 +0330 Subject: [PATCH 020/110] gh-144833: Fix use-after-free in SSL module when SSL_new() fails (GH-144843) In newPySSLSocket(), when SSL_new() returns NULL, Py_DECREF(self) was called before _setSSLError(get_state_ctx(self), ...), causing a use-after-free. Additionally, get_state_ctx() was called with self (PySSLSocket*) instead of sslctx (PySSLContext*), which is a type confusion bug. Fix by calling _setSSLError() before Py_DECREF() and using sslctx instead of self for get_state_ctx(). --- .../Library/2026-02-15-00-00-00.gh-issue-144833.TUelo1.rst | 3 +++ Modules/_ssl.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-15-00-00-00.gh-issue-144833.TUelo1.rst diff --git a/Misc/NEWS.d/next/Library/2026-02-15-00-00-00.gh-issue-144833.TUelo1.rst b/Misc/NEWS.d/next/Library/2026-02-15-00-00-00.gh-issue-144833.TUelo1.rst new file mode 100644 index 00000000000000..6d5b18f59ee7ea --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-15-00-00-00.gh-issue-144833.TUelo1.rst @@ -0,0 +1,3 @@ +Fixed a use-after-free in :mod:`ssl` when ``SSL_new()`` returns NULL in +``newPySSLSocket()``. The error was reported via a dangling pointer after the +object had already been freed. diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 66d699b4339ce3..b0c0d8deeecd23 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -917,8 +917,8 @@ newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock, self->ssl = SSL_new(ctx); PySSL_END_ALLOW_THREADS(sslctx) if (self->ssl == NULL) { + _setSSLError(get_state_ctx(sslctx), NULL, 0, __FILE__, __LINE__); Py_DECREF(self); - _setSSLError(get_state_ctx(self), NULL, 0, __FILE__, __LINE__); return NULL; } From 87c7f193b8ea7be36f3ba5a66b5c223efde4c674 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Sun, 15 Feb 2026 23:02:07 -0600 Subject: [PATCH 021/110] gh-144551: Update Android builds to use OpenSSL 3.0.19 (GH-144864) --- Android/android.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android/android.py b/Android/android.py index 629696be3db300..0a894a958a0165 100755 --- a/Android/android.py +++ b/Android/android.py @@ -208,7 +208,7 @@ def make_build_python(context): def unpack_deps(host, prefix_dir): os.chdir(prefix_dir) deps_url = "https://github.com/beeware/cpython-android-source-deps/releases/download" - for name_ver in ["bzip2-1.0.8-3", "libffi-3.4.4-3", "openssl-3.0.18-0", + for name_ver in ["bzip2-1.0.8-3", "libffi-3.4.4-3", "openssl-3.0.19-1", "sqlite-3.50.4-0", "xz-5.4.6-1", "zstd-1.5.7-1"]: filename = f"{name_ver}-{host}.tar.gz" download(f"{deps_url}/{name_ver}/{filename}") From ebe02e4f393bc0bd2263c43da313b28012f82af9 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Sun, 15 Feb 2026 23:02:23 -0600 Subject: [PATCH 022/110] gh-144551: Update iOS builds to use OpenSSL 3.0.19 (GH-144865) --- Apple/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apple/__main__.py b/Apple/__main__.py index 256966e76c2c97..253bdfaab5520c 100644 --- a/Apple/__main__.py +++ b/Apple/__main__.py @@ -316,7 +316,7 @@ def unpack_deps( for name_ver in [ "BZip2-1.0.8-2", "libFFI-3.4.7-2", - "OpenSSL-3.0.18-1", + "OpenSSL-3.0.19-1", "XZ-5.6.4-2", "mpdecimal-4.0.0-2", "zstd-1.5.7-1", From 8b7b5a994602824a5e41cf2516691212fcdfa25e Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 16 Feb 2026 13:31:18 +0200 Subject: [PATCH 023/110] gh-80667: Fix Tangut ideographs names in unicodedata (GH-144789) Co-authored-by: Pierre Le Marre --- Lib/test/test_ucn.py | 24 ++++ Lib/test/test_unicodedata.py | 107 +++++++++++++++++- ...3-02-05-20-02-30.gh-issue-80667.7LmzeA.rst | 1 + Modules/unicodedata.c | 105 ++++++++++------- Modules/unicodename_db.h | 28 +++++ Tools/unicode/makeunicodedata.py | 53 +++++---- 6 files changed, 254 insertions(+), 64 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2023-02-05-20-02-30.gh-issue-80667.7LmzeA.rst diff --git a/Lib/test/test_ucn.py b/Lib/test/test_ucn.py index 0c641a455c0747..5f4f1b8e52ccef 100644 --- a/Lib/test/test_ucn.py +++ b/Lib/test/test_ucn.py @@ -111,6 +111,30 @@ def test_cjk_unified_ideographs(self): self.checkletter("cjK UniFIeD idEogRAph-2aBcD", "\U0002abcd") self.checkletter("CJk uNIfiEd IDeOGraPH-2AbCd", "\U0002abcd") + def test_tangut_ideographs(self): + self.checkletter("TANGUT IDEOGRAPH-17000", "\U00017000") + self.checkletter("TANGUT IDEOGRAPH-187FF", "\U000187ff") + self.checkletter("TANGUT IDEOGRAPH-18D00", "\U00018D00") + self.checkletter("TANGUT IDEOGRAPH-18D1E", "\U00018d1e") + self.checkletter("tangut ideograph-18d1e", "\U00018d1e") + + def test_egyptian_hieroglyphs(self): + self.checkletter("EGYPTIAN HIEROGLYPH-13460", "\U00013460") + self.checkletter("EGYPTIAN HIEROGLYPH-143FA", "\U000143fa") + self.checkletter("egyptian hieroglyph-143fa", "\U000143fa") + + def test_khitan_small_script_characters(self): + self.checkletter("KHITAN SMALL SCRIPT CHARACTER-18B00", "\U00018b00") + self.checkletter("KHITAN SMALL SCRIPT CHARACTER-18CD5", "\U00018cd5") + self.checkletter("KHITAN SMALL SCRIPT CHARACTER-18CFF", "\U00018cff") + self.checkletter("KHITAN SMALL SCRIPT CHARACTER-18CFF", "\U00018cff") + self.checkletter("khitan small script character-18cff", "\U00018cff") + + def test_nushu_characters(self): + self.checkletter("NUSHU CHARACTER-1B170", "\U0001b170") + self.checkletter("NUSHU CHARACTER-1B2FB", "\U0001b2fb") + self.checkletter("nushu character-1b2fb", "\U0001b2fb") + def test_bmp_characters(self): for code in range(0x10000): char = chr(code) diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 83b94f97c22c9d..d100dae1110b7f 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -128,6 +128,60 @@ def test_function_checksum(self): result = h.hexdigest() self.assertEqual(result, self.expectedchecksum) + def test_name(self): + name = self.db.name + self.assertRaises(ValueError, name, '\0') + self.assertRaises(ValueError, name, '\n') + self.assertRaises(ValueError, name, '\x1F') + self.assertRaises(ValueError, name, '\x7F') + self.assertRaises(ValueError, name, '\x9F') + self.assertRaises(ValueError, name, '\uFFFE') + self.assertRaises(ValueError, name, '\uFFFF') + self.assertRaises(ValueError, name, '\U0010FFFF') + self.assertEqual(name('\U0010FFFF', 42), 42) + + self.assertEqual(name(' '), 'SPACE') + self.assertEqual(name('1'), 'DIGIT ONE') + self.assertEqual(name('A'), 'LATIN CAPITAL LETTER A') + self.assertEqual(name('\xA0'), 'NO-BREAK SPACE') + self.assertEqual(name('\u0221', None), None if self.old else + 'LATIN SMALL LETTER D WITH CURL') + self.assertEqual(name('\u3400'), 'CJK UNIFIED IDEOGRAPH-3400') + self.assertEqual(name('\u9FA5'), 'CJK UNIFIED IDEOGRAPH-9FA5') + self.assertEqual(name('\uAC00'), 'HANGUL SYLLABLE GA') + self.assertEqual(name('\uD7A3'), 'HANGUL SYLLABLE HIH') + self.assertEqual(name('\uF900'), 'CJK COMPATIBILITY IDEOGRAPH-F900') + self.assertEqual(name('\uFA6A'), 'CJK COMPATIBILITY IDEOGRAPH-FA6A') + self.assertEqual(name('\uFBF9'), + 'ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ' + 'ABOVE WITH ALEF MAKSURA ISOLATED FORM') + self.assertEqual(name('\U00013460', None), None if self.old else + 'EGYPTIAN HIEROGLYPH-13460') + self.assertEqual(name('\U000143FA', None), None if self.old else + 'EGYPTIAN HIEROGLYPH-143FA') + self.assertEqual(name('\U00017000', None), None if self.old else + 'TANGUT IDEOGRAPH-17000') + self.assertEqual(name('\U00018B00', None), None if self.old else + 'KHITAN SMALL SCRIPT CHARACTER-18B00') + self.assertEqual(name('\U00018CD5', None), None if self.old else + 'KHITAN SMALL SCRIPT CHARACTER-18CD5') + self.assertEqual(name('\U00018CFF', None), None if self.old else + 'KHITAN SMALL SCRIPT CHARACTER-18CFF') + self.assertEqual(name('\U00018D1E', None), None if self.old else + 'TANGUT IDEOGRAPH-18D1E') + self.assertEqual(name('\U0001B170', None), None if self.old else + 'NUSHU CHARACTER-1B170') + self.assertEqual(name('\U0001B2FB', None), None if self.old else + 'NUSHU CHARACTER-1B2FB') + self.assertEqual(name('\U0001FBA8', None), None if self.old else + 'BOX DRAWINGS LIGHT DIAGONAL UPPER CENTRE TO ' + 'MIDDLE LEFT AND MIDDLE RIGHT TO LOWER CENTRE') + self.assertEqual(name('\U0002A6D6'), 'CJK UNIFIED IDEOGRAPH-2A6D6') + self.assertEqual(name('\U0002FA1D'), 'CJK COMPATIBILITY IDEOGRAPH-2FA1D') + self.assertEqual(name('\U00033479', None), None if self.old else + 'CJK UNIFIED IDEOGRAPH-33479') + + @requires_resource('cpu') def test_name_inverse_lookup(self): for char in iterallchars(): looked_name = self.db.name(char, None) @@ -151,6 +205,17 @@ def test_lookup_nonexistant(self): "HANDBUG", "MODIFIER LETTER CYRILLIC SMALL QUESTION MARK", "???", + "CJK UNIFIED IDEOGRAPH-03400", + "CJK UNIFIED IDEOGRAPH-020000", + "CJK UNIFIED IDEOGRAPH-33FF", + "CJK UNIFIED IDEOGRAPH-F900", + "CJK UNIFIED IDEOGRAPH-13460", + "CJK UNIFIED IDEOGRAPH-17000", + "CJK UNIFIED IDEOGRAPH-18B00", + "CJK UNIFIED IDEOGRAPH-1B170", + "CJK COMPATIBILITY IDEOGRAPH-3400", + "TANGUT IDEOGRAPH-3400", + "HANGUL SYLLABLE AC00", ]: self.assertRaises(KeyError, self.db.lookup, nonexistent) @@ -613,7 +678,47 @@ class UnicodeFunctionsTest(unittest.TestCase, BaseUnicodeFunctionsTest): # (e.g. 'make distclean && make') to get the correct checksum. expectedchecksum = ('83cc43a2fbb779185832b4c049217d80b05bf349' if quicktest else - '65670ae03a324c5f9e826a4de3e25bae4d73c9b7') + '180bdc91143d8aa2eb9dd6726e66d37606205942') + + @requires_resource('network') + def test_all_names(self): + TESTDATAFILE = "DerivedName.txt" + testdata = download_test_data_file(TESTDATAFILE) + + with testdata: + self.run_name_tests(testdata) + + def run_name_tests(self, testdata): + names_ref = {} + + def parse_cp(s): + return int(s, 16) + + # Parse data + for line in testdata: + line = line.strip() + if not line or line.startswith("#"): + continue + raw_cp, name = line.split("; ") + # Check for a range + if ".." in raw_cp: + cp1, cp2 = map(parse_cp, raw_cp.split("..")) + # remove ‘*’ at the end + assert name[-1] == '*', (raw_cp, name) + name = name[:-1] + for cp in range(cp1, cp2 + 1): + names_ref[cp] = f"{name}{cp:04X}" + elif name[-1] == '*': + cp = parse_cp(raw_cp) + name = name[:-1] + names_ref[cp] = f"{name}{cp:04X}" + else: + assert '*' not in name, (raw_cp, name) + cp = parse_cp(raw_cp) + names_ref[cp] = name + + for cp in range(0, sys.maxunicode + 1): + self.assertEqual(self.db.name(chr(cp), None), names_ref.get(cp)) def test_isxidstart(self): self.assertTrue(self.db.isxidstart('S')) diff --git a/Misc/NEWS.d/next/Library/2023-02-05-20-02-30.gh-issue-80667.7LmzeA.rst b/Misc/NEWS.d/next/Library/2023-02-05-20-02-30.gh-issue-80667.7LmzeA.rst new file mode 100644 index 00000000000000..f82f1eeb0589c6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-02-05-20-02-30.gh-issue-80667.7LmzeA.rst @@ -0,0 +1 @@ +Add support for Tangut Ideographs names in :mod:`unicodedata`. diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 44ffedec3840fe..1ed9760874b2a6 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -1052,22 +1052,18 @@ static const char * const hangul_syllables[][3] = { { 0, 0, "H" } }; -/* These ranges need to match makeunicodedata.py:cjk_ranges. */ static int -is_unified_ideograph(Py_UCS4 code) -{ - return - (0x3400 <= code && code <= 0x4DBF) || /* CJK Ideograph Extension A */ - (0x4E00 <= code && code <= 0x9FFF) || /* CJK Ideograph */ - (0x20000 <= code && code <= 0x2A6DF) || /* CJK Ideograph Extension B */ - (0x2A700 <= code && code <= 0x2B73F) || /* CJK Ideograph Extension C */ - (0x2B740 <= code && code <= 0x2B81D) || /* CJK Ideograph Extension D */ - (0x2B820 <= code && code <= 0x2CEAD) || /* CJK Ideograph Extension E */ - (0x2CEB0 <= code && code <= 0x2EBE0) || /* CJK Ideograph Extension F */ - (0x2EBF0 <= code && code <= 0x2EE5D) || /* CJK Ideograph Extension I */ - (0x30000 <= code && code <= 0x3134A) || /* CJK Ideograph Extension G */ - (0x31350 <= code && code <= 0x323AF) || /* CJK Ideograph Extension H */ - (0x323B0 <= code && code <= 0x33479); /* CJK Ideograph Extension J */ +find_prefix_id(Py_UCS4 code) +{ + for (int i = 0; i < (int)Py_ARRAY_LENGTH(derived_name_ranges); i++) { + if (code < derived_name_ranges[i].first) { + return -1; + } + if (code <= derived_name_ranges[i].last) { + return derived_name_ranges[i].prefixid; + } + } + return -1; } /* macros used to determine if the given code point is in the PUA range that @@ -1345,7 +1341,9 @@ _getucname(PyObject *self, } } - if (SBase <= code && code < SBase+SCount) { + int prefixid = find_prefix_id(code); + if (prefixid == 0) { + assert(SBase <= code && code < SBase+SCount); /* Hangul syllable. */ int SIndex = code - SBase; int L = SIndex / NCount; @@ -1367,11 +1365,11 @@ _getucname(PyObject *self, return 1; } - if (is_unified_ideograph(code)) { - if (buflen < 28) - /* Worst case: CJK UNIFIED IDEOGRAPH-20000 */ + if (prefixid > 0) { + const char *prefix = derived_name_prefixes[prefixid]; + if (snprintf(buffer, buflen, "%s%04X", prefix, code) >= buflen) { return 0; - sprintf(buffer, "CJK UNIFIED IDEOGRAPH-%X", code); + } return 1; } @@ -1428,6 +1426,35 @@ _check_alias_and_seq(Py_UCS4* code, int with_named_seq) return 1; } +static Py_UCS4 +parse_hex_code(const char *name, int namelen) +{ + if (namelen < 4 || namelen > 6) { + return (Py_UCS4)-1; + } + if (*name == '0') { + return (Py_UCS4)-1; + } + int v = 0; + while (namelen--) { + v *= 16; + Py_UCS1 c = Py_TOUPPER(*name); + if (c >= '0' && c <= '9') { + v += c - '0'; + } + else if (c >= 'A' && c <= 'F') { + v += c - 'A' + 10; + } + else { + return (Py_UCS4)-1; + } + name++; + } + if (v > 0x10ffff) { + return (Py_UCS4)-1; + } + return v; +} static int _getcode(const char* name, int namelen, Py_UCS4* code) @@ -1436,8 +1463,19 @@ _getcode(const char* name, int namelen, Py_UCS4* code) * Named aliases are not resolved, they are returned as a code point in the * PUA */ - /* Check for hangul syllables. */ - if (PyOS_strnicmp(name, "HANGUL SYLLABLE ", 16) == 0) { + int i = 0; + size_t prefixlen; + for (; i < (int)Py_ARRAY_LENGTH(derived_name_prefixes); i++) { + const char *prefix = derived_name_prefixes[i]; + prefixlen = strlen(derived_name_prefixes[i]); + if (PyOS_strnicmp(name, prefix, prefixlen) == 0) { + break; + } + } + + if (i == 0) { + /* Hangul syllables. */ + assert(PyOS_strnicmp(name, "HANGUL SYLLABLE ", 16) == 0); int len, L = -1, V = -1, T = -1; const char *pos = name + 16; find_syllable(pos, &len, &L, LCount, 0); @@ -1454,28 +1492,11 @@ _getcode(const char* name, int namelen, Py_UCS4* code) return 0; } - /* Check for unified ideographs. */ - if (PyOS_strnicmp(name, "CJK UNIFIED IDEOGRAPH-", 22) == 0) { - /* Four or five hexdigits must follow. */ - unsigned int v; - v = 0; - name += 22; - namelen -= 22; - if (namelen != 4 && namelen != 5) + if (i < (int)Py_ARRAY_LENGTH(derived_name_prefixes)) { + Py_UCS4 v = parse_hex_code(name + prefixlen, namelen - prefixlen); + if (find_prefix_id(v) != i) { return 0; - while (namelen--) { - v *= 16; - Py_UCS1 c = Py_TOUPPER(*name); - if (c >= '0' && c <= '9') - v += c - '0'; - else if (c >= 'A' && c <= 'F') - v += c - 'A' + 10; - else - return 0; - name++; } - if (!is_unified_ideograph(v)) - return 0; *code = v; return 1; } diff --git a/Modules/unicodename_db.h b/Modules/unicodename_db.h index d67e968e7a01ae..d9d062a2345974 100644 --- a/Modules/unicodename_db.h +++ b/Modules/unicodename_db.h @@ -19684,3 +19684,31 @@ static const named_sequence named_sequences[] = { {2, {0x02E5, 0x02E9}}, {2, {0x02E9, 0x02E5}}, }; + +typedef struct { + Py_UCS4 first; + Py_UCS4 last; + int prefixid; +} derived_name_range; + +static const derived_name_range derived_name_ranges[] = { + {0x3400, 0x4DBF, 1}, + {0x4E00, 0x9FFF, 1}, + {0xAC00, 0xD7A3, 0}, + {0x17000, 0x187FF, 2}, + {0x18D00, 0x18D1E, 2}, + {0x20000, 0x2A6DF, 1}, + {0x2A700, 0x2B73F, 1}, + {0x2B740, 0x2B81D, 1}, + {0x2B820, 0x2CEAD, 1}, + {0x2CEB0, 0x2EBE0, 1}, + {0x2EBF0, 0x2EE5D, 1}, + {0x30000, 0x3134A, 1}, + {0x31350, 0x323AF, 1}, + {0x323B0, 0x33479, 1}, +}; +static const char * const derived_name_prefixes[] = { + "HANGUL SYLLABLE ", + "CJK UNIFIED IDEOGRAPH-", + "TANGUT IDEOGRAPH-", +}; diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index f5fa30a3622a3a..432dc3a68bf5ed 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -109,19 +109,13 @@ CASED_MASK = 0x2000 EXTENDED_CASE_MASK = 0x4000 -# these ranges need to match unicodedata.c:is_unified_ideograph -cjk_ranges = [ - ('3400', '4DBF'), # CJK Ideograph Extension A CJK - ('4E00', '9FFF'), # CJK Ideograph - ('20000', '2A6DF'), # CJK Ideograph Extension B - ('2A700', '2B73F'), # CJK Ideograph Extension C - ('2B740', '2B81D'), # CJK Ideograph Extension D - ('2B820', '2CEAD'), # CJK Ideograph Extension E - ('2CEB0', '2EBE0'), # CJK Ideograph Extension F - ('2EBF0', '2EE5D'), # CJK Ideograph Extension I - ('30000', '3134A'), # CJK Ideograph Extension G - ('31350', '323AF'), # CJK Ideograph Extension H - ('323B0', '33479'), # CJK Ideograph Extension J +# Maps the range names in UnicodeData.txt to prefixes for +# derived names specified by rule NR2. +# Hangul should always be at index 0, since it uses special format. +derived_name_range_names = [ + ("Hangul Syllable", "HANGUL SYLLABLE "), + ("CJK Ideograph", "CJK UNIFIED IDEOGRAPH-"), + ("Tangut Ideograph", "TANGUT IDEOGRAPH-"), ] @@ -135,7 +129,7 @@ def maketables(trace=0): for version in old_versions: print("--- Reading", UNICODE_DATA % ("-"+version), "...") - old_unicode = UnicodeData(version, cjk_check=False) + old_unicode = UnicodeData(version, ideograph_check=False) print(len(list(filter(None, old_unicode.table))), "characters") merge_old_version(version, unicode, old_unicode) @@ -731,6 +725,23 @@ def makeunicodename(unicode, trace): fprint(' {%d, {%s}},' % (len(sequence), seq_str)) fprint('};') + fprint(dedent(""" + typedef struct { + Py_UCS4 first; + Py_UCS4 last; + int prefixid; + } derived_name_range; + """)) + + fprint('static const derived_name_range derived_name_ranges[] = {') + for name_range in unicode.derived_name_ranges: + fprint(' {0x%s, 0x%s, %d},' % name_range) + fprint('};') + + fprint('static const char * const derived_name_prefixes[] = {') + for _, prefix in derived_name_range_names: + fprint(' "%s",' % prefix) + fprint('};') def merge_old_version(version, new, old): # Changes to exclusion file not implemented yet @@ -946,14 +957,14 @@ def from_row(row: List[str]) -> UcdRecord: class UnicodeData: # table: List[Optional[UcdRecord]] # index is codepoint; None means unassigned - def __init__(self, version, cjk_check=True): + def __init__(self, version, ideograph_check=True): self.changed = [] table = [None] * 0x110000 for s in UcdFile(UNICODE_DATA, version): char = int(s[0], 16) table[char] = from_row(s) - cjk_ranges_found = [] + self.derived_name_ranges = [] # expand first-last ranges field = None @@ -967,15 +978,15 @@ def __init__(self, version, cjk_check=True): s.name = "" field = dataclasses.astuple(s)[:15] elif s.name[-5:] == "Last>": - if s.name.startswith(" Date: Mon, 16 Feb 2026 14:14:26 +0100 Subject: [PATCH 024/110] bpo-32234: Allow mailbox instances as context managers (GH-4770) Co-authored-by: Petr Viktorin Co-authored-by: R. David Murray --- Doc/library/mailbox.rst | 8 ++++++++ Lib/mailbox.py | 7 +++++++ Lib/test/test_mailbox.py | 15 +++++++++++++++ .../2017-12-15-09-32-57.bpo-32234.XaOkhR.rst | 2 ++ 4 files changed, 32 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2017-12-15-09-32-57.bpo-32234.XaOkhR.rst diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst index ed135bf02cb968..3b0c17c838c879 100644 --- a/Doc/library/mailbox.rst +++ b/Doc/library/mailbox.rst @@ -78,6 +78,14 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF. message. Failing to lock the mailbox runs the risk of losing messages or corrupting the entire mailbox. + The :class:`!Mailbox` class supports the :keyword:`with` statement. When used + as a context manager, :class:`!Mailbox` calls :meth:`lock` when the context is entered, + returns the mailbox object as the context object, and at context end calls :meth:`close`, + thereby releasing the lock. + + .. versionchanged:: next + Support for the :keyword:`with` statement was added. + :class:`!Mailbox` instances have the following methods: diff --git a/Lib/mailbox.py b/Lib/mailbox.py index 65923e9c5de324..99426220154360 100644 --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -39,6 +39,13 @@ def __init__(self, path, factory=None, create=True): self._path = os.path.abspath(os.path.expanduser(path)) self._factory = factory + def __enter__(self): + self.lock() + return self + + def __exit__(self, type, value, traceback): + self.close() + def add(self, message): """Add message and return assigned key.""" raise NotImplementedError('Method must be implemented by subclass') diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py index 288b2c4496faa1..7421076ddd4c3a 100644 --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -542,6 +542,11 @@ def _test_flush_or_close(self, method, should_call_close): self.assertIn(self._box.get_string(key), contents) oldbox.close() + def test_use_context_manager(self): + # Mailboxes are usable as a context manager + with self._box as box: + self.assertIs(self._box, box) + def test_dump_message(self): # Write message representations to disk for input in (email.message_from_string(_sample_message), @@ -1122,6 +1127,16 @@ def test_ownership_after_flush(self): self.assertEqual(st.st_gid, other_gid) self.assertEqual(st.st_mode, mode) + def test_context_manager_locks_and_closes(self): + # Context manager locks/unlocks and closes. + # (This test uses an implementation detail to get the state.) + self.assertFalse(self._box._locked) + with self._box as context_object: + self.assertIs(self._box, context_object) + self.assertTrue(self._box._locked) + self.assertFalse(self._box._file.closed) + self.assertFalse(self._box._locked) + self.assertTrue(self._box._file.closed) class _TestMboxMMDF(_TestSingleFile): diff --git a/Misc/NEWS.d/next/Library/2017-12-15-09-32-57.bpo-32234.XaOkhR.rst b/Misc/NEWS.d/next/Library/2017-12-15-09-32-57.bpo-32234.XaOkhR.rst new file mode 100644 index 00000000000000..b22289835620df --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-12-15-09-32-57.bpo-32234.XaOkhR.rst @@ -0,0 +1,2 @@ +:class:`mailbox.Mailbox` instances can now be used as a context manager. +The Mailbox is locked on context entry and unlocked and closed at context exit. From 1797508ead02935ca7da859221247f4a7168cebd Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Mon, 16 Feb 2026 21:48:08 +0000 Subject: [PATCH 025/110] gh-144878: Gate PEP 810 builtins in xpickle compat tests (#144889) --- Lib/test/pickletester.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 7b1b117d6d3e32..5f627f047ea319 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -3202,6 +3202,7 @@ def test_builtin_exceptions(self): 'ExceptionGroup': (3, 11), '_IncompleteInputError': (3, 13), 'PythonFinalizationError': (3, 13), + 'ImportCycleError': (3, 15), } for t in builtins.__dict__.values(): if isinstance(t, type) and issubclass(t, BaseException): @@ -3228,6 +3229,7 @@ def test_builtin_functions(self): 'breakpoint': (3, 7), 'aiter': (3, 10), 'anext': (3, 10), + '__lazy_import__': (3, 15), } for t in builtins.__dict__.values(): if isinstance(t, types.BuiltinFunctionType): From 185a6e942af3e44b3bdb2bdcf2d55c0a6208f89b Mon Sep 17 00:00:00 2001 From: "Jason Yalim, PhD" <4813268+jyalim@users.noreply.github.com> Date: Mon, 16 Feb 2026 15:20:37 -0700 Subject: [PATCH 026/110] gh-140715: Add `%D` format code support to `strptime()` (GH-144819) * %D support for strptime, including test and Doc update * additional %D test * change documentation example date for %D so it is more legible to non-US readers * change testing date for %D so it is more legible to non-US readers * mv News blurb to Library, consistent with previous %F change * change invalid format code from %D to C-standard unused %! * Fix erroneous and misleading example Doc to %y from %Y, use correct C99+ definition for C99 %D; update additional tests --------- Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> --- Doc/library/datetime.rst | 6 +++--- Lib/_strptime.py | 1 + Lib/test/datetimetester.py | 7 +++++++ Lib/test/test_strptime.py | 9 ++++++++- Lib/test/test_time.py | 4 ++-- .../2026-02-14-14-56-44.gh-issue-140715.AbSheM.rst | 1 + 6 files changed, 22 insertions(+), 6 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-14-14-56-44.gh-issue-140715.AbSheM.rst diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index d861139cec6db5..39a7a1530a95cc 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -2534,8 +2534,8 @@ requires, and these work on all supported platforms. | ``%d`` | Day of the month as a | 01, 02, ..., 31 | \(9) | | | zero-padded decimal number. | | | +-----------+--------------------------------+------------------------+-------+ -| ``%D`` | Equivalent to ``%m/%d/%y``. | 11/10/2025 | \(9), | -| | | | \(0) | +| ``%D`` | Equivalent to ``%m/%d/%y``. | 11/28/25 | \(9) | +| | | | | +-----------+--------------------------------+------------------------+-------+ | ``%e`` | The day of the month as a | ␣1, ␣2, ..., 31 | | | | space-padded decimal number. | | | @@ -2676,7 +2676,7 @@ differences between platforms in handling of unsupported format specifiers. ``%:z`` was added for :meth:`~.datetime.strftime`. .. versionadded:: 3.15 - ``%:z`` and ``%F`` were added for :meth:`~.datetime.strptime`. + ``%:z``, ``%F``, and ``%D`` were added for :meth:`~.datetime.strptime`. Technical Detail ^^^^^^^^^^^^^^^^ diff --git a/Lib/_strptime.py b/Lib/_strptime.py index 8b62ea734b7d11..fe34808d88769a 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -418,6 +418,7 @@ def __init__(self, locale_time=None): mapping['W'] = mapping['U'].replace('U', 'W') base.__init__(mapping) + base.__setitem__('D', self.pattern('%m/%d/%y')) base.__setitem__('F', self.pattern('%Y-%m-%d')) base.__setitem__('T', self.pattern('%H:%M:%S')) base.__setitem__('R', self.pattern('%H:%M')) diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py index 3784909ee77839..97eec618932aa5 100644 --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -2200,6 +2200,13 @@ def test_strptime_F_format(self): self.theclass.strptime(test_date, "%Y-%m-%d") ) + def test_strptime_D_format(self): + test_date = "11/28/25" + self.assertEqual( + self.theclass.strptime(test_date, "%D"), + self.theclass.strptime(test_date, "%m/%d/%y") + ) + ############################################################################# # datetime tests diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py index 0784ea6a4cf5d4..fd8525feb88d53 100644 --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -286,7 +286,7 @@ def test_ValueError(self): def test_strptime_exception_context(self): # check that this doesn't chain exceptions needlessly (see #17572) with self.assertRaises(ValueError) as e: - _strptime._strptime_time('', '%D') + _strptime._strptime_time('', '%!') self.assertTrue(e.exception.__suppress_context__) # additional check for stray % branch with self.assertRaises(ValueError) as e: @@ -663,6 +663,13 @@ def test_strptime_T_format(self): time.strptime(test_time, "%H:%M:%S") ) + def test_strptime_D_format(self): + test_date = "11/28/25" + self.assertEqual( + time.strptime(test_date, "%D"), + time.strptime(test_date, "%m/%d/%y") + ) + class Strptime12AMPMTests(unittest.TestCase): """Test a _strptime regression in '%I %p' at 12 noon (12 PM)""" diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index da0cf494bfa8ad..da5fd16b8b6291 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -358,7 +358,7 @@ def test_strptime(self): # Should be able to go round-trip from strftime to strptime without # raising an exception. tt = time.gmtime(self.t) - for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'F', 'H', 'I', + for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'D', 'F', 'H', 'I', 'j', 'm', 'M', 'p', 'S', 'T', 'U', 'w', 'W', 'x', 'X', 'y', 'Y', 'Z', '%'): format = '%' + directive @@ -379,7 +379,7 @@ def test_strptime_bytes(self): def test_strptime_exception_context(self): # check that this doesn't chain exceptions needlessly (see #17572) with self.assertRaises(ValueError) as e: - time.strptime('', '%D') + time.strptime('', '%!') self.assertTrue(e.exception.__suppress_context__) # additional check for stray % branch with self.assertRaises(ValueError) as e: diff --git a/Misc/NEWS.d/next/Library/2026-02-14-14-56-44.gh-issue-140715.AbSheM.rst b/Misc/NEWS.d/next/Library/2026-02-14-14-56-44.gh-issue-140715.AbSheM.rst new file mode 100644 index 00000000000000..f7782f2fa4f23b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-14-14-56-44.gh-issue-140715.AbSheM.rst @@ -0,0 +1 @@ +Add ``'%D'`` support to :meth:`~datetime.datetime.strptime`. From 18c04f2e2a7e47329e9eefc5f269afe2d68729b0 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Mon, 16 Feb 2026 22:57:49 +0000 Subject: [PATCH 027/110] gh-142349: Fix ast.unparse for lazy import statements (#144893) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The unparser was not handling the `is_lazy` attribute on Import and ImportFrom AST nodes, causing lazy imports to be unparsed as regular imports. This broke the round-trip (parse → unparse → reparse) for any file containing `lazy import` statements. --- Lib/_ast_unparse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/_ast_unparse.py b/Lib/_ast_unparse.py index 1c8741b5a55483..0c3b1d3a9108a3 100644 --- a/Lib/_ast_unparse.py +++ b/Lib/_ast_unparse.py @@ -239,11 +239,11 @@ def visit_NamedExpr(self, node): self.traverse(node.value) def visit_Import(self, node): - self.fill("import ") + self.fill("lazy import " if node.is_lazy else "import ") self.interleave(lambda: self.write(", "), self.traverse, node.names) def visit_ImportFrom(self, node): - self.fill("from ") + self.fill("lazy from " if node.is_lazy else "from ") self.write("." * (node.level or 0)) if node.module: self.write(node.module) From 2f7634c0291c92cf1e040fc81c4210f0883e6036 Mon Sep 17 00:00:00 2001 From: Mauricio Villegas <5780272+mauvilsa@users.noreply.github.com> Date: Tue, 17 Feb 2026 03:28:21 +0100 Subject: [PATCH 028/110] gh-144782: Make sure that ArgumentParser instances are pickleable (#144783) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartosz Sławecki Co-authored-by: AN Long Co-authored-by: Savannah Ostrowski --- Lib/argparse.py | 10 +++++---- Lib/test/test_argparse.py | 21 +++++++++++++++++++ ...-02-13-14-20-10.gh-issue-144782.0Y8TKj.rst | 1 + 3 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-13-14-20-10.gh-issue-144782.0Y8TKj.rst diff --git a/Lib/argparse.py b/Lib/argparse.py index 0494b545f2f1d3..296a210ad832da 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -148,6 +148,10 @@ def _copy_items(items): return copy.copy(items) +def _identity(value): + return value + + # =============== # Formatting Help # =============== @@ -199,7 +203,7 @@ def _set_color(self, color, *, file=None): self._decolor = decolor else: self._theme = get_theme(force_no_color=True).argparse - self._decolor = lambda text: text + self._decolor = _identity # =============================== # Section and indentation methods @@ -1981,9 +1985,7 @@ def __init__(self, self._subparsers = None # register types - def identity(string): - return string - self.register('type', None, identity) + self.register('type', None, _identity) # add help argument if necessary # (using explicit default to override global argument_default) diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py index 78f02f70b9f0fc..4526efe4b80ef4 100644 --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -80,6 +80,27 @@ def test_skip_invalid_stdout(self): self.assertRegex(mocked_stderr.getvalue(), r'usage:') +class TestArgumentParserPickleable(unittest.TestCase): + + @force_not_colorized + def test_pickle_roundtrip(self): + import pickle + parser = argparse.ArgumentParser(exit_on_error=False) + parser.add_argument('--foo', type=int, default=42) + parser.add_argument('bar', nargs='?', default='baz') + for proto in range(pickle.HIGHEST_PROTOCOL + 1): + with self.subTest(protocol=proto): + # Try to pickle and unpickle the parser + parser2 = pickle.loads(pickle.dumps(parser, protocol=proto)) + # Check that the round-tripped parser still works + ns = parser2.parse_args(['--foo', '123', 'quux']) + self.assertEqual(ns.foo, 123) + self.assertEqual(ns.bar, 'quux') + ns2 = parser2.parse_args([]) + self.assertEqual(ns2.foo, 42) + self.assertEqual(ns2.bar, 'baz') + + class TestCase(unittest.TestCase): def setUp(self): diff --git a/Misc/NEWS.d/next/Library/2026-02-13-14-20-10.gh-issue-144782.0Y8TKj.rst b/Misc/NEWS.d/next/Library/2026-02-13-14-20-10.gh-issue-144782.0Y8TKj.rst new file mode 100644 index 00000000000000..871005fd7d986c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-13-14-20-10.gh-issue-144782.0Y8TKj.rst @@ -0,0 +1 @@ +Fix :class:`argparse.ArgumentParser` to be :mod:`pickleable `. From 63531a3867cf4f8b5a7088fb7667d33534c43ff7 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 17 Feb 2026 10:49:30 +0100 Subject: [PATCH 029/110] gh-143637: Fix test_socket.test_sendmsg_reentrant_ancillary_mutation() on Solaris (#144890) Use socket.SCM_RIGHTS operation. --- Lib/test/test_socket.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 3806ad988db214..9ad5b29ea58ecb 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2228,11 +2228,11 @@ def test_sendmsg_reentrant_ancillary_mutation(self): class Mut: def __index__(self): seq.clear() - return 0 + return socket.SCM_RIGHTS seq = [ - (socket.SOL_SOCKET, Mut(), b'x'), - (socket.SOL_SOCKET, 0, b'x'), + (socket.SOL_SOCKET, Mut(), b'xxxx'), + (socket.SOL_SOCKET, socket.SCM_RIGHTS, b'xxxx'), ] left, right = socket.socketpair() From 696cdfc0a25aa4f1ba200464bd710ff54a261a78 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 17 Feb 2026 10:54:41 +0100 Subject: [PATCH 030/110] gh-141510, PEP 814: Add built-in frozendict type (#144757) Add TYPE_FROZENDICT to the marshal module. Add C API functions: * PyAnyDict_Check() * PyAnyDict_CheckExact() * PyFrozenDict_Check() * PyFrozenDict_CheckExact() * PyFrozenDict_New() Add PyFrozenDict_Type C type. Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Adam Johnson Co-authored-by: Benedikt Johannes --- Doc/c-api/dict.rst | 57 +++- Doc/library/stdtypes.rst | 52 ++- Doc/whatsnew/3.15.rst | 27 ++ Include/cpython/dictobject.h | 15 +- Include/internal/pycore_dict.h | 9 + Include/internal/pycore_typeobject.h | 1 + Lib/_collections_abc.py | 1 + Lib/test/mapping_tests.py | 131 ++++---- Lib/test/test_dict.py | 52 +++ Lib/test/test_doctest/test_doctest.py | 2 +- Lib/test/test_inspect/test_inspect.py | 3 +- ...-02-12-19-03-31.gh-issue-141510.U_1tjz.rst | 9 + ...-02-12-19-01-13.gh-issue-141510.KlKjZg.rst | 1 + Objects/dictobject.c | 316 +++++++++++++++--- Objects/object.c | 5 +- Python/bltinmodule.c | 1 + Python/marshal.c | 22 +- Tools/c-analyzer/cpython/ignored.tsv | 1 + 18 files changed, 579 insertions(+), 126 deletions(-) create mode 100644 Misc/NEWS.d/next/C_API/2026-02-12-19-03-31.gh-issue-141510.U_1tjz.rst create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-12-19-01-13.gh-issue-141510.KlKjZg.rst diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index 9c4428ced41b5a..736f282e7bd47a 100644 --- a/Doc/c-api/dict.rst +++ b/Doc/c-api/dict.rst @@ -2,7 +2,7 @@ .. _dictobjects: -Dictionary Objects +Dictionary objects ------------------ .. index:: pair: object; dictionary @@ -444,7 +444,7 @@ Dictionary Objects .. versionadded:: 3.12 -Dictionary View Objects +Dictionary view objects ^^^^^^^^^^^^^^^^^^^^^^^ .. c:function:: int PyDictViewSet_Check(PyObject *op) @@ -490,7 +490,58 @@ Dictionary View Objects always succeeds. -Ordered Dictionaries +Frozen dictionary objects +^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. versionadded:: next + + +.. c:var:: PyTypeObject PyFrozenDict_Type + + This instance of :c:type:`PyTypeObject` represents the Python frozen + dictionary type. + This is the same object as :class:`frozendict` in the Python layer. + + +.. c:function:: int PyAnyDict_Check(PyObject *p) + + Return true if *p* is a :class:`dict` object, a :class:`frozendict` object, + or an instance of a subtype of the :class:`!dict` or :class:`!frozendict` + type. + This function always succeeds. + + +.. c:function:: int PyAnyDict_CheckExact(PyObject *p) + + Return true if *p* is a :class:`dict` object or a :class:`frozendict` object, + but not an instance of a subtype of the :class:`!dict` or + :class:`!frozendict` type. + This function always succeeds. + + +.. c:function:: int PyFrozenDict_Check(PyObject *p) + + Return true if *p* is a :class:`frozendict` object or an instance of a + subtype of the :class:`!frozendict` type. + This function always succeeds. + + +.. c:function:: int PyFrozenDict_CheckExact(PyObject *p) + + Return true if *p* is a :class:`frozendict` object, but not an instance of a + subtype of the :class:`!frozendict` type. + This function always succeeds. + + +.. c:function:: PyObject* PyFrozenDict_New(PyObject *iterable) + + Return a new :class:`frozendict` from an iterable, or ``NULL`` on failure + with an exception set. + + Create an empty dictionary if *iterable* is ``NULL``. + + +Ordered dictionaries ^^^^^^^^^^^^^^^^^^^^ Python's C API provides interface for :class:`collections.OrderedDict` from C. diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index d4540e0b819871..6f798f02e17899 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -5305,8 +5305,8 @@ frozenset, a temporary one is created from *elem*. .. _typesmapping: -Mapping Types --- :class:`dict` -=============================== +Mapping types --- :class:`!dict`, :class:`!frozendict` +====================================================== .. index:: pair: object; mapping @@ -5317,8 +5317,9 @@ Mapping Types --- :class:`dict` pair: built-in function; len A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. -Mappings are mutable objects. There is currently only one standard mapping -type, the :dfn:`dictionary`. (For other containers see the built-in +There are currently two standard mapping types, the :dfn:`dictionary` and +:class:`frozendict`. +(For other containers see the built-in :class:`list`, :class:`set`, and :class:`tuple` classes, and the :mod:`collections` module.) @@ -5588,10 +5589,9 @@ can be used interchangeably to index the same dictionary entry. Dictionaries are now reversible. -.. seealso:: - :class:`types.MappingProxyType` can be used to create a read-only view - of a :class:`dict`. - + .. seealso:: + :class:`types.MappingProxyType` can be used to create a read-only view + of a :class:`dict`. .. _thread-safety-dict: @@ -5839,6 +5839,41 @@ An example of dictionary view usage:: 500 +Frozen dictionaries +------------------- + +.. class:: frozendict(**kwargs) + frozendict(mapping, /, **kwargs) + frozendict(iterable, /, **kwargs) + + Return a new frozen dictionary initialized from an optional positional + argument and a possibly empty set of keyword arguments. + + A :class:`!frozendict` has a similar API to the :class:`dict` API, with the + following differences: + + * :class:`!dict` has more methods than :class:`!frozendict`: + + * :meth:`!__delitem__` + * :meth:`!__setitem__` + * :meth:`~dict.clear` + * :meth:`~dict.pop` + * :meth:`~dict.popitem` + * :meth:`~dict.setdefault` + * :meth:`~dict.update` + + * A :class:`!frozendict` can be hashed with ``hash(frozendict)`` if all keys and + values can be hashed. + + * ``frozendict |= other`` does not modify the :class:`!frozendict` in-place but + creates a new frozen dictionary. + + :class:`!frozendict` is not a :class:`!dict` subclass but inherits directly + from ``object``. + + .. versionadded:: next + + .. _typecontextmanager: Context Manager Types @@ -6062,6 +6097,7 @@ list is non-exhaustive. * :class:`list` * :class:`dict` * :class:`set` +* :class:`frozendict` * :class:`frozenset` * :class:`type` * :class:`asyncio.Future` diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index 5dca1545b144ef..e5714765208ff6 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -67,6 +67,8 @@ Summary -- Release highlights * :pep:`810`: :ref:`Explicit lazy imports for faster startup times ` +* :pep:`814`: :ref:`Add frozendict built-in type + ` * :pep:`799`: :ref:`A dedicated profiling package for organizing Python profiling tools ` * :pep:`799`: :ref:`Tachyon: High frequency statistical sampling profiler @@ -180,6 +182,21 @@ raise :exc:`SyntaxError`). (Contributed by Pablo Galindo Salgado and Dino Viehland in :gh:`142349`.) + +.. _whatsnew315-frozendict: + +:pep:`814`: Add frozendict built-in type +---------------------------------------- + +A new public immutable type :class:`frozendict` is added to the :mod:`builtins` +module. It is not a ``dict`` subclass but inherits directly from ``object``. + +A ``frozendict`` can be hashed with ``hash(frozendict)`` if all keys and values +can be hashed. + +.. seealso:: :pep:`814` for the full specification and rationale. + + .. _whatsnew315-profiling-package: :pep:`799`: A dedicated profiling package @@ -1525,6 +1542,16 @@ C API changes New features ------------ +* Add the following functions for the new :class:`frozendict` type: + + * :c:func:`PyAnyDict_Check` + * :c:func:`PyAnyDict_CheckExact` + * :c:func:`PyFrozenDict_Check` + * :c:func:`PyFrozenDict_CheckExact` + * :c:func:`PyFrozenDict_New` + + (Contributed by Victor Stinner in :gh:`141510`.) + * Add :c:func:`PySys_GetAttr`, :c:func:`PySys_GetAttrString`, :c:func:`PySys_GetOptionalAttr`, and :c:func:`PySys_GetOptionalAttrString` functions as replacements for :c:func:`PySys_GetObject`. diff --git a/Include/cpython/dictobject.h b/Include/cpython/dictobject.h index 5f2f7b6d4f56bd..5e7811416aba63 100644 --- a/Include/cpython/dictobject.h +++ b/Include/cpython/dictobject.h @@ -32,6 +32,16 @@ typedef struct { PyDictValues *ma_values; } PyDictObject; +// frozendict +PyAPI_DATA(PyTypeObject) PyFrozenDict_Type; +#define PyFrozenDict_Check(op) PyObject_TypeCheck((op), &PyFrozenDict_Type) +#define PyFrozenDict_CheckExact(op) Py_IS_TYPE((op), &PyFrozenDict_Type) + +#define PyAnyDict_CheckExact(ob) \ + (PyDict_CheckExact(ob) || PyFrozenDict_CheckExact(ob)) +#define PyAnyDict_Check(ob) \ + (PyDict_Check(ob) || PyFrozenDict_Check(ob)) + PyAPI_FUNC(PyObject *) _PyDict_GetItem_KnownHash(PyObject *mp, PyObject *key, Py_hash_t hash); // PyDict_GetItemStringRef() can be used instead @@ -42,7 +52,7 @@ PyAPI_FUNC(PyObject *) PyDict_SetDefault( /* Get the number of items of a dictionary. */ static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) { PyDictObject *mp; - assert(PyDict_Check(op)); + assert(PyAnyDict_Check(op)); mp = _Py_CAST(PyDictObject*, op); #ifdef Py_GIL_DISABLED return _Py_atomic_load_ssize_relaxed(&mp->ma_used); @@ -93,3 +103,6 @@ PyAPI_FUNC(int) PyDict_ClearWatcher(int watcher_id); // Mark given dictionary as "watched" (callback will be called if it is modified) PyAPI_FUNC(int) PyDict_Watch(int watcher_id, PyObject* dict); PyAPI_FUNC(int) PyDict_Unwatch(int watcher_id, PyObject* dict); + +// Create a frozendict. Create an empty dictionary if iterable is NULL. +PyAPI_FUNC(PyObject*) PyFrozenDict_New(PyObject *iterable); diff --git a/Include/internal/pycore_dict.h b/Include/internal/pycore_dict.h index 379bf6a81784b0..59e88be6aeec12 100644 --- a/Include/internal/pycore_dict.h +++ b/Include/internal/pycore_dict.h @@ -408,6 +408,15 @@ _Py_DECREF_BUILTINS(PyObject *op) } #endif +/* frozendict */ +typedef struct { + PyDictObject ob_base; + Py_hash_t ma_hash; +} PyFrozenDictObject; + +#define _PyFrozenDictObject_CAST(op) \ + (assert(PyFrozenDict_Check(op)), _Py_CAST(PyFrozenDictObject*, (op))) + #ifdef __cplusplus } #endif diff --git a/Include/internal/pycore_typeobject.h b/Include/internal/pycore_typeobject.h index dfd355d5012066..8af317d54c0bda 100644 --- a/Include/internal/pycore_typeobject.h +++ b/Include/internal/pycore_typeobject.h @@ -26,6 +26,7 @@ extern "C" { #define _Py_TYPE_VERSION_BYTEARRAY 9 #define _Py_TYPE_VERSION_BYTES 10 #define _Py_TYPE_VERSION_COMPLEX 11 +#define _Py_TYPE_VERSION_FROZENDICT 12 #define _Py_TYPE_VERSION_NEXT 16 diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py index 60b471317ce97c..23cc6d8faae2da 100644 --- a/Lib/_collections_abc.py +++ b/Lib/_collections_abc.py @@ -823,6 +823,7 @@ def __eq__(self, other): __reversed__ = None +Mapping.register(frozendict) Mapping.register(mappingproxy) Mapping.register(framelocalsproxy) diff --git a/Lib/test/mapping_tests.py b/Lib/test/mapping_tests.py index 20306e1526d7b8..9624072e69adfc 100644 --- a/Lib/test/mapping_tests.py +++ b/Lib/test/mapping_tests.py @@ -4,7 +4,7 @@ from test import support -class BasicTestMappingProtocol(unittest.TestCase): +class BasicTestImmutableMappingProtocol(unittest.TestCase): # This base class can be used to check that an object conforms to the # mapping protocol @@ -20,12 +20,9 @@ def _empty_mapping(self): """Return an empty mapping object""" return self.type2test() def _full_mapping(self, data): - """Return a mapping object with the value contained in data + """Return a mapping object with the values contained in data dictionary""" - x = self._empty_mapping() - for key, value in data.items(): - x[key] = value - return x + return self.type2test(data) def __init__(self, *args, **kw): unittest.TestCase.__init__(self, *args, **kw) @@ -88,6 +85,72 @@ def check_iterandlist(iter, lst, ref): self.assertEqual(d.get(knownkey, knownvalue), knownvalue) self.assertNotIn(knownkey, d) + def test_constructor(self): + self.assertEqual(self._empty_mapping(), self._empty_mapping()) + + def test_bool(self): + self.assertTrue(not self._empty_mapping()) + self.assertTrue(self.reference) + self.assertFalse(bool(self._empty_mapping())) + self.assertTrue(bool(self.reference)) + + def test_keys(self): + d = self._empty_mapping() + self.assertEqual(list(d.keys()), []) + d = self.reference + self.assertIn(list(self.inmapping.keys())[0], d.keys()) + self.assertNotIn(list(self.other.keys())[0], d.keys()) + self.assertRaises(TypeError, d.keys, None) + + def test_values(self): + d = self._empty_mapping() + self.assertEqual(list(d.values()), []) + + self.assertRaises(TypeError, d.values, None) + + def test_items(self): + d = self._empty_mapping() + self.assertEqual(list(d.items()), []) + + self.assertRaises(TypeError, d.items, None) + + def test_len(self): + d = self._empty_mapping() + self.assertEqual(len(d), 0) + + def test_getitem(self): + d = self.reference + self.assertEqual(d[list(self.inmapping.keys())[0]], + list(self.inmapping.values())[0]) + + self.assertRaises(TypeError, d.__getitem__) + + # no test_fromkeys or test_copy as both os.environ and selves don't support it + + def test_get(self): + d = self._empty_mapping() + self.assertIsNone(d.get(list(self.other.keys())[0])) + self.assertEqual(d.get(list(self.other.keys())[0], 3), 3) + d = self.reference + self.assertIsNone(d.get(list(self.other.keys())[0])) + self.assertEqual(d.get(list(self.other.keys())[0], 3), 3) + self.assertEqual(d.get(list(self.inmapping.keys())[0]), + list(self.inmapping.values())[0]) + self.assertEqual(d.get(list(self.inmapping.keys())[0], 3), + list(self.inmapping.values())[0]) + self.assertRaises(TypeError, d.get) + self.assertRaises(TypeError, d.get, None, None, None) + + +class BasicTestMappingProtocol(BasicTestImmutableMappingProtocol): + def _full_mapping(self, data): + """Return a mapping object with the values contained in data + dictionary""" + x = self._empty_mapping() + for key, value in data.items(): + x[key] = value + return x + def test_write(self): # Test for write operations on mapping p = self._empty_mapping() @@ -130,46 +193,6 @@ def test_write(self): p=self._empty_mapping() self.assertRaises(KeyError, p.popitem) - def test_constructor(self): - self.assertEqual(self._empty_mapping(), self._empty_mapping()) - - def test_bool(self): - self.assertTrue(not self._empty_mapping()) - self.assertTrue(self.reference) - self.assertTrue(bool(self._empty_mapping()) is False) - self.assertTrue(bool(self.reference) is True) - - def test_keys(self): - d = self._empty_mapping() - self.assertEqual(list(d.keys()), []) - d = self.reference - self.assertIn(list(self.inmapping.keys())[0], d.keys()) - self.assertNotIn(list(self.other.keys())[0], d.keys()) - self.assertRaises(TypeError, d.keys, None) - - def test_values(self): - d = self._empty_mapping() - self.assertEqual(list(d.values()), []) - - self.assertRaises(TypeError, d.values, None) - - def test_items(self): - d = self._empty_mapping() - self.assertEqual(list(d.items()), []) - - self.assertRaises(TypeError, d.items, None) - - def test_len(self): - d = self._empty_mapping() - self.assertEqual(len(d), 0) - - def test_getitem(self): - d = self.reference - self.assertEqual(d[list(self.inmapping.keys())[0]], - list(self.inmapping.values())[0]) - - self.assertRaises(TypeError, d.__getitem__) - def test_update(self): # mapping argument d = self._empty_mapping() @@ -265,22 +288,6 @@ def __next__(self): self.assertRaises(ValueError, d.update, [(1, 2, 3)]) - # no test_fromkeys or test_copy as both os.environ and selves don't support it - - def test_get(self): - d = self._empty_mapping() - self.assertTrue(d.get(list(self.other.keys())[0]) is None) - self.assertEqual(d.get(list(self.other.keys())[0], 3), 3) - d = self.reference - self.assertTrue(d.get(list(self.other.keys())[0]) is None) - self.assertEqual(d.get(list(self.other.keys())[0], 3), 3) - self.assertEqual(d.get(list(self.inmapping.keys())[0]), - list(self.inmapping.values())[0]) - self.assertEqual(d.get(list(self.inmapping.keys())[0], 3), - list(self.inmapping.values())[0]) - self.assertRaises(TypeError, d.get) - self.assertRaises(TypeError, d.get, None, None, None) - def test_setdefault(self): d = self._empty_mapping() self.assertRaises(TypeError, d.setdefault) diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 6583c0f2aefb2b..1db3559a012fd3 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -1723,6 +1723,58 @@ class Dict(dict): class SubclassMappingTests(mapping_tests.BasicTestMappingProtocol): type2test = Dict +class FrozenDictMappingTests(mapping_tests.BasicTestImmutableMappingProtocol): + type2test = frozendict + + +class FrozenDict(frozendict): + pass + + +class FrozenDictTests(unittest.TestCase): + def test_copy(self): + d = frozendict(x=1, y=2) + d2 = d.copy() + self.assertIs(d2, d) + + d = FrozenDict(x=1, y=2) + d2 = d.copy() + self.assertIsNot(d2, d) + self.assertEqual(d2, frozendict(x=1, y=2)) + self.assertEqual(type(d2), frozendict) + + def test_merge(self): + # test "a | b" operator + self.assertEqual(frozendict(x=1) | frozendict(y=2), + frozendict({'x': 1, 'y': 2})) + self.assertEqual(frozendict(x=1) | dict(y=2), + frozendict({'x': 1, 'y': 2})) + self.assertEqual(frozendict(x=1, y=2) | frozendict(y=5), + frozendict({'x': 1, 'y': 5})) + fd = frozendict(x=1, y=2) + self.assertIs(fd | frozendict(), fd) + self.assertIs(fd | {}, fd) + self.assertIs(frozendict() | fd, fd) + + def test_update(self): + # test "a |= b" operator + d = frozendict(x=1) + copy = d + self.assertIs(copy, d) + d |= frozendict(y=2) + self.assertIsNot(copy, d) + self.assertEqual(d, frozendict({'x': 1, 'y': 2})) + self.assertEqual(copy, frozendict({'x': 1})) + + def test_repr(self): + d = frozendict(x=1, y=2) + self.assertEqual(repr(d), "frozendict({'x': 1, 'y': 2})") + + class MyFrozenDict(frozendict): + pass + d = MyFrozenDict(x=1, y=2) + self.assertEqual(repr(d), "MyFrozenDict({'x': 1, 'y': 2})") + if __name__ == "__main__": unittest.main() diff --git a/Lib/test/test_doctest/test_doctest.py b/Lib/test/test_doctest/test_doctest.py index 241d09db1fa70e..b125693ab0891c 100644 --- a/Lib/test/test_doctest/test_doctest.py +++ b/Lib/test/test_doctest/test_doctest.py @@ -742,7 +742,7 @@ def non_Python_modules(): r""" >>> import builtins >>> tests = doctest.DocTestFinder().find(builtins) - >>> 750 < len(tests) < 800 # approximate number of objects with docstrings + >>> 750 < len(tests) < 850 # approximate number of objects with docstrings True >>> real_tests = [t for t in tests if len(t.examples) > 0] >>> len(real_tests) # objects that actually have doctests diff --git a/Lib/test/test_inspect/test_inspect.py b/Lib/test/test_inspect/test_inspect.py index 32bb47de04b113..00cc5aab32c273 100644 --- a/Lib/test/test_inspect/test_inspect.py +++ b/Lib/test/test_inspect/test_inspect.py @@ -6127,7 +6127,8 @@ def _test_builtin_methods_have_signatures(self, cls, no_signature, unsupported_s self.assertRaises(ValueError, inspect.signature, getattr(cls, name)) def test_builtins_have_signatures(self): - no_signature = {'type', 'super', 'bytearray', 'bytes', 'dict', 'int', 'str'} + no_signature = {'type', 'super', 'bytearray', 'bytes', + 'dict', 'frozendict', 'int', 'str'} # These need PEP 457 groups needs_groups = {"range", "slice", "dir", "getattr", "next", "iter", "vars"} diff --git a/Misc/NEWS.d/next/C_API/2026-02-12-19-03-31.gh-issue-141510.U_1tjz.rst b/Misc/NEWS.d/next/C_API/2026-02-12-19-03-31.gh-issue-141510.U_1tjz.rst new file mode 100644 index 00000000000000..57a25fe045f04c --- /dev/null +++ b/Misc/NEWS.d/next/C_API/2026-02-12-19-03-31.gh-issue-141510.U_1tjz.rst @@ -0,0 +1,9 @@ +Add the following functions for the new :class:`frozendict` type: + +* :c:func:`PyAnyDict_Check` +* :c:func:`PyAnyDict_CheckExact` +* :c:func:`PyFrozenDict_Check` +* :c:func:`PyFrozenDict_CheckExact` +* :c:func:`PyFrozenDict_New` + +Patch by Victor Stinner. diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-12-19-01-13.gh-issue-141510.KlKjZg.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-12-19-01-13.gh-issue-141510.KlKjZg.rst new file mode 100644 index 00000000000000..4596e273fc6118 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-12-19-01-13.gh-issue-141510.KlKjZg.rst @@ -0,0 +1 @@ +Add built-in :class:`frozendict` type. Patch by Victor Stinner. diff --git a/Objects/dictobject.c b/Objects/dictobject.c index ae7bf61767dc3b..46b0148cf59ab5 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -135,6 +135,10 @@ As a consequence of this, split keys have a maximum size of 16. #include "stringlib/eq.h" // unicode_eq() #include +// Forward declarations +static PyObject* frozendict_new(PyTypeObject *type, PyObject *args, + PyObject *kwds); + /*[clinic input] class dict "PyDictObject *" "&PyDict_Type" @@ -278,6 +282,11 @@ load_keys_nentries(PyDictObject *mp) #endif +#define _PyAnyDict_CAST(op) \ + (assert(PyAnyDict_Check(op)), _Py_CAST(PyDictObject*, op)) + +#define GET_USED(ep) FT_ATOMIC_LOAD_SSIZE_RELAXED((ep)->ma_used) + #define STORE_KEY(ep, key) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_key, key) #define STORE_VALUE(ep, value) FT_ATOMIC_STORE_PTR_RELEASE((ep)->me_value, value) #define STORE_SPLIT_VALUE(mp, idx, value) FT_ATOMIC_STORE_PTR_RELEASE(mp->ma_values->values[idx], value) @@ -654,7 +663,7 @@ _PyDict_CheckConsistency(PyObject *op, int check_content) do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0) assert(op != NULL); - CHECK(PyDict_Check(op)); + CHECK(PyAnyDict_Check(op)); PyDictObject *mp = (PyDictObject *)op; PyDictKeysObject *keys = mp->ma_keys; @@ -909,7 +918,7 @@ new_dict_with_shared_keys(PyDictKeysObject *keys) static PyDictKeysObject * clone_combined_dict_keys(PyDictObject *orig) { - assert(PyDict_Check(orig)); + assert(PyAnyDict_Check(orig)); assert(Py_TYPE(orig)->tp_iter == dict_iter); assert(orig->ma_values == NULL); assert(orig->ma_keys != Py_EMPTY_KEYS); @@ -2293,7 +2302,7 @@ _PyDict_FromItems(PyObject *const *keys, Py_ssize_t keys_offset, static PyObject * dict_getitem(PyObject *op, PyObject *key, const char *warnmsg) { - if (!PyDict_Check(op)) { + if (!PyAnyDict_Check(op)) { return NULL; } PyDictObject *mp = (PyDictObject *)op; @@ -2392,7 +2401,7 @@ _PyDict_GetItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash) PyDictObject *mp = (PyDictObject *)op; PyObject *value; - if (!PyDict_Check(op)) { + if (!PyAnyDict_Check(op)) { PyErr_BadInternalCall(); return NULL; } @@ -2463,7 +2472,7 @@ _PyDict_GetItemRef_KnownHash(PyDictObject *op, PyObject *key, Py_hash_t hash, Py int PyDict_GetItemRef(PyObject *op, PyObject *key, PyObject **result) { - if (!PyDict_Check(op)) { + if (!PyAnyDict_Check(op)) { PyErr_BadInternalCall(); *result = NULL; return -1; @@ -2519,7 +2528,7 @@ PyDict_GetItemWithError(PyObject *op, PyObject *key) PyDictObject*mp = (PyDictObject *)op; PyObject *value; - if (!PyDict_Check(op)) { + if (!PyAnyDict_Check(op)) { PyErr_BadInternalCall(); return NULL; } @@ -2668,7 +2677,7 @@ setitem_take2_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) assert(key); assert(value); - assert(PyDict_Check(mp)); + assert(PyAnyDict_Check(mp)); Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { dict_unhashable_type(key); @@ -2713,6 +2722,16 @@ PyDict_SetItem(PyObject *op, PyObject *key, PyObject *value) Py_NewRef(key), Py_NewRef(value)); } +static int +_PyAnyDict_SetItem(PyObject *op, PyObject *key, PyObject *value) +{ + assert(PyAnyDict_Check(op)); + assert(key); + assert(value); + return _PyDict_SetItem_Take2((PyDictObject *)op, + Py_NewRef(key), Py_NewRef(value)); +} + static int setitem_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) { @@ -2996,7 +3015,7 @@ _PyDict_Next(PyObject *op, Py_ssize_t *ppos, PyObject **pkey, PyObject *key, *value; Py_hash_t hash; - if (!PyDict_Check(op)) + if (!PyAnyDict_Check(op)) return 0; mp = (PyDictObject *)op; @@ -3265,8 +3284,8 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) return NULL; - if (PyDict_CheckExact(d)) { - if (PyDict_CheckExact(iterable)) { + if (PyAnyDict_CheckExact(d)) { + if (PyAnyDict_CheckExact(iterable)) { PyDictObject *mp = (PyDictObject *)d; Py_BEGIN_CRITICAL_SECTION2(d, iterable); @@ -3290,7 +3309,7 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) return NULL; } - if (PyDict_CheckExact(d)) { + if (PyAnyDict_CheckExact(d)) { Py_BEGIN_CRITICAL_SECTION(d); while ((key = PyIter_Next(it)) != NULL) { status = setitem_lock_held((PyDictObject *)d, key, value); @@ -3460,7 +3479,7 @@ dict_repr(PyObject *self) static Py_ssize_t dict_length(PyObject *self) { - return FT_ATOMIC_LOAD_SSIZE_RELAXED(((PyDictObject *)self)->ma_used); + return GET_USED(_PyAnyDict_CAST(self)); } static PyObject * @@ -3480,7 +3499,7 @@ dict_subscript(PyObject *self, PyObject *key) if (ix == DKIX_ERROR) return NULL; if (ix == DKIX_EMPTY || value == NULL) { - if (!PyDict_CheckExact(mp)) { + if (!PyAnyDict_CheckExact(mp)) { /* Look up __missing__ method if we're a subclass. */ PyObject *missing, *res; missing = _PyObject_LookupSpecial( @@ -3519,7 +3538,7 @@ keys_lock_held(PyObject *dict) { ASSERT_DICT_LOCKED(dict); - if (dict == NULL || !PyDict_Check(dict)) { + if (dict == NULL || !PyAnyDict_Check(dict)) { PyErr_BadInternalCall(); return NULL; } @@ -3568,7 +3587,7 @@ values_lock_held(PyObject *dict) { ASSERT_DICT_LOCKED(dict); - if (dict == NULL || !PyDict_Check(dict)) { + if (dict == NULL || !PyAnyDict_Check(dict)) { PyErr_BadInternalCall(); return NULL; } @@ -3616,7 +3635,7 @@ items_lock_held(PyObject *dict) { ASSERT_DICT_LOCKED(dict); - if (dict == NULL || !PyDict_Check(dict)) { + if (dict == NULL || !PyAnyDict_Check(dict)) { PyErr_BadInternalCall(); return NULL; } @@ -3696,7 +3715,7 @@ dict_fromkeys_impl(PyTypeObject *type, PyObject *iterable, PyObject *value) static int dict_update_arg(PyObject *self, PyObject *arg) { - if (PyDict_CheckExact(arg)) { + if (PyAnyDict_CheckExact(arg)) { return PyDict_Merge(self, arg, 1); } int has_keys = PyObject_HasAttrWithError(arg, &_Py_ID(keys)); @@ -3762,7 +3781,7 @@ merge_from_seq2_lock_held(PyObject *d, PyObject *seq2, int override) PyObject *fast; /* item as a 2-tuple or 2-list */ assert(d != NULL); - assert(PyDict_Check(d)); + assert(PyAnyDict_Check(d)); assert(seq2 != NULL); it = PyObject_GetIter(seq2); @@ -3958,13 +3977,13 @@ dict_merge(PyObject *a, PyObject *b, int override) * things quite efficiently. For the latter, we only require that * PyMapping_Keys() and PyObject_GetItem() be supported. */ - if (a == NULL || !PyDict_Check(a) || b == NULL) { + if (a == NULL || !PyAnyDict_Check(a) || b == NULL) { PyErr_BadInternalCall(); return -1; } mp = (PyDictObject*)a; int res = 0; - if (PyDict_Check(b) && (Py_TYPE(b)->tp_iter == dict_iter)) { + if (PyAnyDict_Check(b) && (Py_TYPE(b)->tp_iter == dict_iter)) { other = (PyDictObject*)b; int res; Py_BEGIN_CRITICAL_SECTION2(a, b); @@ -4075,6 +4094,9 @@ static PyObject * dict_copy_impl(PyDictObject *self) /*[clinic end generated code: output=ffb782cf970a5c39 input=73935f042b639de4]*/ { + if (PyFrozenDict_CheckExact(self)) { + return Py_NewRef(self); + } return PyDict_Copy((PyObject *)self); } @@ -4104,13 +4126,19 @@ copy_lock_held(PyObject *o) { PyObject *copy; PyDictObject *mp; + int frozendict = PyFrozenDict_Check(o); ASSERT_DICT_LOCKED(o); mp = (PyDictObject *)o; if (mp->ma_used == 0) { /* The dict is empty; just return a new dict. */ - return PyDict_New(); + if (frozendict) { + return PyFrozenDict_New(NULL); + } + else { + return PyDict_New(); + } } if (_PyDict_HasSplitTable(mp)) { @@ -4119,7 +4147,13 @@ copy_lock_held(PyObject *o) if (newvalues == NULL) { return PyErr_NoMemory(); } - split_copy = PyObject_GC_New(PyDictObject, &PyDict_Type); + if (frozendict) { + split_copy = (PyDictObject *)PyObject_GC_New(PyFrozenDictObject, + &PyFrozenDict_Type); + } + else { + split_copy = PyObject_GC_New(PyDictObject, &PyDict_Type); + } if (split_copy == NULL) { free_values(newvalues, false); return NULL; @@ -4132,13 +4166,18 @@ copy_lock_held(PyObject *o) split_copy->ma_used = mp->ma_used; split_copy->_ma_watcher_tag = 0; dictkeys_incref(mp->ma_keys); + if (frozendict) { + PyFrozenDictObject *frozen = (PyFrozenDictObject *)split_copy; + frozen->ma_hash = -1; + } _PyObject_GC_TRACK(split_copy); return (PyObject *)split_copy; } if (Py_TYPE(mp)->tp_iter == dict_iter && mp->ma_values == NULL && - (mp->ma_used >= (mp->ma_keys->dk_nentries * 2) / 3)) + (mp->ma_used >= (mp->ma_keys->dk_nentries * 2) / 3) && + !frozendict) { /* Use fast-copy if: @@ -4170,7 +4209,12 @@ copy_lock_held(PyObject *o) return (PyObject *)new; } - copy = PyDict_New(); + if (frozendict) { + copy = PyFrozenDict_New(NULL); + } + else { + copy = PyDict_New(); + } if (copy == NULL) return NULL; if (dict_merge(copy, o, 1) == 0) @@ -4182,7 +4226,7 @@ copy_lock_held(PyObject *o) PyObject * PyDict_Copy(PyObject *o) { - if (o == NULL || !PyDict_Check(o)) { + if (o == NULL || !PyAnyDict_Check(o)) { PyErr_BadInternalCall(); return NULL; } @@ -4199,11 +4243,11 @@ PyDict_Copy(PyObject *o) Py_ssize_t PyDict_Size(PyObject *mp) { - if (mp == NULL || !PyDict_Check(mp)) { + if (mp == NULL || !PyAnyDict_Check(mp)) { PyErr_BadInternalCall(); return -1; } - return FT_ATOMIC_LOAD_SSIZE_RELAXED(((PyDictObject *)mp)->ma_used); + return GET_USED((PyDictObject *)mp); } /* Return 1 if dicts equal, 0 if not, -1 if error. @@ -4289,7 +4333,7 @@ dict_richcompare(PyObject *v, PyObject *w, int op) int cmp; PyObject *res; - if (!PyDict_Check(v) || !PyDict_Check(w)) { + if (!PyAnyDict_Check(v) || !PyAnyDict_Check(w)) { res = Py_NotImplemented; } else if (op == Py_EQ || op == Py_NE) { @@ -4739,7 +4783,7 @@ dict___sizeof___impl(PyDictObject *self) static PyObject * dict_or(PyObject *self, PyObject *other) { - if (!PyDict_Check(self) || !PyDict_Check(other)) { + if (!PyAnyDict_Check(self) || !PyAnyDict_Check(other)) { Py_RETURN_NOTIMPLEMENTED; } PyObject *new = PyDict_Copy(self); @@ -4753,6 +4797,29 @@ dict_or(PyObject *self, PyObject *other) return new; } +static PyObject * +frozendict_or(PyObject *self, PyObject *other) +{ + if (PyFrozenDict_CheckExact(self)) { + // frozendict() | frozendict(...) => frozendict(...) + if (GET_USED((PyDictObject *)self) == 0 + && PyFrozenDict_CheckExact(other)) + { + return Py_NewRef(other); + } + + // frozendict(...) | frozendict() => frozendict(...) + if (PyAnyDict_CheckExact(other) + && GET_USED((PyDictObject *)other) == 0) + { + return Py_NewRef(self); + } + } + + return dict_or(self, other); +} + + static PyObject * dict_ior(PyObject *self, PyObject *other) { @@ -4905,7 +4972,15 @@ dict_vectorcall(PyObject *type, PyObject * const*args, return NULL; } - PyObject *self = dict_new(_PyType_CAST(type), NULL, NULL); + PyObject *self; + if (Py_Is((PyTypeObject*)type, &PyFrozenDict_Type) + || PyType_IsSubtype((PyTypeObject*)type, &PyFrozenDict_Type)) + { + self = frozendict_new(_PyType_CAST(type), NULL, NULL); + } + else { + self = dict_new(_PyType_CAST(type), NULL, NULL); + } if (self == NULL) { return NULL; } @@ -4918,7 +4993,8 @@ dict_vectorcall(PyObject *type, PyObject * const*args, } if (kwnames != NULL) { for (Py_ssize_t i = 0; i < PyTuple_GET_SIZE(kwnames); i++) { - if (PyDict_SetItem(self, PyTuple_GET_ITEM(kwnames, i), args[i]) < 0) { + PyObject *key = PyTuple_GET_ITEM(kwnames, i); // borrowed + if (_PyAnyDict_SetItem(self, key, args[i]) < 0) { Py_DECREF(self); return NULL; } @@ -4991,6 +5067,7 @@ PyTypeObject PyDict_Type = { .tp_version_tag = _Py_TYPE_VERSION_DICT, }; + /* For backward compatibility with old dictionary interface */ PyObject * @@ -5073,7 +5150,7 @@ dictiter_new(PyDictObject *dict, PyTypeObject *itertype) return NULL; } di->di_dict = (PyDictObject*)Py_NewRef(dict); - used = FT_ATOMIC_LOAD_SSIZE_RELAXED(dict->ma_used); + used = GET_USED(dict); di->di_used = used; di->len = used; if (itertype == &PyDictRevIterKey_Type || @@ -5129,7 +5206,7 @@ dictiter_len(PyObject *self, PyObject *Py_UNUSED(ignored)) { dictiterobject *di = (dictiterobject *)self; Py_ssize_t len = 0; - if (di->di_dict != NULL && di->di_used == FT_ATOMIC_LOAD_SSIZE_RELAXED(di->di_dict->ma_used)) + if (di->di_dict != NULL && di->di_used == GET_USED(di->di_dict)) len = FT_ATOMIC_LOAD_SSIZE_RELAXED(di->len); return PyLong_FromSize_t(len); } @@ -5166,7 +5243,7 @@ dictiter_iternextkey_lock_held(PyDictObject *d, PyObject *self) Py_ssize_t i; PyDictKeysObject *k; - assert (PyDict_Check(d)); + assert (PyAnyDict_Check(d)); ASSERT_DICT_LOCKED(d); if (di->di_used != d->ma_used) { @@ -5290,7 +5367,7 @@ dictiter_iternextvalue_lock_held(PyDictObject *d, PyObject *self) PyObject *value; Py_ssize_t i; - assert (PyDict_Check(d)); + assert (PyAnyDict_Check(d)); ASSERT_DICT_LOCKED(d); if (di->di_used != d->ma_used) { @@ -5412,7 +5489,7 @@ dictiter_iternextitem_lock_held(PyDictObject *d, PyObject *self, PyObject *key, *value; Py_ssize_t i; - assert (PyDict_Check(d)); + assert (PyAnyDict_Check(d)); ASSERT_DICT_LOCKED(d); if (di->di_used != d->ma_used) { @@ -5518,7 +5595,7 @@ dictiter_iternext_threadsafe(PyDictObject *d, PyObject *self, Py_ssize_t i; PyDictKeysObject *k; - assert (PyDict_Check(d)); + assert (PyAnyDict_Check(d)); if (di->di_used != _Py_atomic_load_ssize_relaxed(&d->ma_used)) { PyErr_SetString(PyExc_RuntimeError, @@ -5712,7 +5789,7 @@ dictreviter_iter_lock_held(PyDictObject *d, PyObject *self) { dictiterobject *di = (dictiterobject *)self; - assert (PyDict_Check(d)); + assert (PyAnyDict_Check(d)); ASSERT_DICT_LOCKED(d); if (di->di_used != d->ma_used) { @@ -5842,7 +5919,7 @@ static PyObject * dict___reversed___impl(PyDictObject *self) /*[clinic end generated code: output=e674483336d1ed51 input=23210ef3477d8c4d]*/ { - assert (PyDict_Check(self)); + assert (PyAnyDict_Check(self)); return dictiter_new(self, &PyDictRevIterKey_Type); } @@ -5915,7 +5992,7 @@ dictview_len(PyObject *self) _PyDictViewObject *dv = (_PyDictViewObject *)self; Py_ssize_t len = 0; if (dv->dv_dict != NULL) - len = FT_ATOMIC_LOAD_SSIZE_RELAXED(dv->dv_dict->ma_used); + len = GET_USED(dv->dv_dict); return len; } @@ -5927,7 +6004,7 @@ _PyDictView_New(PyObject *dict, PyTypeObject *type) PyErr_BadInternalCall(); return NULL; } - if (!PyDict_Check(dict)) { + if (!PyAnyDict_Check(dict)) { /* XXX Get rid of this restriction later */ PyErr_Format(PyExc_TypeError, "%s() requires a dict argument, not '%s'", @@ -6117,7 +6194,7 @@ dictviews_to_set(PyObject *self) if (PyDictKeys_Check(self)) { // PySet_New() has fast path for the dict object. PyObject *dict = (PyObject *)((_PyDictViewObject *)self)->dv_dict; - if (PyDict_CheckExact(dict)) { + if (PyAnyDict_CheckExact(dict)) { left = dict; } } @@ -6847,6 +6924,11 @@ _PyObject_MaterializeManagedDict(PyObject *obj) int _PyDict_SetItem_LockHeld(PyDictObject *dict, PyObject *name, PyObject *value) { + if (!PyDict_Check(dict)) { + PyErr_BadInternalCall(); + return -1; + } + if (value == NULL) { Py_hash_t hash = _PyObject_HashFast(name); if (hash == -1) { @@ -7169,7 +7251,7 @@ _PyObject_IsInstanceDictEmpty(PyObject *obj) if (dict == NULL) { return 1; } - return FT_ATOMIC_LOAD_SSIZE_RELAXED(((PyDictObject *)dict)->ma_used) == 0; + return GET_USED((PyDictObject *)dict) == 0; } int @@ -7631,7 +7713,7 @@ validate_watcher_id(PyInterpreterState *interp, int watcher_id) int PyDict_Watch(int watcher_id, PyObject* dict) { - if (!PyDict_Check(dict)) { + if (!PyAnyDict_Check(dict)) { PyErr_SetString(PyExc_ValueError, "Cannot watch non-dictionary"); return -1; } @@ -7646,7 +7728,7 @@ PyDict_Watch(int watcher_id, PyObject* dict) int PyDict_Unwatch(int watcher_id, PyObject* dict) { - if (!PyDict_Check(dict)) { + if (!PyAnyDict_Check(dict)) { PyErr_SetString(PyExc_ValueError, "Cannot watch non-dictionary"); return -1; } @@ -7743,3 +7825,147 @@ _PyObject_InlineValuesConsistencyCheck(PyObject *obj) return 0; } #endif + +// --- frozendict implementation --------------------------------------------- + +static PyNumberMethods frozendict_as_number = { + .nb_or = frozendict_or, +}; + +static PyMappingMethods frozendict_as_mapping = { + .mp_length = dict_length, + .mp_subscript = dict_subscript, +}; + +static PyMethodDef frozendict_methods[] = { + DICT___CONTAINS___METHODDEF + {"__getitem__", dict_subscript, METH_O | METH_COEXIST, getitem__doc__}, + DICT___SIZEOF___METHODDEF + DICT_GET_METHODDEF + DICT_KEYS_METHODDEF + DICT_ITEMS_METHODDEF + DICT_VALUES_METHODDEF + DICT_FROMKEYS_METHODDEF + DICT_COPY_METHODDEF + DICT___REVERSED___METHODDEF + {"__class_getitem__", Py_GenericAlias, METH_O|METH_CLASS, PyDoc_STR("See PEP 585")}, + {NULL, NULL} /* sentinel */ +}; + + +static PyObject * +frozendict_repr(PyObject *self) +{ + PyObject *repr = dict_repr(self); + if (repr == NULL) { + return NULL; + } + assert(PyUnicode_Check(repr)); + + PyObject *res = PyUnicode_FromFormat("%s(%U)", + Py_TYPE(self)->tp_name, + repr); + Py_DECREF(repr); + return res; +} + +static Py_hash_t +frozendict_hash(PyObject *op) +{ + PyFrozenDictObject *self = _PyFrozenDictObject_CAST(op); + Py_hash_t hash = FT_ATOMIC_LOAD_SSIZE_RELAXED(self->ma_hash); + if (hash != -1) { + return hash; + } + + PyObject *items = _PyDictView_New(op, &PyDictItems_Type); + if (items == NULL) { + return -1; + } + PyObject *frozenset = PyFrozenSet_New(items); + Py_DECREF(items); + if (frozenset == NULL) { + return -1; + } + + hash = PyObject_Hash(frozenset); + Py_DECREF(frozenset); + if (hash == -1) { + return -1; + } + + FT_ATOMIC_STORE_SSIZE_RELAXED(self->ma_hash, hash); + return hash; +} + + +static PyObject * +frozendict_new(PyTypeObject *type, PyObject *args, PyObject *kwds) +{ + PyObject *d = dict_new(type, args, kwds); + if (d == NULL) { + return NULL; + } + PyFrozenDictObject *self = _PyFrozenDictObject_CAST(d); + self->ma_hash = -1; + + if (args != NULL) { + if (dict_update_common(d, args, kwds, "frozendict") < 0) { + Py_DECREF(d); + return NULL; + } + } + else { + assert(kwds == NULL); + } + + return d; +} + + +PyObject* +PyFrozenDict_New(PyObject *iterable) +{ + if (iterable != NULL) { + PyObject *args = PyTuple_Pack(1, iterable); + if (args == NULL) { + return NULL; + } + PyObject *frozendict = frozendict_new(&PyFrozenDict_Type, args, NULL); + Py_DECREF(args); + return frozendict; + } + else { + PyObject *args = Py_GetConstantBorrowed(Py_CONSTANT_EMPTY_TUPLE); + return frozendict_new(&PyFrozenDict_Type, args, NULL); + } +} + + +PyTypeObject PyFrozenDict_Type = { + PyVarObject_HEAD_INIT(&PyType_Type, 0) + .tp_name = "frozendict", + .tp_basicsize = sizeof(PyFrozenDictObject), + .tp_dealloc = dict_dealloc, + .tp_repr = frozendict_repr, + .tp_as_number = &frozendict_as_number, + .tp_as_sequence = &dict_as_sequence, + .tp_as_mapping = &frozendict_as_mapping, + .tp_hash = frozendict_hash, + .tp_getattro = PyObject_GenericGetAttr, + .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC + | Py_TPFLAGS_BASETYPE + | _Py_TPFLAGS_MATCH_SELF | Py_TPFLAGS_MAPPING, + .tp_doc = dictionary_doc, + .tp_traverse = dict_traverse, + .tp_clear = dict_tp_clear, + .tp_richcompare = dict_richcompare, + .tp_iter = dict_iter, + .tp_methods = frozendict_methods, + .tp_init = dict_init, + .tp_alloc = _PyType_AllocNoTrack, + .tp_new = frozendict_new, + .tp_free = PyObject_GC_Del, + .tp_vectorcall = dict_vectorcall, + .tp_version_tag = _Py_TYPE_VERSION_FROZENDICT, +}; diff --git a/Objects/object.c b/Objects/object.c index 1ddd949d28143e..ab73d2eb1c9c1f 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -58,7 +58,7 @@ _PyObject_CheckConsistency(PyObject *op, int check_content) if (PyUnicode_Check(op)) { _PyUnicode_CheckConsistency(op, check_content); } - else if (PyDict_Check(op)) { + else if (PyAnyDict_Check(op)) { _PyDict_CheckConsistency(op, check_content); } return 1; @@ -2532,8 +2532,9 @@ static PyTypeObject* static_types[] = { &PyEnum_Type, &PyFilter_Type, &PyFloat_Type, - &PyFrame_Type, &PyFrameLocalsProxy_Type, + &PyFrame_Type, + &PyFrozenDict_Type, &PyFrozenSet_Type, &PyFunction_Type, &PyGen_Type, diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 9144793ae73ce1..493a6e0413d8eb 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -3536,6 +3536,7 @@ _PyBuiltin_Init(PyInterpreterState *interp) SETBUILTIN("enumerate", &PyEnum_Type); SETBUILTIN("filter", &PyFilter_Type); SETBUILTIN("float", &PyFloat_Type); + SETBUILTIN("frozendict", &PyFrozenDict_Type); SETBUILTIN("frozenset", &PyFrozenSet_Type); SETBUILTIN("property", &PyProperty_Type); SETBUILTIN("int", &PyLong_Type); diff --git a/Python/marshal.c b/Python/marshal.c index 190fcdc89afaa8..a71909f103ebfc 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -67,6 +67,7 @@ module marshal #define TYPE_TUPLE '(' // See also TYPE_SMALL_TUPLE. #define TYPE_LIST '[' #define TYPE_DICT '{' +#define TYPE_FROZENDICT '}' #define TYPE_CODE 'c' #define TYPE_UNICODE 'u' #define TYPE_UNKNOWN '?' @@ -575,10 +576,15 @@ w_complex_object(PyObject *v, char flag, WFILE *p) w_object(PyList_GET_ITEM(v, i), p); } } - else if (PyDict_CheckExact(v)) { + else if (PyAnyDict_CheckExact(v)) { Py_ssize_t pos; PyObject *key, *value; - W_TYPE(TYPE_DICT, p); + if (PyFrozenDict_CheckExact(v)) { + W_TYPE(TYPE_FROZENDICT, p); + } + else { + W_TYPE(TYPE_DICT, p); + } /* This one is NULL object terminated! */ pos = 0; while (PyDict_Next(v, &pos, &key, &value)) { @@ -1420,6 +1426,7 @@ r_object(RFILE *p) break; case TYPE_DICT: + case TYPE_FROZENDICT: v = PyDict_New(); R_REF(v); if (v == NULL) @@ -1443,7 +1450,16 @@ r_object(RFILE *p) Py_DECREF(val); } if (PyErr_Occurred()) { - Py_SETREF(v, NULL); + Py_CLEAR(v); + } + if (type == TYPE_FROZENDICT && v != NULL) { + PyObject *frozendict = PyFrozenDict_New(v); + if (frozendict != NULL) { + Py_SETREF(v, frozendict); + } + else { + Py_CLEAR(v); + } } retval = v; break; diff --git a/Tools/c-analyzer/cpython/ignored.tsv b/Tools/c-analyzer/cpython/ignored.tsv index 91bbf94990ecc1..cbec0bf262f0e0 100644 --- a/Tools/c-analyzer/cpython/ignored.tsv +++ b/Tools/c-analyzer/cpython/ignored.tsv @@ -769,6 +769,7 @@ Modules/clinic/md5module.c.h _md5_md5 _keywords - Modules/clinic/grpmodule.c.h grp_getgrgid _keywords - Modules/clinic/grpmodule.c.h grp_getgrnam _keywords - Objects/object.c - constants static PyObject*[] +Objects/dictobject.c - PyFrozenDict_Type - ## False positives From 6ef2578f209f230f26c41683bd8eab6ee05e013c Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:49:31 +0200 Subject: [PATCH 031/110] Enable CPU tests on default ARM build (#144743) --- .github/workflows/build.yml | 7 +++++++ .github/workflows/reusable-ubuntu.yml | 9 ++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f302cb049326b0..d777f35ac208fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -242,11 +242,18 @@ jobs: # BOLT currently crashes during instrumentation on aarch64 - os: ubuntu-24.04-arm bolt: true + include: + # Enable CPU-intensive tests on ARM (default build only) + - os: ubuntu-24.04-arm + bolt: false + free-threading: false + test-opts: '-u cpu' uses: ./.github/workflows/reusable-ubuntu.yml with: bolt-optimizations: ${{ matrix.bolt }} free-threading: ${{ matrix.free-threading }} os: ${{ matrix.os }} + test-opts: ${{ matrix.test-opts || '' }} build-ubuntu-ssltests-openssl: name: 'Ubuntu SSL tests with OpenSSL' diff --git a/.github/workflows/reusable-ubuntu.yml b/.github/workflows/reusable-ubuntu.yml index 03f41069b8430d..4bb4f535acb360 100644 --- a/.github/workflows/reusable-ubuntu.yml +++ b/.github/workflows/reusable-ubuntu.yml @@ -17,6 +17,11 @@ on: description: OS to run the job required: true type: string + test-opts: + description: Extra options to pass to the test runner via TESTOPTS + required: false + type: string + default: '' env: FORCE_COLOR: 1 @@ -111,4 +116,6 @@ jobs: run: sudo mount "$CPYTHON_RO_SRCDIR" -oremount,rw - name: Tests working-directory: ${{ env.CPYTHON_BUILDDIR }} - run: xvfb-run make ci + run: xvfb-run make ci EXTRATESTOPTS="${TEST_OPTS}" + env: + TEST_OPTS: ${{ inputs.test-opts }} From fc05e5e3d7bcd59a64eabb8b94ee7af4d0bcc4d5 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Tue, 17 Feb 2026 22:39:56 +0900 Subject: [PATCH 032/110] gh-141510: Update mp_length of frozendict to use non atomic operation (gh-144913) --- Objects/dictobject.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 46b0148cf59ab5..510a0fab468cc6 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -3482,6 +3482,12 @@ dict_length(PyObject *self) return GET_USED(_PyAnyDict_CAST(self)); } +static Py_ssize_t +frozendict_length(PyObject *self) +{ + return _PyAnyDict_CAST(self)->ma_used; +} + static PyObject * dict_subscript(PyObject *self, PyObject *key) { @@ -7833,7 +7839,7 @@ static PyNumberMethods frozendict_as_number = { }; static PyMappingMethods frozendict_as_mapping = { - .mp_length = dict_length, + .mp_length = frozendict_length, .mp_subscript = dict_subscript, }; From 1bd8cf9ed26977ac8c5cf3ec0eccdb6e7a3798e4 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Tue, 17 Feb 2026 23:52:50 +0900 Subject: [PATCH 033/110] gh-141510: Remove unncessary lock holding for frozendict repr (gh-144920) --- Objects/dictobject.c | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 510a0fab468cc6..62abb793d002e0 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -3381,19 +3381,18 @@ dict_dealloc(PyObject *self) static PyObject * -dict_repr_lock_held(PyObject *self) +anydict_repr_impl(PyObject *self) { PyDictObject *mp = (PyDictObject *)self; PyObject *key = NULL, *value = NULL; - ASSERT_DICT_LOCKED(mp); - int res = Py_ReprEnter((PyObject *)mp); + int res = Py_ReprEnter(self); if (res != 0) { return (res > 0 ? PyUnicode_FromString("{...}") : NULL); } if (mp->ma_used == 0) { - Py_ReprLeave((PyObject *)mp); + Py_ReprLeave(self); return PyUnicode_FromString("{}"); } @@ -3412,7 +3411,7 @@ dict_repr_lock_held(PyObject *self) Note that repr may mutate the dict. */ Py_ssize_t i = 0; int first = 1; - while (_PyDict_Next((PyObject *)mp, &i, &key, &value, NULL)) { + while (_PyDict_Next(self, &i, &key, &value, NULL)) { // Prevent repr from deleting key or value during key format. Py_INCREF(key); Py_INCREF(value); @@ -3454,18 +3453,25 @@ dict_repr_lock_held(PyObject *self) goto error; } - Py_ReprLeave((PyObject *)mp); + Py_ReprLeave(self); return PyUnicodeWriter_Finish(writer); error: - Py_ReprLeave((PyObject *)mp); + Py_ReprLeave(self); PyUnicodeWriter_Discard(writer); Py_XDECREF(key); Py_XDECREF(value); return NULL; } +static PyObject * +dict_repr_lock_held(PyObject *self) +{ + ASSERT_DICT_LOCKED((PyDictObject *)self); + return anydict_repr_impl(self); +} + static PyObject * dict_repr(PyObject *self) { @@ -7862,7 +7868,7 @@ static PyMethodDef frozendict_methods[] = { static PyObject * frozendict_repr(PyObject *self) { - PyObject *repr = dict_repr(self); + PyObject *repr = anydict_repr_impl(self); if (repr == NULL) { return NULL; } From 6577d870b0cb82baf540f4bcf49c01d68204e468 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Tue, 17 Feb 2026 09:12:25 -0700 Subject: [PATCH 034/110] gh-144438: Fix false sharing between QSBR and tlbc_index (gh-144554) Align the QSBR thread state array to a 64-byte cache line boundary and add padding at the end of _PyThreadStateImpl. Depending on heap layout, the QSBR array could end up sharing a cache line with a thread's tlbc_index, causing QSBR quiescent state updates to contend with reads of tlbc_index in RESUME_CHECK. This is sensitive to earlier allocations during interpreter init and can appear or disappear with seemingly unrelated changes. Either change alone is sufficient to fix the specific issue, but both are worthwhile to avoid similar problems in the future. --- Include/internal/pycore_qsbr.h | 3 ++- Include/internal/pycore_tstate.h | 6 ++++++ ...2-06-21-45-52.gh-issue-144438.GI_uB1LR.rst | 2 ++ Python/qsbr.c | 20 +++++++++++++------ 4 files changed, 24 insertions(+), 7 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-06-21-45-52.gh-issue-144438.GI_uB1LR.rst diff --git a/Include/internal/pycore_qsbr.h b/Include/internal/pycore_qsbr.h index 1f9b3fcf777493..eeca6fc472be37 100644 --- a/Include/internal/pycore_qsbr.h +++ b/Include/internal/pycore_qsbr.h @@ -83,8 +83,9 @@ struct _qsbr_shared { // Minimum observed read sequence of all QSBR thread states uint64_t rd_seq; - // Array of QSBR thread states. + // Array of QSBR thread states (aligned to 64 bytes). struct _qsbr_pad *array; + void *array_raw; // raw allocation pointer (for free) Py_ssize_t size; // Freelist of unused _qsbr_thread_states (protected by mutex) diff --git a/Include/internal/pycore_tstate.h b/Include/internal/pycore_tstate.h index 64b90710b8e664..eb2b0c84acdc7c 100644 --- a/Include/internal/pycore_tstate.h +++ b/Include/internal/pycore_tstate.h @@ -102,6 +102,12 @@ typedef struct _PyThreadStateImpl { #if _Py_TIER2 struct _PyJitTracerState *jit_tracer_state; #endif + +#ifdef Py_GIL_DISABLED + // gh-144438: Add padding to ensure that the fields above don't share a + // cache line with other allocations. + char __padding[64]; +#endif } _PyThreadStateImpl; #ifdef __cplusplus diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-06-21-45-52.gh-issue-144438.GI_uB1LR.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-06-21-45-52.gh-issue-144438.GI_uB1LR.rst new file mode 100644 index 00000000000000..3e33e461ae8b5a --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-06-21-45-52.gh-issue-144438.GI_uB1LR.rst @@ -0,0 +1,2 @@ +Align the QSBR thread state array to a 64-byte cache line boundary to +avoid false sharing in the :term:`free-threaded build`. diff --git a/Python/qsbr.c b/Python/qsbr.c index 6bf5b75f346690..e9d935bfb40d84 100644 --- a/Python/qsbr.c +++ b/Python/qsbr.c @@ -85,22 +85,29 @@ grow_thread_array(struct _qsbr_shared *shared) new_size = MIN_ARRAY_SIZE; } - struct _qsbr_pad *array = PyMem_RawCalloc(new_size, sizeof(*array)); - if (array == NULL) { + // Overallocate by 63 bytes so we can align to a 64-byte boundary. + // This avoids potential false sharing between the first entry and other + // allocations. + size_t alignment = 64; + size_t alloc_size = (size_t)new_size * sizeof(struct _qsbr_pad) + alignment - 1; + void *raw = PyMem_RawCalloc(1, alloc_size); + if (raw == NULL) { return -1; } + struct _qsbr_pad *array = _Py_ALIGN_UP(raw, alignment); - struct _qsbr_pad *old = shared->array; - if (old != NULL) { + void *old_raw = shared->array_raw; + if (shared->array != NULL) { memcpy(array, shared->array, shared->size * sizeof(*array)); } shared->array = array; + shared->array_raw = raw; shared->size = new_size; shared->freelist = NULL; initialize_new_array(shared); - PyMem_RawFree(old); + PyMem_RawFree(old_raw); return 0; } @@ -257,8 +264,9 @@ void _Py_qsbr_fini(PyInterpreterState *interp) { struct _qsbr_shared *shared = &interp->qsbr; - PyMem_RawFree(shared->array); + PyMem_RawFree(shared->array_raw); shared->array = NULL; + shared->array_raw = NULL; shared->size = 0; shared->freelist = NULL; } From 8e211b1ca93401d46009b556d648d12c679a132b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 17 Feb 2026 18:39:33 +0100 Subject: [PATCH 035/110] gh-141510: Optimize hash(frozendict) (#144919) hash(frozendict) no longer creates a temporary items view and a temporary frozenset object. Copy frozenset_hash() code to frozendict_hash(). --- Lib/test/test_dict.py | 9 +++++++ Objects/dictobject.c | 56 ++++++++++++++++++++++++++++++------------- Objects/setobject.c | 5 +++- 3 files changed, 52 insertions(+), 18 deletions(-) diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 1db3559a012fd3..2a106a8a4e8739 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -1775,6 +1775,15 @@ class MyFrozenDict(frozendict): d = MyFrozenDict(x=1, y=2) self.assertEqual(repr(d), "MyFrozenDict({'x': 1, 'y': 2})") + def test_hash(self): + # hash() doesn't rely on the items order + self.assertEqual(hash(frozendict(x=1, y=2)), + hash(frozendict(y=2, x=1))) + + fd = frozendict(x=[1], y=[2]) + with self.assertRaisesRegex(TypeError, "unhashable type: 'list'"): + hash(fd) + if __name__ == "__main__": unittest.main() diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 62abb793d002e0..f7a359e4a1a40d 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -7881,33 +7881,55 @@ frozendict_repr(PyObject *self) return res; } +static Py_uhash_t +_shuffle_bits(Py_uhash_t h) +{ + return ((h ^ 89869747UL) ^ (h << 16)) * 3644798167UL; +} + +// Code copied from frozenset_hash() static Py_hash_t frozendict_hash(PyObject *op) { PyFrozenDictObject *self = _PyFrozenDictObject_CAST(op); - Py_hash_t hash = FT_ATOMIC_LOAD_SSIZE_RELAXED(self->ma_hash); - if (hash != -1) { - return hash; + Py_hash_t shash = FT_ATOMIC_LOAD_SSIZE_RELAXED(self->ma_hash); + if (shash != -1) { + return shash; } - PyObject *items = _PyDictView_New(op, &PyDictItems_Type); - if (items == NULL) { - return -1; - } - PyObject *frozenset = PyFrozenSet_New(items); - Py_DECREF(items); - if (frozenset == NULL) { - return -1; + PyDictObject *mp = _PyAnyDict_CAST(op); + Py_uhash_t hash = 0; + + PyObject *key, *value; // borrowed refs + Py_ssize_t pos = 0; + while (PyDict_Next(op, &pos, &key, &value)) { + Py_hash_t key_hash = PyObject_Hash(key); + if (key_hash == -1) { + return -1; + } + hash ^= _shuffle_bits(key_hash); + + Py_hash_t value_hash = PyObject_Hash(value); + if (value_hash == -1) { + return -1; + } + hash ^= _shuffle_bits(value_hash); } - hash = PyObject_Hash(frozenset); - Py_DECREF(frozenset); - if (hash == -1) { - return -1; + /* Factor in the number of active entries */ + hash ^= ((Py_uhash_t)mp->ma_used + 1) * 1927868237UL; + + /* Disperse patterns arising in nested frozendicts */ + hash ^= (hash >> 11) ^ (hash >> 25); + hash = hash * 69069U + 907133923UL; + + /* -1 is reserved as an error code */ + if (hash == (Py_uhash_t)-1) { + hash = 590923713UL; } - FT_ATOMIC_STORE_SSIZE_RELAXED(self->ma_hash, hash); - return hash; + FT_ATOMIC_STORE_SSIZE_RELAXED(self->ma_hash, (Py_hash_t)hash); + return (Py_hash_t)hash; } diff --git a/Objects/setobject.c b/Objects/setobject.c index 5d4d1812282eed..f8713bf3d1a432 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -964,7 +964,10 @@ _shuffle_bits(Py_uhash_t h) This hash algorithm can be used on either a frozenset or a set. When it is used on a set, it computes the hash value of the equivalent - frozenset without creating a new frozenset object. */ + frozenset without creating a new frozenset object. + + If you update this code, update also frozendict_hash() which copied this + code. */ static Py_hash_t frozenset_hash_impl(PyObject *self) From d1505b543a26d3288725ca83e4a70dfa378eb866 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 17 Feb 2026 19:04:17 +0100 Subject: [PATCH 036/110] gh-141510: Change repr(frozendict) for empty dict (#144921) repr(frozendict()) returns "frozendict()" instead of "frozendict({})". --- Lib/test/test_dict.py | 3 +++ Objects/dictobject.c | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 2a106a8a4e8739..21f8bb11071c90 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -1767,6 +1767,9 @@ def test_update(self): self.assertEqual(copy, frozendict({'x': 1})) def test_repr(self): + d = frozendict() + self.assertEqual(repr(d), "frozendict()") + d = frozendict(x=1, y=2) self.assertEqual(repr(d), "frozendict({'x': 1, 'y': 2})") diff --git a/Objects/dictobject.c b/Objects/dictobject.c index f7a359e4a1a40d..7db2e547b54dba 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -7868,6 +7868,11 @@ static PyMethodDef frozendict_methods[] = { static PyObject * frozendict_repr(PyObject *self) { + PyDictObject *mp = _PyAnyDict_CAST(self); + if (mp->ma_used == 0) { + return PyUnicode_FromFormat("%s()", Py_TYPE(self)->tp_name); + } + PyObject *repr = anydict_repr_impl(self); if (repr == NULL) { return NULL; From fa73fd473f00dd231f59e44798a3d00a46322658 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Tue, 17 Feb 2026 20:26:29 +0000 Subject: [PATCH 037/110] gh-141510: Update `test_xpickle` for `frozendict` (#144927) --- Lib/test/pickletester.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 5f627f047ea319..c4460c2e44d578 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -3167,6 +3167,7 @@ def test_builtin_types(self): 'bytes': (3, 0), 'BuiltinImporter': (3, 3), 'str': (3, 4), # not interoperable with Python < 3.4 + 'frozendict': (3, 15), } for t in builtins.__dict__.values(): if isinstance(t, type) and not issubclass(t, BaseException): From d1b541b047e15bb6bddea50a64d71ddb01935e33 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Wed, 18 Feb 2026 06:46:20 +0900 Subject: [PATCH 038/110] gh-141510: Optimize {frozen}dict.fromkeys for frozendict (gh-144915) --- ...-02-17-22-27-11.gh-issue-141510.-4yYsf.rst | 2 + Objects/dictobject.c | 63 ++++++++++++++++--- 2 files changed, 58 insertions(+), 7 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-22-27-11.gh-issue-141510.-4yYsf.rst diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-22-27-11.gh-issue-141510.-4yYsf.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-22-27-11.gh-issue-141510.-4yYsf.rst new file mode 100644 index 00000000000000..b031fb3c75dea7 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-22-27-11.gh-issue-141510.-4yYsf.rst @@ -0,0 +1,2 @@ +Optimize :meth:`!frozendict.fromkeys` to avoid unnecessary thread-safety operations +in frozendict cases. Patch by Donghee Na. diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 7db2e547b54dba..0959e2c78a3289 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2671,10 +2671,8 @@ _PyDict_LoadBuiltinsFromGlobals(PyObject *globals) /* Consumes references to key and value */ static int -setitem_take2_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) +anydict_setitem_take2(PyDictObject *mp, PyObject *key, PyObject *value) { - ASSERT_DICT_LOCKED(mp); - assert(key); assert(value); assert(PyAnyDict_Check(mp)); @@ -2693,6 +2691,14 @@ setitem_take2_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) return insertdict(mp, key, hash, value); } +/* Consumes references to key and value */ +static int +setitem_take2_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) +{ + ASSERT_DICT_LOCKED(mp); + return anydict_setitem_take2(mp, key, value); +} + int _PyDict_SetItem_Take2(PyDictObject *mp, PyObject *key, PyObject *value) { @@ -3284,8 +3290,8 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) return NULL; - if (PyAnyDict_CheckExact(d)) { - if (PyAnyDict_CheckExact(iterable)) { + if (PyDict_CheckExact(d)) { + if (PyDict_CheckExact(iterable)) { PyDictObject *mp = (PyDictObject *)d; Py_BEGIN_CRITICAL_SECTION2(d, iterable); @@ -3293,6 +3299,14 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) Py_END_CRITICAL_SECTION2(); return d; } + else if (PyFrozenDict_CheckExact(iterable)) { + PyDictObject *mp = (PyDictObject *)d; + + Py_BEGIN_CRITICAL_SECTION(d); + d = (PyObject *)dict_dict_fromkeys(mp, iterable, value); + Py_END_CRITICAL_SECTION(); + return d; + } else if (PyAnySet_CheckExact(iterable)) { PyDictObject *mp = (PyDictObject *)d; @@ -3302,6 +3316,29 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) return d; } } + else if (PyFrozenDict_CheckExact(d)) { + if (PyDict_CheckExact(iterable)) { + PyDictObject *mp = (PyDictObject *)d; + + Py_BEGIN_CRITICAL_SECTION(iterable); + d = (PyObject *)dict_dict_fromkeys(mp, iterable, value); + Py_END_CRITICAL_SECTION(); + return d; + } + else if (PyFrozenDict_CheckExact(iterable)) { + PyDictObject *mp = (PyDictObject *)d; + d = (PyObject *)dict_dict_fromkeys(mp, iterable, value); + return d; + } + else if (PyAnySet_CheckExact(iterable)) { + PyDictObject *mp = (PyDictObject *)d; + + Py_BEGIN_CRITICAL_SECTION(iterable); + d = (PyObject *)dict_set_fromkeys(mp, iterable, value); + Py_END_CRITICAL_SECTION(); + return d; + } + } it = PyObject_GetIter(iterable); if (it == NULL){ @@ -3309,7 +3346,7 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) return NULL; } - if (PyAnyDict_CheckExact(d)) { + if (PyDict_CheckExact(d)) { Py_BEGIN_CRITICAL_SECTION(d); while ((key = PyIter_Next(it)) != NULL) { status = setitem_lock_held((PyDictObject *)d, key, value); @@ -3321,7 +3358,19 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) } dict_iter_exit:; Py_END_CRITICAL_SECTION(); - } else { + } + else if (PyFrozenDict_CheckExact(d)) { + while ((key = PyIter_Next(it)) != NULL) { + // anydict_setitem_take2 consumes a reference to key + status = anydict_setitem_take2((PyDictObject *)d, + key, Py_NewRef(value)); + if (status < 0) { + assert(PyErr_Occurred()); + goto Fail; + } + } + } + else { while ((key = PyIter_Next(it)) != NULL) { status = PyObject_SetItem(d, key, value); Py_DECREF(key); From e779777c66595acc599162fc3c852f3cda3f5c45 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 17 Feb 2026 23:03:22 +0100 Subject: [PATCH 039/110] gh-141510: Mention frozendict in dict documentation (#144934) test_genericalias now tests also frozendict. --- Doc/library/stdtypes.rst | 4 ++-- Lib/pydoc_data/topics.py | 8 ++++---- Lib/test/test_genericalias.py | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 6f798f02e17899..a8f693f4879025 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -5590,8 +5590,8 @@ can be used interchangeably to index the same dictionary entry. .. seealso:: - :class:`types.MappingProxyType` can be used to create a read-only view - of a :class:`dict`. + :class:`frozendict` and :class:`types.MappingProxyType` can be used to + create a read-only view of a :class:`dict`. .. _thread-safety-dict: diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py index 32cf9a995bae3d..dc09c5fd47affe 100644 --- a/Lib/pydoc_data/topics.py +++ b/Lib/pydoc_data/topics.py @@ -3676,8 +3676,8 @@ def f() -> annotation: ... * a class that inherits from any of the above - The standard library classes "dict" and "types.MappingProxyType" - are mappings. + The standard library classes "dict", "frozendict" + and "types.MappingProxyType" are mappings. [4] A string literal appearing as the first statement in the function body is transformed into the function’s "__doc__" attribute and @@ -13620,8 +13620,8 @@ class dict(iterable, /, **kwargs) See also: - "types.MappingProxyType" can be used to create a read-only view of a - "dict". + "frozendict" and "types.MappingProxyType" can be used to create a read-only + view of a "dict". Dictionary view objects diff --git a/Lib/test/test_genericalias.py b/Lib/test/test_genericalias.py index 2b9cee6433b5b8..a5969b7a47d948 100644 --- a/Lib/test/test_genericalias.py +++ b/Lib/test/test_genericalias.py @@ -101,7 +101,8 @@ class BaseTest(unittest.TestCase): """Test basics.""" - generic_types = [type, tuple, list, dict, set, frozenset, enumerate, memoryview, + generic_types = [type, tuple, list, dict, frozendict, + set, frozenset, enumerate, memoryview, slice, defaultdict, deque, SequenceMatcher, From 836f2c97f99925e84ec20d3c6da335a841f63b62 Mon Sep 17 00:00:00 2001 From: Kumar Aditya Date: Wed, 18 Feb 2026 09:46:27 +0530 Subject: [PATCH 040/110] gh-144914: use `mimalloc` for raw allocations on free-threading (#144916) --- Doc/whatsnew/3.15.rst | 5 +++ Include/internal/pycore_pymem_init.h | 6 ++++ ...-02-17-18-27-28.gh-issue-144914.DcXO4m.rst | 1 + Objects/obmalloc.c | 35 ++++++++++++++++--- 4 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-18-27-28.gh-issue-144914.DcXO4m.rst diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index e5714765208ff6..62ce7121424651 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -1204,6 +1204,11 @@ Optimizations (Contributed by Chris Eibl, Ken Jin, and Brandt Bucher in :gh:`143068`. Special thanks to the MSVC team including Hulon Jenkins.) +* ``mimalloc`` is now used as the default allocator for + for raw memory allocations such as via :c:func:`PyMem_RawMalloc` + for better performance on :term:`free-threaded builds `. + (Contributed by Kumar Aditya in :gh:`144914`.) + base64 & binascii ----------------- diff --git a/Include/internal/pycore_pymem_init.h b/Include/internal/pycore_pymem_init.h index c593edc86d9952..2a0e0817dcc7f8 100644 --- a/Include/internal/pycore_pymem_init.h +++ b/Include/internal/pycore_pymem_init.h @@ -30,6 +30,12 @@ extern void* _PyMem_MiCalloc(void *, size_t, size_t); extern void _PyMem_MiFree(void *, void *); extern void* _PyMem_MiRealloc(void *, void *, size_t); # define PYMEM_ALLOC {NULL, _PyMem_MiMalloc, _PyMem_MiCalloc, _PyMem_MiRealloc, _PyMem_MiFree} +extern void* _PyMem_MiRawMalloc(void *, size_t); +extern void* _PyMem_MiRawCalloc(void *, size_t, size_t); +extern void _PyMem_MiRawFree(void *, void *); +extern void* _PyMem_MiRawRealloc(void *, void *, size_t); +# undef PYRAW_ALLOC +# define PYRAW_ALLOC {NULL, _PyMem_MiRawMalloc, _PyMem_MiRawCalloc, _PyMem_MiRawRealloc, _PyMem_MiRawFree} #elif defined(WITH_PYMALLOC) extern void* _PyObject_Malloc(void *, size_t); extern void* _PyObject_Calloc(void *, size_t, size_t); diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-18-27-28.gh-issue-144914.DcXO4m.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-18-27-28.gh-issue-144914.DcXO4m.rst new file mode 100644 index 00000000000000..f13b8541a0ebe2 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-18-27-28.gh-issue-144914.DcXO4m.rst @@ -0,0 +1 @@ +Use ``mimalloc`` for raw memory allocations such as via :c:func:`PyMem_RawMalloc` for better performance on :term:`free-threaded builds `. Patch by Kumar Aditya. diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index ce2e39790bd76c..b59ebdfbda3897 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -358,6 +358,29 @@ _PyObject_MiFree(void *ctx, void *ptr) mi_free(ptr); } +void * +_PyMem_MiRawMalloc(void *ctx, size_t size) +{ + return mi_malloc(size); +} + +void * +_PyMem_MiRawCalloc(void *ctx, size_t nelem, size_t elsize) +{ + return mi_calloc(nelem, elsize); +} + +void * +_PyMem_MiRawRealloc(void *ctx, void *ptr, size_t size) +{ + return mi_realloc(ptr, size); +} + +void +_PyMem_MiRawFree(void *ctx, void *ptr) +{ + mi_free(ptr); +} #endif // WITH_MIMALLOC @@ -365,7 +388,8 @@ _PyObject_MiFree(void *ctx, void *ptr) #ifdef WITH_MIMALLOC -# define MIMALLOC_ALLOC {NULL, _PyMem_MiMalloc, _PyMem_MiCalloc, _PyMem_MiRealloc, _PyMem_MiFree} +# define MIMALLOC_ALLOC {NULL, _PyMem_MiMalloc, _PyMem_MiCalloc, _PyMem_MiRealloc, _PyMem_MiFree} +# define MIMALLOC_RAWALLOC {NULL, _PyMem_MiRawMalloc, _PyMem_MiRawCalloc, _PyMem_MiRawRealloc, _PyMem_MiRawFree} # define MIMALLOC_OBJALLOC {NULL, _PyObject_MiMalloc, _PyObject_MiCalloc, _PyObject_MiRealloc, _PyObject_MiFree} #endif @@ -383,7 +407,7 @@ void* _PyObject_Realloc(void *ctx, void *ptr, size_t size); #if defined(Py_GIL_DISABLED) // Py_GIL_DISABLED requires using mimalloc for "mem" and "obj" domains. -# define PYRAW_ALLOC MALLOC_ALLOC +# define PYRAW_ALLOC MIMALLOC_RAWALLOC # define PYMEM_ALLOC MIMALLOC_ALLOC # define PYOBJ_ALLOC MIMALLOC_OBJALLOC #elif defined(WITH_PYMALLOC) @@ -758,7 +782,7 @@ set_up_allocators_unlocked(PyMemAllocatorName allocator) case PYMEM_ALLOCATOR_MIMALLOC: case PYMEM_ALLOCATOR_MIMALLOC_DEBUG: { - PyMemAllocatorEx malloc_alloc = MALLOC_ALLOC; + PyMemAllocatorEx malloc_alloc = MIMALLOC_RAWALLOC; set_allocator_unlocked(PYMEM_DOMAIN_RAW, &malloc_alloc); PyMemAllocatorEx pymalloc = MIMALLOC_ALLOC; @@ -828,6 +852,7 @@ get_current_allocator_name_unlocked(void) #ifdef WITH_MIMALLOC PyMemAllocatorEx mimalloc = MIMALLOC_ALLOC; PyMemAllocatorEx mimalloc_obj = MIMALLOC_OBJALLOC; + PyMemAllocatorEx mimalloc_raw = MIMALLOC_RAWALLOC; #endif if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && @@ -845,7 +870,7 @@ get_current_allocator_name_unlocked(void) } #endif #ifdef WITH_MIMALLOC - if (pymemallocator_eq(&_PyMem_Raw, &malloc_alloc) && + if (pymemallocator_eq(&_PyMem_Raw, &mimalloc_raw) && pymemallocator_eq(&_PyMem, &mimalloc) && pymemallocator_eq(&_PyObject, &mimalloc_obj)) { @@ -877,7 +902,7 @@ get_current_allocator_name_unlocked(void) } #endif #ifdef WITH_MIMALLOC - if (pymemallocator_eq(&_PyMem_Debug.raw.alloc, &malloc_alloc) && + if (pymemallocator_eq(&_PyMem_Debug.raw.alloc, &mimalloc_raw) && pymemallocator_eq(&_PyMem_Debug.mem.alloc, &mimalloc) && pymemallocator_eq(&_PyMem_Debug.obj.alloc, &mimalloc_obj)) { From 783e3fd4364faa1530c7eecae2bad7338a828905 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 18 Feb 2026 07:51:45 +0000 Subject: [PATCH 041/110] Move CODEOWNERS rule from devguide (GH-144924) --- .github/CODEOWNERS | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 32b883213685b2..b53c3cc1f465ff 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -473,8 +473,9 @@ Lib/test/test_functools.py @rhettinger Modules/_functoolsmodule.c @rhettinger # Garbage collector -Modules/gcmodule.c @pablogsal -Doc/library/gc.rst @pablogsal +Modules/gcmodule.c @pablogsal +Doc/library/gc.rst @pablogsal +InternalDocs/garbage_collector.md @pablogsal # Gettext Doc/library/gettext.rst @tomasr8 From 6f7e3d44082351b4ee77a2ba186a6388c2950eb1 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 18 Feb 2026 07:52:04 +0000 Subject: [PATCH 042/110] Docs: Remove unnecessary entry from `nitpick_ignore` (GH-144933) --- Doc/conf.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Doc/conf.py b/Doc/conf.py index 859c1d26ed9f22..d7effe2572ec44 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -227,10 +227,6 @@ # Temporary undocumented names. # In future this list must be empty. nitpick_ignore += [ - # Do not error nit-picky mode builds when _SubParsersAction.add_parser cannot - # be resolved, as the method is currently undocumented. For context, see - # https://github.com/python/cpython/pull/103289. - ('py:meth', '_SubParsersAction.add_parser'), # Attributes/methods/etc. that definitely should be documented better, # but are deferred for now: ('py:attr', '__wrapped__'), From 7a7521bcfad4a8346d460476de2e3fa11e412477 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 18 Feb 2026 04:58:30 -0500 Subject: [PATCH 043/110] Docs: an "improve this page" feature (#144939) * Docs: a start on an 'improve this page' feature * pr feedback: simplify the link, and don't scare people with the cla * pr feedback answered - use the actual page URL - tighten the wording * fix the improve link on the improve page * news item * Update Doc/improve-page.rst Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> * fix whitespace * A nojs version of the page * comments to help people keep the two pages in sync * protect against XSS * use template for issues from the nojs page * use the template from the JS page as well * give the docs issue template a fillable description field * ugh, getting sloppy * remove more sloppiness --------- Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/documentation.yml | 3 +- Doc/improve-page-nojs.rst | 29 +++++++++ Doc/improve-page.rst | 65 +++++++++++++++++++ Doc/tools/templates/customsourcelink.html | 17 ++++- ...-08-02-18-59-01.gh-issue-136246.RIK7nE.rst | 3 + 5 files changed, 115 insertions(+), 2 deletions(-) create mode 100644 Doc/improve-page-nojs.rst create mode 100644 Doc/improve-page.rst create mode 100644 Misc/NEWS.d/next/Documentation/2025-08-02-18-59-01.gh-issue-136246.RIK7nE.rst diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml index 944e590452c7cf..d720cf9c4de91e 100644 --- a/.github/ISSUE_TEMPLATE/documentation.yml +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -8,8 +8,9 @@ body: > [!NOTE] > Trivial changes (for example typos) don’t require an issue before opening a PR. - type: textarea + id: description attributes: label: "Documentation" - description: "A clear and concise description of the issue." + description: "A clear and concise description of the issue. Include a link to the page." validations: required: true diff --git a/Doc/improve-page-nojs.rst b/Doc/improve-page-nojs.rst new file mode 100644 index 00000000000000..91b3a88b95d38b --- /dev/null +++ b/Doc/improve-page-nojs.rst @@ -0,0 +1,29 @@ +:orphan: + +**************************** +Improve a documentation page +**************************** + +.. This is the no-javascript version of this page. The one most people + will see (with JavaScript enabled) is improve-page.rst. If you edit + this page, please also edit that one, and vice versa. + +.. only:: html and not epub + +We are always interested to hear ideas about improvements to the documentation. + +.. only:: translation + + If the bug or suggested improvement concerns the translation of this + documentation, open an issue or edit the page in + `translation's repository `_ instead. + +You have a few ways to ask questions or suggest changes: + +- You can start a discussion about the page on the Python discussion forum. + This link will start a topic in the Documentation category: + `New Documentation topic `_. + +- You can open an issue on the Python GitHub issue tracker. This link will + create a new issue with the "docs" label: + `New docs issue `_. diff --git a/Doc/improve-page.rst b/Doc/improve-page.rst new file mode 100644 index 00000000000000..dc89fcb22fbb59 --- /dev/null +++ b/Doc/improve-page.rst @@ -0,0 +1,65 @@ +:orphan: + +**************************** +Improve a documentation page +**************************** + +.. This is the JavaScript-enabled version of this page. Another version + (for those with JavaScript disabled) is improve-page-nojs.rst. If you + edit this page, please also edit that one, and vice versa. + +.. only:: html and not epub + + .. raw:: html + + + +We are always interested to hear ideas about improvements to the documentation. + +You were reading "PAGETITLE" at ``_. The source for that page is on +`GitHub `_. + +.. only:: translation + + If the bug or suggested improvement concerns the translation of this + documentation, open an issue or edit the page in + `translation's repository `_ instead. + +You have a few ways to ask questions or suggest changes: + +- You can start a discussion about the page on the Python discussion forum. + This link will start a pre-populated topic: + `Question about page "PAGETITLE" `_. + +- You can open an issue on the Python GitHub issue tracker. This link will + create a new pre-populated issue: + `Docs: problem with page "PAGETITLE" `_. + +- You can `edit the page on GitHub `_ + to open a pull request and begin the contribution process. diff --git a/Doc/tools/templates/customsourcelink.html b/Doc/tools/templates/customsourcelink.html index 0d83ac9f78adb9..8feeed2fee3650 100644 --- a/Doc/tools/templates/customsourcelink.html +++ b/Doc/tools/templates/customsourcelink.html @@ -1,10 +1,25 @@ {%- if show_source and has_source and sourcename %} +

{{ _('This page') }}

  • {% trans %}Report a bug{% endtrans %}
  • +
  • {% trans %}Improve this page{% endtrans %}
  • - {{ _('Show source') }}
  • diff --git a/Misc/NEWS.d/next/Documentation/2025-08-02-18-59-01.gh-issue-136246.RIK7nE.rst b/Misc/NEWS.d/next/Documentation/2025-08-02-18-59-01.gh-issue-136246.RIK7nE.rst new file mode 100644 index 00000000000000..5f83785df13209 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2025-08-02-18-59-01.gh-issue-136246.RIK7nE.rst @@ -0,0 +1,3 @@ +A new "Improve this page" link is available in the left-hand sidebar of the +docs, offering links to create GitHub issues, discussion forum posts, or +pull requests. From e49bfca87cc188c271946491edc33831a901c7f1 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 18 Feb 2026 10:54:07 +0000 Subject: [PATCH 044/110] gh-142224: unicodedata: support bidi classes for unassigned code points (GH-144815) --- Lib/test/test_unicodedata.py | 21 +- ...3-00-00-00.gh-issue-142224.BidiMissing.rst | 2 + Modules/unicodedata_db.h | 4360 +++++++++-------- Tools/unicode/makeunicodedata.py | 70 +- 4 files changed, 2319 insertions(+), 2134 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-13-00-00-00.gh-issue-142224.BidiMissing.rst diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index d100dae1110b7f..1d03e7d9fec717 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -319,7 +319,7 @@ def test_category(self): self.assertRaises(TypeError, self.db.category, 'xx') def test_bidirectional(self): - self.assertEqual(self.db.bidirectional('\uFFFE'), '') + self.assertEqual(self.db.bidirectional('\uFFFE'), 'BN') self.assertEqual(self.db.bidirectional(' '), 'WS') self.assertEqual(self.db.bidirectional('A'), 'L') self.assertEqual(self.db.bidirectional('\U00020000'), 'L') @@ -347,6 +347,17 @@ def test_bidirectional(self): self.assertRaises(TypeError, self.db.bidirectional) self.assertRaises(TypeError, self.db.bidirectional, 'xx') + def test_bidirectional_unassigned(self): + if self.old: + return + self.assertEqual(self.db.bidirectional('\u0378'), 'L') + self.assertEqual(self.db.bidirectional('\u077F'), 'AL') + self.assertEqual(self.db.bidirectional('\u20CF'), 'ET') + self.assertEqual(self.db.bidirectional('\u0590'), 'R') + self.assertEqual(self.db.bidirectional('\uFFFF'), 'BN') + self.assertEqual(self.db.bidirectional('\U0001FFFE'), 'BN') + self.assertEqual(self.db.bidirectional('\U00010D01'), 'AL') + def test_decomposition(self): self.assertEqual(self.db.decomposition('\uFFFE'),'') self.assertEqual(self.db.decomposition('\u00bc'), ' 0031 2044 0034') @@ -676,9 +687,9 @@ class UnicodeFunctionsTest(unittest.TestCase, BaseUnicodeFunctionsTest): # Update this if the database changes. Make sure to do a full rebuild # (e.g. 'make distclean && make') to get the correct checksum. - expectedchecksum = ('83cc43a2fbb779185832b4c049217d80b05bf349' + expectedchecksum = ('668dbbea1136e69d4f00677a5988b23bc78aefc6' if quicktest else - '180bdc91143d8aa2eb9dd6726e66d37606205942') + 'b869af769bd8fe352c04622ab90533dc54df5cf3') @requires_resource('network') def test_all_names(self): @@ -966,9 +977,9 @@ def graphemes(*args): class Unicode_3_2_0_FunctionsTest(unittest.TestCase, BaseUnicodeFunctionsTest): db = unicodedata.ucd_3_2_0 old = True - expectedchecksum = ('4154d8d1232837e255edf3cdcbb5ab184d71f4a4' + expectedchecksum = ('2164a66700e03cba9c9f5ed9e9a8d594d2da136a' if quicktest else - '3aabaf66823b21b3d305dad804a62f6f6387c93e') + 'a8276cec9b6991779c5bdaa46c1ae7cc50bc2403') class UnicodeMiscTest(unittest.TestCase): diff --git a/Misc/NEWS.d/next/Library/2026-02-13-00-00-00.gh-issue-142224.BidiMissing.rst b/Misc/NEWS.d/next/Library/2026-02-13-00-00-00.gh-issue-142224.BidiMissing.rst new file mode 100644 index 00000000000000..29fa908d739fc3 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-13-00-00-00.gh-issue-142224.BidiMissing.rst @@ -0,0 +1,2 @@ +:func:`unicodedata.bidirectional` now return the correct default bidi class +for unassigned code points. diff --git a/Modules/unicodedata_db.h b/Modules/unicodedata_db.h index a0b65628035984..3cc5776a1f240d 100644 --- a/Modules/unicodedata_db.h +++ b/Modules/unicodedata_db.h @@ -80,6 +80,7 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { {4, 233, 14, 0, 4, 0, 5, 3, 0}, {4, 234, 14, 0, 4, 0, 5, 3, 0}, {18, 0, 19, 0, 0, 170, 0, 0, 0}, + {0, 0, 1, 0, 0, 0, 0, 0, 0}, {26, 0, 19, 0, 0, 170, 0, 0, 0}, {29, 0, 19, 0, 0, 138, 0, 0, 0}, {1, 0, 1, 0, 0, 138, 0, 0, 0}, @@ -92,6 +93,7 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { {21, 0, 19, 0, 0, 0, 0, 0, 0}, {30, 0, 19, 0, 0, 0, 0, 0, 0}, {28, 0, 11, 0, 0, 0, 0, 0, 0}, + {0, 0, 4, 0, 0, 0, 0, 0, 0}, {4, 220, 14, 0, 0, 0, 5, 3, 0}, {4, 222, 14, 0, 0, 0, 5, 3, 0}, {4, 228, 14, 0, 0, 0, 5, 3, 0}, @@ -140,6 +142,7 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { {19, 0, 5, 0, 0, 136, 0, 0, 0}, {7, 0, 9, 0, 0, 0, 0, 0, 0}, {30, 0, 5, 0, 0, 0, 0, 0, 0}, + {0, 0, 5, 0, 0, 0, 0, 0, 0}, {14, 0, 5, 0, 0, 0, 1, 0, 0}, {4, 36, 14, 0, 0, 0, 5, 3, 0}, {4, 0, 14, 0, 0, 0, 5, 3, 0}, @@ -236,7 +239,7 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { {26, 0, 19, 0, 0, 136, 0, 0, 1}, {20, 0, 19, 0, 0, 0, 0, 0, 0}, {27, 0, 13, 0, 0, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 4, 0, 0}, + {0, 0, 15, 0, 0, 0, 4, 0, 0}, {14, 0, 20, 0, 0, 0, 4, 0, 0}, {14, 0, 21, 0, 0, 0, 4, 0, 0}, {14, 0, 22, 0, 0, 0, 4, 0, 0}, @@ -249,6 +252,7 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { {18, 0, 1, 0, 4, 136, 0, 0, 0}, {28, 0, 11, 0, 0, 136, 0, 0, 0}, {28, 0, 11, 0, 1, 0, 0, 0, 0}, + {0, 0, 11, 0, 0, 0, 0, 0, 0}, {30, 0, 19, 0, 0, 136, 0, 0, 0}, {30, 0, 19, 0, 4, 136, 0, 0, 0}, {30, 0, 19, 0, 4, 136, 0, 0, 1}, @@ -317,11 +321,12 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { {15, 0, 1, 0, 0, 0, 0, 0, 0}, {16, 0, 1, 0, 4, 0, 0, 0, 0}, {19, 0, 1, 0, 2, 170, 0, 0, 0}, - {0, 0, 0, 0, 2, 0, 0, 0, 0}, + {0, 0, 1, 0, 2, 0, 0, 0, 0}, {19, 0, 4, 0, 0, 170, 0, 0, 0}, {4, 26, 14, 0, 0, 0, 5, 3, 0}, {19, 0, 4, 0, 0, 136, 0, 0, 0}, {23, 0, 19, 0, 0, 0, 0, 0, 0}, + {0, 0, 15, 0, 0, 0, 0, 0, 0}, {28, 0, 5, 0, 0, 136, 0, 0, 0}, {26, 0, 19, 0, 2, 136, 0, 0, 0}, {22, 0, 19, 0, 2, 136, 0, 0, 0}, @@ -386,7 +391,7 @@ const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = { {5, 216, 1, 0, 0, 0, 5, 3, 0}, {5, 226, 1, 0, 0, 0, 5, 3, 0}, {9, 0, 1, 0, 2, 0, 0, 0, 0}, - {0, 0, 0, 0, 0, 0, 0, 0, 1}, + {0, 0, 1, 0, 0, 0, 0, 0, 1}, {30, 0, 1, 0, 4, 0, 0, 0, 0}, {30, 0, 1, 0, 4, 0, 0, 0, 1}, {30, 0, 1, 0, 2, 0, 0, 0, 1}, @@ -880,11 +885,11 @@ static const unsigned short index1[] = { 222, 222, 222, 224, 225, 226, 78, 227, 228, 229, 230, 231, 232, 143, 233, 234, 235, 236, 237, 238, 239, 240, 78, 78, 78, 78, 241, 242, 143, 143, 143, 143, 143, 143, 143, 143, 243, 143, 244, 245, 246, 143, 143, 247, - 143, 143, 143, 248, 143, 249, 143, 250, 143, 251, 252, 253, 254, 143, - 143, 143, 143, 143, 255, 256, 257, 143, 258, 259, 143, 143, 260, 261, - 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 222, 274, - 275, 276, 277, 278, 279, 280, 222, 281, 265, 265, 265, 265, 265, 265, - 265, 282, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, + 143, 143, 143, 248, 143, 249, 143, 250, 143, 251, 252, 253, 254, 255, + 255, 255, 255, 255, 256, 257, 258, 255, 259, 260, 255, 255, 261, 262, + 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 222, 275, + 276, 277, 278, 279, 280, 281, 222, 282, 266, 266, 266, 266, 266, 266, + 266, 283, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, @@ -907,57 +912,57 @@ static const unsigned short index1[] = { 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 283, + 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 284, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 101, 101, 101, 101, 284, 101, 101, 101, 101, 101, 101, 101, + 101, 101, 101, 101, 101, 101, 285, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 101, 101, 101, 101, 101, 101, 101, 285, 101, 101, 101, 101, + 101, 101, 101, 101, 101, 101, 101, 101, 101, 286, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 286, 101, 101, - 101, 101, 287, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 127, 127, 127, 127, 289, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 290, 101, 101, 101, 101, + 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 287, 101, 101, + 101, 101, 288, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 127, 127, 127, 127, 290, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 291, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 101, 101, 101, 101, 291, 101, 101, 101, 101, 101, 101, 101, + 101, 101, 101, 101, 101, 101, 292, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, - 101, 101, 292, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 290, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 101, 101, 293, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, + 289, 289, 289, 291, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -993,6 +998,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1029,6 +1035,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1064,6 +1071,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1100,6 +1108,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1136,6 +1145,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1171,6 +1181,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1207,6 +1218,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1242,6 +1254,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1278,6 +1291,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1313,6 +1327,10 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 294, + 295, 296, 297, 298, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, + 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, + 296, 296, 296, 296, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1323,9 +1341,6 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 293, 294, 295, 296, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, - 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, - 294, 294, 294, 294, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, @@ -1349,17 +1364,7 @@ static const unsigned short index1[] = { 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 143, 143, 143, 143, 143, 126, 126, 126, 126, 126, 126, + 143, 143, 143, 143, 143, 143, 143, 294, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, @@ -1396,7 +1401,7 @@ static const unsigned short index1[] = { 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - 126, 297, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, + 126, 299, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, @@ -1432,7 +1437,7 @@ static const unsigned short index1[] = { 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - 126, 126, 126, 126, 126, 126, 126, 126, 126, 297, + 126, 126, 126, 126, 126, 126, 126, 126, 126, 299, }; static const unsigned short index2[] = { @@ -1484,260 +1489,269 @@ static const unsigned short index2[] = { 62, 62, 71, 71, 61, 71, 71, 72, 62, 64, 64, 64, 62, 62, 62, 64, 64, 73, 62, 62, 62, 64, 64, 64, 64, 62, 63, 64, 64, 62, 74, 75, 75, 74, 75, 75, 74, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 46, 49, 46, 49, - 76, 56, 46, 49, 0, 0, 53, 49, 49, 49, 77, 46, 0, 0, 0, 0, 60, 78, 40, 77, - 40, 40, 40, 0, 40, 0, 40, 40, 45, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, - 41, 41, 41, 41, 41, 41, 41, 0, 41, 41, 41, 41, 41, 41, 41, 40, 40, 45, - 45, 45, 45, 45, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, - 43, 43, 43, 49, 43, 43, 43, 43, 43, 43, 43, 45, 45, 45, 45, 45, 46, 37, - 37, 51, 79, 79, 37, 37, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 37, 37, 37, 49, 51, - 37, 80, 46, 49, 51, 46, 49, 49, 46, 46, 46, 40, 81, 46, 40, 46, 46, 46, - 40, 46, 46, 46, 46, 40, 40, 40, 46, 41, 41, 41, 41, 41, 41, 41, 41, 41, - 81, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, - 41, 41, 41, 41, 41, 43, 43, 43, 43, 43, 43, 43, 43, 43, 44, 43, 43, 43, + 76, 56, 46, 49, 77, 77, 53, 49, 49, 49, 78, 46, 77, 77, 77, 77, 60, 79, + 40, 78, 40, 40, 40, 77, 40, 77, 40, 40, 45, 41, 41, 41, 41, 41, 41, 41, + 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 77, 41, 41, 41, 41, 41, 41, 41, + 40, 40, 45, 45, 45, 45, 45, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, + 43, 43, 43, 43, 43, 43, 49, 43, 43, 43, 43, 43, 43, 43, 45, 45, 45, 45, + 45, 46, 37, 37, 51, 80, 80, 37, 37, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 37, 37, + 37, 49, 51, 37, 81, 46, 49, 51, 46, 49, 49, 46, 46, 46, 40, 82, 46, 40, + 46, 46, 46, 40, 46, 46, 46, 46, 40, 40, 40, 46, 41, 41, 41, 41, 41, 41, + 41, 41, 41, 82, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, + 41, 41, 41, 41, 41, 41, 41, 41, 43, 43, 43, 43, 43, 43, 43, 43, 43, 44, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, - 43, 45, 44, 49, 45, 49, 49, 49, 45, 49, 49, 49, 49, 45, 45, 45, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 40, 45, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 82, 83, 83, - 83, 83, 83, 84, 84, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 40, 45, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, - 46, 49, 49, 40, 45, 40, 45, 46, 49, 40, 45, 46, 49, 40, 45, 40, 45, 40, - 45, 46, 49, 40, 45, 40, 45, 40, 45, 46, 49, 40, 45, 40, 45, 40, 45, 40, - 45, 40, 45, 40, 45, 46, 49, 40, 45, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 0, 46, 46, 46, 46, 46, 46, 46, 46, + 43, 43, 43, 43, 45, 44, 49, 45, 49, 49, 49, 45, 49, 49, 49, 49, 45, 45, + 45, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 40, 45, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 83, 84, 84, 84, 84, 84, 85, 85, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 40, 45, 46, 49, 46, 49, 46, 49, 46, + 49, 46, 49, 46, 49, 49, 40, 45, 40, 45, 46, 49, 40, 45, 46, 49, 40, 45, + 40, 45, 40, 45, 46, 49, 40, 45, 40, 45, 40, 45, 46, 49, 40, 45, 40, 45, + 40, 45, 40, 45, 40, 45, 40, 45, 46, 49, 40, 45, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 77, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 0, 0, 55, 85, 85, 85, 85, - 85, 85, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 77, 77, 55, + 86, 86, 86, 86, 86, 86, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 37, 49, 85, 86, 0, 0, 87, 87, 88, 0, 89, 83, 83, 83, - 83, 89, 83, 83, 83, 90, 89, 83, 83, 83, 83, 83, 83, 89, 89, 89, 89, 89, - 89, 83, 83, 89, 83, 83, 90, 91, 83, 92, 93, 94, 95, 96, 97, 98, 99, 100, - 101, 101, 102, 103, 104, 105, 106, 107, 108, 109, 107, 83, 89, 107, 100, - 0, 0, 0, 0, 0, 0, 0, 0, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 0, 0, 0, 0, 110, 110, 110, 110, 107, 107, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 111, 111, 111, 111, 111, 111, 80, 80, 112, 113, 113, - 114, 115, 116, 87, 87, 83, 83, 83, 83, 83, 83, 83, 83, 117, 118, 119, - 116, 120, 116, 116, 116, 121, 121, 122, 122, 122, 122, 122, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 123, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 124, 125, 126, 117, 118, 119, 127, 128, - 129, 129, 130, 89, 83, 83, 83, 83, 83, 89, 83, 83, 89, 131, 131, 131, - 131, 131, 131, 131, 131, 131, 131, 113, 132, 132, 116, 121, 121, 133, - 121, 121, 121, 121, 134, 134, 134, 134, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 122, 121, 122, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 122, 116, 121, 83, 83, 83, 83, 83, 83, 83, 111, 87, 83, 83, 83, 83, 89, - 83, 123, 123, 83, 83, 87, 89, 83, 83, 89, 121, 121, 135, 135, 135, 135, - 135, 135, 135, 135, 135, 135, 121, 121, 121, 136, 136, 121, 116, 116, - 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 0, 137, 121, - 138, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 83, 89, 83, 83, 89, 83, 83, 89, 89, 89, 83, 89, 89, 83, - 89, 83, 83, 83, 89, 83, 89, 83, 89, 83, 89, 83, 83, 0, 0, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 121, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 140, 140, 140, 140, 140, 140, - 140, 140, 140, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 83, 83, 83, 83, 83, 83, 83, 89, - 83, 141, 141, 87, 142, 142, 142, 141, 0, 0, 89, 143, 143, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 83, 83, 83, 83, 141, 83, 83, 83, 83, 83, 83, 83, - 83, 83, 141, 83, 83, 83, 141, 83, 83, 83, 83, 83, 0, 0, 107, 107, 107, - 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 0, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 89, 89, 89, 0, 0, 107, 0, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 0, 0, 0, 0, 0, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 144, 121, 121, 121, - 121, 121, 121, 121, 111, 111, 0, 0, 0, 0, 0, 83, 83, 89, 89, 89, 83, 83, - 83, 83, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 123, 83, 83, 83, 83, 83, 89, 89, 89, 89, 89, 83, 83, 83, 83, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 111, 89, 83, 83, 89, 83, 83, 89, 83, 83, 83, - 89, 89, 89, 124, 125, 126, 83, 83, 83, 89, 83, 83, 89, 89, 83, 83, 83, - 83, 83, 139, 139, 139, 145, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 147, 146, 146, 146, - 146, 146, 146, 146, 147, 146, 146, 147, 146, 146, 146, 146, 146, 139, - 145, 148, 50, 145, 145, 145, 139, 139, 139, 139, 139, 139, 139, 139, 145, - 145, 145, 145, 149, 145, 145, 50, 83, 89, 83, 83, 139, 139, 139, 150, - 150, 150, 150, 150, 150, 150, 150, 50, 50, 139, 139, 85, 85, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 85, 55, 50, 50, 50, 50, 50, 50, - 146, 146, 146, 146, 146, 146, 146, 146, 50, 139, 145, 145, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 0, 0, 50, 50, 0, 0, 50, 50, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 0, 146, 146, 146, 146, 146, 146, 146, 0, 146, 0, 0, 0, 146, 146, - 146, 146, 0, 0, 152, 50, 153, 145, 145, 139, 139, 139, 139, 0, 0, 145, - 145, 0, 0, 154, 154, 149, 50, 0, 0, 0, 0, 0, 0, 0, 0, 153, 0, 0, 0, 0, - 150, 150, 0, 150, 50, 50, 139, 139, 0, 0, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 146, 146, 88, 88, 155, 155, 155, 155, 155, 155, 82, - 88, 50, 85, 83, 0, 0, 139, 139, 145, 0, 50, 50, 50, 50, 50, 50, 0, 0, 0, - 0, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, - 156, 0, 50, 156, 0, 50, 50, 0, 0, 152, 0, 145, 145, 145, 139, 139, 0, 0, - 0, 0, 139, 139, 0, 0, 139, 139, 157, 0, 0, 0, 139, 0, 0, 0, 0, 0, 0, 0, - 156, 156, 156, 50, 0, 156, 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 139, 139, 50, 50, 50, 139, 85, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 139, 139, 145, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, - 50, 50, 0, 50, 50, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 0, 146, 146, 146, 146, 146, - 146, 146, 0, 146, 146, 0, 146, 146, 146, 146, 146, 0, 0, 152, 50, 145, - 145, 145, 139, 139, 139, 139, 139, 0, 139, 139, 145, 0, 145, 145, 149, 0, - 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 139, 139, 0, - 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 85, 88, 0, 0, 0, 0, - 0, 0, 0, 146, 139, 139, 139, 139, 139, 139, 0, 139, 145, 145, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 0, 0, 50, 50, 0, 0, 50, 50, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 0, 146, 146, 146, 146, 146, 146, 146, 0, 146, 146, 0, 146, 146, - 146, 146, 146, 0, 0, 152, 50, 153, 139, 145, 139, 139, 139, 139, 0, 0, - 145, 154, 0, 0, 154, 154, 149, 0, 0, 0, 0, 0, 0, 0, 139, 158, 153, 0, 0, - 0, 0, 150, 150, 0, 146, 50, 50, 139, 139, 0, 0, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 82, 146, 155, 155, 155, 155, 155, 155, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 139, 50, 0, 50, 50, 50, 50, 50, 50, 0, 0, 0, 50, 50, - 50, 0, 50, 50, 159, 50, 0, 0, 0, 50, 50, 0, 50, 0, 50, 50, 0, 0, 0, 50, - 50, 0, 0, 0, 50, 50, 50, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 0, 0, 0, 153, 145, 139, 145, 145, 0, 0, 0, 145, 145, 145, 0, - 154, 154, 154, 157, 0, 0, 50, 0, 0, 0, 0, 0, 0, 153, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 155, 155, 155, 87, 87, 87, 87, 87, 87, 88, 87, 0, 0, 0, 0, 0, 139, 145, - 145, 145, 139, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 0, 50, 50, - 50, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 0, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 0, 0, 152, 50, 139, 139, 139, - 145, 145, 145, 145, 0, 139, 139, 160, 0, 139, 139, 139, 149, 0, 0, 0, 0, - 0, 0, 0, 161, 162, 0, 146, 146, 146, 0, 50, 50, 0, 0, 50, 50, 139, 139, - 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, - 0, 85, 163, 163, 163, 163, 163, 163, 163, 82, 50, 139, 145, 145, 85, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 0, 0, 152, 50, - 145, 164, 165, 145, 153, 145, 145, 0, 164, 165, 165, 0, 165, 165, 139, - 157, 0, 0, 0, 0, 0, 0, 0, 153, 153, 0, 0, 0, 0, 0, 50, 50, 50, 0, 50, 50, - 139, 139, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 50, - 50, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 139, 145, 145, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 0, 50, 50, 50, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 157, 157, 50, 153, 145, 145, 139, 139, - 139, 139, 0, 145, 145, 145, 0, 154, 154, 154, 149, 166, 82, 0, 0, 0, 0, - 50, 50, 50, 153, 155, 155, 155, 155, 155, 155, 155, 50, 50, 50, 139, 139, - 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 82, 50, 50, 50, 50, 50, 50, 0, 139, 145, - 145, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 167, 0, 0, 0, - 0, 153, 145, 145, 139, 139, 139, 0, 139, 0, 145, 145, 154, 145, 154, 154, - 154, 153, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 0, 0, 145, 145, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 139, 50, 168, 139, 139, 139, 139, - 169, 169, 157, 0, 0, 0, 0, 88, 50, 50, 50, 50, 50, 50, 55, 139, 170, 170, - 170, 170, 139, 139, 139, 85, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 0, 50, 0, 50, - 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 0, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 139, 50, 168, 139, 139, 139, 139, 171, 171, 157, 139, - 139, 50, 0, 0, 50, 50, 50, 50, 50, 0, 55, 0, 172, 172, 172, 172, 139, - 139, 139, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 173, - 173, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 82, 82, 82, 85, 85, 85, 85, 85, - 85, 85, 85, 174, 85, 85, 85, 85, 85, 85, 82, 85, 82, 82, 82, 89, 89, 82, - 82, 82, 82, 82, 82, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 82, 89, 82, 89, 82, - 175, 176, 177, 176, 177, 145, 145, 50, 50, 50, 156, 50, 50, 50, 50, 0, - 50, 50, 50, 50, 156, 50, 50, 50, 50, 156, 50, 50, 50, 50, 156, 50, 50, - 50, 50, 156, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 156, 50, 50, - 50, 0, 0, 0, 0, 178, 179, 180, 181, 180, 180, 182, 180, 182, 179, 179, - 179, 179, 139, 145, 179, 180, 83, 83, 157, 85, 83, 83, 50, 50, 50, 50, - 50, 139, 139, 139, 139, 139, 139, 180, 139, 139, 139, 139, 0, 139, 139, - 139, 139, 180, 139, 139, 139, 139, 180, 139, 139, 139, 139, 180, 139, - 139, 139, 139, 180, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 180, 139, 139, 139, 0, 82, 82, 82, 82, 82, 82, 82, 82, 89, 82, - 82, 82, 82, 82, 82, 0, 82, 82, 85, 85, 85, 85, 85, 82, 82, 82, 82, 85, - 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 147, 146, 146, 146, 146, 183, 183, 139, 158, 139, - 139, 145, 139, 139, 139, 139, 139, 152, 183, 149, 157, 145, 145, 139, - 139, 146, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 85, 85, 85, - 85, 85, 85, 146, 146, 146, 146, 146, 146, 145, 145, 139, 139, 146, 146, - 146, 146, 139, 139, 139, 146, 183, 183, 183, 146, 146, 183, 183, 183, - 183, 183, 183, 183, 146, 146, 146, 139, 139, 139, 139, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 139, 183, 145, 139, - 139, 183, 183, 183, 183, 183, 183, 89, 146, 183, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 183, 183, 183, 139, 82, 82, 46, 46, 46, 46, 46, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 37, 49, 86, 87, 77, 77, 88, 88, 89, + 90, 91, 84, 84, 84, 84, 91, 84, 84, 84, 92, 91, 84, 84, 84, 84, 84, 84, + 91, 91, 91, 91, 91, 91, 84, 84, 91, 84, 84, 92, 93, 84, 94, 95, 96, 97, + 98, 99, 100, 101, 102, 103, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 109, 84, 91, 109, 102, 90, 90, 90, 90, 90, 90, 90, 90, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 90, 90, 90, 112, + 112, 112, 112, 109, 109, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 113, + 113, 113, 113, 113, 113, 81, 81, 114, 115, 115, 116, 117, 118, 88, 88, + 84, 84, 84, 84, 84, 84, 84, 84, 119, 120, 121, 118, 122, 118, 118, 118, + 123, 123, 124, 124, 124, 124, 124, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 125, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 126, 127, 128, 119, 120, 121, 129, 130, 131, 131, 132, 91, 84, 84, + 84, 84, 84, 91, 84, 84, 91, 133, 133, 133, 133, 133, 133, 133, 133, 133, + 133, 115, 134, 134, 118, 123, 123, 135, 123, 123, 123, 123, 136, 136, + 136, 136, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 124, 123, 124, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 124, 118, 123, 84, 84, 84, 84, + 84, 84, 84, 113, 88, 84, 84, 84, 84, 91, 84, 125, 125, 84, 84, 88, 91, + 84, 84, 91, 123, 123, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, + 123, 123, 123, 138, 138, 123, 118, 118, 118, 118, 118, 118, 118, 118, + 118, 118, 118, 118, 118, 118, 139, 140, 123, 141, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 84, 91, 84, + 84, 91, 84, 84, 91, 91, 91, 84, 91, 91, 84, 91, 84, 84, 84, 91, 84, 91, + 84, 91, 84, 91, 84, 84, 139, 139, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 123, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 84, 84, 84, 84, 84, 84, + 84, 91, 84, 144, 144, 88, 145, 145, 145, 144, 90, 90, 91, 146, 146, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 84, 84, 84, 84, 144, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 144, 84, 84, 84, 144, 84, 84, 84, 84, 84, 90, 90, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 90, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 91, 91, 91, + 90, 90, 109, 90, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 139, 139, 139, 139, 139, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 147, 123, 123, 123, 123, 123, 123, 123, 113, 113, 139, 139, 139, + 139, 139, 84, 84, 91, 91, 91, 84, 84, 84, 84, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 125, 84, 84, 84, 84, 84, 91, 91, + 91, 91, 91, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 113, + 91, 84, 84, 91, 84, 84, 91, 84, 84, 84, 91, 91, 91, 126, 127, 128, 84, + 84, 84, 91, 84, 84, 91, 91, 84, 84, 84, 84, 84, 142, 142, 142, 148, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 150, 149, 149, 149, 149, 149, 149, 149, 150, 149, + 149, 150, 149, 149, 149, 149, 149, 142, 148, 151, 50, 148, 148, 148, 142, + 142, 142, 142, 142, 142, 142, 142, 148, 148, 148, 148, 152, 148, 148, 50, + 84, 91, 84, 84, 142, 142, 142, 153, 153, 153, 153, 153, 153, 153, 153, + 50, 50, 142, 142, 86, 86, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 86, 55, 50, 50, 50, 50, 50, 50, 149, 149, 149, 149, 149, 149, 149, + 149, 50, 142, 148, 148, 77, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 50, + 50, 77, 77, 50, 50, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 77, 149, 149, 149, 149, + 149, 149, 149, 77, 149, 77, 77, 77, 149, 149, 149, 149, 77, 77, 155, 50, + 156, 148, 148, 142, 142, 142, 142, 77, 77, 148, 148, 77, 77, 157, 157, + 152, 50, 77, 77, 77, 77, 77, 77, 77, 77, 156, 77, 77, 77, 77, 153, 153, + 77, 153, 50, 50, 142, 142, 77, 77, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 149, 149, 89, 89, 158, 158, 158, 158, 158, 158, 83, 89, + 50, 86, 84, 77, 77, 142, 142, 148, 77, 50, 50, 50, 50, 50, 50, 77, 77, + 77, 77, 50, 50, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, + 77, 50, 159, 77, 50, 159, 77, 50, 50, 77, 77, 155, 77, 148, 148, 148, + 142, 142, 77, 77, 77, 77, 142, 142, 77, 77, 142, 142, 160, 77, 77, 77, + 142, 77, 77, 77, 77, 77, 77, 77, 159, 159, 159, 50, 77, 159, 77, 77, 77, + 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 142, + 142, 50, 50, 50, 142, 86, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 142, + 142, 148, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 77, 50, + 50, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 77, 149, 149, 149, 149, 149, 149, 149, 77, + 149, 149, 77, 149, 149, 149, 149, 149, 77, 77, 155, 50, 148, 148, 148, + 142, 142, 142, 142, 142, 77, 142, 142, 148, 77, 148, 148, 152, 77, 77, + 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, + 142, 142, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 86, + 89, 77, 77, 77, 77, 77, 77, 77, 149, 142, 142, 142, 142, 142, 142, 77, + 142, 148, 148, 77, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 50, 50, 77, + 77, 50, 50, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 77, 149, 149, 149, 149, 149, 149, + 149, 77, 149, 149, 77, 149, 149, 149, 149, 149, 77, 77, 155, 50, 156, + 142, 148, 142, 142, 142, 142, 77, 77, 148, 157, 77, 77, 157, 157, 152, + 77, 77, 77, 77, 77, 77, 77, 142, 161, 156, 77, 77, 77, 77, 153, 153, 77, + 149, 50, 50, 142, 142, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 83, 149, 158, 158, 158, 158, 158, 158, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 142, 50, 77, 50, 50, 50, 50, 50, 50, 77, 77, 77, 50, 50, + 50, 77, 50, 50, 162, 50, 77, 77, 77, 50, 50, 77, 50, 77, 50, 50, 77, 77, + 77, 50, 50, 77, 77, 77, 50, 50, 50, 77, 77, 77, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 156, 148, 142, 148, 148, 77, 77, + 77, 148, 148, 148, 77, 157, 157, 157, 160, 77, 77, 50, 77, 77, 77, 77, + 77, 77, 156, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 158, 158, 158, 88, 88, 88, + 88, 88, 88, 89, 88, 77, 77, 77, 77, 77, 142, 148, 148, 148, 142, 50, 50, + 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 77, 50, 50, 50, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 77, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 77, 77, 155, 50, 142, 142, 142, 148, 148, 148, + 148, 77, 142, 142, 163, 77, 142, 142, 142, 152, 77, 77, 77, 77, 77, 77, + 77, 164, 165, 77, 149, 149, 149, 77, 50, 50, 77, 77, 50, 50, 142, 142, + 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, + 77, 77, 77, 86, 166, 166, 166, 166, 166, 166, 166, 83, 50, 142, 148, 148, + 86, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 77, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, + 77, 77, 155, 50, 148, 167, 168, 148, 156, 148, 148, 77, 167, 168, 168, + 77, 168, 168, 142, 160, 77, 77, 77, 77, 77, 77, 77, 156, 156, 77, 77, 77, + 77, 77, 50, 50, 50, 77, 50, 50, 142, 142, 77, 77, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 77, 50, 50, 148, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 142, 142, 148, 148, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 77, 50, 50, 50, 77, 50, 50, 50, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 160, 160, 50, 156, 148, 148, 142, 142, 142, 142, 77, + 148, 148, 148, 77, 157, 157, 157, 152, 169, 83, 77, 77, 77, 77, 50, 50, + 50, 156, 158, 158, 158, 158, 158, 158, 158, 50, 50, 50, 142, 142, 77, 77, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 83, 50, 50, 50, 50, 50, 50, 77, 142, 148, 148, + 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 77, 50, 77, 77, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 170, 77, + 77, 77, 77, 156, 148, 148, 142, 142, 142, 77, 142, 77, 148, 148, 157, + 148, 157, 157, 157, 156, 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 77, 77, 148, 148, 86, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 142, 50, 171, 142, 142, 142, 142, 172, 172, 160, 77, 77, 77, 77, 89, 50, + 50, 50, 50, 50, 50, 55, 142, 173, 173, 173, 173, 142, 142, 142, 86, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 86, 86, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 77, 50, + 77, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 77, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 142, 50, 171, 142, 142, 142, 142, 174, + 174, 160, 142, 142, 50, 77, 77, 50, 50, 50, 50, 50, 77, 55, 77, 175, 175, + 175, 175, 142, 142, 142, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 77, 77, 176, 176, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 50, 83, 83, 83, 86, 86, 86, 86, 86, 86, 86, 86, 177, 86, + 86, 86, 86, 86, 86, 83, 86, 83, 83, 83, 91, 91, 83, 83, 83, 83, 83, 83, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 83, 91, 83, 91, 83, 178, 179, 180, 179, + 180, 148, 148, 50, 50, 50, 159, 50, 50, 50, 50, 77, 50, 50, 50, 50, 159, + 50, 50, 50, 50, 159, 50, 50, 50, 50, 159, 50, 50, 50, 50, 159, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 159, 50, 50, 50, 77, 77, 77, 77, + 181, 182, 183, 184, 183, 183, 185, 183, 185, 182, 182, 182, 182, 142, + 148, 182, 183, 84, 84, 160, 86, 84, 84, 50, 50, 50, 50, 50, 142, 142, + 142, 142, 142, 142, 183, 142, 142, 142, 142, 77, 142, 142, 142, 142, 183, + 142, 142, 142, 142, 183, 142, 142, 142, 142, 183, 142, 142, 142, 142, + 183, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 183, + 142, 142, 142, 77, 83, 83, 83, 83, 83, 83, 83, 83, 91, 83, 83, 83, 83, + 83, 83, 77, 83, 83, 86, 86, 86, 86, 86, 83, 83, 83, 83, 86, 86, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 150, 149, 149, 149, 149, + 186, 186, 142, 161, 142, 142, 148, 142, 142, 142, 142, 142, 155, 186, + 152, 160, 148, 148, 142, 142, 149, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 86, 86, 86, 86, 86, 86, 149, 149, 149, 149, 149, 149, 148, + 148, 142, 142, 149, 149, 149, 149, 142, 142, 142, 149, 186, 186, 186, + 149, 149, 186, 186, 186, 186, 186, 186, 186, 149, 149, 149, 142, 142, + 142, 142, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 142, 186, 148, 142, 142, 186, 186, 186, 186, 186, 186, 91, 149, 186, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 186, 186, 186, 142, 83, + 83, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 0, 46, 0, 0, - 0, 0, 0, 46, 0, 0, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 46, 46, 46, 77, 46, 77, 77, 77, 77, 77, 46, 77, 77, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 85, 53, 49, 49, 49, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 185, 186, 186, - 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, - 186, 186, 186, 186, 186, 185, 185, 185, 185, 185, 185, 185, 185, 185, - 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, - 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, - 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 187, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 86, 53, 49, 49, 49, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, - 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 188, 188, - 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, + 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, - 188, 188, 188, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 188, 188, 188, 188, 188, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, - 0, 50, 0, 50, 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 77, + 77, 50, 50, 50, 50, 50, 50, 50, 77, 50, 77, 50, 50, 50, 50, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 0, - 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, - 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, 0, 50, 50, 50, 50, - 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 77, 50, 50, 50, 50, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 77, 77, 50, 50, 50, + 50, 50, 50, 50, 77, 50, 77, 50, 50, 50, 50, 77, 77, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 50, 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, + 50, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 0, 0, 83, 83, 83, 85, 85, 85, 85, 85, 85, 85, 85, 85, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 0, 0, 0, - 0, 0, 0, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, + 84, 84, 84, 86, 86, 86, 86, 86, 86, 86, 86, 86, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 77, 77, 77, 77, 77, 77, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 0, 0, 49, - 49, 49, 49, 49, 49, 0, 0, 86, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 77, 77, 49, 49, + 49, 49, 49, 49, 77, 77, 87, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, @@ -1757,119 +1771,122 @@ static const unsigned short index2[] = { 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 82, 85, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 189, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 83, 86, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 192, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 176, 177, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 179, 180, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 85, 85, 85, 190, 190, 190, - 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 139, 139, 157, 191, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 139, 139, 191, 85, 85, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 139, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 0, 139, 139, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 139, 139, 145, 139, 139, 139, 139, 139, 139, 139, 145, 145, 145, 145, - 145, 145, 145, 145, 139, 145, 145, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 149, 139, 85, 85, 85, 55, 85, 85, 85, 88, 50, 83, 0, 0, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 0, 0, 0, 0, 0, 0, 142, 142, 142, - 142, 142, 142, 86, 142, 142, 142, 142, 139, 139, 139, 192, 139, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 86, 86, 86, 193, 193, 193, + 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 142, 142, + 160, 194, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 142, 142, 194, 86, 86, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 142, 142, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 77, 50, 50, 50, 77, 142, 142, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 142, 142, 148, 142, + 142, 142, 142, 142, 142, 142, 148, 148, 148, 148, 148, 148, 148, 148, + 142, 148, 148, 142, 142, 142, 142, 142, 142, 142, 142, 142, 152, 142, 86, + 86, 86, 55, 86, 86, 86, 89, 50, 84, 77, 77, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, 166, 166, 166, 166, 166, 166, + 166, 166, 166, 166, 77, 77, 77, 77, 77, 77, 145, 145, 145, 145, 145, 145, + 87, 145, 145, 145, 145, 142, 142, 142, 195, 142, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 55, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 55, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, - 50, 50, 50, 50, 50, 139, 139, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, + 50, 50, 50, 50, 50, 142, 142, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 91, 50, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 93, 50, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 142, 142, + 142, 148, 148, 148, 148, 142, 142, 148, 148, 148, 77, 77, 77, 77, 148, + 148, 142, 148, 148, 148, 148, 148, 148, 92, 84, 91, 77, 77, 77, 77, 88, + 77, 77, 77, 145, 145, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 139, 139, 139, 145, 145, - 145, 145, 139, 139, 145, 145, 145, 0, 0, 0, 0, 145, 145, 139, 145, 145, - 145, 145, 145, 145, 90, 83, 89, 0, 0, 0, 0, 87, 0, 0, 0, 142, 142, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 50, 50, 50, 50, + 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, + 50, 50, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, + 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 158, 77, 77, + 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 155, 0, 0, 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 83, 89, 145, 145, 139, 0, 0, 85, 85, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 145, 139, 145, 139, - 139, 139, 139, 139, 139, 139, 0, 149, 183, 139, 183, 183, 139, 139, 139, - 139, 139, 139, 139, 139, 145, 145, 145, 145, 145, 145, 139, 139, 83, 83, - 83, 83, 83, 83, 83, 83, 0, 0, 89, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 55, 85, 85, 85, 85, - 85, 85, 0, 0, 83, 83, 83, 83, 83, 89, 89, 89, 89, 89, 89, 83, 83, 89, 84, - 89, 89, 83, 83, 89, 89, 83, 83, 83, 83, 83, 89, 83, 83, 83, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 89, 0, 0, 83, 83, 83, 83, - 83, 83, 89, 83, 83, 83, 83, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 139, 139, 139, 139, 145, 50, 159, 50, 159, 50, 159, - 146, 147, 50, 159, 50, 50, 50, 159, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 152, 153, - 139, 139, 139, 139, 139, 165, 139, 165, 145, 145, 154, 154, 139, 165, - 194, 146, 146, 146, 146, 146, 146, 146, 146, 0, 85, 85, 151, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 85, 85, 85, 85, 85, 85, 85, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 83, 89, 83, 83, 83, 83, 83, 83, 83, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 85, 85, 85, 139, 139, 145, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 145, - 139, 139, 139, 139, 145, 145, 139, 139, 191, 149, 139, 139, 146, 146, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 50, 146, 146, 146, 50, + 50, 50, 50, 50, 84, 91, 148, 148, 142, 77, 77, 86, 86, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 148, 142, 148, 142, 142, 142, + 142, 142, 142, 142, 77, 152, 186, 142, 186, 186, 142, 142, 142, 142, 142, + 142, 142, 142, 148, 148, 148, 148, 148, 148, 142, 142, 84, 84, 84, 84, + 84, 84, 84, 84, 77, 77, 91, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 77, 77, 77, 77, 77, 77, 86, 86, 86, 86, 86, 86, 86, 55, 86, 86, 86, + 86, 86, 86, 77, 77, 84, 84, 84, 84, 84, 91, 91, 91, 91, 91, 91, 84, 84, + 91, 85, 91, 91, 84, 84, 91, 91, 84, 84, 84, 84, 84, 91, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 91, 77, 77, 84, + 84, 84, 84, 84, 84, 91, 84, 84, 84, 84, 196, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 142, 142, 142, 142, + 148, 50, 162, 50, 162, 50, 162, 149, 150, 50, 162, 50, 50, 50, 162, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 155, 156, 142, 142, 142, 142, 142, 168, 142, 168, + 148, 148, 157, 157, 142, 168, 197, 149, 149, 149, 149, 149, 149, 149, + 149, 77, 86, 86, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 86, + 86, 86, 86, 86, 86, 86, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 84, 91, + 84, 84, 84, 84, 84, 84, 84, 83, 83, 83, 83, 83, 83, 83, 83, 83, 86, 86, + 86, 142, 142, 148, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 148, 142, 142, 142, 142, 148, 148, 142, 142, + 194, 152, 142, 142, 149, 149, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 50, 149, 149, 149, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 155, 148, 142, 142, 148, 148, + 148, 142, 148, 142, 142, 142, 194, 194, 77, 77, 77, 77, 77, 77, 77, 77, + 86, 86, 86, 86, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 152, 145, 139, 139, 145, 145, 145, 139, 145, 139, 139, 139, - 191, 191, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 148, 148, 148, 148, 148, 148, 148, 148, 142, 142, 142, + 142, 142, 142, 142, 142, 148, 148, 142, 155, 77, 77, 77, 86, 86, 86, 86, + 86, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 50, 50, + 50, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, 145, 145, 145, - 145, 145, 145, 139, 139, 139, 139, 139, 139, 139, 139, 145, 145, 139, - 152, 0, 0, 0, 85, 85, 85, 85, 85, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 0, 0, 0, 50, 50, 50, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 55, 55, 55, 55, - 55, 55, 85, 85, 49, 49, 49, 49, 49, 49, 49, 49, 49, 46, 49, 0, 0, 0, 0, - 0, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 50, 50, 50, 50, 50, 50, 50, 55, 55, 55, 55, 55, 55, 86, 86, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 46, 49, 77, 77, 77, 77, 77, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 0, 0, 46, 46, 46, 85, 85, 85, 85, 85, 85, - 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 83, 83, 83, 85, 195, 89, 89, 89, 89, 89, - 83, 83, 89, 89, 89, 89, 83, 145, 195, 195, 195, 195, 195, 195, 195, 50, - 50, 50, 50, 89, 50, 50, 50, 50, 50, 50, 83, 50, 50, 145, 83, 83, 50, 0, - 0, 0, 0, 0, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 46, 46, 77, 77, 46, 46, 46, 86, 86, 86, 86, 86, 86, 86, 86, 77, 77, 77, + 77, 77, 77, 77, 77, 84, 84, 84, 86, 198, 91, 91, 91, 91, 91, 84, 84, 91, + 91, 91, 91, 84, 148, 198, 198, 198, 198, 198, 198, 198, 50, 50, 50, 50, + 91, 50, 50, 50, 50, 50, 50, 84, 50, 50, 148, 84, 84, 50, 77, 77, 77, 77, + 77, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 53, 53, 55, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 55, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 55, 53, 53, 53, 53, 53, 53, 53, 53, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 53, 53, 55, 53, 53, 53, 53, 53, + 53, 53, 53, 53, 53, 53, 55, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, + 53, 53, 53, 53, 53, 53, 53, 55, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 53, 53, 53, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 83, 83, 89, - 83, 83, 83, 83, 83, 83, 83, 89, 83, 83, 193, 196, 89, 197, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 198, 91, - 91, 89, 199, 83, 200, 89, 83, 89, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, + 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 84, 84, 91, 84, 84, + 84, 84, 84, 84, 84, 91, 84, 84, 196, 199, 91, 200, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 201, 93, 93, 91, + 202, 84, 203, 91, 84, 91, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, @@ -1877,341 +1894,252 @@ static const unsigned short index2[] = { 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, - 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 45, 45, 45, 45, - 37, 201, 49, 49, 46, 49, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, + 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 45, 45, 45, 45, 37, 204, + 49, 49, 46, 49, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, 40, 45, - 40, 45, 40, 45, 40, 45, 46, 49, 46, 49, 46, 49, 45, 45, 45, 45, 45, 45, - 45, 45, 40, 40, 40, 40, 40, 40, 40, 40, 45, 45, 45, 45, 45, 45, 0, 0, 40, - 40, 40, 40, 40, 40, 0, 0, 45, 45, 45, 45, 45, 45, 45, 45, 40, 40, 40, 40, + 40, 45, 40, 45, 46, 49, 46, 49, 46, 49, 45, 45, 45, 45, 45, 45, 45, 45, + 40, 40, 40, 40, 40, 40, 40, 40, 45, 45, 45, 45, 45, 45, 77, 77, 40, 40, + 40, 40, 40, 40, 77, 77, 45, 45, 45, 45, 45, 45, 45, 45, 40, 40, 40, 40, 40, 40, 40, 40, 45, 45, 45, 45, 45, 45, 45, 45, 40, 40, 40, 40, 40, 40, - 40, 40, 45, 45, 45, 45, 45, 45, 0, 0, 40, 40, 40, 40, 40, 40, 0, 0, 45, - 45, 45, 45, 45, 45, 45, 45, 0, 40, 0, 40, 0, 40, 0, 40, 45, 45, 45, 45, - 45, 45, 45, 45, 40, 40, 40, 40, 40, 40, 40, 40, 45, 202, 45, 202, 45, - 202, 45, 202, 45, 202, 45, 202, 45, 202, 0, 0, 45, 45, 45, 45, 45, 45, - 45, 45, 203, 203, 203, 203, 203, 203, 203, 203, 45, 45, 45, 45, 45, 45, - 45, 45, 203, 203, 203, 203, 203, 203, 203, 203, 45, 45, 45, 45, 45, 45, - 45, 45, 203, 203, 203, 203, 203, 203, 203, 203, 45, 45, 45, 45, 45, 0, - 45, 45, 40, 40, 40, 204, 203, 60, 202, 60, 60, 78, 45, 45, 45, 0, 45, 45, - 40, 204, 40, 204, 203, 78, 78, 78, 45, 45, 45, 202, 0, 0, 45, 45, 40, 40, - 40, 204, 0, 78, 78, 78, 45, 45, 45, 202, 45, 45, 45, 45, 40, 40, 40, 204, - 40, 78, 205, 205, 0, 0, 45, 45, 45, 0, 45, 45, 40, 204, 40, 204, 203, - 205, 60, 0, 206, 206, 207, 207, 207, 207, 207, 207, 207, 207, 207, 192, - 208, 209, 210, 211, 212, 213, 86, 212, 212, 212, 24, 214, 215, 216, 217, - 218, 215, 216, 217, 218, 24, 24, 24, 142, 219, 219, 219, 24, 220, 221, - 222, 223, 224, 225, 226, 23, 227, 113, 227, 228, 229, 24, 214, 214, 142, - 30, 38, 24, 230, 142, 219, 231, 231, 142, 142, 142, 232, 176, 177, 214, - 214, 230, 142, 142, 142, 142, 142, 142, 142, 142, 80, 142, 231, 142, 142, - 214, 142, 142, 142, 142, 142, 142, 142, 207, 192, 192, 192, 192, 192, - 233, 234, 235, 236, 237, 192, 192, 192, 192, 192, 192, 238, 53, 0, 0, 36, - 238, 238, 238, 238, 238, 239, 239, 240, 241, 242, 243, 238, 36, 36, 36, - 36, 238, 238, 238, 238, 238, 239, 239, 240, 241, 242, 0, 53, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 0, 0, 0, 88, 88, 88, 88, 88, 88, 88, - 88, 244, 245, 88, 88, 25, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, - 88, 88, 88, 88, 88, 88, 88, 88, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 83, 83, 195, 195, 83, 83, 83, 83, 195, 195, 195, 83, 83, 84, 84, - 84, 84, 83, 84, 84, 84, 195, 195, 83, 89, 83, 195, 195, 89, 89, 89, 89, - 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 246, 51, 247, 87, - 247, 246, 51, 87, 247, 37, 51, 51, 51, 37, 37, 51, 51, 51, 48, 87, 51, - 247, 87, 80, 51, 51, 51, 51, 51, 87, 87, 246, 247, 248, 87, 51, 87, 249, - 87, 51, 87, 204, 249, 51, 51, 250, 37, 51, 51, 46, 51, 37, 173, 173, 173, - 173, 251, 87, 246, 37, 37, 51, 51, 252, 80, 80, 80, 80, 51, 37, 37, 37, - 37, 87, 80, 87, 87, 49, 82, 253, 253, 253, 39, 39, 253, 253, 253, 253, - 253, 253, 39, 39, 39, 39, 253, 254, 254, 254, 254, 254, 254, 254, 254, - 254, 254, 254, 254, 255, 255, 255, 255, 254, 254, 254, 254, 254, 254, - 254, 254, 254, 254, 255, 255, 255, 255, 255, 255, 190, 190, 190, 46, 49, - 190, 190, 190, 190, 39, 87, 87, 0, 0, 0, 0, 42, 42, 42, 42, 256, 32, 32, - 32, 32, 32, 257, 257, 87, 87, 87, 87, 80, 87, 87, 80, 87, 87, 80, 87, 87, - 28, 28, 87, 87, 87, 257, 87, 87, 87, 87, 87, 87, 87, 87, 87, 258, 258, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 259, 257, 257, 87, 87, 42, 87, 42, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 258, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 42, - 260, 261, 261, 262, 80, 80, 42, 261, 262, 260, 261, 262, 260, 80, 42, 80, - 261, 263, 264, 80, 261, 260, 80, 80, 80, 261, 260, 260, 261, 42, 261, - 261, 260, 260, 42, 262, 42, 262, 42, 42, 42, 42, 261, 265, 252, 261, 252, - 252, 260, 260, 260, 42, 42, 42, 42, 80, 260, 80, 260, 261, 261, 260, 260, - 260, 262, 260, 260, 262, 260, 260, 262, 261, 262, 260, 260, 261, 80, 80, - 80, 80, 80, 261, 260, 260, 260, 80, 80, 80, 80, 80, 80, 80, 80, 80, 260, - 266, 42, 262, 80, 261, 261, 261, 261, 260, 260, 261, 261, 80, 262, 266, - 266, 262, 262, 260, 260, 262, 262, 260, 260, 262, 262, 260, 260, 260, - 260, 260, 260, 262, 262, 261, 261, 262, 262, 261, 261, 262, 262, 260, - 260, 260, 80, 80, 260, 260, 260, 260, 80, 80, 42, 80, 80, 260, 42, 80, - 80, 80, 80, 80, 80, 80, 80, 260, 260, 80, 42, 260, 260, 260, 260, 260, - 260, 262, 262, 262, 262, 260, 260, 260, 260, 260, 260, 260, 260, 260, 80, - 80, 80, 80, 80, 260, 261, 80, 80, 80, 80, 80, 80, 80, 80, 80, 260, 260, - 260, 260, 260, 80, 80, 260, 260, 80, 80, 80, 80, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 260, 262, 262, 262, 262, 260, 260, 260, 260, 260, - 260, 262, 262, 262, 262, 80, 80, 260, 260, 260, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 87, 87, 87, 87, 87, 87, 87, 87, - 176, 177, 176, 177, 87, 87, 87, 87, 87, 87, 258, 87, 87, 87, 87, 87, 87, - 87, 267, 267, 87, 87, 87, 87, 260, 260, 87, 87, 87, 87, 87, 87, 28, 268, - 269, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 87, 80, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 82, - 87, 87, 87, 87, 87, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 28, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 80, 80, - 80, 80, 80, 80, 87, 87, 87, 87, 87, 87, 87, 267, 267, 267, 267, 28, 28, - 28, 267, 28, 28, 267, 87, 87, 87, 87, 28, 28, 28, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 39, 39, 39, 39, 39, 39, + 40, 40, 45, 45, 45, 45, 45, 45, 77, 77, 40, 40, 40, 40, 40, 40, 77, 77, + 45, 45, 45, 45, 45, 45, 45, 45, 77, 40, 77, 40, 77, 40, 77, 40, 45, 45, + 45, 45, 45, 45, 45, 45, 40, 40, 40, 40, 40, 40, 40, 40, 45, 205, 45, 205, + 45, 205, 45, 205, 45, 205, 45, 205, 45, 205, 77, 77, 45, 45, 45, 45, 45, + 45, 45, 45, 206, 206, 206, 206, 206, 206, 206, 206, 45, 45, 45, 45, 45, + 45, 45, 45, 206, 206, 206, 206, 206, 206, 206, 206, 45, 45, 45, 45, 45, + 45, 45, 45, 206, 206, 206, 206, 206, 206, 206, 206, 45, 45, 45, 45, 45, + 77, 45, 45, 40, 40, 40, 207, 206, 60, 205, 60, 60, 79, 45, 45, 45, 77, + 45, 45, 40, 207, 40, 207, 206, 79, 79, 79, 45, 45, 45, 205, 77, 77, 45, + 45, 40, 40, 40, 207, 77, 79, 79, 79, 45, 45, 45, 205, 45, 45, 45, 45, 40, + 40, 40, 207, 40, 79, 208, 208, 77, 77, 45, 45, 45, 77, 45, 45, 40, 207, + 40, 207, 206, 208, 60, 77, 209, 209, 210, 210, 210, 210, 210, 210, 210, + 210, 210, 195, 211, 212, 213, 214, 215, 216, 87, 215, 215, 215, 24, 217, + 218, 219, 220, 221, 218, 219, 220, 221, 24, 24, 24, 145, 222, 222, 222, + 24, 223, 224, 225, 226, 227, 228, 229, 23, 230, 115, 230, 231, 232, 24, + 217, 217, 145, 30, 38, 24, 233, 145, 222, 234, 234, 145, 145, 145, 235, + 179, 180, 217, 217, 233, 145, 145, 145, 145, 145, 145, 145, 145, 81, 145, + 234, 145, 145, 217, 145, 145, 145, 145, 145, 145, 145, 210, 195, 195, + 195, 195, 195, 236, 237, 238, 239, 240, 195, 195, 195, 195, 195, 195, + 241, 53, 77, 77, 36, 241, 241, 241, 241, 241, 242, 242, 243, 244, 245, + 246, 241, 36, 36, 36, 36, 241, 241, 241, 241, 241, 242, 242, 243, 244, + 245, 77, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 77, 77, 77, + 89, 89, 89, 89, 89, 89, 89, 89, 247, 248, 89, 89, 25, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 249, 249, + 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 84, 84, 198, + 198, 84, 84, 84, 84, 198, 198, 198, 84, 84, 85, 85, 85, 85, 84, 85, 85, + 85, 198, 198, 84, 91, 84, 198, 198, 91, 91, 91, 91, 84, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 250, 250, 51, 251, 88, 251, + 250, 51, 88, 251, 37, 51, 51, 51, 37, 37, 51, 51, 51, 48, 88, 51, 251, + 88, 81, 51, 51, 51, 51, 51, 88, 88, 250, 251, 252, 88, 51, 88, 253, 88, + 51, 88, 207, 253, 51, 51, 254, 37, 51, 51, 46, 51, 37, 176, 176, 176, + 176, 255, 88, 250, 37, 37, 51, 51, 256, 81, 81, 81, 81, 51, 37, 37, 37, + 37, 88, 81, 88, 88, 49, 83, 257, 257, 257, 39, 39, 257, 257, 257, 257, + 257, 257, 39, 39, 39, 39, 257, 258, 258, 258, 258, 258, 258, 258, 258, + 258, 258, 258, 258, 259, 259, 259, 259, 258, 258, 258, 258, 258, 258, + 258, 258, 258, 258, 259, 259, 259, 259, 259, 259, 193, 193, 193, 46, 49, + 193, 193, 193, 193, 39, 88, 88, 77, 77, 77, 77, 42, 42, 42, 42, 260, 32, + 32, 32, 32, 32, 261, 261, 88, 88, 88, 88, 81, 88, 88, 81, 88, 88, 81, 88, + 88, 28, 28, 88, 88, 88, 261, 88, 88, 88, 88, 88, 88, 88, 88, 88, 262, + 262, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 263, 261, 261, 88, 88, 42, 88, 42, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 262, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 42, 264, 265, 265, 266, 81, 81, 42, 265, 266, 264, 265, 266, 264, 81, 42, + 81, 265, 267, 268, 81, 265, 264, 81, 81, 81, 265, 264, 264, 265, 42, 265, + 265, 264, 264, 42, 266, 42, 266, 42, 42, 42, 42, 265, 269, 256, 265, 256, + 256, 264, 264, 264, 42, 42, 42, 42, 81, 264, 81, 264, 265, 265, 264, 264, + 264, 266, 264, 264, 266, 264, 264, 266, 265, 266, 264, 264, 265, 81, 81, + 81, 81, 81, 265, 264, 264, 264, 81, 81, 81, 81, 81, 81, 81, 81, 81, 264, + 270, 42, 266, 81, 265, 265, 265, 265, 264, 264, 265, 265, 81, 266, 270, + 270, 266, 266, 264, 264, 266, 266, 264, 264, 266, 266, 264, 264, 264, + 264, 264, 264, 266, 266, 265, 265, 266, 266, 265, 265, 266, 266, 264, + 264, 264, 81, 81, 264, 264, 264, 264, 81, 81, 42, 81, 81, 264, 42, 81, + 81, 81, 81, 81, 81, 81, 81, 264, 264, 81, 42, 264, 264, 264, 264, 264, + 264, 266, 266, 266, 266, 264, 264, 264, 264, 264, 264, 264, 264, 264, 81, + 81, 81, 81, 81, 264, 265, 81, 81, 81, 81, 81, 81, 81, 81, 81, 264, 264, + 264, 264, 264, 81, 81, 264, 264, 81, 81, 81, 81, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 266, 266, 266, 266, 264, 264, 264, 264, 264, + 264, 266, 266, 266, 266, 81, 81, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 264, 264, 264, 88, 88, 88, 88, 88, 88, 88, 88, + 179, 180, 179, 180, 88, 88, 88, 88, 88, 88, 262, 88, 88, 88, 88, 88, 88, + 88, 271, 271, 88, 88, 88, 88, 264, 264, 88, 88, 88, 88, 88, 88, 28, 272, + 273, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 88, 81, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 83, + 88, 88, 88, 88, 88, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 28, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 81, 81, + 81, 81, 81, 81, 88, 88, 88, 88, 88, 88, 88, 271, 271, 271, 271, 28, 28, + 28, 271, 28, 28, 271, 88, 88, 88, 88, 28, 28, 28, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, - 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 36, 36, 36, - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 271, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 253, 272, 272, 272, 272, 272, 272, - 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, - 272, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 87, 87, 87, 87, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 258, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 87, 87, 258, 258, 258, 258, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 258, 258, 87, 258, 258, 258, 258, 258, 258, 258, 28, 28, 87, 87, 87, 87, - 87, 87, 258, 258, 87, 87, 32, 42, 87, 87, 87, 87, 258, 258, 87, 87, 32, - 42, 87, 87, 87, 87, 258, 258, 258, 87, 87, 258, 87, 87, 258, 258, 258, - 258, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 258, - 258, 258, 258, 87, 87, 87, 87, 87, 87, 87, 87, 87, 258, 87, 87, 87, 87, - 87, 87, 87, 87, 80, 80, 80, 273, 273, 274, 274, 80, 28, 28, 28, 28, 28, - 258, 258, 87, 87, 258, 87, 87, 87, 87, 32, 258, 87, 28, 87, 87, 267, 267, - 87, 87, 28, 87, 87, 87, 258, 28, 258, 87, 28, 87, 28, 28, 87, 87, 28, 87, - 87, 87, 28, 87, 87, 87, 28, 28, 275, 275, 275, 275, 275, 275, 275, 275, - 28, 28, 28, 87, 87, 87, 87, 87, 32, 87, 32, 87, 87, 87, 87, 87, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 28, 32, 258, 87, 32, 258, 32, 28, 258, 32, 258, 258, - 87, 258, 258, 87, 42, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 28, 87, - 87, 28, 267, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 275, 275, 275, 275, - 275, 275, 87, 87, 28, 267, 28, 28, 28, 28, 87, 28, 87, 28, 28, 87, 258, - 258, 28, 267, 87, 87, 87, 87, 87, 28, 87, 87, 267, 267, 82, 87, 87, 87, - 28, 28, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 267, 267, 258, 87, - 87, 87, 87, 267, 267, 258, 258, 32, 258, 258, 258, 258, 258, 267, 32, - 258, 32, 258, 32, 267, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, - 258, 258, 258, 87, 258, 87, 87, 87, 87, 258, 32, 267, 258, 258, 258, 258, - 258, 32, 32, 267, 267, 32, 267, 258, 32, 32, 32, 267, 258, 258, 267, 258, - 258, 87, 87, 28, 87, 87, 267, 87, 87, 28, 28, 267, 267, 28, 28, 87, 28, - 87, 87, 28, 87, 28, 87, 28, 87, 87, 87, 87, 87, 87, 28, 87, 87, 87, 28, - 87, 87, 87, 87, 87, 87, 267, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 28, - 28, 87, 87, 87, 87, 87, 87, 87, 87, 258, 87, 87, 87, 87, 87, 87, 28, 87, - 87, 28, 87, 87, 87, 87, 267, 87, 267, 87, 87, 87, 87, 267, 267, 267, 87, - 267, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 28, 28, 87, 87, 87, 176, - 177, 176, 177, 176, 177, 176, 177, 176, 177, 176, 177, 176, 177, 272, - 272, 272, 272, 272, 272, 272, 272, 272, 272, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 87, 267, 267, 267, 87, 87, 87, 87, 87, 87, 87, 87, 87, 28, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 267, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 267, 260, 80, 80, 260, 260, 176, 177, - 80, 260, 260, 80, 260, 260, 260, 80, 80, 80, 80, 80, 260, 260, 260, 260, - 80, 80, 80, 80, 80, 260, 260, 260, 80, 80, 80, 260, 260, 260, 260, 11, - 12, 11, 12, 11, 12, 11, 12, 176, 177, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 273, 273, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 176, 177, 11, 12, - 176, 177, 176, 177, 176, 177, 176, 177, 176, 177, 176, 177, 176, 177, - 176, 177, 176, 177, 80, 80, 260, 260, 260, 260, 260, 260, 80, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 80, 80, 80, - 80, 80, 80, 80, 80, 260, 80, 80, 80, 80, 80, 80, 80, 260, 260, 260, 260, - 260, 260, 80, 80, 80, 260, 80, 80, 80, 80, 260, 260, 260, 260, 260, 80, - 260, 260, 80, 80, 176, 177, 176, 177, 260, 80, 80, 80, 80, 260, 80, 260, - 260, 260, 80, 80, 260, 260, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 260, - 260, 260, 260, 260, 260, 80, 80, 176, 177, 80, 80, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 260, 260, 252, 260, 260, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 260, 80, 260, 260, 260, 260, 80, - 80, 260, 80, 260, 80, 80, 260, 80, 260, 260, 260, 260, 80, 80, 80, 80, - 80, 260, 260, 80, 80, 80, 80, 80, 80, 260, 260, 260, 80, 80, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 260, 260, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 260, 260, 80, - 80, 80, 80, 260, 260, 260, 260, 80, 260, 260, 80, 80, 260, 252, 240, 240, - 80, 80, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, - 260, 260, 80, 80, 260, 260, 260, 260, 260, 260, 260, 260, 80, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 260, 260, 260, 80, 80, 80, 80, 80, - 276, 80, 260, 80, 80, 80, 260, 260, 260, 260, 260, 80, 80, 80, 80, 80, - 260, 260, 260, 80, 80, 80, 80, 260, 80, 80, 80, 260, 260, 260, 260, 260, - 80, 260, 80, 80, 87, 87, 87, 87, 87, 28, 28, 28, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 267, 267, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 80, 80, - 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, - 80, 87, 87, 80, 80, 80, 80, 80, 80, 87, 87, 87, 267, 87, 87, 87, 87, 267, - 258, 258, 258, 258, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 0, 0, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 277, 87, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 39, 39, 39, 39, 39, 39, 39, 39, 39, 36, 36, 36, 36, 36, 36, 36, 36, 36, + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 275, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 257, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, + 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 88, 88, 88, 88, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 262, 262, 262, 262, 262, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 88, 88, 262, 262, 262, + 262, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 262, 262, 88, 262, 262, 262, + 262, 262, 262, 262, 28, 28, 88, 88, 88, 88, 88, 88, 262, 262, 88, 88, 32, + 42, 88, 88, 88, 88, 262, 262, 88, 88, 32, 42, 88, 88, 88, 88, 262, 262, + 262, 88, 88, 262, 88, 88, 262, 262, 262, 262, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 262, 262, 262, 262, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 262, 88, 88, 88, 88, 88, 88, 88, 88, 81, 81, 81, 277, + 277, 278, 278, 81, 28, 28, 28, 28, 28, 262, 262, 88, 88, 262, 88, 88, 88, + 88, 32, 262, 88, 28, 88, 88, 271, 271, 88, 88, 28, 88, 88, 88, 262, 28, + 262, 88, 28, 88, 28, 28, 88, 88, 28, 88, 88, 88, 28, 88, 88, 88, 28, 28, + 279, 279, 279, 279, 279, 279, 279, 279, 28, 28, 28, 88, 88, 88, 88, 88, + 32, 88, 32, 88, 88, 88, 88, 88, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 28, 32, + 262, 88, 32, 262, 32, 28, 262, 32, 262, 262, 88, 262, 262, 88, 42, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 28, 88, 88, 28, 271, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 279, 279, 279, 279, 279, 279, 88, 88, 28, + 271, 28, 28, 28, 28, 88, 28, 88, 28, 28, 88, 262, 262, 28, 271, 88, 88, + 88, 88, 88, 28, 88, 88, 271, 271, 83, 88, 88, 88, 28, 28, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 271, 271, 262, 88, 88, 88, 88, 271, 271, 262, + 262, 32, 262, 262, 262, 262, 262, 271, 32, 262, 32, 262, 32, 271, 262, + 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 262, 88, 262, 88, + 88, 88, 88, 262, 32, 271, 262, 262, 262, 262, 262, 32, 32, 271, 271, 32, + 271, 262, 32, 32, 32, 271, 262, 262, 271, 262, 262, 88, 88, 28, 88, 88, + 271, 88, 88, 28, 28, 271, 271, 28, 28, 88, 28, 88, 88, 28, 88, 28, 88, + 28, 88, 88, 88, 88, 88, 88, 28, 88, 88, 88, 28, 88, 88, 88, 88, 88, 88, + 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 28, 28, 88, 88, 88, 88, 88, + 88, 88, 88, 262, 88, 88, 88, 88, 88, 88, 28, 88, 88, 28, 88, 88, 88, 88, + 271, 88, 271, 88, 88, 88, 88, 271, 271, 271, 88, 271, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 28, 28, 88, 88, 88, 179, 180, 179, 180, 179, 180, + 179, 180, 179, 180, 179, 180, 179, 180, 276, 276, 276, 276, 276, 276, + 276, 276, 276, 276, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, + 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 88, 271, 271, 271, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 28, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 271, 264, 81, 81, 264, 264, 179, 180, 81, 264, 264, 81, 264, 264, + 264, 81, 81, 81, 81, 81, 264, 264, 264, 264, 81, 81, 81, 81, 81, 264, + 264, 264, 81, 81, 81, 264, 264, 264, 264, 11, 12, 11, 12, 11, 12, 11, 12, + 179, 180, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 277, 277, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 179, 180, 11, 12, 179, 180, 179, 180, 179, + 180, 179, 180, 179, 180, 179, 180, 179, 180, 179, 180, 179, 180, 81, 81, + 264, 264, 264, 264, 264, 264, 81, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 264, 81, 81, 81, 81, 81, 81, 81, 81, 264, 81, + 81, 81, 81, 81, 81, 81, 264, 264, 264, 264, 264, 264, 81, 81, 81, 264, + 81, 81, 81, 81, 264, 264, 264, 264, 264, 81, 264, 264, 81, 81, 179, 180, + 179, 180, 264, 81, 81, 81, 81, 264, 81, 264, 264, 264, 81, 81, 264, 264, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 264, 264, 264, 264, 264, 264, 81, + 81, 179, 180, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 264, 264, + 256, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 81, 264, 264, 264, 264, 81, 81, 264, 81, 264, 81, 81, 264, + 81, 264, 264, 264, 264, 81, 81, 81, 81, 81, 264, 264, 81, 81, 81, 81, 81, + 81, 264, 264, 264, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 264, 264, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 264, 264, 81, 81, 81, 81, 264, 264, 264, 264, 81, + 264, 264, 81, 81, 264, 256, 243, 243, 81, 81, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 81, 81, 264, 264, 264, + 264, 264, 264, 264, 264, 81, 264, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 264, 264, 81, 81, 81, 81, 81, 280, 81, 264, 81, 81, 81, 264, 264, + 264, 264, 264, 81, 81, 81, 81, 81, 264, 264, 264, 81, 81, 81, 81, 264, + 81, 81, 81, 264, 264, 264, 264, 264, 81, 264, 81, 81, 88, 88, 88, 88, 88, + 28, 28, 28, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 271, 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 88, 88, 81, 81, 81, 81, 81, 81, + 88, 88, 88, 271, 88, 88, 88, 88, 271, 262, 262, 262, 262, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 77, 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 281, 88, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 46, 49, 46, 46, - 46, 49, 49, 46, 49, 46, 49, 46, 49, 46, 46, 46, 46, 49, 46, 49, 49, 46, - 49, 49, 49, 49, 49, 49, 53, 53, 46, 46, 46, 49, 46, 49, 46, 49, 46, 49, - 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 46, 49, 46, 46, 46, 49, 49, 46, 49, 46, 49, 46, + 49, 46, 46, 46, 46, 49, 46, 49, 49, 46, 49, 49, 49, 49, 49, 49, 53, 53, + 46, 46, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, - 46, 49, 49, 87, 87, 87, 87, 87, 87, 46, 49, 46, 49, 83, 83, 83, 46, 49, - 0, 0, 0, 0, 0, 142, 142, 142, 142, 163, 142, 142, 49, 49, 49, 49, 49, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 49, 88, 88, 88, 88, 88, + 88, 46, 49, 46, 49, 84, 84, 84, 46, 49, 77, 77, 77, 77, 77, 145, 145, + 145, 145, 166, 145, 145, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 0, 49, 0, 0, 0, - 0, 0, 49, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 53, 85, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 157, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, - 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, - 50, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, - 50, 50, 50, 50, 50, 50, 0, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, - 83, 83, 83, 142, 142, 30, 38, 30, 38, 142, 142, 142, 30, 38, 142, 30, 38, - 142, 142, 142, 142, 142, 142, 142, 142, 142, 86, 142, 142, 86, 142, 30, - 38, 142, 142, 30, 38, 176, 177, 176, 177, 176, 177, 176, 177, 142, 142, - 142, 142, 142, 54, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 86, - 86, 142, 142, 142, 142, 86, 142, 217, 142, 142, 142, 142, 142, 142, 142, - 142, 142, 142, 142, 142, 142, 87, 87, 142, 142, 142, 176, 177, 176, 177, - 176, 177, 176, 177, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 0, 275, 275, 275, 275, 278, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 278, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, - 278, 278, 278, 278, 278, 278, 278, 278, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 279, 280, - 280, 280, 275, 281, 282, 283, 284, 285, 284, 285, 284, 285, 284, 285, - 284, 285, 275, 275, 284, 285, 284, 285, 284, 285, 284, 285, 286, 287, - 288, 288, 275, 283, 283, 283, 283, 283, 283, 283, 283, 283, 289, 290, - 291, 292, 293, 293, 294, 281, 281, 281, 281, 281, 278, 275, 295, 295, - 295, 281, 282, 296, 275, 87, 0, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 297, 282, 297, 282, 297, 282, 297, 282, 297, 282, 297, - 282, 297, 282, 297, 282, 297, 282, 297, 282, 297, 282, 297, 282, 282, - 297, 282, 297, 282, 297, 282, 282, 282, 282, 282, 282, 297, 297, 282, - 297, 297, 282, 297, 297, 282, 297, 297, 282, 297, 297, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 297, 282, 282, 0, 0, 298, 298, 299, 299, 281, - 300, 301, 286, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 297, 282, 297, 282, 297, 282, 297, 282, 297, 282, 297, 282, 297, 282, - 297, 282, 297, 282, 297, 282, 297, 282, 297, 282, 282, 297, 282, 297, - 282, 297, 282, 282, 282, 282, 282, 282, 297, 297, 282, 297, 297, 282, - 297, 297, 282, 297, 297, 282, 297, 297, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 297, 282, 282, 297, 297, 297, 297, 280, 281, 281, 300, 301, 0, - 0, 0, 0, 0, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 0, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, - 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 0, 302, - 302, 303, 303, 303, 303, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 278, 278, 0, 303, 303, - 303, 303, 303, 303, 303, 303, 303, 303, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 305, 305, 305, 305, - 305, 305, 305, 305, 278, 306, 306, 306, 306, 306, 306, 306, 306, 306, - 306, 306, 306, 306, 306, 306, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 278, 278, 278, 302, 303, 303, 303, 303, - 303, 303, 303, 303, 303, 303, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 307, 304, 307, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, - 306, 306, 306, 306, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 278, 278, 278, 278, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 278, 278, 278, 278, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 278, 278, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 304, 278, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, + 49, 49, 49, 49, 49, 49, 49, 49, 77, 49, 77, 77, 77, 77, 77, 49, 77, 77, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 77, 77, 77, 77, 77, 77, 77, 53, 86, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 160, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, + 50, 77, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 77, + 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, + 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 77, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 145, 145, 30, 38, 30, 38, 145, + 145, 145, 30, 38, 145, 30, 38, 145, 145, 145, 145, 145, 145, 145, 145, + 145, 87, 145, 145, 87, 145, 30, 38, 145, 145, 30, 38, 179, 180, 179, 180, + 179, 180, 179, 180, 145, 145, 145, 145, 145, 54, 145, 145, 145, 145, 145, + 145, 145, 145, 145, 145, 87, 87, 145, 145, 145, 145, 87, 145, 220, 145, + 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 88, 88, 145, + 145, 145, 179, 180, 179, 180, 179, 180, 179, 180, 87, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 77, 279, 279, 279, 279, 282, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 282, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, @@ -2222,991 +2150,1159 @@ static const unsigned short index2[] = { 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 281, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 0, 0, 0, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 55, 55, 55, 55, 55, 55, 85, 85, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 55, 142, 142, 142, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 50, 83, 84, 84, 84, 142, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 142, 54, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 53, 53, 83, 83, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 83, 83, 85, - 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 56, 56, 56, 56, 56, 56, 56, - 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 54, 54, - 54, 54, 54, 54, 54, 54, 54, 56, 56, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 49, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 53, 49, 49, - 49, 49, 49, 49, 49, 49, 46, 49, 46, 49, 46, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 54, 308, 308, 46, 49, 46, 49, 50, 46, 49, 46, 49, 49, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 46, 46, 46, 46, 49, 46, 46, 46, 46, 46, 49, 46, 49, 46, 49, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 46, 46, 46, 49, 46, 49, 46, 46, - 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 53, 53, 53, 46, - 49, 50, 53, 53, 49, 50, 50, 50, 50, 50, 50, 50, 139, 50, 50, 50, 157, 50, - 50, 50, 50, 139, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, 139, 139, 145, 87, 87, 87, - 87, 157, 0, 0, 0, 155, 155, 155, 155, 155, 155, 82, 82, 88, 250, 0, 0, 0, - 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 142, 142, 142, 142, 0, 0, 0, 0, 0, 0, 0, 0, 145, 145, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, 145, 145, 145, 145, 145, - 145, 145, 145, 145, 145, 145, 145, 145, 145, 157, 139, 0, 0, 0, 0, 0, 0, - 0, 0, 85, 85, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, - 0, 0, 0, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, - 83, 83, 50, 50, 50, 50, 50, 50, 85, 85, 85, 50, 85, 50, 50, 139, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 139, 139, 139, 139, 139, 89, 89, 89, 85, 85, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 145, 191, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 0, 0, 0, 139, 139, 139, 145, 50, 50, - 50, 50, 50, 146, 146, 146, 50, 50, 50, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 152, 145, 145, 139, 139, 139, 139, 145, 145, 139, 139, 145, 145, - 194, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 55, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 85, 85, 146, 146, - 146, 146, 146, 139, 55, 146, 146, 146, 146, 146, 146, 146, 146, 146, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 146, 146, 146, 146, 146, 0, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 139, 139, 139, 139, 139, 139, 145, 145, 139, 139, - 145, 145, 139, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 139, 50, 50, - 50, 50, 50, 50, 50, 50, 139, 145, 0, 0, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 0, 0, 85, 85, 85, 85, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 55, 146, 146, 146, 50, - 50, 50, 82, 82, 82, 146, 183, 139, 183, 146, 146, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 83, 50, 83, 83, 89, 50, 50, 83, 83, 50, 50, 50, - 50, 50, 83, 83, 50, 83, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 55, 85, 85, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 145, 139, 139, 145, 145, 85, 85, 50, 55, - 55, 145, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 0, 0, - 50, 50, 50, 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 0, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 308, 53, 53, 53, 53, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 53, 56, 56, 0, 0, 0, 0, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 50, 50, 50, - 50, 50, 50, 50, 50, 145, 145, 139, 145, 145, 139, 145, 145, 85, 145, 157, - 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 283, 284, 284, 284, 279, 285, 286, 287, 288, 289, 288, + 289, 288, 289, 288, 289, 288, 289, 279, 279, 288, 289, 288, 289, 288, + 289, 288, 289, 290, 291, 292, 292, 279, 287, 287, 287, 287, 287, 287, + 287, 287, 287, 293, 294, 295, 296, 297, 297, 298, 285, 285, 285, 285, + 285, 282, 279, 299, 299, 299, 285, 286, 300, 279, 88, 77, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 301, 286, 301, 286, 301, 286, + 301, 286, 301, 286, 301, 286, 301, 286, 301, 286, 301, 286, 301, 286, + 301, 286, 301, 286, 286, 301, 286, 301, 286, 301, 286, 286, 286, 286, + 286, 286, 301, 301, 286, 301, 301, 286, 301, 301, 286, 301, 301, 286, + 301, 301, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 301, 286, 286, 77, 77, + 302, 302, 303, 303, 285, 304, 305, 290, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 301, 286, 301, 286, 301, 286, 301, 286, 301, + 286, 301, 286, 301, 286, 301, 286, 301, 286, 301, 286, 301, 286, 301, + 286, 286, 301, 286, 301, 286, 301, 286, 286, 286, 286, 286, 286, 301, + 301, 286, 301, 301, 286, 301, 301, 286, 301, 301, 286, 301, 301, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 301, 286, 286, 301, 301, 301, 301, + 284, 285, 285, 304, 305, 77, 77, 77, 77, 77, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 77, 305, 305, 305, 305, + 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, + 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, + 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, + 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, + 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, + 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, + 305, 305, 305, 305, 305, 305, 77, 306, 306, 307, 307, 307, 307, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 279, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 282, 282, 77, 307, 307, 307, 307, 307, 307, 307, 307, + 307, 307, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 309, 309, 309, 309, 309, 309, 309, 309, 282, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 309, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 309, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, - 310, 310, 310, 310, 310, 310, 310, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, - 185, 185, 185, 185, 185, 185, 185, 185, 185, 0, 0, 0, 0, 188, 188, 188, - 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, - 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, - 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, - 188, 188, 188, 188, 0, 0, 0, 0, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, - 311, 311, 311, 311, 311, 311, 311, 311, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 282, 282, - 313, 282, 313, 282, 282, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 282, 313, 282, 313, 282, 282, 313, 313, 282, 282, 282, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 314, 314, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 37, 37, 37, 37, 37, 37, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 37, 37, 37, 37, 37, 0, 0, 0, 0, 0, 315, 316, 315, 317, 317, 317, 317, - 317, 317, 317, 317, 317, 239, 315, 315, 315, 315, 315, 315, 315, 315, - 315, 315, 315, 315, 315, 0, 315, 315, 315, 315, 315, 0, 315, 0, 315, 315, - 0, 315, 315, 0, 315, 315, 315, 315, 315, 315, 315, 315, 315, 317, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 144, - 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 318, 217, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 87, 87, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 87, 87, 87, 87, 87, 87, 87, 87, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 319, 87, - 87, 87, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, - 320, 320, 320, 320, 320, 320, 320, 321, 322, 320, 0, 0, 0, 0, 0, 0, 83, - 83, 83, 83, 83, 83, 83, 89, 89, 89, 89, 89, 89, 89, 83, 83, 320, 323, - 323, 324, 324, 321, 322, 321, 322, 321, 322, 321, 322, 321, 322, 321, - 322, 321, 322, 321, 322, 280, 280, 321, 322, 320, 320, 320, 320, 324, - 324, 324, 325, 320, 325, 0, 320, 325, 320, 320, 323, 326, 327, 326, 327, - 326, 327, 328, 320, 320, 329, 330, 331, 331, 332, 0, 320, 333, 328, 320, - 0, 0, 0, 0, 134, 134, 134, 121, 134, 0, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 0, 0, 192, 0, 334, 334, 335, 336, 335, 334, 334, 337, 338, - 334, 339, 340, 341, 340, 340, 342, 342, 342, 342, 342, 342, 342, 342, - 342, 342, 340, 334, 343, 344, 343, 334, 334, 345, 345, 345, 345, 345, - 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, - 345, 345, 345, 345, 345, 345, 345, 337, 334, 338, 346, 347, 346, 348, - 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, - 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 337, 344, 338, - 344, 337, 338, 349, 350, 351, 349, 349, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 353, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 354, 354, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, - 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 0, 0, 0, - 352, 352, 352, 352, 352, 352, 0, 0, 352, 352, 352, 352, 352, 352, 0, 0, - 352, 352, 352, 352, 352, 352, 0, 0, 352, 352, 352, 0, 0, 0, 336, 336, - 344, 346, 355, 336, 336, 0, 356, 357, 357, 357, 357, 356, 356, 0, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 358, 358, 358, 87, 258, 0, 0, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 0, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 85, 142, 85, 0, 0, 0, 0, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 0, 0, 0, 82, 82, 82, 82, 82, 82, 82, 82, 82, 359, 359, 359, 359, - 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, - 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, - 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, - 359, 359, 359, 359, 359, 359, 359, 163, 163, 163, 163, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 163, 163, 87, 82, 82, - 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 0, 0, 0, 87, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 360, - 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, - 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 0, 0, 0, 0, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 155, 155, 155, - 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 190, 50, 50, 50, 50, 50, 50, 50, - 50, 190, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 83, 83, 83, 83, 83, 0, 0, 0, 0, 0, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 85, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 85, 190, 190, 190, 190, 190, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 0, 0, 0, 0, 0, 0, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 0, 0, 0, 0, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, - 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 0, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 0, 46, - 46, 46, 46, 46, 46, 46, 0, 46, 46, 0, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 0, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 0, - 49, 49, 49, 49, 49, 49, 49, 0, 49, 49, 0, 0, 0, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 159, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 159, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 53, 53, 53, 53, 53, 0, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 53, 53, 0, 53, 53, 53, 53, 53, 53, 53, 53, 53, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 110, 110, 110, 110, - 110, 0, 0, 110, 0, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 0, 110, 110, 0, 0, 0, 110, 0, 0, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 0, 107, 361, 361, 361, 361, 361, 361, 361, - 361, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 362, 362, 361, 361, - 361, 361, 361, 361, 361, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 0, 0, 0, 0, 0, 0, 0, 0, 361, 361, - 361, 361, 361, 361, 361, 361, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 0, 110, 110, 0, 0, - 0, 0, 0, 361, 361, 361, 361, 361, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 361, 361, 361, 361, 361, 361, 0, 0, 0, 142, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 0, 0, 0, 0, 0, 107, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 0, 0, 0, 0, 361, 361, 110, 110, 361, 361, 361, 361, 361, 361, 361, - 361, 361, 361, 361, 361, 361, 361, 361, 361, 0, 0, 361, 361, 361, 361, - 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, - 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, - 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, - 363, 139, 139, 139, 0, 139, 139, 0, 0, 0, 0, 0, 139, 89, 139, 83, 363, - 363, 363, 363, 0, 363, 363, 363, 0, 363, 363, 363, 363, 363, 363, 363, - 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, - 363, 363, 363, 363, 363, 363, 363, 363, 0, 0, 83, 195, 89, 0, 0, 0, 0, - 149, 361, 361, 361, 361, 361, 361, 361, 361, 361, 0, 0, 0, 0, 0, 0, 0, - 107, 107, 107, 107, 107, 107, 107, 107, 107, 0, 0, 0, 0, 0, 0, 0, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 361, 361, 107, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 361, 361, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 110, 110, - 110, 110, 110, 110, 110, 362, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 83, 89, 0, 0, 0, 0, 361, 361, 361, 361, - 361, 107, 107, 107, 107, 107, 107, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 0, 0, 0, 142, 142, - 142, 142, 142, 142, 142, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 0, 0, - 361, 361, 361, 361, 361, 361, 361, 361, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 0, 0, 0, - 0, 0, 361, 361, 361, 361, 361, 361, 361, 361, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 0, 0, 0, - 0, 0, 0, 0, 107, 107, 107, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, - 361, 361, 361, 361, 361, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, - 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, - 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, - 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, - 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, - 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, - 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 0, 0, 0, - 0, 0, 0, 0, 361, 361, 361, 361, 361, 361, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 83, 83, 83, 83, 0, 0, 0, 0, 0, 0, 0, 0, 131, 131, 131, 131, - 131, 131, 131, 131, 131, 131, 0, 0, 0, 0, 0, 0, 131, 131, 131, 131, 131, - 131, 131, 131, 131, 131, 110, 110, 110, 110, 141, 110, 364, 364, 364, - 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, - 364, 364, 364, 364, 364, 0, 0, 0, 83, 83, 83, 83, 83, 86, 141, 365, 365, - 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, - 365, 365, 365, 365, 365, 365, 0, 0, 0, 0, 0, 0, 0, 0, 366, 366, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 367, 367, 367, 367, 367, 367, 367, - 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, - 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 0, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 0, 83, 83, 105, 0, 0, - 110, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 121, 121, - 123, 121, 121, 0, 0, 0, 0, 0, 0, 0, 0, 142, 87, 87, 87, 87, 87, 87, 87, - 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 89, 139, 89, 89, 89, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 361, 361, - 361, 361, 361, 361, 361, 361, 361, 361, 110, 0, 0, 0, 0, 0, 0, 0, 0, 121, - 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, - 121, 121, 121, 121, 121, 121, 121, 89, 89, 83, 83, 83, 89, 83, 89, 89, - 89, 89, 368, 368, 368, 368, 116, 116, 116, 116, 116, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 83, 89, - 83, 89, 107, 107, 107, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 361, 361, 361, 361, 361, 361, 361, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 139, 145, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 157, 85, 85, - 85, 85, 85, 85, 85, 0, 0, 0, 0, 163, 163, 163, 163, 163, 163, 163, 163, - 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 157, 50, 50, 139, 139, 50, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 157, 139, 139, 145, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 159, 50, 159, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 159, 50, 50, 50, - 50, 145, 145, 145, 139, 139, 139, 139, 145, 145, 157, 148, 85, 85, 369, - 85, 85, 85, 85, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 0, 0, 0, 0, 0, 0, 83, 83, 83, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 158, 139, 139, 139, 139, 145, 139, 160, 160, 139, 139, - 139, 149, 157, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 85, - 85, 85, 85, 146, 145, 145, 146, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 282, 282, 282, 306, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 311, + 308, 311, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 310, 310, 310, + 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 282, 282, 282, 282, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 282, + 282, 282, 282, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 282, 282, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 308, 308, 282, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 285, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 77, 77, 77, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 55, 55, 55, + 55, 55, 55, 86, 86, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 55, + 145, 145, 145, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 50, 50, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 50, 84, 85, 85, 85, 145, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 145, 54, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 53, 53, 84, 84, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 152, 85, 85, 50, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 139, 139, 145, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 145, 145, 145, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 145, 191, 50, 166, 166, 50, 85, 85, 85, 85, 139, 152, 139, 139, 85, - 145, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 50, 85, 50, - 85, 85, 85, 0, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, 145, 139, 139, 139, 145, - 145, 139, 191, 152, 139, 85, 85, 85, 85, 85, 85, 139, 50, 50, 139, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 0, 50, 0, - 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 85, 0, 0, 0, 0, 0, 0, + 50, 50, 50, 50, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 84, 84, + 86, 86, 86, 86, 86, 86, 77, 77, 77, 77, 77, 77, 77, 77, 56, 56, 56, 56, + 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, + 56, 54, 54, 54, 54, 54, 54, 54, 54, 54, 56, 56, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 49, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 53, 49, 49, 49, 49, 49, 49, 49, 49, 46, 49, 46, 49, 46, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 54, 312, 312, 46, 49, 46, 49, 50, 46, 49, 46, 49, + 49, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 46, 46, 46, 46, 49, 46, 46, 46, 46, 46, 49, 46, 49, + 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 46, 46, 46, 49, 46, + 49, 46, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, 46, 49, + 46, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 53, 53, 53, 53, 46, 49, 50, 53, 53, 49, 50, 50, 50, 50, 50, + 50, 50, 142, 50, 50, 50, 160, 50, 50, 50, 50, 142, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 148, 148, 142, 142, 148, 88, 88, 88, 88, 160, 77, 77, 77, 158, 158, 158, + 158, 158, 158, 83, 83, 89, 254, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 139, 145, 145, 145, 139, 139, - 139, 139, 139, 139, 152, 157, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 139, 139, 145, 145, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 0, 0, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, - 50, 50, 50, 50, 50, 0, 50, 50, 0, 50, 50, 50, 50, 50, 0, 152, 152, 50, - 153, 145, 139, 145, 145, 145, 145, 0, 0, 145, 145, 0, 0, 154, 154, 191, - 0, 0, 50, 0, 0, 0, 0, 0, 0, 153, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 145, - 145, 0, 0, 83, 83, 83, 83, 83, 83, 83, 0, 0, 0, 83, 83, 83, 83, 83, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 146, 146, 147, 146, 147, 146, 146, 146, - 146, 0, 146, 0, 0, 147, 0, 146, 147, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 0, 50, 153, 145, 145, 158, 139, 139, 139, 139, 139, 0, 153, 0, 0, - 370, 0, 370, 370, 153, 145, 0, 145, 145, 157, 191, 149, 166, 139, 50, 85, - 85, 0, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 139, 139, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, 145, 145, 77, + 77, 77, 77, 77, 77, 77, 77, 148, 148, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, - 145, 139, 139, 139, 139, 139, 139, 139, 139, 145, 145, 157, 139, 139, - 145, 152, 50, 50, 50, 50, 85, 85, 85, 85, 85, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 85, 85, 0, 85, 83, 50, 50, 50, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 160, 142, 77, 77, 77, 77, 77, 77, 77, 77, + 86, 86, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, + 77, 77, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 50, 50, 50, 50, 50, 50, 86, 86, 86, 50, 86, 50, 50, 142, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 153, 145, 145, 139, 139, - 139, 139, 139, 139, 145, 158, 154, 154, 153, 154, 139, 139, 145, 157, - 152, 50, 50, 85, 50, 0, 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 153, 145, 145, 139, 139, 139, 139, 0, - 0, 145, 145, 154, 154, 139, 139, 145, 157, 152, 85, 85, 85, 85, 85, 85, - 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 50, - 50, 50, 50, 139, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 145, 145, 145, 139, 139, 139, 139, 139, 139, - 139, 139, 145, 145, 139, 145, 157, 139, 85, 85, 85, 50, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, - 0, 0, 0, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 139, 145, 139, 145, 145, 139, 139, 139, 139, 139, 139, 191, - 152, 50, 85, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 0, 139, 145, 139, 183, 183, 139, 139, 139, - 139, 145, 139, 139, 139, 139, 157, 0, 0, 0, 0, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 155, 155, 85, 85, 85, 82, 50, 50, 50, 50, 50, - 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 142, 142, 142, 142, 142, 91, 91, 91, 86, 86, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, - 145, 139, 139, 139, 139, 139, 139, 139, 139, 139, 145, 157, 152, 85, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 49, 49, + 50, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 148, 194, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 86, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 77, 77, 77, 142, 142, 142, + 148, 50, 50, 50, 50, 50, 149, 149, 149, 50, 50, 50, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 155, 148, 148, 142, 142, 142, 142, 148, 148, 142, + 142, 148, 148, 197, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, + 77, 55, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, + 86, 86, 149, 149, 149, 149, 149, 142, 55, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 149, + 149, 149, 149, 149, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 142, 142, 142, 142, 142, 142, + 148, 148, 142, 142, 148, 148, 142, 142, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 50, 50, 50, 142, 50, 50, 50, 50, 50, 50, 50, 50, 142, 148, 77, 77, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 86, 86, 86, 86, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 55, 149, 149, 149, 50, 50, 50, 83, 83, 83, 149, 186, 142, 186, + 149, 149, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 84, 50, 84, 84, + 91, 50, 50, 84, 84, 50, 50, 50, 50, 50, 84, 84, 50, 84, 50, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 50, 50, 55, 86, 86, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 148, 142, 142, 148, 148, 86, 86, 50, 55, 55, 148, 152, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 77, 77, 50, + 50, 50, 50, 50, 50, 77, 77, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, + 50, 77, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 155, 155, 155, 155, 155, 155, 155, 155, 155, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 146, 146, 146, 146, 146, 146, 146, - 0, 0, 146, 0, 0, 146, 146, 146, 146, 146, 146, 146, 146, 0, 146, 146, 0, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 153, 145, 145, 145, - 145, 145, 0, 145, 154, 0, 0, 139, 139, 191, 149, 166, 145, 166, 145, 152, - 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, - 145, 139, 139, 139, 139, 0, 0, 139, 139, 145, 145, 145, 145, 157, 50, 85, - 50, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 146, 139, 139, 139, 139, 139, 139, 164, 164, 139, 139, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 139, 157, - 139, 139, 139, 139, 145, 50, 139, 139, 139, 139, 85, 85, 85, 85, 85, 85, - 85, 85, 149, 0, 0, 0, 0, 0, 0, 0, 0, 146, 139, 139, 139, 139, 139, 139, - 145, 145, 139, 139, 139, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 166, 166, 166, 166, 166, 166, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 145, 139, 149, 85, 85, 85, 50, - 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, - 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 139, 145, 139, 139, 139, 145, 139, 145, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 139, 139, 139, 139, 139, - 139, 139, 0, 139, 139, 139, 139, 139, 139, 145, 371, 50, 85, 85, 85, 85, - 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 0, 0, 0, 85, 85, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 0, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 0, - 145, 139, 139, 139, 139, 139, 139, 139, 145, 139, 139, 145, 139, 139, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 50, 50, 50, 50, 50, 50, 50, 0, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 139, 139, 139, 139, 139, - 139, 0, 0, 0, 139, 0, 139, 139, 0, 139, 139, 139, 152, 139, 157, 157, - 166, 139, 0, 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 0, 50, 50, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 145, 145, 145, 145, 145, - 0, 139, 139, 0, 145, 145, 139, 145, 157, 50, 0, 0, 0, 0, 0, 0, 0, 151, - 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 55, 50, 50, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 139, 139, 145, 145, 85, 85, 0, 0, 0, 0, 0, 0, 0, 139, 139, - 166, 145, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 0, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, - 146, 146, 146, 146, 146, 146, 146, 145, 145, 139, 139, 139, 139, 139, 0, - 0, 0, 145, 145, 139, 191, 149, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, - 85, 85, 85, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 87, 87, 87, 87, 87, 87, 87, 87, - 88, 88, 88, 88, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, - 190, 190, 190, 190, 190, 0, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 210, 210, 210, 210, - 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 139, 50, 50, - 50, 50, 50, 50, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 158, 158, 158, 372, 372, 372, 372, 372, 372, - 372, 372, 158, 145, 145, 145, 139, 139, 157, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 0, 0, 0, 0, 85, 85, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 151, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 312, 53, 53, 53, 53, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 53, 56, 56, 77, 77, 77, 77, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 50, + 50, 50, 50, 50, 50, 50, 50, 148, 148, 142, 148, 148, 142, 148, 148, 86, + 148, 160, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, + 77, 77, 77, 77, 77, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 313, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 188, 188, 188, 188, 188, 188, 188, + 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, + 188, 188, 77, 77, 77, 77, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 77, 77, 77, + 77, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, + 315, 315, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 286, 286, 317, 286, 317, 286, 286, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 286, 317, 286, 317, 286, + 286, 317, 317, 286, 286, 286, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 318, 318, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 37, 37, 37, 37, 37, 37, + 37, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 37, 37, 37, 37, 37, + 77, 77, 77, 77, 77, 319, 320, 319, 321, 321, 321, 321, 321, 321, 321, + 321, 321, 242, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, + 319, 319, 90, 319, 319, 319, 319, 319, 90, 319, 90, 319, 319, 90, 319, + 319, 90, 319, 319, 319, 319, 319, 319, 319, 319, 319, 321, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 147, 147, 147, + 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 322, 220, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 88, 88, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 88, 88, 88, 88, 88, 88, 88, 88, 323, 323, 323, 323, 323, 323, + 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, + 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 324, 88, 88, 88, 73, + 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 325, 325, + 325, 325, 325, 325, 325, 326, 327, 325, 77, 77, 77, 77, 77, 77, 84, 84, + 84, 84, 84, 84, 84, 91, 91, 91, 91, 91, 91, 91, 84, 84, 325, 328, 328, + 329, 329, 326, 327, 326, 327, 326, 327, 326, 327, 326, 327, 326, 327, + 326, 327, 326, 327, 284, 284, 326, 327, 325, 325, 325, 325, 329, 329, + 329, 330, 325, 330, 77, 325, 330, 325, 325, 328, 331, 332, 331, 332, 331, + 332, 333, 325, 325, 334, 335, 336, 336, 337, 77, 325, 338, 333, 325, 77, + 77, 77, 77, 136, 136, 136, 123, 136, 139, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 139, 139, 195, 77, 339, 339, 340, 341, 340, 339, 339, 342, + 343, 339, 344, 345, 346, 345, 345, 347, 347, 347, 347, 347, 347, 347, + 347, 347, 347, 345, 339, 348, 349, 348, 339, 339, 350, 350, 350, 350, + 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, + 350, 350, 350, 350, 350, 350, 350, 350, 342, 339, 343, 351, 352, 351, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, + 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 342, 349, + 343, 349, 342, 343, 354, 355, 356, 354, 354, 357, 357, 357, 357, 357, + 357, 357, 357, 357, 357, 358, 357, 357, 357, 357, 357, 357, 357, 357, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 359, 359, 357, 357, 357, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 77, + 77, 77, 357, 357, 357, 357, 357, 357, 77, 77, 357, 357, 357, 357, 357, + 357, 77, 77, 357, 357, 357, 357, 357, 357, 77, 77, 357, 357, 357, 77, 77, + 77, 341, 341, 349, 351, 360, 341, 341, 77, 361, 362, 362, 362, 362, 361, + 361, 77, 236, 236, 236, 236, 236, 236, 236, 236, 236, 363, 363, 363, 88, + 262, 323, 323, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 77, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 77, 77, 77, 77, 77, 86, 145, 86, 77, 77, 77, 77, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 77, 77, 77, 83, 83, 83, 83, 83, 83, 83, 83, 83, 364, 364, 364, 364, + 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, + 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, + 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, + 364, 364, 364, 364, 364, 364, 364, 166, 166, 166, 166, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 166, 166, 88, 83, 83, + 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 77, 77, 77, 88, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 91, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 91, 365, 365, 365, + 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, + 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 77, 77, 77, 77, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 158, 158, 158, 158, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 193, 50, 50, 50, 50, 50, 50, 50, + 50, 193, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 84, 84, 84, 84, 84, 77, 77, 77, 77, + 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 86, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, + 77, 50, 50, 50, 50, 50, 50, 50, 50, 86, 193, 193, 193, 193, 193, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 0, 0, 195, 195, 195, 195, 195, 85, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 83, - 83, 83, 83, 83, 83, 83, 85, 85, 85, 85, 85, 82, 82, 82, 82, 55, 55, 55, - 55, 85, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 0, 155, 155, 155, 155, 155, 155, 155, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 55, 55, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 185, 50, 50, 50, 186, 373, 374, 374, - 55, 55, 85, 85, 85, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 46, + 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, + 77, 77, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 49, 49, 49, 49, 49, 49, + 46, 46, 77, 77, 77, 77, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 85, 85, 85, 85, 0, 0, 0, 0, 0, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 0, 0, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 49, 49, 49, 49, 49, 49, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 139, 50, 145, 145, 145, 145, 145, - 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, - 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, - 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, - 145, 145, 145, 145, 145, 145, 145, 145, 0, 0, 0, 0, 0, 0, 0, 139, 139, - 139, 139, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 281, 280, 281, 375, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 376, 376, 281, 281, 283, 283, 283, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 281, 281, 281, 0, 281, - 281, 281, 281, 281, 281, 281, 0, 281, 281, 0, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 282, 282, 282, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 282, 282, 282, 282, 0, 0, 0, 0, 0, 0, 0, 0, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 0, 0, 0, 0, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, + 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 86, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 77, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 77, 46, 46, 46, 46, 46, 46, 46, 77, 46, 46, 77, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 77, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 77, 49, 49, 49, 49, 49, 49, 49, 77, 49, + 49, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 162, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 162, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 0, 0, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 0, 0, 82, 139, 195, 85, 192, 192, 192, 192, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 377, 377, 377, 377, 377, 377, 377, 377, 377, - 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, - 377, 377, 377, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 87, 87, - 87, 0, 0, 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 0, 0, 0, 0, 0, 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 139, 139, 139, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 55, 53, + 53, 53, 53, 53, 77, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, + 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, + 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 77, 53, 53, 53, 53, 53, 53, + 53, 53, 53, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 112, 112, 112, 112, 112, 112, 90, 90, 112, 90, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 112, 112, 90, + 90, 90, 112, 90, 90, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 109, + 366, 366, 366, 366, 366, 366, 366, 366, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 367, 367, 366, 366, 366, 366, 366, 366, 366, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 90, 90, 90, 90, 90, 90, 90, 90, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 90, 112, 112, 90, 90, 90, 90, 90, 366, 366, 366, 366, 366, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 366, 366, 366, 366, 366, 366, 90, 90, + 90, 145, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 90, + 90, 90, 90, 109, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 90, 90, 90, 90, 366, 366, 112, 112, 366, 366, 366, 366, 366, + 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 90, 90, 366, 366, + 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 368, 142, 142, 142, 90, 142, 142, 90, 90, 90, 90, 90, 142, 91, + 142, 84, 368, 368, 368, 368, 90, 368, 368, 368, 90, 368, 368, 368, 368, + 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, + 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 90, 90, 84, 198, + 91, 90, 90, 90, 90, 152, 366, 366, 366, 366, 366, 366, 366, 366, 366, 90, + 90, 90, 90, 90, 90, 90, 109, 109, 109, 109, 109, 109, 109, 109, 109, 90, + 90, 90, 90, 90, 90, 90, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 366, 366, 109, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 366, 366, 366, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 112, 112, 112, 112, 112, 112, + 112, 112, 367, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 84, 91, 90, 90, 90, 90, 366, 366, 366, 366, 366, 109, 109, + 109, 109, 109, 109, 109, 90, 90, 90, 90, 90, 90, 90, 90, 90, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 90, 90, 145, 145, + 145, 145, 145, 145, 145, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 90, + 366, 366, 366, 366, 366, 366, 366, 366, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 90, + 90, 90, 90, 366, 366, 366, 366, 366, 366, 366, 366, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, + 90, 90, 90, 90, 90, 90, 109, 109, 109, 109, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 366, 366, 366, 366, 366, 366, 366, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 370, 370, 370, + 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, + 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, + 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, + 370, 370, 370, 370, 370, 370, 90, 90, 90, 90, 90, 90, 90, 366, 366, 366, + 366, 366, 366, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 84, 84, 84, 84, + 139, 139, 139, 139, 139, 139, 139, 139, 133, 133, 133, 133, 133, 133, + 133, 133, 133, 133, 139, 139, 139, 139, 139, 139, 133, 133, 133, 133, + 133, 133, 133, 133, 133, 133, 112, 112, 112, 112, 144, 112, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 369, 90, 90, 90, 84, 84, 84, 84, 84, 87, 144, + 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, + 370, 370, 370, 370, 370, 370, 370, 370, 90, 90, 90, 90, 90, 90, 90, 90, + 371, 371, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 372, 372, 372, 372, 372, + 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, + 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 90, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 84, 84, + 107, 90, 90, 112, 112, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 139, 139, 123, 123, 123, 125, 123, 123, 139, 139, 139, 139, 139, + 139, 139, 139, 145, 88, 88, 88, 88, 88, 88, 88, 88, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, + 139, 91, 91, 142, 91, 91, 91, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 366, 366, 366, 366, 366, 366, 366, + 366, 366, 366, 112, 90, 90, 90, 90, 90, 90, 90, 90, 123, 123, 123, 123, + 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, + 123, 123, 123, 123, 91, 91, 84, 84, 84, 91, 84, 91, 91, 91, 91, 373, 373, + 373, 373, 118, 118, 118, 118, 118, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 0, - 0, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 0, 0, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 379, 379, 379, 379, 379, 379, 379, 380, 380, 195, 195, 195, 82, 82, 82, - 381, 380, 380, 380, 380, 380, 192, 192, 192, 192, 192, 192, 192, 192, 89, - 89, 89, 89, 89, 89, 89, 89, 82, 82, 83, 83, 83, 83, 83, 89, 89, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 83, 83, 83, 83, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 379, 379, 379, 379, 379, 379, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 82, 82, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 83, 83, 83, 87, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, - 275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382, 382, 382, 382, 382, 382, 382, 382, - 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, - 382, 155, 155, 0, 0, 0, 0, 0, 0, 0, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 139, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 84, 91, 84, 91, 109, 109, 109, 109, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 366, 366, 366, 366, 366, 366, 366, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 148, 142, 148, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 160, 86, 86, 86, 86, 86, 86, 86, 77, 77, 77, 77, 166, + 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, + 166, 166, 166, 166, 166, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 160, 50, 50, 142, 142, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 160, + 142, 142, 148, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 162, 50, 162, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 162, 50, 50, 50, 50, 148, 148, 148, 142, + 142, 142, 142, 148, 148, 160, 151, 86, 86, 374, 86, 86, 86, 86, 142, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 374, 77, 77, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 77, 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 77, 77, 77, 77, 77, 77, 84, 84, 84, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 161, 142, 142, 142, 142, 148, 142, 163, 163, 142, 142, + 142, 152, 160, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 86, + 86, 86, 86, 149, 148, 148, 149, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 155, 86, 86, + 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 142, 142, 148, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 148, 148, 148, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 148, 194, 50, 169, 169, 50, 86, 86, 86, 86, 142, 155, + 142, 142, 86, 148, 142, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 50, 86, 50, 86, 86, 86, 77, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 148, 148, + 148, 142, 142, 142, 148, 148, 142, 194, 155, 142, 86, 86, 86, 86, 86, 86, + 142, 50, 50, 142, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, + 50, 77, 50, 77, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 86, + 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 142, + 148, 148, 148, 142, 142, 142, 142, 142, 142, 155, 160, 77, 77, 77, 77, + 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, + 77, 142, 142, 148, 148, 77, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 50, + 50, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, + 77, 50, 50, 50, 50, 50, 77, 155, 155, 50, 156, 148, 142, 148, 148, 148, + 148, 77, 77, 148, 148, 77, 77, 157, 157, 194, 77, 77, 50, 77, 77, 77, 77, + 77, 77, 156, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 148, 148, 77, 77, + 84, 84, 84, 84, 84, 84, 84, 77, 77, 77, 84, 84, 84, 84, 84, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 149, 149, 149, 150, 149, 150, 149, 149, + 149, 149, 77, 149, 77, 77, 150, 77, 149, 150, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 77, 50, 156, 148, 148, 161, 142, 142, 142, 142, 142, 77, + 156, 77, 77, 375, 77, 375, 375, 156, 148, 77, 148, 148, 160, 194, 152, + 169, 142, 50, 86, 86, 77, 86, 86, 77, 77, 77, 77, 77, 77, 77, 77, 142, + 142, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 148, 148, 148, 142, 142, 142, + 142, 142, 142, 142, 142, 148, 148, 160, 142, 142, 148, 155, 50, 50, 50, + 50, 86, 86, 86, 86, 86, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 86, 86, 77, 86, 84, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 156, 148, 148, + 142, 142, 142, 142, 142, 142, 148, 161, 157, 157, 156, 157, 142, 142, + 148, 160, 155, 50, 50, 86, 50, 77, 77, 77, 77, 77, 77, 77, 77, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 156, 148, 148, 142, 142, 142, 142, 77, 77, 148, 148, + 157, 157, 142, 142, 148, 160, 155, 86, 86, 86, 86, 86, 86, 86, 86, 86, + 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 50, 50, 50, 50, + 142, 142, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 148, 148, 148, 142, 142, + 142, 142, 142, 142, 142, 142, 148, 148, 142, 148, 160, 142, 86, 86, 86, + 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, 145, 145, 145, 145, 145, + 145, 145, 145, 145, 145, 145, 145, 145, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 142, 148, 142, 148, 148, 142, 142, 142, 142, 142, 142, 194, 155, 50, 86, + 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 142, 148, + 142, 186, 186, 142, 142, 142, 142, 148, 142, 142, 142, 142, 160, 77, 77, + 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 158, 158, 86, + 86, 86, 83, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 148, 148, 148, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 148, 160, 155, 86, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 158, 158, 158, 158, 158, 158, 158, 158, 158, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 50, 149, 149, 149, 149, 149, 149, 149, 77, 77, + 149, 77, 77, 149, 149, 149, 149, 149, 149, 149, 149, 77, 149, 149, 77, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 156, 148, 148, 148, + 148, 148, 77, 148, 157, 77, 77, 142, 142, 194, 152, 169, 148, 169, 148, + 155, 86, 86, 86, 77, 77, 77, 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 148, 148, 148, 142, 142, 142, 142, 77, 77, 142, 142, 148, 148, 148, 148, + 160, 50, 86, 50, 148, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 149, 142, 142, + 142, 142, 142, 142, 167, 167, 142, 142, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 142, 160, 142, 142, 142, 142, 148, 50, 142, + 142, 142, 142, 86, 86, 86, 86, 86, 86, 86, 86, 152, 77, 77, 77, 77, 77, + 77, 77, 77, 149, 142, 142, 142, 142, 142, 142, 148, 148, 142, 142, 142, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 169, 169, + 169, 169, 169, 169, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 148, 142, 152, 86, 86, 86, 50, 86, 86, 86, 86, 86, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, + 77, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 142, 148, 142, 142, 142, 148, 142, 148, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 86, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 148, 142, 142, 142, 142, 142, 142, 142, 77, 142, 142, 142, + 142, 142, 142, 148, 376, 50, 86, 86, 86, 86, 86, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 77, 77, 77, 86, 86, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 77, 77, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 77, 148, 142, + 142, 142, 142, 142, 142, 142, 148, 142, 142, 148, 142, 142, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, + 50, 50, 50, 50, 50, 77, 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 142, 142, 142, 142, 142, 142, + 77, 77, 77, 142, 77, 142, 142, 77, 142, 142, 142, 155, 142, 160, 160, + 169, 142, 77, 77, 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 77, + 50, 50, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 148, + 148, 148, 148, 148, 77, 142, 142, 77, 148, 148, 142, 148, 160, 50, 77, + 77, 77, 77, 77, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 55, 50, 50, 77, 77, 77, 77, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 142, 142, 148, 148, 86, 86, 77, 77, 77, 77, 77, 77, + 77, 142, 142, 169, 148, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 77, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 148, 148, 142, 142, 142, + 142, 142, 77, 77, 77, 148, 148, 142, 194, 152, 86, 86, 86, 86, 86, 86, + 86, 86, 86, 86, 86, 86, 86, 154, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 142, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 88, 88, 88, 88, 88, 88, 88, 88, 89, 89, 89, 89, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 86, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 193, 193, 193, 193, 77, 86, 86, 86, 86, 86, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 86, + 86, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 213, 213, 213, 213, 213, 213, 213, 213, + 213, 213, 213, 213, 213, 213, 213, 213, 142, 50, 50, 50, 50, 50, 50, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 161, 161, 161, 377, 377, 377, 377, 377, 377, 377, 377, 161, 148, 148, + 148, 142, 142, 160, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, + 77, 86, 86, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 154, 154, 154, 154, 154, 154, + 154, 154, 154, 154, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 77, 77, 198, 198, 198, 198, 198, 86, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 84, 84, 84, 84, 84, 84, 84, 86, 86, 86, 86, 86, 83, 83, 83, 83, 55, 55, + 55, 55, 86, 83, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 77, 158, 158, 158, 158, 158, 158, 158, + 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 55, 55, 55, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 188, 50, 50, 50, 189, 378, 379, 379, 55, 55, 86, 86, + 86, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 86, 86, 86, 86, + 77, 77, 77, 77, 77, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 77, 77, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, + 142, 50, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 77, + 77, 77, 77, 77, 77, 77, 142, 142, 142, 142, 55, 55, 55, 55, 55, 55, 55, + 55, 55, 55, 55, 55, 55, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 285, 285, + 284, 285, 380, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 381, 381, 285, + 285, 287, 287, 287, 77, 77, 77, 77, 77, 77, 77, 77, 77, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 285, 285, + 285, 285, 77, 285, 285, 285, 285, 285, 285, 285, 77, 285, 285, 77, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 286, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 286, 286, + 286, 77, 77, 286, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 286, 286, 286, 286, 77, 77, 77, 77, 77, 77, 77, 77, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 77, 77, 77, 77, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, + 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 77, 77, 77, 77, 77, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 77, 77, 83, 142, 198, 86, 195, 195, 195, + 195, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, + 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 383, 383, + 383, 383, 383, 383, 383, 383, 383, 383, 88, 88, 88, 77, 77, 77, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 77, 77, 77, 77, + 77, 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 81, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 77, 77, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 77, 77, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 384, 384, 384, 384, 384, 384, + 384, 385, 385, 198, 198, 198, 83, 83, 83, 386, 385, 385, 385, 385, 385, + 195, 195, 195, 195, 195, 195, 195, 195, 91, 91, 91, 91, 91, 91, 91, 91, + 83, 83, 84, 84, 84, 84, 84, 91, 91, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 84, 84, 84, 84, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 384, 384, 384, 384, 384, 384, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 88, 88, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 84, 84, 84, 88, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + 158, 158, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 387, 387, 387, 387, 387, 387, 387, 387, + 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, + 387, 158, 158, 77, 77, 77, 77, 77, 77, 77, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 77, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, - 37, 37, 37, 37, 0, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 51, 0, 51, 51, 0, 0, 51, 0, 0, 51, 51, 0, 0, 51, 51, 51, 51, - 0, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 0, 37, 0, 37, 37, 37, - 37, 37, 37, 37, 0, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, + 37, 37, 37, 37, 37, 51, 77, 51, 51, 77, 77, 51, 77, 77, 51, 51, 77, 77, + 51, 51, 51, 51, 77, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 77, + 37, 77, 37, 37, 37, 37, 37, 37, 37, 77, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 51, 51, 77, 51, 51, 51, 51, 77, 77, 51, 51, 51, 51, 51, 51, 51, 51, + 77, 51, 51, 51, 51, 51, 51, 51, 77, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, + 51, 77, 51, 51, 51, 51, 77, 51, 51, 51, 51, 51, 77, 51, 77, 77, 77, 51, + 51, 51, 51, 51, 51, 51, 77, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 0, 51, - 51, 51, 51, 0, 0, 51, 51, 51, 51, 51, 51, 51, 51, 0, 51, 51, 51, 51, 51, - 51, 51, 0, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 0, 51, 51, 51, 51, 0, - 51, 51, 51, 51, 51, 0, 51, 0, 0, 0, 51, 51, 51, 51, 51, 51, 51, 0, 37, + 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, @@ -3214,469 +3310,492 @@ static const unsigned short index2[] = { 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 77, 77, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 243, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 51, 51, 51, + 37, 37, 37, 37, 256, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 0, 0, 51, 51, + 243, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 256, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 240, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 252, 37, 37, 37, 37, - 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 240, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 252, - 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 240, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 252, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 240, + 51, 51, 51, 51, 243, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 256, 37, 37, 37, 37, 37, + 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 243, 37, 37, 37, 37, 37, 37, 37, 37, 37, + 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 256, 37, + 37, 37, 37, 37, 37, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 243, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 252, 37, 37, 37, 37, 37, 37, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 240, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 252, 37, 37, 37, 37, 37, 37, - 51, 37, 0, 0, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, - 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, - 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, - 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 82, 82, 82, 82, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 139, 139, 139, 82, 82, 82, 82, 82, 82, 82, 82, 139, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 139, 82, 82, 85, 85, - 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 139, 139, - 139, 139, 0, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, - 139, 139, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 50, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 0, 0, 0, 0, 0, 0, 49, 49, 49, 49, 49, 49, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 83, 83, 83, 83, 83, 83, 0, 83, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 0, 0, 83, 83, 83, 83, - 83, 83, 83, 0, 83, 83, 0, 83, 83, 83, 83, 83, 0, 0, 0, 0, 0, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, - 53, 53, 53, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, 0, 0, 83, - 83, 83, 83, 83, 83, 83, 55, 55, 55, 55, 55, 55, 55, 0, 0, 151, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 0, 0, 0, 0, 50, 82, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 83, 83, 83, 83, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 0, 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 55, 198, 198, 89, 83, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 83, 89, 50, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 0, - 50, 50, 50, 83, 50, 50, 83, 50, 50, 50, 50, 50, 50, 50, 83, 83, 50, 50, - 50, 50, 50, 83, 0, 0, 0, 0, 0, 0, 0, 0, 50, 55, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 50, - 50, 0, 50, 50, 50, 50, 0, 50, 50, 0, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 0, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 0, 0, 361, 361, 361, 361, 361, 361, 361, - 361, 361, 89, 89, 89, 89, 89, 89, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, - 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, - 364, 364, 364, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 365, - 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, - 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, - 365, 83, 83, 83, 83, 83, 83, 152, 141, 0, 0, 0, 0, 140, 140, 140, 140, - 140, 140, 140, 140, 140, 140, 0, 0, 0, 0, 107, 107, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 368, 368, 368, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 136, - 368, 368, 368, 114, 368, 368, 368, 368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 368, 368, 368, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 136, - 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, - 368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 134, 134, - 134, 0, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 0, - 134, 134, 0, 134, 0, 0, 134, 0, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 0, 134, 134, 134, 134, 0, 134, 0, 134, 0, 0, 0, 0, 0, 0, 134, - 0, 0, 0, 0, 134, 0, 134, 0, 134, 0, 134, 134, 134, 0, 134, 134, 0, 134, - 0, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 134, 0, 134, 0, 0, - 134, 134, 134, 134, 0, 134, 134, 134, 134, 134, 134, 134, 0, 134, 134, - 134, 134, 0, 134, 134, 134, 134, 0, 134, 0, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 0, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 0, 0, 0, 0, 0, 134, 134, 134, 0, 134, - 134, 134, 134, 134, 0, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 134, 134, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 80, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 87, 87, 87, 87, 267, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 383, 383, 383, 383, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 383, 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 267, 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 36, 36, 36, - 36, 36, 36, 36, 36, 36, 36, 36, 163, 163, 87, 87, 87, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 377, 87, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, - 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, - 384, 246, 246, 246, 87, 87, 87, 385, 385, 384, 384, 384, 384, 384, 384, - 384, 384, 384, 384, 384, 384, 385, 385, 384, 384, 384, 384, 384, 384, - 384, 384, 384, 384, 384, 384, 384, 384, 386, 384, 270, 386, 386, 386, - 386, 386, 386, 386, 386, 386, 386, 384, 384, 384, 384, 384, 384, 384, - 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 87, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 387, 387, 387, - 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, - 387, 387, 387, 387, 387, 387, 387, 387, 387, 304, 307, 307, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 307, 304, 304, 304, 304, 304, 304, - 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, - 307, 304, 304, 307, 307, 307, 307, 307, 307, 307, 307, 307, 304, 383, - 383, 383, 383, 304, 304, 304, 304, 304, 304, 304, 304, 304, 383, 383, - 383, 383, 383, 383, 383, 307, 307, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 275, 275, 275, 275, 275, 275, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 28, 87, 87, 28, 28, 28, 28, 28, 28, 28, 28, 28, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 28, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 28, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 87, 87, 28, 28, 87, 28, 28, 28, 87, 87, 28, 28, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 28, 28, 28, - 28, 267, 267, 267, 267, 267, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, - 28, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 87, 87, 28, 267, 28, 87, 28, 267, 267, 267, 388, 388, 388, - 388, 388, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 28, 267, 28, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 28, 87, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 28, 28, 267, 267, 267, 267, 87, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 87, 87, 87, 87, 87, 87, 87, 28, 28, 87, 87, - 28, 28, 28, 28, 28, 28, 28, 267, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 28, 87, 87, 28, 28, 28, 28, 87, 87, 28, 87, 87, 87, 87, 267, 267, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 267, 28, 87, 87, 28, - 87, 87, 87, 87, 87, 87, 87, 87, 28, 28, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 28, 87, 87, 87, 87, 87, 28, 28, 28, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 28, 28, 28, 87, 87, 87, 87, 87, 87, 87, 87, 28, 28, 28, - 87, 87, 28, 87, 28, 87, 87, 87, 87, 28, 87, 87, 87, 87, 87, 87, 28, 87, - 87, 87, 28, 87, 87, 87, 87, 87, 87, 28, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 87, 87, 87, 87, 87, 28, 267, 28, 28, 28, 267, 267, - 267, 87, 87, 267, 267, 267, 267, 383, 383, 383, 267, 267, 267, 267, 28, - 28, 28, 28, 28, 28, 87, 87, 87, 28, 87, 267, 267, 383, 383, 383, 28, 87, - 87, 28, 267, 267, 267, 267, 267, 267, 267, 267, 267, 383, 383, 383, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 383, - 383, 383, 383, 383, 383, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 383, 383, 383, 383, 267, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 383, 383, 383, 383, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 383, 383, 383, 383, 383, - 383, 383, 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 383, 383, 383, - 383, 383, 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 383, 383, 383, 383, 383, 383, 383, 383, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 383, 383, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 383, 383, 383, 383, 87, 87, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 80, 80, 80, - 80, 80, 80, 80, 80, 80, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 87, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 87, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 383, - 383, 383, 383, 383, 383, 383, 383, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 383, 383, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 383, 383, 383, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 383, 383, 383, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 267, 267, 267, 267, 267, 267, 383, 267, 383, 383, 383, - 383, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 383, 383, 267, 267, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 383, 383, 383, 383, 267, 267, 267, 267, 267, 267, 267, - 267, 267, 267, 383, 383, 383, 383, 383, 383, 383, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 0, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, - 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 378, 378, - 378, 378, 378, 378, 378, 378, 378, 378, 87, 0, 0, 0, 0, 0, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, + 37, 37, 256, 37, 37, 37, 37, 37, 37, 51, 37, 77, 77, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 0, 0, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 314, 314, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 314, 314, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, - 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 0, 0, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 314, 314, 314, 314, 314, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 314, 314, 314, - 314, 314, 314, 233, 192, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 389, 389, 389, 389, 389, 389, 389, - 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, - 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, - 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, - 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, + 383, 383, 383, 383, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 83, 83, 83, 83, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 83, + 83, 83, 83, 83, 83, 83, 83, 142, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 142, 83, 83, 86, 86, 86, 86, 86, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 142, 142, 142, 142, 142, 77, 142, + 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 50, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 77, 77, 77, 77, 77, 77, 49, 49, 49, 49, 49, 49, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 84, 84, 84, 84, 84, 84, 84, 77, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 77, 77, + 84, 84, 84, 84, 84, 84, 84, 77, 84, 84, 77, 84, 84, 84, 84, 84, 77, 77, + 77, 77, 77, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, + 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, + 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, + 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 84, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 77, 77, 77, 84, 84, 84, 84, 84, 84, 84, 55, 55, 55, 55, + 55, 55, 55, 77, 77, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, + 77, 77, 77, 50, 83, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 84, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 84, + 84, 84, 84, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 77, 77, 77, + 77, 77, 89, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 55, 201, 201, 91, 84, 154, 154, 154, 154, 154, 154, 154, 154, + 154, 154, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 84, 91, 50, 154, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 77, 77, 77, 77, 86, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, + 50, 50, 50, 84, 50, 50, 84, 50, 50, 50, 50, 50, 50, 50, 84, 84, 50, 50, + 50, 50, 50, 84, 77, 77, 77, 77, 77, 77, 77, 77, 50, 55, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 50, 50, 50, 50, 50, 50, 50, 77, 50, 50, 50, 50, 77, 50, 50, 77, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 77, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 90, 90, + 366, 366, 366, 366, 366, 366, 366, 366, 366, 91, 91, 91, 91, 91, 91, 91, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 370, 370, 370, 370, + 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, + 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, + 370, 370, 84, 84, 84, 84, 84, 84, 155, 144, 90, 90, 90, 90, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 90, 90, 90, 90, 109, 109, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 139, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 138, 373, 373, 373, 116, 373, 373, 373, 373, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 139, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 138, 373, 373, 373, 373, 373, 373, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, + 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 136, 136, 136, 136, 139, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 139, 136, + 136, 139, 136, 139, 139, 136, 139, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 139, 136, 136, 136, 136, 139, 136, 139, 136, 139, 139, + 139, 139, 139, 139, 136, 139, 139, 139, 139, 136, 139, 136, 139, 136, + 139, 136, 136, 136, 139, 136, 136, 139, 136, 139, 139, 136, 139, 136, + 139, 136, 139, 136, 139, 136, 139, 136, 136, 139, 136, 139, 139, 136, + 136, 136, 136, 139, 136, 136, 136, 136, 136, 136, 136, 139, 136, 136, + 136, 136, 139, 136, 136, 136, 136, 139, 136, 139, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 139, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 139, 139, 139, 139, + 139, 136, 136, 136, 139, 136, 136, 136, 136, 136, 139, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 81, 81, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 88, 88, 88, 88, + 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 388, 388, 388, 388, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 388, 388, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 388, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 271, 388, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 166, + 166, 88, 88, 88, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 382, 88, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, + 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, + 389, 389, 389, 389, 389, 389, 389, 389, 250, 250, 250, 88, 88, 88, 390, + 390, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 390, + 390, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, + 389, 391, 389, 274, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, - 389, 389, 389, 389, 389, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 73, 73, 73, 73, 73, 73, 73, 73, 73, + 389, 389, 389, 389, 88, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, + 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, + 392, 392, 308, 311, 311, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 311, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 308, 308, 311, 308, 308, 311, 311, 311, 311, + 311, 311, 311, 311, 311, 308, 388, 388, 388, 388, 308, 308, 308, 308, + 308, 308, 308, 308, 308, 388, 388, 388, 388, 388, 388, 388, 311, 311, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 279, 279, 279, 279, 279, 279, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 28, 88, 88, 28, + 28, 28, 28, 28, 28, 28, 28, 28, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 28, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 28, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 88, 88, 28, 28, 88, 28, 28, + 28, 88, 88, 28, 28, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 28, 28, 28, 28, 271, 271, 271, 271, 271, 28, 28, + 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 88, 88, 28, 271, + 28, 88, 28, 271, 271, 271, 393, 393, 393, 393, 393, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 28, 271, 28, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 28, 88, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 28, 28, + 271, 271, 271, 271, 88, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 88, + 88, 88, 88, 88, 88, 88, 28, 28, 88, 88, 28, 28, 28, 28, 28, 28, 28, 271, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 28, 88, 88, 28, 28, 28, + 28, 88, 88, 28, 88, 88, 88, 88, 271, 271, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 271, 28, 88, 88, 28, 88, 88, 88, 88, 88, 88, 88, 88, + 28, 28, 88, 88, 88, 88, 88, 88, 88, 88, 88, 28, 88, 88, 88, 88, 88, 28, + 28, 28, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 28, 28, 28, 88, + 88, 88, 88, 88, 88, 88, 88, 28, 28, 28, 88, 88, 28, 88, 28, 88, 88, 88, + 88, 28, 88, 88, 88, 88, 88, 88, 28, 88, 88, 88, 28, 88, 88, 88, 88, 88, + 88, 28, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 88, 88, 88, 88, + 88, 28, 271, 28, 28, 28, 271, 271, 271, 88, 88, 271, 271, 271, 271, 388, + 388, 388, 271, 271, 271, 271, 28, 28, 28, 28, 28, 28, 88, 88, 88, 28, 88, + 271, 271, 388, 388, 388, 28, 88, 88, 28, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 388, 388, 388, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 388, 388, 388, 388, 388, 388, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 388, 388, 388, 388, 271, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 388, 388, 388, 388, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 388, 388, 388, 388, 388, 388, 388, 388, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 388, 388, 388, 388, 388, 388, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 388, 388, + 388, 388, 388, 388, 388, 388, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 388, 388, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 388, 388, + 388, 388, 88, 88, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 81, 81, 81, 81, 81, 81, 81, 81, 81, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 88, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 88, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 388, 388, 388, 388, 388, 388, 388, 388, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 388, 388, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 388, 388, 388, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 388, 388, 388, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 388, + 271, 388, 388, 388, 388, 271, 271, 271, 271, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 388, 388, 271, 271, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 388, 388, 388, 388, 271, 271, 271, + 271, 271, 271, 271, 271, 271, 271, 388, 388, 388, 388, 388, 388, 388, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 77, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 88, 77, 77, + 77, 77, 77, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, + 388, 388, 323, 323, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 318, 318, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 318, 318, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, + 317, 317, 317, 317, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, + 318, 318, 318, 318, 323, 323, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 318, 318, 318, + 318, 318, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 318, 318, 318, 318, 318, 318, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, + 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 323, 323, 236, 195, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, @@ -3689,18 +3808,17 @@ static const unsigned short index2[] = { 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, - 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 233, 233, - 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 0, - 0, + 73, 73, 73, 73, 73, 73, 73, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 236, 236, 236, 236, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, + 316, 316, 316, 316, 316, 316, 316, 323, 323, }; /* decomposition data */ diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index 432dc3a68bf5ed..37d7e096769833 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -29,6 +29,7 @@ import dataclasses import os import sys +import re import zipfile from functools import partial @@ -49,6 +50,7 @@ COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt" EASTASIAN_WIDTH = "EastAsianWidth%s.txt" UNIHAN = "Unihan%s.zip" +DERIVED_BIDI_CLASS = "extracted/DerivedBidiClass%s.txt" DERIVED_CORE_PROPERTIES = "DerivedCoreProperties%s.txt" DERIVEDNORMALIZATION_PROPS = "DerivedNormalizationProps%s.txt" LINE_BREAK = "LineBreak%s.txt" @@ -79,6 +81,33 @@ "PDF", "EN", "ES", "ET", "AN", "CS", "NSM", "BN", "B", "S", "WS", "ON", "LRI", "RLI", "FSI", "PDI" ] +# https://www.unicode.org/reports/tr44/#BC_Values_Table +BIDI_LONG_NAMES = { + 'Left_To_Right': 'L', + 'Right_To_Left': 'R', + 'Arabic_Letter': 'AL', + 'European_Number': 'EN', + 'European_Separator': 'ES', + 'European_Terminator': 'ET', + 'Arabic_Number': 'AN', + 'Common_Separator': 'CS', + 'Nonspacing_Mark': 'NSM', + 'Boundary_Neutral': 'BN', + 'Paragraph_Separator': 'B', + 'Segment_Separator': 'S', + 'White_Space': 'WS', + 'Other_Neutral': 'ON', + 'Left_To_Right_Embedding': 'LRE', + 'Left_To_Right_Override': 'LRO', + 'Right_To_Left_Embedding': 'RLE', + 'Right_To_Left_Override': 'RLO', + 'Pop_Directional_Format': 'PDF', + 'Left_To_Right_Isolate': 'LRI', + 'Right_To_Left_Isolate': 'RLI', + 'First_Strong_Isolate': 'FSI', + 'Pop_Directional_Isolate': 'PDI', +} + # "Other" needs to be the first entry, see the comment in makeunicodedata GRAPHEME_CLUSTER_NAMES = [ 'Other', 'Prepend', 'CR', 'LF', 'Control', 'Extend', 'Regional_Indicator', 'SpacingMark', 'L', 'V', 'T', 'LV', 'LVT', @@ -169,11 +198,11 @@ def makeunicodedata(unicode, trace): eastasianwidth = EASTASIANWIDTH_NAMES.index(unicode.widths[char] or 'N') graphemebreak = GRAPHEME_CLUSTER_NAMES.index(unicode.grapheme_breaks[char] or 'Other') extpict = unicode.ext_picts[char] + bidirectional = BIDIRECTIONAL_NAMES.index(unicode.bidi_classes[char]) if record: # extract database properties category = CATEGORY_NAMES.index(record.general_category) combining = int(record.canonical_combining_class) - bidirectional = BIDIRECTIONAL_NAMES.index(record.bidi_class) mirrored = record.bidi_mirrored == "Y" normalizationquickcheck = record.quick_check incb = INDIC_CONJUNCT_BREAK_NAMES.index(record.incb) @@ -181,12 +210,12 @@ def makeunicodedata(unicode, trace): category, combining, bidirectional, mirrored, eastasianwidth, normalizationquickcheck, graphemebreak, incb, extpict, ) - elif eastasianwidth or graphemebreak or extpict: - # an unassigned but reserved character, with a known - # east_asian_width or grapheme_break or ext_pict - item = (0, 0, 0, 0, eastasianwidth, 0, graphemebreak, 0, extpict) else: - continue + if eastasianwidth or graphemebreak or extpict or bidirectional: + item = (0, 0, bidirectional, 0, eastasianwidth, + 0, graphemebreak, 0, extpict) + else: + continue # add entry to index and item tables i = cache.get(item) @@ -457,7 +486,7 @@ def makeunicodetype(unicode, trace): if record: # extract database properties category = record.general_category - bidirectional = record.bidi_class + bidirectional = unicode.bidi_classes[char] properties = record.binary_properties flags = 0 if category in ["Lm", "Lt", "Lu", "Ll", "Lo"]: @@ -770,6 +799,8 @@ def merge_old_version(version, new, old): # category 0 is "unassigned" category_changes[i] = 0 continue + if old.bidi_classes[i] != new.bidi_classes[i]: + bidir_changes[i] = BIDIRECTIONAL_NAMES.index(old.bidi_classes[i]) # check characters that differ if old.table[i] != new.table[i]: for k, field in enumerate(dataclasses.fields(UcdRecord)): @@ -783,7 +814,8 @@ def merge_old_version(version, new, old): elif k == 2: category_changes[i] = CATEGORY_NAMES.index(value) elif k == 4: - bidir_changes[i] = BIDIRECTIONAL_NAMES.index(value) + # bidi_class changes handled via bidi_classes + pass elif k == 5: # We assume that all normalization changes are in 1:1 mappings assert " " not in value @@ -1042,6 +1074,28 @@ def __init__(self, version, ideograph_check=True): table[i].east_asian_width = widths[i] self.widths = widths + # Read DerivedBidiClass.txt for bidi classes + # see https://www.unicode.org/reports/tr44/#Missing_Conventions + bidi_classes = [None] * 0x110000 + for i in range(0, 0x110000): + if table[i] is not None: + bidi_classes[i] = table[i].bidi_class + if version != '3.2.0': + missing_re = re.compile( + r'# @missing: ([\dA-F]+\.\.[\dA-F]+); (\w+)' + ) + with open_data(DERIVED_BIDI_CLASS, version) as f: + for l in f: + m = missing_re.match(l) + if not m: + continue + name = BIDI_LONG_NAMES[m[2]] + for i in expand_range(m[1]): + bidi_classes[i] = name + for char, (bidi,) in UcdFile(DERIVED_BIDI_CLASS, version).expanded(): + bidi_classes[char] = bidi + self.bidi_classes = bidi_classes + for char, (propname, *propinfo) in UcdFile(DERIVED_CORE_PROPERTIES, version).expanded(): if not propinfo: # binary property From 767b4d02e2d3dc9ff62c9926eea044532ac077b6 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 18 Feb 2026 12:58:21 +0200 Subject: [PATCH 045/110] gh-144882: Optimize name tables in unicodedata by excluding names derived by rule NR2 (GH-144883) Since the code for rule NR2 is already here, to support CJK unified ideographs and Tangut ideographs, it can also be used for other names derived by rule NR2. --- Modules/unicodename_db.h | 24184 ++++++++++++++--------------- Tools/unicode/makeunicodedata.py | 26 +- 2 files changed, 11509 insertions(+), 12701 deletions(-) diff --git a/Modules/unicodename_db.h b/Modules/unicodename_db.h index d9d062a2345974..5ac5ca462bdfab 100644 --- a/Modules/unicodename_db.h +++ b/Modules/unicodename_db.h @@ -4,381 +4,381 @@ /* name->code dictionary */ static const unsigned char packed_name_dawg[] = { - 136, 135, 5, 254, 2, 65, 246, 145, 3, 66, 206, 160, 3, 67, 146, 251, 4, - 68, 250, 135, 1, 69, 230, 157, 1, 70, 174, 55, 71, 214, 169, 1, 72, 138, - 226, 1, 73, 138, 66, 74, 142, 23, 75, 250, 138, 1, 76, 150, 164, 3, 77, - 198, 201, 3, 78, 246, 107, 79, 174, 131, 1, 80, 212, 159, 1, 2, 81, 85, + 160, 171, 4, 254, 2, 65, 246, 145, 3, 66, 206, 160, 3, 67, 146, 247, 4, + 68, 250, 135, 1, 69, 178, 153, 1, 70, 174, 55, 71, 214, 169, 1, 72, 138, + 226, 1, 73, 138, 66, 74, 142, 23, 75, 174, 135, 1, 76, 150, 164, 3, 77, + 198, 201, 3, 78, 170, 103, 79, 174, 131, 1, 80, 212, 159, 1, 2, 81, 85, 226, 7, 82, 158, 180, 1, 83, 210, 197, 4, 84, 146, 236, 2, 85, 246, 104, 86, 242, 84, 87, 246, 114, 88, 130, 5, 89, 211, 50, 90, 176, 41, 218, 2, 67, 238, 1, 68, 182, 10, 69, 172, 5, 4, 72, 79, 77, 32, 244, 6, 7, 73, 82, 80, 76, 65, 78, 69, 82, 76, 190, 36, 77, 242, 1, 78, 162, 26, 80, 162, 20, 82, 186, 150, 2, 83, 162, 3, 84, 70, 85, 214, 1, 86, 252, 197, - 1, 8, 75, 84, 73, 69, 83, 69, 76, 83, 168, 203, 10, 4, 70, 71, 72, 65, - 150, 239, 9, 66, 196, 170, 5, 2, 81, 85, 171, 215, 10, 88, 18, 132, 1, 2, - 67, 79, 46, 75, 20, 5, 85, 84, 69, 32, 65, 160, 188, 17, 6, 84, 73, 86, - 65, 84, 69, 213, 161, 23, 5, 32, 67, 85, 82, 82, 4, 186, 184, 26, 85, - 221, 152, 14, 2, 82, 68, 5, 203, 215, 34, 78, 4, 142, 252, 35, 67, 199, - 254, 3, 78, 188, 1, 232, 1, 4, 76, 65, 77, 32, 242, 7, 77, 252, 207, 13, + 1, 8, 75, 84, 73, 69, 83, 69, 76, 83, 244, 194, 10, 4, 70, 71, 72, 65, + 202, 235, 9, 66, 248, 165, 5, 2, 81, 85, 171, 215, 10, 88, 18, 132, 1, 2, + 67, 79, 46, 75, 20, 5, 85, 84, 69, 32, 65, 236, 179, 17, 6, 84, 73, 86, + 65, 84, 69, 189, 153, 23, 5, 32, 67, 85, 82, 82, 4, 182, 172, 26, 85, + 149, 148, 14, 2, 82, 68, 5, 255, 198, 34, 78, 4, 194, 235, 35, 67, 199, + 254, 3, 78, 188, 1, 232, 1, 4, 76, 65, 77, 32, 242, 7, 77, 200, 199, 13, 7, 72, 69, 83, 73, 86, 69, 32, 136, 172, 4, 19, 68, 82, 69, 83, 83, 69, - 68, 32, 84, 79, 32, 84, 72, 69, 32, 83, 85, 66, 74, 174, 245, 13, 85, + 68, 32, 84, 79, 32, 84, 72, 69, 32, 83, 85, 66, 74, 150, 237, 13, 85, 233, 185, 1, 6, 73, 32, 83, 72, 65, 75, 176, 1, 218, 1, 67, 44, 4, 83, 77, 65, 76, 168, 4, 7, 71, 69, 77, 73, 78, 65, 84, 116, 8, 73, 78, 73, - 84, 73, 65, 76, 32, 38, 78, 146, 228, 2, 72, 140, 225, 23, 4, 65, 76, 73, + 84, 73, 65, 76, 32, 38, 78, 146, 228, 2, 72, 192, 208, 23, 4, 65, 76, 73, 70, 0, 5, 86, 79, 87, 69, 76, 155, 222, 12, 68, 70, 40, 5, 65, 80, 73, 84, 65, 215, 4, 79, 68, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 68, - 142, 2, 68, 38, 71, 34, 74, 2, 77, 22, 75, 46, 78, 42, 83, 130, 176, 30, + 142, 2, 68, 38, 71, 34, 74, 2, 77, 22, 75, 46, 78, 42, 83, 182, 159, 30, 81, 142, 228, 4, 76, 142, 45, 67, 158, 204, 4, 90, 240, 9, 2, 65, 76, 170, 2, 66, 2, 89, 154, 1, 87, 198, 89, 84, 150, 14, 80, 158, 20, 70, 2, 72, 2, 82, 2, 86, 186, 2, 69, 2, 73, 2, 79, 3, 85, 4, 150, 240, 5, 65, - 239, 167, 35, 72, 4, 194, 131, 41, 66, 215, 22, 65, 2, 167, 151, 40, 73, - 6, 190, 152, 40, 65, 178, 98, 80, 191, 28, 72, 6, 214, 201, 40, 85, 170, - 77, 72, 3, 89, 4, 164, 200, 2, 6, 73, 78, 78, 89, 73, 73, 179, 206, 38, - 72, 4, 40, 4, 69, 32, 67, 79, 155, 175, 40, 73, 2, 145, 141, 40, 13, 78, - 83, 79, 78, 65, 78, 84, 32, 77, 79, 68, 73, 70, 4, 134, 252, 33, 69, 247, - 198, 4, 81, 4, 186, 150, 26, 65, 143, 228, 10, 85, 4, 230, 220, 27, 69, + 163, 151, 35, 72, 4, 246, 242, 40, 66, 215, 22, 65, 2, 219, 134, 40, 73, + 6, 242, 135, 40, 65, 178, 98, 80, 191, 28, 72, 6, 138, 185, 40, 85, 170, + 77, 72, 3, 89, 4, 164, 200, 2, 6, 73, 78, 78, 89, 73, 73, 231, 189, 38, + 72, 4, 40, 4, 69, 32, 67, 79, 207, 158, 40, 73, 2, 197, 252, 39, 13, 78, + 83, 79, 78, 65, 78, 84, 32, 77, 79, 68, 73, 70, 4, 186, 235, 33, 69, 247, + 198, 4, 81, 4, 186, 138, 26, 65, 195, 223, 10, 85, 4, 154, 204, 27, 69, 245, 177, 12, 12, 73, 83, 83, 73, 79, 78, 32, 84, 73, 67, 75, 69, 116, - 80, 5, 71, 69, 65, 78, 32, 161, 183, 34, 9, 82, 73, 65, 76, 32, 84, 82, + 80, 5, 71, 69, 65, 78, 32, 213, 166, 34, 9, 82, 73, 65, 76, 32, 84, 82, 65, 77, 114, 136, 1, 3, 68, 82, 89, 0, 6, 76, 73, 81, 85, 73, 68, 60, 8, - 77, 69, 65, 83, 85, 82, 69, 32, 26, 87, 146, 190, 27, 78, 183, 144, 12, + 77, 69, 65, 83, 85, 82, 69, 32, 26, 87, 198, 173, 27, 78, 183, 144, 12, 67, 2, 153, 2, 11, 32, 77, 69, 65, 83, 85, 82, 69, 32, 70, 73, 4, 246, 1, 83, 31, 84, 14, 100, 6, 69, 73, 71, 72, 84, 32, 241, 1, 14, 79, 82, 68, 32, 83, 69, 80, 65, 82, 65, 84, 79, 82, 32, 10, 54, 70, 66, 83, 30, 84, 65, 5, 66, 65, 83, 69, 32, 4, 38, 73, 89, 5, 79, 85, 82, 84, 72, 2, 85, 3, 82, 83, 84, 2, 49, 4, 69, 67, 79, 78, 2, 21, 3, 72, 73, 82, 2, 11, 68, - 2, 25, 4, 32, 83, 85, 66, 2, 153, 245, 40, 2, 85, 78, 4, 250, 245, 39, + 2, 25, 4, 32, 83, 85, 66, 2, 205, 228, 40, 2, 85, 78, 4, 174, 229, 39, 76, 135, 75, 68, 130, 1, 140, 2, 22, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 77, 69, 68, 73, 65, 76, 32, 88, 7, 76, 69, 84, 84, 69, 82, 32, 242, 1, 83, 168, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, - 71, 78, 32, 196, 131, 33, 8, 78, 85, 77, 66, 69, 82, 32, 84, 203, 147, 6, - 68, 6, 26, 76, 179, 140, 41, 82, 4, 140, 196, 40, 7, 73, 71, 65, 84, 73, - 78, 71, 219, 74, 65, 68, 154, 1, 65, 194, 175, 37, 68, 114, 84, 198, 208, + 71, 78, 32, 248, 242, 32, 8, 78, 85, 77, 66, 69, 82, 32, 84, 203, 147, 6, + 68, 6, 26, 76, 231, 251, 40, 82, 4, 192, 179, 40, 7, 73, 71, 65, 84, 73, + 78, 71, 219, 74, 65, 68, 154, 1, 65, 246, 158, 37, 68, 114, 84, 198, 208, 1, 76, 226, 195, 1, 78, 126, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 82, 3, 83, 9, 45, 9, 76, 84, 69, 82, 78, 65, 84, 69, - 32, 6, 166, 138, 41, 66, 2, 71, 3, 84, 10, 60, 4, 73, 71, 78, 32, 241, - 190, 23, 5, 89, 77, 66, 79, 76, 8, 50, 83, 182, 129, 26, 75, 197, 150, - 10, 2, 82, 85, 4, 160, 137, 38, 4, 77, 65, 76, 76, 203, 177, 2, 69, 22, - 66, 65, 214, 179, 37, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 11, - 206, 138, 41, 65, 2, 73, 2, 77, 3, 87, 7, 11, 32, 4, 180, 235, 35, 3, 68, + 32, 6, 218, 249, 40, 66, 2, 71, 3, 84, 10, 60, 4, 73, 71, 78, 32, 241, + 178, 23, 5, 89, 77, 66, 79, 76, 8, 50, 83, 182, 245, 25, 75, 249, 145, + 10, 2, 82, 85, 4, 212, 248, 37, 4, 77, 65, 76, 76, 203, 177, 2, 69, 22, + 66, 65, 138, 163, 37, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 11, + 130, 250, 40, 65, 2, 73, 2, 77, 3, 87, 7, 11, 32, 4, 232, 218, 35, 3, 68, 69, 80, 221, 205, 4, 5, 65, 82, 82, 73, 86, 152, 2, 212, 1, 4, 65, 82, 77, 32, 48, 20, 67, 72, 69, 77, 73, 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 166, 28, 69, 60, 4, 73, 69, 78, 32, 208, 3, 2, - 76, 32, 82, 77, 109, 6, 84, 69, 82, 78, 65, 84, 4, 136, 140, 14, 3, 66, - 69, 76, 227, 137, 24, 67, 232, 1, 158, 2, 65, 246, 2, 66, 210, 1, 67, + 76, 32, 82, 77, 109, 6, 84, 69, 82, 78, 65, 84, 4, 212, 131, 14, 3, 66, + 69, 76, 203, 129, 24, 67, 232, 1, 158, 2, 65, 246, 2, 66, 210, 1, 67, 138, 3, 68, 98, 71, 38, 72, 132, 1, 4, 73, 82, 79, 78, 82, 76, 74, 77, 144, 1, 2, 78, 73, 34, 80, 176, 2, 3, 81, 85, 73, 74, 82, 146, 2, 83, - 210, 5, 84, 166, 1, 86, 200, 1, 2, 87, 65, 198, 162, 35, 85, 154, 220, 1, + 210, 5, 84, 166, 1, 86, 200, 1, 2, 87, 65, 250, 145, 35, 85, 154, 220, 1, 69, 194, 212, 1, 70, 219, 56, 79, 30, 194, 1, 76, 72, 3, 81, 85, 65, 204, - 8, 7, 78, 84, 73, 77, 79, 78, 89, 224, 157, 3, 3, 77, 65, 76, 240, 200, - 21, 3, 82, 83, 69, 204, 245, 13, 5, 85, 82, 73, 80, 73, 162, 136, 1, 83, - 183, 93, 73, 8, 224, 24, 2, 69, 77, 188, 213, 26, 4, 75, 65, 76, 73, 235, - 132, 14, 85, 10, 38, 32, 233, 136, 25, 3, 70, 79, 82, 8, 216, 7, 4, 86, - 73, 84, 65, 189, 191, 23, 4, 82, 69, 71, 73, 16, 148, 1, 7, 65, 84, 72, + 8, 7, 78, 84, 73, 77, 79, 78, 89, 224, 157, 3, 3, 77, 65, 76, 240, 188, + 21, 3, 82, 83, 69, 128, 241, 13, 5, 85, 82, 73, 80, 73, 162, 136, 1, 83, + 183, 93, 73, 8, 224, 24, 2, 69, 77, 240, 196, 26, 4, 75, 65, 76, 73, 235, + 132, 14, 85, 10, 38, 32, 233, 252, 24, 3, 70, 79, 82, 8, 216, 7, 4, 86, + 73, 84, 65, 189, 179, 23, 4, 82, 69, 71, 73, 16, 148, 1, 7, 65, 84, 72, 32, 79, 70, 32, 204, 6, 6, 73, 83, 77, 85, 84, 72, 144, 1, 4, 79, 82, 65, - 88, 164, 1, 4, 76, 65, 67, 75, 139, 198, 39, 82, 4, 218, 140, 17, 77, - 205, 227, 22, 5, 86, 65, 80, 79, 85, 28, 82, 65, 92, 6, 79, 80, 80, 69, - 82, 32, 34, 82, 201, 219, 39, 4, 73, 78, 78, 65, 6, 216, 143, 6, 2, 68, - 85, 140, 197, 33, 9, 80, 85, 84, 32, 77, 79, 82, 84, 85, 231, 28, 76, 4, - 230, 13, 65, 143, 207, 39, 79, 16, 72, 8, 79, 67, 85, 83, 32, 79, 70, 32, - 53, 6, 85, 67, 73, 66, 76, 69, 6, 228, 16, 5, 67, 79, 80, 80, 69, 171, - 198, 39, 73, 11, 11, 45, 8, 130, 254, 40, 50, 2, 51, 2, 52, 3, 53, 8, 44, - 2, 73, 83, 197, 255, 37, 3, 65, 89, 45, 6, 144, 2, 4, 83, 79, 76, 86, - 195, 255, 37, 84, 4, 170, 205, 30, 79, 247, 158, 10, 85, 8, 32, 4, 65, - 76, 70, 32, 47, 79, 4, 144, 236, 35, 2, 79, 85, 131, 211, 3, 68, 4, 200, - 137, 3, 4, 82, 83, 69, 32, 223, 185, 37, 85, 6, 56, 3, 32, 79, 82, 73, 7, - 45, 67, 79, 80, 80, 69, 82, 4, 211, 229, 26, 69, 4, 48, 3, 69, 65, 68, - 209, 233, 13, 3, 79, 68, 69, 2, 187, 141, 36, 32, 10, 120, 16, 69, 82, - 67, 85, 82, 89, 32, 83, 85, 66, 76, 73, 77, 65, 84, 69, 252, 217, 16, 4, - 65, 82, 67, 65, 191, 154, 22, 79, 7, 199, 248, 40, 45, 4, 234, 214, 39, + 88, 164, 1, 4, 76, 65, 67, 75, 191, 181, 39, 82, 4, 166, 132, 17, 77, + 181, 219, 22, 5, 86, 65, 80, 79, 85, 28, 82, 65, 92, 6, 79, 80, 80, 69, + 82, 32, 34, 82, 253, 202, 39, 4, 73, 78, 78, 65, 6, 216, 143, 6, 2, 68, + 85, 192, 180, 33, 9, 80, 85, 84, 32, 77, 79, 82, 84, 85, 231, 28, 76, 4, + 230, 13, 65, 195, 190, 39, 79, 16, 72, 8, 79, 67, 85, 83, 32, 79, 70, 32, + 53, 6, 85, 67, 73, 66, 76, 69, 6, 228, 16, 5, 67, 79, 80, 80, 69, 223, + 181, 39, 73, 11, 11, 45, 8, 182, 237, 40, 50, 2, 51, 2, 52, 3, 53, 8, 44, + 2, 73, 83, 249, 238, 37, 3, 65, 89, 45, 6, 144, 2, 4, 83, 79, 76, 86, + 247, 238, 37, 84, 4, 222, 188, 30, 79, 247, 158, 10, 85, 8, 32, 4, 65, + 76, 70, 32, 47, 79, 4, 196, 219, 35, 2, 79, 85, 131, 211, 3, 68, 4, 200, + 137, 3, 4, 82, 83, 69, 32, 147, 169, 37, 85, 6, 56, 3, 32, 79, 82, 73, 7, + 45, 67, 79, 80, 80, 69, 82, 4, 135, 213, 26, 69, 4, 48, 3, 69, 65, 68, + 157, 225, 13, 3, 79, 68, 69, 2, 239, 252, 35, 32, 10, 120, 16, 69, 82, + 67, 85, 82, 89, 32, 83, 85, 66, 76, 73, 77, 65, 84, 69, 200, 209, 16, 4, + 65, 82, 67, 65, 167, 146, 22, 79, 7, 251, 231, 40, 45, 4, 158, 198, 39, 84, 135, 120, 71, 14, 108, 11, 72, 73, 76, 79, 83, 79, 80, 72, 69, 82, - 83, 34, 79, 98, 85, 153, 177, 30, 6, 82, 69, 67, 73, 80, 73, 2, 209, 9, - 4, 32, 83, 85, 76, 6, 52, 4, 87, 68, 69, 82, 133, 189, 36, 3, 84, 32, 65, - 5, 173, 197, 39, 5, 69, 68, 32, 66, 82, 4, 252, 182, 34, 4, 84, 82, 69, - 70, 209, 174, 6, 3, 82, 73, 70, 4, 164, 229, 35, 5, 78, 84, 69, 83, 83, - 181, 247, 3, 4, 67, 75, 32, 76, 24, 58, 69, 149, 224, 26, 8, 79, 67, 75, + 83, 34, 79, 98, 85, 205, 160, 30, 6, 82, 69, 67, 73, 80, 73, 2, 209, 9, + 4, 32, 83, 85, 76, 6, 52, 4, 87, 68, 69, 82, 185, 172, 36, 3, 84, 32, 65, + 5, 225, 180, 39, 5, 69, 68, 32, 66, 82, 4, 176, 166, 34, 4, 84, 82, 69, + 70, 209, 174, 6, 3, 82, 73, 70, 4, 216, 212, 35, 5, 78, 84, 69, 83, 83, + 181, 247, 3, 4, 67, 75, 32, 76, 24, 58, 69, 201, 207, 26, 8, 79, 67, 75, 32, 83, 65, 76, 84, 20, 68, 5, 71, 85, 76, 85, 83, 164, 7, 3, 65, 76, 71, - 163, 171, 26, 84, 15, 32, 4, 32, 79, 70, 32, 71, 45, 6, 164, 223, 26, 8, - 65, 78, 84, 73, 77, 79, 78, 89, 143, 238, 12, 73, 6, 162, 244, 40, 50, 2, - 51, 3, 52, 34, 164, 1, 2, 65, 76, 194, 1, 84, 142, 1, 85, 180, 226, 17, - 2, 80, 73, 156, 186, 12, 2, 73, 76, 182, 192, 9, 79, 169, 22, 11, 67, 69, - 80, 84, 69, 82, 32, 79, 70, 32, 74, 8, 58, 84, 141, 200, 39, 8, 45, 65, + 215, 154, 26, 84, 15, 32, 4, 32, 79, 70, 32, 71, 45, 6, 216, 206, 26, 8, + 65, 78, 84, 73, 77, 79, 78, 89, 143, 238, 12, 73, 6, 214, 227, 40, 50, 2, + 51, 3, 52, 34, 164, 1, 2, 65, 76, 194, 1, 84, 142, 1, 85, 128, 218, 17, + 2, 80, 73, 132, 178, 12, 2, 73, 76, 182, 192, 9, 79, 169, 22, 11, 67, 69, + 80, 84, 69, 82, 32, 79, 70, 32, 74, 8, 58, 84, 193, 183, 39, 8, 45, 65, 77, 77, 79, 78, 73, 65, 7, 25, 4, 32, 79, 70, 32, 4, 52, 8, 67, 79, 80, - 80, 69, 82, 32, 65, 231, 5, 65, 2, 209, 171, 30, 7, 78, 84, 73, 77, 79, - 78, 73, 6, 236, 3, 8, 65, 82, 82, 69, 68, 32, 84, 82, 233, 215, 26, 19, + 80, 69, 82, 32, 65, 231, 5, 65, 2, 133, 155, 30, 7, 78, 84, 73, 77, 79, + 78, 73, 6, 236, 3, 8, 65, 82, 82, 69, 68, 32, 84, 82, 157, 199, 26, 19, 82, 65, 84, 85, 77, 32, 83, 85, 80, 69, 82, 32, 83, 84, 82, 65, 84, 85, 77, 12, 44, 6, 66, 76, 73, 77, 65, 84, 155, 1, 76, 10, 44, 5, 69, 32, 79, - 70, 32, 195, 159, 40, 73, 8, 68, 8, 83, 65, 76, 84, 32, 79, 70, 32, 130, - 3, 65, 231, 214, 27, 67, 4, 254, 2, 65, 231, 214, 27, 67, 2, 239, 245, - 39, 70, 12, 68, 3, 65, 82, 84, 32, 2, 73, 78, 34, 82, 201, 253, 38, 2, - 85, 84, 4, 11, 65, 4, 155, 216, 26, 82, 4, 254, 206, 35, 67, 187, 49, 32, - 2, 253, 169, 40, 2, 73, 68, 14, 50, 73, 209, 197, 38, 6, 69, 82, 68, 73, - 71, 82, 12, 64, 5, 78, 69, 71, 65, 82, 213, 214, 26, 5, 84, 82, 73, 79, - 76, 9, 44, 5, 32, 79, 70, 32, 65, 243, 234, 40, 45, 2, 141, 186, 24, 3, - 78, 84, 73, 4, 214, 173, 40, 84, 239, 61, 88, 6, 38, 77, 186, 213, 39, - 70, 155, 121, 82, 2, 223, 192, 39, 66, 22, 104, 7, 77, 79, 78, 83, 84, - 69, 82, 138, 1, 83, 205, 129, 36, 10, 67, 82, 65, 66, 32, 83, 84, 69, 80, + 70, 32, 247, 142, 40, 73, 8, 68, 8, 83, 65, 76, 84, 32, 79, 70, 32, 130, + 3, 65, 155, 198, 27, 67, 4, 254, 2, 65, 155, 198, 27, 67, 2, 163, 229, + 39, 70, 12, 68, 3, 65, 82, 84, 32, 2, 73, 78, 34, 82, 253, 236, 38, 2, + 85, 84, 4, 11, 65, 4, 207, 199, 26, 82, 4, 178, 190, 35, 67, 187, 49, 32, + 2, 177, 153, 40, 2, 73, 68, 14, 50, 73, 133, 181, 38, 6, 69, 82, 68, 73, + 71, 82, 12, 64, 5, 78, 69, 71, 65, 82, 137, 198, 26, 5, 84, 82, 73, 79, + 76, 9, 44, 5, 32, 79, 70, 32, 65, 167, 218, 40, 45, 2, 141, 174, 24, 3, + 78, 84, 73, 4, 138, 157, 40, 84, 239, 61, 88, 6, 38, 77, 238, 196, 39, + 70, 155, 121, 82, 2, 147, 176, 39, 66, 22, 104, 7, 77, 79, 78, 83, 84, + 69, 82, 138, 1, 83, 129, 241, 35, 10, 67, 82, 65, 66, 32, 83, 84, 69, 80, 80, 11, 11, 32, 8, 88, 6, 67, 76, 79, 83, 69, 68, 0, 4, 79, 80, 69, 78, - 173, 227, 36, 4, 83, 84, 69, 80, 2, 145, 138, 38, 3, 32, 74, 65, 8, 60, - 6, 80, 73, 68, 69, 82, 32, 57, 5, 81, 85, 73, 68, 32, 4, 196, 195, 29, 5, + 225, 210, 36, 4, 83, 84, 69, 80, 2, 197, 249, 37, 3, 32, 74, 65, 8, 60, + 6, 80, 73, 68, 69, 82, 32, 57, 5, 81, 85, 73, 68, 32, 4, 248, 178, 29, 5, 67, 82, 79, 85, 67, 175, 250, 1, 83, 4, 56, 6, 67, 76, 79, 83, 69, 68, 1, - 4, 79, 80, 69, 78, 2, 197, 249, 27, 5, 32, 84, 69, 78, 84, 4, 210, 133, - 34, 69, 253, 184, 4, 11, 65, 82, 79, 85, 78, 68, 45, 80, 82, 79, 70, 9, - 49, 10, 79, 83, 84, 32, 69, 81, 85, 65, 76, 32, 6, 32, 2, 84, 79, 247, - 198, 32, 79, 5, 219, 255, 6, 32, 4, 136, 247, 10, 3, 73, 86, 69, 221, - 195, 28, 5, 69, 32, 79, 78, 69, 12, 162, 1, 80, 128, 208, 29, 6, 69, 82, + 4, 79, 80, 69, 78, 2, 249, 232, 27, 5, 32, 84, 69, 78, 84, 4, 134, 245, + 33, 69, 253, 184, 4, 11, 65, 82, 79, 85, 78, 68, 45, 80, 82, 79, 70, 9, + 49, 10, 79, 83, 84, 32, 69, 81, 85, 65, 76, 32, 6, 32, 2, 84, 79, 171, + 182, 32, 79, 5, 219, 255, 6, 32, 4, 136, 243, 10, 3, 73, 86, 69, 145, + 183, 28, 5, 69, 32, 79, 78, 69, 12, 162, 1, 80, 180, 191, 29, 6, 69, 82, 73, 67, 65, 78, 204, 131, 6, 3, 66, 85, 76, 245, 254, 3, 16, 65, 76, 71, - 65, 77, 65, 84, 73, 79, 78, 32, 79, 82, 32, 67, 79, 6, 26, 72, 251, 144, - 37, 69, 4, 204, 254, 24, 3, 73, 84, 82, 203, 160, 15, 79, 194, 9, 92, 3, - 65, 84, 79, 182, 20, 71, 174, 1, 84, 190, 161, 25, 67, 190, 155, 12, 68, + 65, 77, 65, 84, 73, 79, 78, 32, 79, 82, 32, 67, 79, 6, 26, 72, 175, 128, + 37, 69, 4, 204, 242, 24, 3, 73, 84, 82, 255, 155, 15, 79, 194, 9, 92, 3, + 65, 84, 79, 182, 20, 71, 174, 1, 84, 190, 149, 25, 67, 242, 150, 12, 68, 223, 142, 3, 75, 144, 9, 112, 17, 76, 73, 65, 78, 32, 72, 73, 69, 82, 79, - 71, 76, 89, 80, 72, 32, 65, 145, 218, 39, 5, 77, 73, 67, 65, 76, 142, 9, + 71, 76, 89, 80, 72, 32, 65, 197, 201, 39, 5, 77, 73, 67, 65, 76, 142, 9, 70, 48, 138, 4, 49, 198, 2, 50, 162, 3, 51, 174, 5, 52, 163, 3, 53, 222, - 1, 106, 50, 102, 52, 110, 54, 102, 57, 182, 7, 51, 254, 246, 11, 49, 142, - 159, 23, 48, 130, 2, 53, 2, 55, 3, 56, 22, 158, 206, 36, 54, 242, 145, 4, - 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 28, 202, 191, - 12, 54, 242, 141, 24, 49, 2, 53, 242, 145, 4, 48, 2, 50, 2, 51, 2, 52, 2, - 55, 2, 56, 3, 57, 26, 162, 166, 12, 54, 158, 184, 28, 48, 2, 49, 2, 50, - 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 24, 234, 203, 36, 55, 2, 56, + 1, 106, 50, 102, 52, 110, 54, 102, 57, 182, 7, 51, 222, 242, 11, 49, 226, + 146, 23, 48, 130, 2, 53, 2, 55, 3, 56, 22, 210, 189, 36, 54, 242, 145, 4, + 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 28, 170, 187, + 12, 54, 198, 129, 24, 49, 2, 53, 242, 145, 4, 48, 2, 50, 2, 51, 2, 52, 2, + 55, 2, 56, 3, 57, 26, 130, 162, 12, 54, 242, 171, 28, 48, 2, 49, 2, 50, + 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 24, 158, 187, 36, 55, 2, 56, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3, 57, 232, 1, - 98, 48, 114, 49, 206, 170, 12, 50, 2, 51, 182, 242, 22, 52, 2, 53, 2, 54, - 2, 55, 2, 56, 3, 57, 42, 242, 163, 12, 52, 2, 55, 190, 24, 53, 242, 141, - 24, 48, 2, 49, 2, 50, 242, 145, 4, 51, 2, 54, 2, 56, 3, 57, 26, 190, 187, - 12, 48, 242, 141, 24, 53, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, - 55, 2, 56, 3, 57, 222, 1, 102, 48, 110, 49, 102, 57, 210, 1, 56, 250, - 152, 12, 50, 2, 54, 146, 255, 22, 51, 2, 52, 2, 53, 3, 55, 28, 230, 185, - 12, 50, 242, 141, 24, 55, 2, 57, 242, 145, 4, 48, 2, 49, 2, 51, 2, 52, 2, - 53, 2, 54, 3, 56, 24, 234, 198, 36, 53, 2, 54, 242, 145, 4, 48, 2, 49, 2, - 50, 2, 51, 2, 52, 2, 55, 2, 56, 3, 57, 24, 134, 198, 36, 52, 2, 57, 242, + 98, 48, 114, 49, 174, 166, 12, 50, 2, 51, 138, 230, 22, 52, 2, 53, 2, 54, + 2, 55, 2, 56, 3, 57, 42, 210, 159, 12, 52, 2, 55, 190, 24, 53, 198, 129, + 24, 48, 2, 49, 2, 50, 242, 145, 4, 51, 2, 54, 2, 56, 3, 57, 26, 158, 183, + 12, 48, 198, 129, 24, 53, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, + 55, 2, 56, 3, 57, 222, 1, 102, 48, 110, 49, 102, 57, 210, 1, 56, 218, + 148, 12, 50, 2, 54, 230, 242, 22, 51, 2, 52, 2, 53, 3, 55, 28, 198, 181, + 12, 50, 198, 129, 24, 55, 2, 57, 242, 145, 4, 48, 2, 49, 2, 51, 2, 52, 2, + 53, 2, 54, 3, 56, 24, 158, 182, 36, 53, 2, 54, 242, 145, 4, 48, 2, 49, 2, + 50, 2, 51, 2, 52, 2, 55, 2, 56, 3, 57, 24, 186, 181, 36, 52, 2, 57, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 53, 2, 54, 2, 55, 3, 56, 228, 1, 102, - 48, 2, 50, 2, 53, 102, 51, 110, 54, 102, 56, 162, 1, 57, 174, 129, 12, - 55, 138, 147, 23, 49, 3, 52, 22, 182, 196, 36, 57, 242, 145, 4, 48, 2, - 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 30, 166, 157, 12, - 54, 226, 204, 8, 50, 190, 235, 19, 48, 2, 49, 2, 51, 2, 52, 2, 53, 2, 55, - 2, 56, 3, 57, 24, 230, 194, 36, 52, 2, 56, 242, 145, 4, 48, 2, 49, 2, 50, - 2, 51, 2, 53, 2, 54, 2, 55, 3, 57, 26, 98, 51, 162, 193, 36, 49, 2, 54, - 242, 145, 4, 48, 2, 50, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 4, 196, 154, - 21, 6, 32, 82, 65, 32, 79, 82, 203, 184, 19, 65, 20, 128, 168, 40, 3, 51, + 48, 2, 50, 2, 53, 102, 51, 110, 54, 102, 56, 162, 1, 57, 142, 253, 11, + 55, 222, 134, 23, 49, 3, 52, 22, 234, 179, 36, 57, 242, 145, 4, 48, 2, + 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 30, 134, 153, 12, + 54, 130, 197, 8, 50, 242, 230, 19, 48, 2, 49, 2, 51, 2, 52, 2, 53, 2, 55, + 2, 56, 3, 57, 24, 154, 178, 36, 52, 2, 56, 242, 145, 4, 48, 2, 49, 2, 50, + 2, 51, 2, 53, 2, 54, 2, 55, 3, 57, 26, 98, 51, 214, 176, 36, 49, 2, 54, + 242, 145, 4, 48, 2, 50, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 4, 196, 142, + 21, 6, 32, 82, 65, 32, 79, 82, 255, 179, 19, 65, 20, 180, 151, 40, 3, 51, 32, 69, 210, 42, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, - 57, 202, 1, 102, 49, 210, 1, 53, 178, 241, 20, 57, 222, 159, 14, 48, 2, - 50, 2, 51, 2, 52, 2, 54, 2, 55, 3, 56, 22, 90, 48, 162, 208, 40, 49, 2, + 57, 202, 1, 102, 49, 210, 1, 53, 178, 229, 20, 57, 146, 155, 14, 48, 2, + 50, 2, 51, 2, 52, 2, 54, 2, 55, 3, 56, 22, 90, 48, 214, 191, 40, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 4, 60, 6, 32, 66, - 69, 71, 73, 78, 1, 5, 65, 32, 69, 78, 68, 2, 241, 201, 16, 8, 32, 76, 79, - 71, 79, 71, 82, 65, 24, 186, 189, 36, 48, 2, 55, 242, 145, 4, 49, 2, 50, - 2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 60, 226, 167, 33, 51, 198, 230, - 1, 48, 130, 2, 49, 3, 50, 14, 96, 2, 76, 69, 182, 176, 2, 85, 128, 200, + 69, 71, 73, 78, 1, 5, 65, 32, 69, 78, 68, 2, 189, 193, 16, 8, 32, 76, 79, + 71, 79, 71, 82, 65, 24, 238, 172, 36, 48, 2, 55, 242, 145, 4, 49, 2, 50, + 2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 60, 150, 151, 33, 51, 198, 230, + 1, 48, 130, 2, 49, 3, 50, 14, 96, 2, 76, 69, 182, 176, 2, 85, 180, 183, 32, 2, 83, 84, 130, 239, 3, 69, 217, 168, 1, 2, 82, 89, 7, 33, 6, 32, 87, - 73, 84, 72, 32, 4, 254, 154, 32, 83, 135, 195, 4, 85, 31, 76, 4, 69, 78, - 78, 65, 41, 11, 73, 67, 76, 79, 67, 75, 87, 73, 83, 69, 32, 5, 253, 159, - 37, 5, 32, 87, 73, 84, 72, 24, 90, 84, 162, 143, 7, 67, 58, 68, 122, 71, - 138, 4, 79, 233, 163, 28, 5, 73, 78, 84, 69, 71, 12, 84, 15, 82, 73, 65, - 78, 71, 76, 69, 45, 72, 69, 65, 68, 69, 68, 32, 223, 147, 7, 79, 10, 112, + 73, 84, 72, 32, 4, 178, 138, 32, 83, 135, 195, 4, 85, 31, 76, 4, 69, 78, + 78, 65, 41, 11, 73, 67, 76, 79, 67, 75, 87, 73, 83, 69, 32, 5, 177, 143, + 37, 5, 32, 87, 73, 84, 72, 24, 90, 84, 162, 139, 7, 67, 58, 68, 122, 71, + 138, 4, 79, 157, 151, 28, 5, 73, 78, 84, 69, 71, 12, 84, 15, 82, 73, 65, + 78, 71, 76, 69, 45, 72, 69, 65, 68, 69, 68, 32, 223, 143, 7, 79, 10, 112, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 12, 6, 66, 79, 84, 84, 79, 77, 0, 3, - 84, 79, 80, 131, 147, 7, 79, 2, 11, 84, 2, 209, 235, 37, 7, 32, 85, 45, + 84, 79, 80, 131, 143, 7, 79, 2, 11, 84, 2, 133, 219, 37, 7, 32, 85, 45, 83, 72, 65, 80, 160, 1, 128, 1, 20, 76, 32, 70, 85, 78, 67, 84, 73, 79, - 78, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 206, 15, 79, 38, 80, 147, - 184, 40, 67, 140, 1, 222, 2, 67, 186, 1, 68, 190, 2, 73, 44, 4, 65, 76, + 78, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 206, 15, 79, 38, 80, 199, + 167, 40, 67, 140, 1, 222, 2, 67, 186, 1, 68, 190, 2, 73, 44, 4, 65, 76, 80, 72, 0, 4, 79, 77, 69, 71, 32, 4, 74, 79, 84, 32, 36, 4, 76, 69, 70, 84, 68, 2, 81, 85, 218, 3, 82, 54, 83, 92, 4, 69, 80, 83, 73, 32, 6, 66, - 65, 67, 75, 83, 76, 76, 2, 85, 80, 172, 170, 16, 12, 71, 82, 69, 65, 84, - 69, 82, 45, 84, 72, 65, 78, 0, 5, 84, 73, 76, 68, 69, 163, 168, 20, 90, - 14, 64, 6, 73, 82, 67, 76, 69, 32, 133, 161, 39, 4, 79, 77, 77, 65, 12, - 80, 2, 83, 84, 166, 242, 19, 68, 226, 137, 6, 66, 254, 216, 10, 85, 207, - 158, 3, 74, 4, 198, 157, 39, 73, 227, 109, 65, 22, 76, 2, 69, 76, 120, 3, - 79, 87, 78, 201, 162, 32, 6, 73, 65, 77, 79, 78, 68, 10, 30, 32, 53, 3, - 84, 65, 32, 6, 146, 241, 19, 68, 142, 234, 16, 84, 131, 191, 1, 83, 4, - 186, 211, 36, 85, 179, 198, 1, 83, 10, 22, 32, 167, 9, 87, 8, 52, 5, 84, - 65, 67, 75, 32, 182, 1, 83, 227, 6, 67, 4, 198, 210, 36, 85, 207, 158, 3, - 74, 6, 40, 2, 79, 84, 185, 176, 32, 2, 45, 66, 4, 11, 65, 5, 167, 161, - 32, 32, 4, 250, 238, 19, 68, 223, 226, 16, 85, 4, 28, 2, 32, 83, 187, 7, - 87, 2, 181, 151, 38, 4, 72, 79, 69, 32, 46, 44, 2, 65, 68, 133, 3, 4, 79, + 65, 67, 75, 83, 76, 76, 2, 85, 80, 248, 161, 16, 12, 71, 82, 69, 65, 84, + 69, 82, 45, 84, 72, 65, 78, 0, 5, 84, 73, 76, 68, 69, 139, 160, 20, 90, + 14, 64, 6, 73, 82, 67, 76, 69, 32, 185, 144, 39, 4, 79, 77, 77, 65, 12, + 80, 2, 83, 84, 166, 230, 19, 68, 150, 133, 6, 66, 254, 216, 10, 85, 207, + 158, 3, 74, 4, 250, 140, 39, 73, 227, 109, 65, 22, 76, 2, 69, 76, 120, 3, + 79, 87, 78, 253, 145, 32, 6, 73, 65, 77, 79, 78, 68, 10, 30, 32, 53, 3, + 84, 65, 32, 6, 146, 229, 19, 68, 194, 229, 16, 84, 131, 191, 1, 83, 4, + 238, 194, 36, 85, 179, 198, 1, 83, 10, 22, 32, 167, 9, 87, 8, 52, 5, 84, + 65, 67, 75, 32, 182, 1, 83, 227, 6, 67, 4, 250, 193, 36, 85, 207, 158, 3, + 74, 6, 40, 2, 79, 84, 237, 159, 32, 2, 45, 66, 4, 11, 65, 5, 219, 144, + 32, 32, 4, 250, 226, 19, 68, 147, 222, 16, 85, 4, 28, 2, 32, 83, 187, 7, + 87, 2, 233, 134, 38, 4, 72, 79, 69, 32, 46, 44, 2, 65, 68, 133, 3, 4, 79, 84, 69, 32, 43, 11, 32, 40, 178, 1, 67, 38, 68, 92, 2, 85, 80, 36, 2, 76, - 69, 210, 208, 6, 81, 228, 229, 13, 3, 78, 79, 84, 22, 69, 154, 190, 5, - 66, 174, 163, 7, 83, 226, 142, 5, 71, 250, 115, 82, 199, 81, 74, 4, 246, - 233, 38, 73, 151, 132, 1, 79, 12, 54, 73, 36, 3, 79, 87, 78, 225, 128, - 37, 2, 69, 76, 4, 202, 139, 32, 86, 255, 242, 6, 65, 4, 230, 138, 4, 32, - 211, 144, 35, 87, 4, 166, 167, 38, 83, 215, 115, 70, 4, 154, 181, 12, 81, - 163, 152, 24, 85, 4, 184, 3, 5, 73, 71, 72, 84, 87, 239, 153, 40, 72, 10, - 88, 5, 69, 77, 73, 67, 79, 34, 76, 34, 84, 169, 179, 12, 7, 81, 85, 73, - 83, 72, 32, 81, 2, 181, 155, 32, 3, 76, 79, 78, 2, 149, 151, 39, 3, 65, - 83, 72, 4, 212, 170, 16, 2, 65, 82, 175, 173, 7, 73, 12, 22, 32, 171, 1, - 87, 10, 78, 67, 36, 5, 84, 65, 67, 75, 32, 221, 232, 39, 6, 83, 72, 79, - 69, 32, 74, 2, 129, 215, 23, 4, 65, 82, 69, 84, 6, 178, 231, 19, 68, 234, - 159, 17, 79, 195, 225, 2, 74, 2, 221, 151, 37, 6, 65, 82, 68, 83, 32, 86, - 4, 182, 145, 34, 83, 135, 215, 5, 76, 14, 26, 76, 93, 2, 82, 79, 4, 164, - 201, 26, 14, 73, 67, 65, 84, 73, 79, 78, 32, 80, 82, 79, 71, 82, 65, 139, - 217, 12, 69, 10, 112, 9, 88, 73, 77, 65, 84, 69, 76, 89, 32, 237, 153, + 69, 210, 208, 6, 81, 228, 217, 13, 3, 78, 79, 84, 22, 69, 206, 185, 5, + 66, 174, 163, 7, 83, 226, 142, 5, 71, 250, 115, 82, 199, 81, 74, 4, 170, + 217, 38, 73, 151, 132, 1, 79, 12, 54, 73, 36, 3, 79, 87, 78, 149, 240, + 36, 2, 69, 76, 4, 254, 250, 31, 86, 255, 242, 6, 65, 4, 230, 138, 4, 32, + 135, 128, 35, 87, 4, 218, 150, 38, 83, 215, 115, 70, 4, 230, 172, 12, 81, + 139, 144, 24, 85, 4, 184, 3, 5, 73, 71, 72, 84, 87, 163, 137, 40, 72, 10, + 88, 5, 69, 77, 73, 67, 79, 34, 76, 34, 84, 245, 170, 12, 7, 81, 85, 73, + 83, 72, 32, 81, 2, 233, 138, 32, 3, 76, 79, 78, 2, 201, 134, 39, 3, 65, + 83, 72, 4, 160, 162, 16, 2, 65, 82, 227, 169, 7, 73, 12, 22, 32, 171, 1, + 87, 10, 78, 67, 36, 5, 84, 65, 67, 75, 32, 145, 216, 39, 6, 83, 72, 79, + 69, 32, 74, 2, 129, 203, 23, 4, 65, 82, 69, 84, 6, 178, 219, 19, 68, 158, + 155, 17, 79, 195, 225, 2, 74, 2, 145, 135, 37, 6, 65, 82, 68, 83, 32, 86, + 4, 234, 128, 34, 83, 135, 215, 5, 76, 14, 26, 76, 93, 2, 82, 79, 4, 216, + 184, 26, 14, 73, 67, 65, 84, 73, 79, 78, 32, 80, 82, 79, 71, 82, 65, 139, + 217, 12, 69, 10, 112, 9, 88, 73, 77, 65, 84, 69, 76, 89, 32, 161, 137, 40, 13, 65, 67, 72, 69, 83, 32, 84, 72, 69, 32, 76, 73, 77, 8, 76, 6, 69, - 81, 85, 65, 76, 32, 137, 156, 25, 7, 66, 85, 84, 32, 78, 79, 84, 6, 32, - 2, 84, 79, 183, 150, 32, 79, 5, 237, 201, 26, 13, 32, 79, 82, 32, 84, 72, + 81, 85, 65, 76, 32, 137, 144, 25, 7, 66, 85, 84, 32, 78, 79, 84, 6, 32, + 2, 84, 79, 235, 133, 32, 79, 5, 161, 185, 26, 13, 32, 79, 82, 32, 84, 72, 69, 32, 73, 77, 65, 71, 69, 192, 23, 148, 1, 4, 65, 66, 73, 67, 240, 131, 2, 7, 77, 69, 78, 73, 65, 78, 32, 224, 12, 3, 82, 79, 87, 228, 3, 2, 84, - 73, 150, 137, 37, 73, 135, 150, 1, 67, 238, 21, 54, 32, 173, 130, 2, 7, + 73, 202, 248, 36, 73, 135, 150, 1, 67, 238, 21, 54, 32, 173, 130, 2, 7, 45, 73, 78, 68, 73, 67, 32, 210, 21, 150, 3, 66, 134, 1, 67, 238, 1, 68, 138, 3, 69, 186, 1, 70, 212, 1, 2, 72, 65, 104, 5, 75, 65, 83, 82, 65, 86, 76, 212, 180, 1, 2, 77, 65, 204, 18, 7, 78, 85, 77, 66, 69, 82, 32, 36, 5, 79, 80, 69, 78, 32, 82, 80, 238, 1, 82, 208, 2, 6, 73, 78, 86, 69, - 82, 84, 98, 83, 146, 33, 84, 202, 4, 86, 228, 206, 17, 9, 87, 65, 86, 89, - 32, 72, 65, 77, 90, 230, 142, 18, 81, 197, 198, 1, 6, 90, 87, 65, 82, 65, - 75, 4, 216, 214, 1, 7, 65, 83, 69, 76, 73, 78, 69, 233, 205, 37, 17, 73, + 82, 84, 98, 83, 146, 33, 84, 202, 4, 86, 228, 194, 17, 9, 87, 65, 86, 89, + 32, 72, 65, 77, 90, 154, 138, 18, 81, 197, 198, 1, 6, 90, 87, 65, 82, 65, + 75, 4, 216, 214, 1, 7, 65, 83, 69, 76, 73, 78, 69, 157, 189, 37, 17, 73, 66, 76, 73, 67, 65, 76, 32, 69, 78, 68, 32, 79, 70, 32, 86, 69, 16, 44, - 2, 79, 77, 81, 5, 85, 82, 76, 89, 32, 4, 192, 193, 19, 11, 66, 73, 78, - 73, 78, 71, 32, 65, 76, 69, 70, 199, 234, 20, 77, 12, 72, 4, 68, 65, 77, - 77, 0, 4, 70, 65, 84, 72, 1, 4, 75, 65, 83, 82, 4, 11, 65, 5, 251, 224, - 38, 84, 26, 158, 1, 65, 108, 5, 79, 85, 66, 76, 69, 216, 246, 23, 5, 69, - 67, 73, 77, 65, 149, 198, 9, 16, 73, 83, 80, 85, 84, 69, 68, 32, 69, 78, - 68, 32, 79, 70, 32, 65, 14, 36, 3, 77, 77, 65, 231, 223, 33, 84, 13, 22, - 32, 219, 5, 84, 6, 242, 238, 1, 73, 54, 77, 251, 149, 37, 87, 8, 22, 32, + 2, 79, 77, 81, 5, 85, 82, 76, 89, 32, 4, 192, 181, 19, 11, 66, 73, 78, + 73, 78, 71, 32, 65, 76, 69, 70, 251, 229, 20, 77, 12, 72, 4, 68, 65, 77, + 77, 0, 4, 70, 65, 84, 72, 1, 4, 75, 65, 83, 82, 4, 11, 65, 5, 175, 208, + 38, 84, 26, 158, 1, 65, 108, 5, 79, 85, 66, 76, 69, 216, 234, 23, 5, 69, + 67, 73, 77, 65, 201, 193, 9, 16, 73, 83, 80, 85, 84, 69, 68, 32, 69, 78, + 68, 32, 79, 70, 32, 65, 14, 36, 3, 77, 77, 65, 155, 207, 33, 84, 13, 22, + 32, 219, 5, 84, 6, 242, 238, 1, 73, 54, 77, 175, 133, 37, 87, 8, 22, 32, 191, 4, 68, 6, 184, 210, 1, 17, 82, 73, 71, 72, 84, 32, 65, 82, 82, 79, 87, 72, 69, 65, 68, 32, 65, 191, 30, 86, 8, 88, 12, 77, 80, 84, 89, 32, - 67, 69, 78, 84, 82, 69, 32, 57, 6, 78, 68, 32, 79, 70, 32, 4, 140, 212, - 37, 4, 72, 73, 71, 72, 1, 3, 76, 79, 87, 4, 210, 139, 30, 84, 139, 175, + 67, 69, 78, 84, 82, 69, 32, 57, 6, 78, 68, 32, 79, 70, 32, 4, 192, 195, + 37, 4, 72, 73, 71, 72, 1, 3, 76, 79, 87, 4, 134, 251, 29, 84, 139, 175, 3, 65, 22, 84, 4, 65, 84, 72, 65, 166, 222, 1, 79, 148, 232, 4, 3, 73, - 86, 69, 143, 140, 31, 85, 17, 22, 32, 139, 2, 84, 10, 52, 5, 87, 73, 84, - 72, 32, 238, 234, 1, 73, 55, 77, 6, 170, 212, 38, 84, 166, 82, 68, 203, + 86, 69, 195, 251, 30, 85, 17, 22, 32, 139, 2, 84, 10, 52, 5, 87, 73, 84, + 72, 32, 238, 234, 1, 73, 55, 77, 6, 222, 195, 38, 84, 166, 82, 68, 203, 47, 82, 6, 72, 13, 76, 70, 32, 77, 65, 68, 68, 65, 32, 79, 86, 69, 82, - 235, 16, 77, 2, 221, 238, 17, 2, 32, 77, 13, 18, 32, 43, 84, 6, 166, 72, + 235, 16, 77, 2, 221, 226, 17, 2, 32, 77, 13, 18, 32, 43, 84, 6, 166, 72, 87, 158, 161, 1, 73, 55, 77, 4, 253, 82, 2, 65, 78, 174, 16, 84, 5, 65, 82, 71, 69, 32, 146, 1, 69, 133, 91, 8, 73, 71, 65, 84, 85, 82, 69, 32, - 8, 64, 10, 82, 79, 85, 78, 68, 32, 68, 79, 84, 32, 179, 143, 11, 67, 6, - 148, 143, 11, 6, 73, 78, 83, 73, 68, 69, 146, 243, 26, 66, 131, 165, 1, - 65, 136, 8, 80, 5, 84, 84, 69, 82, 32, 137, 174, 7, 9, 70, 84, 32, 65, + 8, 64, 10, 82, 79, 85, 78, 68, 32, 68, 79, 84, 32, 179, 139, 11, 67, 6, + 148, 139, 11, 6, 73, 78, 83, 73, 68, 69, 198, 230, 26, 66, 131, 165, 1, + 65, 136, 8, 80, 5, 84, 84, 69, 82, 32, 137, 170, 7, 9, 70, 84, 32, 65, 82, 82, 79, 87, 72, 132, 8, 210, 2, 65, 240, 10, 2, 66, 69, 150, 4, 68, 186, 5, 70, 246, 4, 71, 226, 2, 72, 156, 9, 2, 74, 69, 158, 1, 75, 138, 5, 76, 226, 2, 77, 154, 1, 78, 160, 3, 3, 80, 69, 72, 176, 1, 3, 81, 65, 70, 214, 1, 82, 234, 3, 83, 162, 9, 84, 214, 8, 85, 148, 2, 2, 86, 69, 28, 3, 87, 65, 87, 202, 1, 89, 246, 3, 79, 140, 3, 2, 90, 65, 31, 69, 112, 92, 7, 70, 82, 73, 67, 65, 78, 32, 92, 2, 73, 78, 144, 2, 3, 76, 69, - 70, 207, 156, 40, 69, 8, 52, 3, 81, 65, 70, 166, 169, 33, 70, 183, 203, + 70, 131, 140, 40, 69, 8, 52, 3, 81, 65, 70, 218, 152, 33, 70, 183, 203, 3, 78, 5, 153, 64, 5, 32, 87, 73, 84, 72, 21, 11, 32, 18, 72, 6, 87, 73, 84, 72, 32, 84, 242, 172, 1, 70, 202, 43, 73, 211, 9, 77, 10, 60, 10, 72, - 82, 69, 69, 32, 68, 79, 84, 83, 32, 187, 54, 87, 6, 220, 154, 15, 17, 80, - 79, 73, 78, 84, 73, 78, 71, 32, 68, 79, 87, 78, 87, 65, 82, 68, 250, 224, + 82, 69, 69, 32, 68, 79, 84, 83, 32, 187, 54, 87, 6, 168, 146, 15, 17, 80, + 79, 73, 78, 84, 73, 78, 71, 32, 68, 79, 87, 78, 87, 65, 82, 68, 226, 216, 22, 66, 131, 165, 1, 65, 83, 11, 32, 80, 70, 87, 228, 44, 6, 77, 65, 75, 83, 85, 82, 130, 126, 70, 231, 52, 73, 70, 48, 4, 73, 84, 72, 32, 177, 44, 3, 65, 83, 76, 64, 192, 2, 9, 65, 84, 84, 65, 67, 72, 69, 68, 32, 220, 1, 19, 82, 73, 71, 72, 84, 32, 77, 73, 68, 68, 76, 69, 32, 83, 84, 82, 79, 75, 69, 188, 1, 6, 72, 65, 77, 90, 65, 32, 44, 8, 87, 65, 86, 89, - 32, 72, 65, 77, 214, 70, 69, 204, 1, 4, 77, 65, 68, 68, 180, 220, 36, 9, + 32, 72, 65, 77, 214, 70, 69, 204, 1, 4, 77, 65, 68, 68, 232, 203, 36, 9, 76, 69, 70, 84, 32, 77, 73, 68, 68, 159, 240, 1, 68, 28, 204, 1, 17, 66, 79, 84, 84, 79, 77, 32, 82, 73, 71, 72, 84, 32, 75, 65, 83, 82, 0, 14, 84, 79, 80, 32, 82, 73, 71, 72, 84, 32, 70, 65, 84, 72, 94, 82, 56, 3, - 76, 69, 70, 130, 214, 1, 75, 143, 182, 32, 70, 6, 11, 65, 7, 29, 5, 32, - 65, 78, 68, 32, 4, 196, 205, 19, 3, 76, 69, 70, 243, 200, 19, 68, 8, 52, + 76, 69, 70, 130, 214, 1, 75, 195, 165, 32, 70, 6, 11, 65, 7, 29, 5, 32, + 65, 78, 68, 32, 4, 196, 193, 19, 3, 76, 69, 70, 167, 196, 19, 68, 8, 52, 3, 73, 71, 72, 213, 227, 1, 4, 79, 85, 78, 68, 4, 17, 2, 84, 32, 4, 130, 189, 1, 82, 219, 37, 72, 12, 234, 72, 65, 37, 5, 66, 69, 76, 79, 87, 4, - 171, 224, 37, 90, 50, 22, 72, 179, 64, 69, 41, 22, 32, 155, 64, 69, 28, + 223, 207, 37, 90, 50, 22, 72, 179, 64, 69, 41, 22, 32, 155, 64, 69, 28, 68, 5, 87, 73, 84, 72, 32, 158, 163, 1, 70, 202, 43, 73, 211, 9, 77, 20, 116, 6, 83, 77, 65, 76, 76, 32, 34, 84, 254, 18, 73, 160, 33, 10, 68, 79, - 84, 32, 66, 69, 76, 79, 87, 32, 135, 21, 72, 6, 150, 39, 77, 231, 224, + 84, 32, 66, 69, 76, 79, 87, 32, 135, 21, 72, 6, 150, 39, 77, 231, 212, 23, 86, 8, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 233, 48, 7, 87, 79, 32, 68, 79, 84, 83, 6, 144, 1, 22, 80, 79, 73, 78, 84, 73, 78, 71, 32, 85, 80, 87, 65, 82, 68, 83, 32, 66, 69, 76, 79, 87, 201, 54, 8, - 72, 79, 82, 73, 90, 79, 78, 84, 5, 231, 141, 15, 32, 78, 90, 65, 136, 4, + 72, 79, 82, 73, 90, 79, 78, 84, 5, 179, 133, 15, 32, 78, 90, 65, 136, 4, 2, 68, 65, 40, 7, 79, 84, 76, 69, 83, 83, 32, 250, 27, 89, 147, 26, 85, 44, 34, 76, 254, 3, 72, 147, 46, 68, 27, 11, 32, 24, 56, 5, 87, 73, 84, 72, 32, 186, 158, 1, 70, 231, 52, 73, 20, 108, 9, 73, 78, 86, 69, 82, 84, - 69, 68, 32, 34, 84, 168, 1, 3, 68, 79, 84, 146, 145, 12, 70, 131, 171, - 27, 82, 4, 238, 14, 83, 239, 255, 39, 86, 8, 132, 1, 10, 72, 82, 69, 69, + 69, 68, 32, 34, 84, 168, 1, 3, 68, 79, 84, 222, 136, 12, 70, 235, 162, + 27, 82, 4, 238, 14, 83, 163, 239, 39, 86, 8, 132, 1, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 33, 18, 87, 79, 32, 68, 79, 84, 83, 32, 86, 69, - 82, 84, 73, 67, 65, 76, 76, 89, 4, 226, 54, 65, 231, 180, 37, 66, 4, 33, - 6, 32, 66, 69, 76, 79, 87, 5, 141, 187, 15, 11, 32, 65, 78, 68, 32, 83, - 77, 65, 76, 76, 32, 12, 22, 72, 195, 63, 76, 6, 151, 54, 65, 6, 170, 150, + 82, 84, 73, 67, 65, 76, 76, 89, 4, 226, 54, 65, 155, 164, 37, 66, 4, 33, + 6, 32, 66, 69, 76, 79, 87, 5, 217, 178, 15, 11, 32, 65, 78, 68, 32, 83, + 77, 65, 76, 76, 32, 12, 22, 72, 195, 63, 76, 6, 151, 54, 65, 6, 222, 133, 33, 66, 2, 70, 175, 244, 5, 81, 44, 60, 8, 65, 82, 83, 73, 32, 89, 69, 72, 169, 2, 2, 69, 72, 23, 11, 32, 20, 68, 5, 87, 73, 84, 72, 32, 182, 153, 1, 70, 202, 43, 73, 211, 9, 77, 12, 144, 1, 28, 69, 88, 84, 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67, 32, 68, 73, 71, 73, 84, 32, 30, 84, 247, 39, 73, 6, 250, 8, 70, 207, 50, 84, 4, - 190, 169, 7, 72, 199, 220, 7, 87, 23, 11, 32, 20, 68, 5, 87, 73, 84, 72, + 190, 165, 7, 72, 147, 216, 7, 87, 23, 11, 32, 20, 68, 5, 87, 73, 84, 72, 32, 142, 151, 1, 70, 202, 43, 73, 211, 9, 77, 12, 32, 4, 68, 79, 84, 32, - 51, 84, 6, 214, 40, 66, 197, 223, 15, 4, 77, 79, 86, 69, 6, 64, 10, 72, - 82, 69, 69, 32, 68, 79, 84, 83, 32, 191, 213, 37, 87, 4, 210, 17, 80, - 203, 211, 37, 66, 44, 72, 2, 65, 70, 160, 1, 4, 72, 65, 73, 78, 238, 20, - 85, 227, 238, 38, 82, 19, 11, 32, 16, 68, 5, 87, 73, 84, 72, 32, 182, - 148, 1, 70, 202, 43, 73, 211, 9, 77, 8, 242, 23, 84, 210, 156, 39, 82, + 51, 84, 6, 214, 40, 66, 145, 215, 15, 4, 77, 79, 86, 69, 6, 64, 10, 72, + 82, 69, 69, 32, 68, 79, 84, 83, 32, 243, 196, 37, 87, 4, 210, 17, 80, + 255, 194, 37, 66, 44, 72, 2, 65, 70, 160, 1, 4, 72, 65, 73, 78, 238, 20, + 85, 151, 222, 38, 82, 19, 11, 32, 16, 68, 5, 87, 73, 84, 72, 32, 182, + 148, 1, 70, 202, 43, 73, 211, 9, 77, 8, 242, 23, 84, 134, 140, 39, 82, 241, 32, 8, 73, 78, 86, 69, 82, 84, 69, 68, 15, 11, 32, 12, 68, 5, 87, 73, 84, 72, 32, 150, 147, 1, 70, 202, 43, 73, 211, 9, 77, 4, 214, 37, 84, - 135, 140, 27, 68, 82, 78, 65, 236, 5, 2, 69, 72, 161, 2, 9, 73, 71, 72, + 187, 251, 26, 68, 82, 78, 65, 236, 5, 2, 69, 72, 161, 2, 9, 73, 71, 72, 32, 72, 65, 77, 90, 65, 34, 34, 72, 201, 48, 3, 77, 90, 65, 31, 11, 32, 28, 68, 5, 87, 73, 84, 72, 32, 174, 145, 1, 70, 202, 43, 73, 211, 9, 77, 20, 132, 2, 29, 69, 88, 84, 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67, 32, 68, 73, 71, 73, 84, 32, 70, 30, 73, 92, 24, 83, 77, 65, 76, 76, 32, 65, 82, 65, 66, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 84, 65, 72, 32, 62, 84, 143, 53, 72, 2, 129, 199, 1, 2, 79, - 85, 2, 45, 9, 78, 86, 69, 82, 84, 69, 68, 32, 83, 2, 209, 206, 37, 6, 77, - 65, 76, 76, 32, 86, 6, 26, 65, 187, 221, 37, 66, 4, 134, 31, 78, 191, - 227, 38, 66, 8, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 33, 8, - 87, 79, 32, 68, 79, 84, 83, 32, 4, 242, 8, 80, 203, 248, 38, 65, 4, 128, - 129, 39, 8, 86, 69, 82, 84, 73, 67, 65, 76, 27, 65, 41, 11, 32, 38, 144, + 85, 2, 45, 9, 78, 86, 69, 82, 84, 69, 68, 32, 83, 2, 133, 190, 37, 6, 77, + 65, 76, 76, 32, 86, 6, 26, 65, 239, 204, 37, 66, 4, 134, 31, 78, 243, + 210, 38, 66, 8, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 33, 8, + 87, 79, 32, 68, 79, 84, 83, 32, 4, 242, 8, 80, 255, 231, 38, 65, 4, 180, + 240, 38, 8, 86, 69, 82, 84, 73, 67, 65, 76, 27, 65, 41, 11, 32, 38, 144, 1, 4, 71, 79, 65, 76, 88, 5, 87, 73, 84, 72, 32, 240, 47, 10, 68, 79, 65, 67, 72, 65, 83, 72, 77, 69, 210, 90, 70, 202, 43, 73, 211, 9, 77, 13, 11, 32, 10, 164, 50, 6, 87, 73, 84, 72, 32, 72, 230, 88, 70, 202, 43, 73, 211, 9, 77, 8, 174, 26, 73, 149, 20, 3, 89, 69, 72, 9, 11, 32, 6, 174, - 246, 23, 65, 150, 143, 9, 89, 179, 247, 5, 87, 22, 28, 2, 69, 77, 247, + 234, 23, 65, 202, 138, 9, 89, 179, 247, 5, 87, 22, 28, 2, 69, 77, 247, 45, 72, 17, 11, 32, 14, 72, 6, 87, 73, 84, 72, 32, 84, 226, 136, 1, 70, - 202, 43, 73, 211, 9, 77, 6, 222, 246, 14, 87, 227, 213, 18, 72, 70, 98, + 202, 43, 73, 211, 9, 77, 6, 170, 238, 14, 87, 203, 205, 18, 72, 70, 98, 65, 208, 1, 4, 69, 72, 69, 72, 180, 2, 7, 73, 82, 71, 72, 73, 90, 32, 137, 32, 2, 72, 65, 24, 46, 70, 229, 174, 1, 5, 83, 72, 77, 73, 82, 23, 11, 32, 20, 68, 5, 87, 73, 84, 72, 32, 214, 134, 1, 70, 202, 43, 73, 211, - 9, 77, 12, 42, 84, 166, 211, 35, 68, 151, 211, 3, 82, 6, 254, 27, 87, - 203, 169, 37, 72, 25, 11, 32, 22, 68, 5, 87, 73, 84, 72, 32, 182, 133, 1, - 70, 202, 43, 73, 211, 9, 77, 14, 38, 84, 206, 42, 83, 139, 203, 38, 68, + 9, 77, 12, 42, 84, 218, 194, 35, 68, 151, 211, 3, 82, 6, 254, 27, 87, + 255, 152, 37, 72, 25, 11, 32, 22, 68, 5, 87, 73, 84, 72, 32, 182, 133, 1, + 70, 202, 43, 73, 211, 9, 77, 14, 38, 84, 206, 42, 83, 191, 186, 38, 68, 10, 60, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 167, 26, 87, 6, 42, - 80, 202, 211, 37, 66, 131, 165, 1, 65, 2, 141, 196, 37, 14, 79, 73, 78, + 80, 254, 194, 37, 66, 131, 165, 1, 65, 2, 193, 179, 37, 14, 79, 73, 78, 84, 73, 78, 71, 32, 85, 80, 87, 65, 82, 68, 12, 130, 40, 79, 13, 2, 89, 85, 26, 40, 2, 65, 77, 161, 183, 1, 2, 79, 87, 25, 11, 32, 22, 68, 5, 87, 73, 84, 72, 32, 182, 130, 1, 70, 202, 43, 73, 211, 9, 77, 14, 88, 2, 68, - 79, 36, 6, 83, 77, 65, 76, 76, 32, 148, 197, 33, 2, 84, 72, 251, 137, 5, - 66, 4, 146, 135, 18, 85, 215, 238, 20, 84, 4, 224, 27, 16, 65, 82, 65, - 66, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 84, 65, 231, 214, 39, 86, 18, - 36, 3, 69, 69, 77, 163, 176, 39, 65, 17, 11, 32, 14, 64, 5, 87, 73, 84, - 72, 32, 222, 127, 70, 202, 43, 73, 211, 9, 77, 6, 158, 18, 84, 187, 186, + 79, 36, 6, 83, 77, 65, 76, 76, 32, 200, 180, 33, 2, 84, 72, 251, 137, 5, + 66, 4, 146, 251, 17, 85, 139, 234, 20, 84, 4, 224, 27, 16, 65, 82, 65, + 66, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 84, 65, 155, 198, 39, 86, 18, + 36, 3, 69, 69, 77, 215, 159, 39, 65, 17, 11, 32, 14, 64, 5, 87, 73, 84, + 72, 32, 222, 127, 70, 202, 43, 73, 211, 9, 77, 6, 158, 18, 84, 239, 169, 35, 68, 62, 38, 71, 26, 89, 17, 3, 79, 79, 78, 21, 22, 79, 183, 122, 32, 10, 175, 27, 69, 33, 11, 32, 30, 92, 5, 71, 72, 85, 78, 78, 16, 5, 87, 73, 84, 72, 32, 242, 125, 70, 202, 43, 73, 211, 9, 77, 6, 187, 34, 65, 16, 136, 1, 6, 83, 77, 65, 76, 76, 32, 38, 84, 220, 24, 8, 73, 78, 86, - 69, 82, 84, 69, 68, 132, 151, 24, 4, 82, 73, 78, 71, 171, 235, 2, 68, 4, - 246, 255, 32, 84, 131, 238, 6, 86, 4, 250, 141, 7, 72, 143, 174, 30, 87, + 69, 82, 84, 69, 68, 132, 139, 24, 4, 82, 73, 78, 71, 223, 230, 2, 68, 4, + 170, 239, 32, 84, 131, 238, 6, 86, 4, 250, 137, 7, 72, 195, 161, 30, 87, 25, 22, 32, 187, 24, 69, 12, 88, 11, 87, 73, 84, 72, 32, 83, 77, 65, 76, - 76, 32, 170, 123, 70, 202, 43, 73, 211, 9, 77, 4, 26, 77, 163, 236, 39, - 86, 2, 153, 239, 38, 3, 69, 69, 77, 19, 11, 32, 16, 64, 5, 87, 73, 84, + 76, 32, 170, 123, 70, 202, 43, 73, 211, 9, 77, 4, 26, 77, 215, 219, 39, + 86, 2, 205, 222, 38, 3, 69, 69, 77, 19, 11, 32, 16, 64, 5, 87, 73, 84, 72, 32, 158, 122, 70, 202, 43, 73, 211, 9, 77, 8, 36, 4, 68, 79, 84, 32, - 187, 12, 84, 6, 44, 5, 66, 69, 76, 79, 87, 239, 237, 38, 65, 5, 193, 231, + 187, 12, 84, 6, 44, 5, 66, 69, 76, 79, 87, 163, 221, 38, 65, 5, 141, 223, 14, 6, 32, 65, 78, 68, 32, 78, 52, 112, 2, 69, 72, 224, 28, 3, 82, 69, 72, 156, 3, 4, 78, 79, 79, 78, 149, 130, 1, 7, 79, 72, 73, 78, 71, 89, 65, 35, 11, 32, 32, 52, 5, 87, 73, 84, 72, 32, 226, 119, 70, 231, 52, 73, - 28, 134, 1, 83, 96, 2, 84, 87, 234, 5, 73, 174, 23, 72, 246, 205, 11, 70, - 204, 141, 7, 5, 68, 79, 84, 32, 66, 234, 39, 76, 207, 245, 19, 82, 10, - 44, 5, 77, 65, 76, 76, 32, 207, 183, 39, 84, 8, 198, 6, 65, 166, 250, 6, - 78, 151, 219, 16, 86, 4, 37, 7, 79, 32, 68, 79, 84, 83, 32, 4, 166, 8, - 86, 211, 225, 38, 65, 60, 184, 1, 2, 65, 68, 120, 3, 69, 69, 78, 136, 6, + 28, 134, 1, 83, 96, 2, 84, 87, 234, 5, 73, 174, 23, 72, 194, 197, 11, 70, + 128, 138, 7, 5, 68, 79, 84, 32, 66, 234, 39, 76, 131, 241, 19, 82, 10, + 44, 5, 77, 65, 76, 76, 32, 131, 167, 39, 84, 8, 198, 6, 65, 166, 246, 6, + 78, 151, 211, 16, 86, 4, 37, 7, 79, 32, 68, 79, 84, 83, 32, 4, 166, 8, + 86, 135, 209, 38, 65, 60, 184, 1, 2, 65, 68, 120, 3, 69, 69, 78, 136, 6, 4, 72, 69, 69, 78, 232, 160, 1, 4, 85, 80, 69, 82, 160, 181, 4, 7, 84, - 82, 65, 73, 71, 72, 84, 209, 134, 33, 6, 87, 65, 83, 72, 32, 75, 17, 11, + 82, 65, 73, 71, 72, 84, 133, 246, 32, 6, 87, 65, 83, 72, 32, 75, 17, 11, 32, 14, 68, 6, 87, 73, 84, 72, 32, 84, 162, 115, 70, 202, 43, 73, 211, 9, - 77, 6, 254, 182, 33, 72, 235, 251, 3, 87, 27, 11, 32, 24, 64, 5, 87, 73, + 77, 6, 178, 166, 33, 72, 235, 251, 3, 87, 27, 11, 32, 24, 64, 5, 87, 73, 84, 72, 32, 174, 114, 70, 202, 43, 73, 211, 9, 77, 16, 232, 1, 3, 68, 79, - 84, 50, 73, 48, 7, 83, 77, 65, 76, 76, 32, 65, 110, 84, 134, 228, 11, 70, + 84, 50, 73, 48, 7, 83, 77, 65, 76, 76, 32, 65, 110, 84, 210, 219, 11, 70, 241, 159, 5, 31, 69, 88, 84, 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67, 32, 68, 73, 71, 73, 84, 32, 70, 79, 85, 2, - 193, 243, 18, 7, 32, 66, 69, 76, 79, 87, 32, 2, 213, 219, 17, 7, 78, 86, + 193, 231, 18, 7, 32, 66, 69, 76, 79, 87, 32, 2, 213, 207, 17, 7, 78, 86, 69, 82, 84, 69, 68, 2, 85, 19, 82, 65, 66, 73, 67, 32, 76, 69, 84, 84, - 69, 82, 32, 84, 65, 72, 32, 65, 78, 2, 147, 159, 23, 68, 6, 96, 11, 72, + 69, 82, 32, 84, 65, 72, 32, 65, 78, 2, 147, 147, 23, 68, 6, 96, 11, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 66, 105, 9, 87, 79, 32, 68, 79, 84, 83, 32, 86, 4, 25, 4, 69, 76, 79, 87, 5, 11, 32, 2, 21, 3, 65, 78, 68, 2, - 17, 2, 32, 84, 2, 247, 254, 6, 72, 2, 221, 224, 11, 8, 69, 82, 84, 73, + 17, 2, 32, 84, 2, 247, 250, 6, 72, 2, 169, 216, 11, 8, 69, 82, 84, 73, 67, 65, 76, 76, 13, 11, 32, 10, 46, 87, 186, 108, 70, 202, 43, 73, 211, - 9, 77, 2, 253, 138, 27, 5, 73, 84, 72, 32, 68, 122, 92, 2, 65, 72, 136, + 9, 77, 2, 177, 250, 26, 5, 73, 84, 72, 32, 68, 122, 92, 2, 65, 72, 136, 2, 4, 67, 72, 69, 72, 124, 2, 69, 72, 150, 3, 72, 97, 3, 84, 69, 72, 21, 11, 32, 18, 64, 5, 87, 73, 84, 72, 32, 226, 106, 70, 202, 43, 73, 211, 9, - 77, 10, 26, 84, 143, 137, 27, 68, 8, 26, 87, 139, 174, 33, 72, 4, 37, 7, - 79, 32, 68, 79, 84, 83, 32, 4, 48, 6, 86, 69, 82, 84, 73, 67, 247, 221, - 38, 65, 2, 197, 169, 37, 4, 65, 76, 76, 89, 25, 22, 32, 199, 5, 69, 12, + 77, 10, 26, 84, 195, 248, 26, 68, 8, 26, 87, 191, 157, 33, 72, 4, 37, 7, + 79, 32, 68, 79, 84, 83, 32, 4, 48, 6, 86, 69, 82, 84, 73, 67, 171, 205, + 38, 65, 2, 249, 152, 37, 4, 65, 76, 76, 89, 25, 22, 32, 199, 5, 69, 12, 64, 5, 87, 73, 84, 72, 32, 206, 104, 70, 202, 43, 73, 211, 9, 77, 4, 138, - 14, 83, 139, 203, 38, 68, 37, 22, 32, 203, 4, 69, 24, 62, 77, 116, 5, 87, + 14, 83, 191, 186, 38, 68, 37, 22, 32, 203, 4, 69, 24, 62, 77, 116, 5, 87, 73, 84, 72, 32, 226, 102, 70, 203, 43, 73, 10, 48, 6, 65, 82, 66, 85, 84, - 65, 199, 156, 1, 69, 9, 11, 32, 6, 146, 103, 70, 230, 52, 73, 213, 176, + 65, 199, 156, 1, 69, 9, 11, 32, 6, 146, 103, 70, 230, 52, 73, 137, 160, 37, 2, 71, 79, 8, 104, 6, 83, 77, 65, 76, 76, 32, 56, 12, 84, 72, 82, 69, - 69, 32, 68, 79, 84, 83, 32, 65, 207, 133, 39, 82, 4, 32, 2, 84, 69, 231, - 214, 39, 86, 2, 223, 217, 38, 72, 2, 153, 146, 28, 4, 66, 79, 86, 69, 20, - 42, 65, 16, 3, 73, 78, 32, 147, 1, 69, 6, 167, 9, 76, 4, 146, 224, 32, + 69, 32, 68, 79, 84, 83, 32, 65, 131, 245, 38, 82, 4, 32, 2, 84, 69, 155, + 198, 39, 86, 2, 147, 201, 38, 72, 2, 205, 129, 28, 4, 66, 79, 86, 69, 20, + 42, 65, 16, 3, 73, 78, 32, 147, 1, 69, 6, 167, 9, 76, 4, 198, 207, 32, 89, 183, 203, 3, 78, 23, 18, 32, 91, 69, 10, 60, 4, 87, 73, 84, 72, 230, 99, 70, 202, 43, 73, 211, 9, 77, 2, 161, 9, 2, 32, 83, 10, 163, 11, 72, 15, 158, 1, 32, 181, 92, 33, 73, 71, 72, 85, 82, 32, 75, 65, 90, 65, 75, @@ -386,21 +386,21 @@ static const unsigned char packed_name_dawg[] = { 83, 85, 82, 65, 8, 96, 16, 87, 73, 84, 72, 32, 72, 65, 77, 90, 65, 32, 65, 66, 79, 86, 69, 186, 97, 70, 231, 52, 73, 5, 155, 87, 32, 17, 254, 8, 72, 147, 88, 32, 25, 11, 32, 22, 52, 5, 87, 73, 84, 72, 32, 202, 96, 70, - 231, 52, 73, 18, 80, 4, 68, 79, 84, 32, 162, 2, 69, 182, 1, 72, 150, 202, - 14, 84, 159, 178, 24, 82, 4, 152, 197, 31, 3, 87, 73, 84, 131, 143, 7, + 231, 52, 73, 18, 80, 4, 68, 79, 84, 32, 162, 2, 69, 182, 1, 72, 226, 193, + 14, 84, 135, 170, 24, 82, 4, 204, 180, 31, 3, 87, 73, 84, 131, 143, 7, 65, 56, 28, 2, 69, 72, 227, 3, 85, 51, 11, 32, 48, 100, 6, 66, 65, 82, 82, 69, 69, 252, 2, 5, 87, 73, 84, 72, 32, 182, 91, 70, 202, 43, 73, 211, 9, 77, 17, 11, 32, 14, 52, 5, 87, 73, 84, 72, 32, 238, 93, 70, 231, 52, 73, 10, 22, 69, 183, 1, 72, 4, 121, 28, 88, 84, 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67, 32, 68, 73, 71, 73, 84, - 32, 84, 4, 224, 166, 36, 3, 72, 82, 69, 133, 170, 2, 2, 87, 79, 6, 21, 3, + 32, 84, 4, 148, 150, 36, 3, 72, 82, 69, 133, 170, 2, 2, 87, 79, 6, 21, 3, 65, 77, 90, 6, 11, 65, 6, 17, 2, 32, 65, 6, 21, 3, 66, 79, 86, 6, 11, 69, 7, 171, 91, 32, 24, 96, 10, 72, 65, 77, 90, 65, 32, 65, 66, 79, 86, 18, - 83, 38, 84, 241, 153, 37, 4, 70, 79, 85, 82, 10, 167, 2, 69, 2, 133, 198, + 83, 38, 84, 165, 137, 37, 4, 70, 79, 85, 82, 10, 167, 2, 69, 2, 133, 186, 17, 4, 77, 65, 76, 76, 10, 108, 18, 87, 79, 32, 68, 79, 84, 83, 32, 66, - 69, 76, 79, 87, 32, 65, 78, 68, 32, 206, 152, 37, 72, 167, 82, 65, 6, 70, - 72, 168, 227, 6, 7, 83, 77, 65, 76, 76, 32, 78, 135, 230, 31, 68, 2, 185, - 158, 34, 3, 65, 77, 90, 18, 26, 72, 17, 2, 73, 78, 11, 223, 83, 32, 9, + 69, 76, 79, 87, 32, 65, 78, 68, 32, 130, 136, 37, 72, 167, 82, 65, 6, 70, + 72, 168, 223, 6, 7, 83, 77, 65, 76, 76, 32, 78, 187, 217, 31, 68, 2, 237, + 141, 34, 3, 65, 77, 90, 18, 26, 72, 17, 2, 73, 78, 11, 223, 83, 32, 9, 11, 32, 6, 138, 88, 70, 230, 52, 73, 177, 11, 13, 87, 73, 84, 72, 32, 73, 78, 86, 69, 82, 84, 69, 68, 158, 8, 166, 5, 65, 178, 7, 66, 176, 2, 2, 68, 65, 184, 1, 9, 70, 69, 72, 32, 87, 73, 84, 72, 32, 72, 11, 71, 72, @@ -413,19 +413,19 @@ static const unsigned char packed_name_dawg[] = { 87, 73, 84, 72, 32, 65, 76, 69, 70, 32, 77, 65, 75, 83, 85, 82, 65, 205, 6, 14, 90, 65, 72, 32, 87, 73, 84, 72, 32, 77, 69, 69, 77, 32, 66, 192, 1, 8, 73, 78, 32, 87, 73, 84, 72, 32, 68, 13, 74, 74, 65, 76, 32, 65, 76, - 76, 65, 65, 72, 85, 32, 146, 1, 76, 196, 68, 4, 75, 66, 65, 82, 137, 241, + 76, 65, 65, 72, 85, 32, 146, 1, 76, 196, 68, 4, 75, 66, 65, 82, 189, 224, 36, 8, 90, 90, 65, 32, 87, 65, 32, 74, 28, 236, 23, 4, 77, 69, 69, 77, 130, 22, 74, 154, 25, 65, 255, 8, 89, 4, 54, 70, 1, 9, 84, 65, 65, 65, - 76, 65, 65, 32, 70, 2, 209, 223, 28, 17, 65, 82, 65, 74, 65, 72, 85, 32, + 76, 65, 65, 32, 70, 2, 133, 207, 28, 17, 65, 82, 65, 74, 65, 72, 85, 32, 65, 83, 72, 45, 83, 72, 65, 82, 69, 30, 56, 3, 65, 89, 72, 156, 2, 3, 69, 70, 32, 207, 16, 76, 20, 30, 73, 102, 65, 135, 67, 69, 14, 24, 2, 32, 65, - 55, 77, 6, 110, 83, 153, 208, 32, 6, 82, 45, 82, 65, 72, 77, 8, 18, 65, + 55, 77, 6, 110, 83, 205, 191, 32, 6, 82, 45, 82, 65, 72, 77, 8, 18, 65, 23, 32, 4, 17, 2, 65, 32, 4, 17, 2, 65, 83, 4, 33, 6, 45, 83, 65, 76, 65, - 65, 4, 236, 184, 33, 10, 84, 85, 32, 87, 65, 83, 45, 83, 65, 76, 135, + 65, 4, 160, 168, 33, 10, 84, 85, 32, 87, 65, 83, 45, 83, 65, 76, 135, 133, 6, 77, 8, 236, 75, 29, 77, 65, 75, 83, 85, 82, 65, 32, 87, 73, 84, 72, 32, 83, 85, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65, 76, 69, 70, 1, 13, 87, 73, 84, 72, 32, 70, 65, 84, 72, 65, 84, 65, 78, 44, 160, 1, 8, - 69, 72, 32, 87, 73, 84, 72, 32, 241, 131, 26, 25, 73, 83, 77, 73, 76, 76, + 69, 72, 32, 87, 73, 84, 72, 32, 165, 243, 25, 25, 73, 83, 77, 73, 76, 76, 65, 72, 32, 65, 82, 45, 82, 65, 72, 77, 65, 78, 32, 65, 82, 45, 82, 65, 72, 42, 98, 72, 24, 3, 75, 72, 65, 254, 62, 65, 250, 3, 74, 78, 77, 86, 78, 78, 90, 242, 2, 82, 43, 89, 10, 22, 65, 195, 66, 69, 6, 155, 69, 72, @@ -443,7 +443,7 @@ static const unsigned char packed_name_dawg[] = { 53, 16, 83, 85, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65, 76, 69, 70, 8, 40, 5, 87, 73, 84, 72, 32, 219, 108, 73, 4, 158, 52, 74, 3, 77, 32, 68, 4, 65, 76, 76, 65, 81, 9, 69, 69, 77, 32, 87, 73, 84, 72, 32, 4, 168, - 145, 4, 7, 74, 65, 76, 65, 76, 79, 85, 189, 190, 24, 4, 32, 87, 65, 45, + 145, 4, 7, 74, 65, 76, 65, 76, 79, 85, 241, 173, 24, 4, 32, 87, 65, 45, 28, 62, 72, 60, 5, 77, 69, 69, 77, 32, 174, 53, 65, 255, 8, 89, 8, 17, 2, 65, 72, 8, 11, 32, 8, 150, 37, 87, 179, 69, 73, 12, 40, 5, 87, 73, 84, 72, 32, 131, 106, 73, 8, 154, 45, 72, 242, 3, 65, 203, 12, 89, 66, 58, @@ -468,41 +468,41 @@ static const unsigned char packed_name_dawg[] = { 143, 12, 89, 12, 40, 5, 87, 73, 84, 72, 32, 255, 94, 73, 8, 194, 38, 77, 194, 7, 75, 14, 72, 195, 4, 89, 8, 142, 48, 87, 246, 2, 70, 203, 43, 73, 2, 11, 69, 2, 167, 40, 72, 62, 144, 1, 9, 79, 79, 78, 32, 87, 73, 84, 72, - 32, 205, 159, 13, 20, 65, 87, 87, 65, 82, 65, 32, 65, 76, 76, 65, 65, 72, + 32, 153, 151, 13, 20, 65, 87, 87, 65, 82, 65, 32, 65, 76, 76, 65, 65, 72, 85, 32, 77, 65, 82, 81, 65, 60, 134, 1, 72, 28, 5, 74, 69, 69, 77, 32, 92, 5, 77, 69, 69, 77, 32, 246, 37, 65, 154, 5, 78, 78, 90, 134, 1, 75, 238, 1, 82, 43, 89, 14, 150, 33, 65, 155, 9, 69, 16, 40, 5, 87, 73, 84, 72, 32, 167, 91, 73, 12, 190, 30, 72, 242, 3, 65, 130, 12, 77, 75, 89, 12, 194, 21, 87, 234, 25, 70, 202, 43, 73, 211, 9, 77, 36, 46, 65, 209, 2, 6, 85, 68, 68, 73, 83, 65, 28, 156, 1, 7, 70, 32, 87, 73, 84, 72, 32, - 212, 12, 4, 76, 65, 32, 85, 233, 163, 32, 18, 68, 68, 65, 83, 65, 32, 65, + 212, 12, 4, 76, 65, 32, 85, 157, 147, 32, 18, 68, 68, 65, 83, 65, 32, 65, 76, 76, 65, 65, 72, 85, 32, 83, 73, 82, 82, 24, 64, 5, 77, 69, 69, 77, 32, 174, 35, 65, 246, 6, 72, 139, 2, 89, 12, 40, 5, 87, 73, 84, 72, 32, 131, 88, 73, 8, 34, 77, 250, 26, 72, 187, 16, 89, 2, 193, 43, 3, 69, 69, 77, 8, 68, 5, 32, 83, 73, 82, 82, 45, 8, 84, 32, 65, 83, 82, 65, 65, 82, - 6, 220, 5, 3, 85, 72, 85, 215, 149, 39, 65, 2, 241, 240, 37, 2, 85, 72, + 6, 220, 5, 3, 85, 72, 85, 139, 133, 39, 65, 2, 165, 224, 37, 2, 85, 72, 44, 30, 65, 177, 30, 2, 69, 72, 42, 92, 11, 68, 73, 32, 65, 76, 76, 65, 65, 72, 85, 32, 170, 1, 72, 153, 30, 4, 83, 79, 85, 76, 18, 72, 3, 65, 78, 72, 61, 11, 84, 65, 65, 65, 76, 65, 65, 32, 65, 78, 72, 11, 26, 85, - 223, 151, 39, 65, 6, 186, 3, 77, 195, 216, 37, 78, 9, 142, 3, 85, 175, - 148, 39, 65, 22, 92, 5, 73, 77, 65, 72, 85, 149, 1, 13, 77, 65, 84, 85, + 147, 135, 39, 65, 6, 186, 3, 77, 247, 199, 37, 78, 9, 142, 3, 85, 227, + 131, 39, 65, 22, 92, 5, 73, 77, 65, 72, 85, 149, 1, 13, 77, 65, 84, 85, 32, 65, 76, 76, 65, 65, 72, 73, 32, 12, 44, 7, 32, 65, 76, 76, 65, 65, 72, 19, 77, 5, 215, 20, 32, 8, 30, 32, 1, 3, 65, 65, 32, 4, 33, 6, 65, - 76, 76, 65, 65, 72, 5, 211, 18, 85, 10, 92, 5, 65, 76, 65, 89, 72, 241, - 149, 39, 12, 84, 65, 65, 65, 76, 65, 65, 32, 65, 76, 65, 89, 9, 26, 73, - 175, 148, 39, 65, 4, 11, 77, 5, 159, 148, 39, 65, 194, 1, 134, 1, 65, + 76, 76, 65, 65, 72, 5, 211, 18, 85, 10, 92, 5, 65, 76, 65, 89, 72, 165, + 133, 39, 12, 84, 65, 65, 65, 76, 65, 65, 32, 65, 76, 65, 89, 9, 26, 73, + 227, 131, 39, 65, 4, 11, 77, 5, 211, 131, 39, 65, 194, 1, 134, 1, 65, 220, 7, 9, 69, 69, 78, 32, 87, 73, 84, 72, 32, 250, 3, 72, 201, 4, 12, 85, 66, 72, 65, 65, 78, 65, 72, 85, 32, 87, 65, 50, 48, 7, 68, 32, 87, 73, 84, 72, 32, 251, 1, 76, 32, 76, 4, 72, 65, 72, 32, 82, 77, 154, 25, 65, 138, 4, 75, 246, 4, 82, 3, 89, 10, 22, 87, 211, 78, 73, 6, 25, 4, 73, 84, 72, 32, 6, 206, 17, 72, 187, 16, 89, 8, 21, 3, 69, 69, 77, 8, 11, 32, 8, 252, 32, 6, 87, 73, 84, 72, 32, 77, 247, 44, 73, 18, 26, 65, 77, 2, - 76, 65, 4, 178, 23, 77, 137, 134, 37, 11, 65, 77, 85, 72, 85, 32, 65, 76, + 76, 65, 4, 178, 23, 77, 189, 245, 36, 11, 65, 77, 85, 72, 85, 32, 65, 76, 65, 89, 78, 14, 34, 32, 133, 1, 3, 76, 76, 65, 4, 22, 85, 187, 85, 73, 2, 245, 9, 23, 83, 69, 68, 32, 65, 83, 32, 75, 79, 82, 65, 78, 73, 67, 32, 83, 84, 79, 80, 32, 83, 73, 71, 10, 36, 4, 65, 72, 85, 32, 147, 1, 72, 4, - 212, 2, 14, 84, 65, 65, 65, 76, 65, 65, 32, 65, 76, 65, 89, 72, 73, 237, - 140, 39, 14, 65, 76, 65, 89, 72, 73, 32, 87, 65, 45, 65, 65, 76, 73, 6, + 212, 2, 14, 84, 65, 65, 65, 76, 65, 65, 32, 65, 76, 65, 89, 72, 73, 161, + 252, 38, 14, 65, 76, 65, 89, 72, 73, 32, 87, 65, 45, 65, 65, 76, 73, 6, 112, 11, 85, 32, 65, 76, 65, 89, 72, 73, 32, 87, 65, 205, 63, 12, 79, 85, 32, 65, 76, 65, 89, 72, 69, 32, 87, 65, 4, 44, 7, 45, 65, 76, 65, 65, 32, 65, 3, 65, 2, 33, 6, 65, 76, 73, 72, 69, 69, 2, 245, 62, 4, 32, 87, 65, @@ -523,7 +523,7 @@ static const unsigned char packed_name_dawg[] = { 174, 20, 70, 202, 43, 73, 211, 9, 77, 8, 140, 3, 2, 75, 72, 243, 15, 77, 2, 175, 1, 32, 122, 66, 65, 176, 2, 8, 69, 72, 32, 87, 73, 84, 72, 32, 179, 4, 72, 28, 88, 11, 66, 65, 65, 82, 65, 75, 65, 32, 87, 65, 45, 29, - 7, 72, 32, 87, 73, 84, 72, 32, 2, 129, 162, 28, 2, 84, 65, 26, 64, 5, 77, + 7, 72, 32, 87, 73, 84, 72, 32, 2, 181, 145, 28, 2, 84, 65, 26, 64, 5, 77, 69, 69, 77, 32, 194, 8, 65, 246, 6, 72, 139, 2, 89, 14, 52, 5, 87, 73, 84, 72, 32, 138, 61, 73, 211, 9, 77, 8, 34, 72, 174, 4, 77, 143, 12, 89, 4, 133, 16, 2, 65, 72, 66, 138, 1, 72, 108, 3, 75, 72, 65, 12, 4, 74, 69, @@ -557,673 +557,673 @@ static const unsigned char packed_name_dawg[] = { 70, 2, 211, 44, 78, 2, 17, 2, 69, 72, 2, 77, 2, 32, 70, 4, 11, 69, 4, 11, 72, 4, 11, 32, 4, 22, 70, 231, 52, 73, 2, 185, 53, 2, 73, 78, 6, 174, 43, 73, 211, 9, 77, 166, 2, 92, 3, 68, 68, 65, 52, 3, 82, 75, 32, 109, 11, - 84, 72, 69, 77, 65, 84, 73, 67, 65, 76, 32, 4, 244, 177, 37, 5, 32, 87, + 84, 72, 69, 77, 65, 84, 73, 67, 65, 76, 32, 4, 168, 161, 37, 5, 32, 87, 65, 65, 74, 131, 65, 72, 4, 58, 78, 1, 10, 83, 73, 68, 69, 87, 65, 89, - 83, 32, 78, 2, 201, 180, 35, 7, 79, 79, 78, 32, 71, 72, 85, 158, 2, 174, + 83, 32, 78, 2, 253, 163, 35, 7, 79, 79, 78, 32, 71, 72, 85, 158, 2, 174, 2, 68, 140, 3, 8, 73, 78, 73, 84, 73, 65, 76, 32, 222, 1, 76, 132, 2, 9, - 79, 80, 69, 82, 65, 84, 79, 82, 32, 166, 1, 83, 142, 3, 84, 130, 190, 24, + 79, 80, 69, 82, 65, 84, 79, 82, 32, 166, 1, 83, 142, 3, 84, 182, 173, 24, 65, 102, 75, 110, 90, 234, 106, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, 82, 2, 89, 222, 7, 72, 222, 58, 71, 254, 136, 3, 78, 250, 168, 2, 81, 135, 3, - 87, 62, 26, 79, 219, 233, 37, 65, 58, 88, 6, 84, 76, 69, 83, 83, 32, 61, - 12, 85, 66, 76, 69, 45, 83, 84, 82, 85, 67, 75, 32, 8, 210, 245, 31, 66, + 87, 62, 26, 79, 143, 217, 37, 65, 58, 88, 6, 84, 76, 69, 83, 83, 32, 61, + 12, 85, 66, 76, 69, 45, 83, 84, 82, 85, 67, 75, 32, 8, 134, 229, 31, 66, 2, 70, 182, 203, 3, 78, 251, 168, 2, 81, 50, 178, 12, 83, 174, 20, 75, - 146, 168, 24, 84, 74, 90, 234, 106, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, + 198, 151, 24, 84, 74, 90, 234, 106, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, 82, 2, 89, 222, 7, 72, 222, 58, 71, 254, 136, 3, 78, 154, 237, 1, 76, 210, 58, 68, 146, 1, 81, 222, 1, 65, 171, 1, 87, 40, 182, 1, 84, 166, 9, - 83, 254, 187, 24, 72, 30, 75, 214, 107, 74, 2, 77, 250, 192, 6, 66, 2, + 83, 178, 171, 24, 72, 30, 75, 214, 107, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, 89, 186, 66, 71, 254, 136, 3, 78, 154, 237, 1, 76, 226, 59, 81, - 222, 1, 65, 171, 57, 68, 4, 134, 242, 31, 72, 207, 244, 6, 69, 56, 48, 6, - 79, 79, 80, 69, 68, 32, 183, 214, 38, 65, 54, 202, 8, 83, 174, 20, 75, - 138, 167, 24, 65, 74, 72, 66, 84, 74, 90, 234, 106, 74, 2, 77, 250, 192, + 222, 1, 65, 171, 57, 68, 4, 186, 225, 31, 72, 207, 244, 6, 69, 56, 48, 6, + 79, 79, 80, 69, 68, 32, 235, 197, 38, 65, 54, 202, 8, 83, 174, 20, 75, + 190, 150, 24, 65, 74, 72, 66, 84, 74, 90, 234, 106, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, 82, 2, 89, 186, 66, 71, 254, 136, 3, 78, 154, 237, 1, - 76, 210, 58, 68, 146, 1, 81, 135, 3, 87, 4, 148, 161, 29, 23, 77, 69, 69, + 76, 210, 58, 68, 146, 1, 81, 135, 3, 87, 4, 200, 144, 29, 23, 77, 69, 69, 77, 32, 87, 73, 84, 72, 32, 72, 65, 72, 32, 87, 73, 84, 72, 32, 84, 65, 84, 87, 197, 174, 8, 9, 72, 65, 72, 32, 87, 73, 84, 72, 32, 52, 84, 9, - 84, 82, 69, 84, 67, 72, 69, 68, 32, 178, 141, 37, 72, 14, 69, 231, 143, - 1, 65, 46, 178, 1, 68, 86, 84, 250, 2, 83, 254, 187, 24, 72, 30, 75, 214, + 84, 82, 69, 84, 67, 72, 69, 68, 32, 230, 252, 36, 72, 14, 69, 231, 143, + 1, 65, 46, 178, 1, 68, 86, 84, 250, 2, 83, 178, 171, 24, 72, 30, 75, 214, 107, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, 89, 222, 7, 90, 222, 58, 71, 254, 136, 3, 78, 250, 168, 2, 81, 223, 1, 65, 6, 52, 7, 79, 84, 76, 69, - 83, 83, 32, 183, 155, 38, 65, 4, 246, 235, 31, 66, 3, 70, 6, 218, 235, - 31, 72, 206, 244, 6, 65, 3, 69, 38, 42, 65, 130, 191, 24, 72, 211, 160, - 14, 69, 32, 44, 5, 73, 76, 69, 68, 32, 179, 224, 38, 72, 30, 146, 1, 68, - 94, 83, 174, 20, 75, 194, 147, 25, 74, 250, 192, 6, 89, 222, 7, 72, 222, + 83, 83, 32, 235, 138, 38, 65, 4, 170, 219, 31, 66, 3, 70, 6, 142, 219, + 31, 72, 206, 244, 6, 65, 3, 69, 38, 42, 65, 182, 174, 24, 72, 211, 160, + 14, 69, 32, 44, 5, 73, 76, 69, 68, 32, 231, 207, 38, 72, 30, 146, 1, 68, + 94, 83, 174, 20, 75, 246, 130, 25, 74, 250, 192, 6, 89, 222, 7, 72, 222, 58, 71, 254, 136, 3, 78, 154, 237, 1, 76, 226, 59, 81, 223, 1, 65, 6, 52, - 7, 79, 84, 76, 69, 83, 83, 32, 199, 152, 38, 65, 4, 186, 180, 35, 78, - 251, 168, 2, 81, 6, 174, 136, 37, 72, 14, 69, 231, 143, 1, 65, 4, 250, - 219, 18, 77, 179, 251, 18, 83, 6, 192, 135, 25, 3, 75, 65, 83, 12, 4, 68, - 65, 77, 77, 1, 4, 70, 65, 84, 72, 12, 118, 69, 38, 79, 144, 217, 12, 11, - 76, 65, 67, 69, 32, 79, 70, 32, 83, 65, 74, 201, 128, 6, 6, 73, 65, 83, - 84, 82, 69, 4, 202, 189, 32, 82, 199, 233, 5, 80, 4, 224, 201, 12, 8, 69, - 84, 73, 67, 32, 86, 69, 82, 245, 143, 6, 3, 85, 78, 68, 14, 238, 1, 65, + 7, 79, 84, 76, 69, 83, 83, 32, 251, 135, 38, 65, 4, 238, 163, 35, 78, + 251, 168, 2, 81, 6, 226, 247, 36, 72, 14, 69, 231, 143, 1, 65, 4, 250, + 207, 18, 77, 231, 246, 18, 83, 6, 244, 246, 24, 3, 75, 65, 83, 12, 4, 68, + 65, 77, 77, 1, 4, 70, 65, 84, 72, 12, 118, 69, 38, 79, 220, 208, 12, 11, + 76, 65, 67, 69, 32, 79, 70, 32, 83, 65, 74, 253, 252, 5, 6, 73, 65, 83, + 84, 82, 69, 4, 254, 172, 32, 82, 199, 233, 5, 80, 4, 172, 193, 12, 8, 69, + 84, 73, 67, 32, 86, 69, 82, 169, 140, 6, 3, 85, 78, 68, 14, 238, 1, 65, 96, 5, 69, 86, 69, 82, 83, 36, 15, 73, 71, 72, 84, 32, 65, 82, 82, 79, - 87, 72, 69, 65, 68, 32, 157, 186, 23, 28, 79, 85, 78, 68, 69, 68, 32, 72, + 87, 72, 69, 65, 68, 32, 157, 174, 23, 28, 79, 85, 78, 68, 69, 68, 32, 72, 73, 71, 72, 32, 83, 84, 79, 80, 32, 87, 73, 84, 72, 32, 70, 73, 76, 76, - 69, 68, 4, 40, 4, 73, 83, 69, 68, 155, 217, 38, 89, 2, 17, 2, 32, 82, 2, - 233, 138, 37, 3, 79, 85, 78, 2, 225, 241, 21, 4, 69, 68, 32, 68, 6, 26, - 65, 187, 182, 36, 66, 4, 249, 177, 37, 3, 66, 79, 86, 206, 1, 238, 1, 69, + 69, 68, 4, 40, 4, 73, 83, 69, 68, 207, 200, 38, 89, 2, 17, 2, 32, 82, 2, + 157, 250, 36, 3, 79, 85, 78, 2, 225, 229, 21, 4, 69, 68, 32, 68, 6, 26, + 65, 239, 165, 36, 66, 4, 173, 161, 37, 3, 66, 79, 86, 206, 1, 238, 1, 69, 244, 2, 5, 72, 65, 68, 68, 65, 36, 4, 73, 71, 78, 32, 240, 4, 5, 77, 65, - 76, 76, 32, 222, 15, 85, 240, 2, 6, 89, 77, 66, 79, 76, 32, 197, 253, 36, + 76, 76, 32, 222, 15, 85, 240, 2, 6, 89, 77, 66, 79, 76, 32, 249, 236, 36, 18, 84, 65, 82, 84, 32, 79, 70, 32, 82, 85, 66, 32, 69, 76, 32, 72, 73, - 90, 20, 52, 7, 81, 85, 69, 78, 67, 69, 32, 215, 134, 35, 77, 18, 184, 1, + 90, 20, 52, 7, 81, 85, 69, 78, 67, 69, 32, 139, 246, 34, 77, 18, 184, 1, 26, 89, 69, 72, 32, 87, 73, 84, 72, 32, 72, 65, 77, 90, 65, 32, 65, 66, - 79, 86, 69, 32, 87, 73, 84, 72, 32, 193, 222, 31, 13, 78, 79, 79, 78, 32, - 87, 73, 84, 72, 32, 75, 69, 72, 16, 70, 65, 170, 213, 37, 87, 198, 89, - 89, 150, 14, 79, 214, 22, 69, 3, 85, 6, 36, 3, 76, 69, 70, 175, 211, 38, + 79, 86, 69, 32, 87, 73, 84, 72, 32, 245, 205, 31, 13, 78, 79, 79, 78, 32, + 87, 73, 84, 72, 32, 75, 69, 72, 16, 70, 65, 222, 196, 37, 87, 198, 89, + 89, 150, 14, 79, 214, 22, 69, 3, 85, 6, 36, 3, 76, 69, 70, 227, 194, 38, 69, 5, 251, 12, 32, 7, 11, 32, 4, 222, 22, 73, 55, 77, 22, 132, 1, 2, 82, 65, 158, 1, 83, 188, 1, 7, 65, 76, 65, 89, 72, 69, 32, 136, 15, 2, 77, - 73, 133, 181, 34, 6, 84, 65, 75, 72, 65, 76, 4, 132, 1, 13, 72, 77, 65, - 84, 85, 76, 76, 65, 72, 32, 65, 76, 65, 161, 218, 33, 13, 68, 73, 32, 65, - 76, 76, 65, 72, 79, 85, 32, 65, 78, 2, 219, 163, 38, 89, 12, 46, 65, 193, + 73, 185, 164, 34, 6, 84, 65, 75, 72, 65, 76, 4, 132, 1, 13, 72, 77, 65, + 84, 85, 76, 76, 65, 72, 32, 65, 76, 65, 213, 201, 33, 13, 68, 73, 32, 65, + 76, 76, 65, 72, 79, 85, 32, 65, 78, 2, 143, 147, 38, 89, 12, 46, 65, 193, 1, 6, 73, 78, 68, 72, 73, 32, 8, 136, 1, 18, 76, 76, 65, 76, 76, 65, 72, - 79, 85, 32, 65, 76, 65, 89, 72, 69, 32, 87, 154, 225, 31, 78, 218, 240, - 4, 70, 249, 115, 2, 77, 86, 2, 17, 2, 65, 83, 2, 141, 242, 15, 3, 83, 65, - 76, 4, 160, 227, 20, 12, 80, 79, 83, 84, 80, 79, 83, 73, 84, 73, 79, 78, - 205, 152, 14, 2, 65, 77, 110, 120, 2, 70, 65, 32, 5, 72, 73, 71, 72, 32, - 134, 11, 89, 88, 4, 76, 79, 87, 32, 118, 75, 158, 217, 21, 68, 215, 232, - 15, 87, 4, 166, 3, 82, 191, 204, 36, 84, 74, 212, 2, 17, 68, 79, 84, 76, + 79, 85, 32, 65, 76, 65, 89, 72, 69, 32, 87, 206, 208, 31, 78, 218, 240, + 4, 70, 249, 115, 2, 77, 86, 2, 17, 2, 65, 83, 2, 217, 233, 15, 3, 83, 65, + 76, 4, 160, 215, 20, 12, 80, 79, 83, 84, 80, 79, 83, 73, 84, 73, 79, 78, + 129, 148, 14, 2, 65, 77, 110, 120, 2, 70, 65, 32, 5, 72, 73, 71, 72, 32, + 134, 11, 89, 88, 4, 76, 79, 87, 32, 118, 75, 158, 205, 21, 68, 139, 228, + 15, 87, 4, 166, 3, 82, 243, 187, 36, 84, 74, 212, 2, 17, 68, 79, 84, 76, 69, 83, 83, 32, 72, 69, 65, 68, 32, 79, 70, 32, 75, 22, 70, 102, 76, 142, - 3, 77, 118, 83, 78, 84, 38, 87, 198, 2, 89, 142, 1, 78, 180, 195, 14, 18, + 3, 77, 118, 83, 78, 84, 38, 87, 198, 2, 89, 142, 1, 78, 128, 187, 14, 18, 85, 80, 82, 73, 71, 72, 84, 32, 82, 69, 67, 84, 65, 78, 71, 85, 76, 65, - 252, 220, 8, 7, 82, 79, 85, 78, 68, 69, 68, 242, 126, 90, 234, 106, 74, - 166, 181, 12, 81, 223, 1, 65, 2, 147, 220, 31, 72, 4, 24, 2, 65, 82, 31, - 79, 2, 11, 83, 2, 175, 2, 73, 2, 233, 209, 26, 6, 79, 84, 78, 79, 84, 69, + 176, 217, 8, 7, 82, 79, 85, 78, 68, 69, 68, 166, 122, 90, 234, 106, 74, + 166, 181, 12, 81, 223, 1, 65, 2, 199, 203, 31, 72, 4, 24, 2, 65, 82, 31, + 79, 2, 11, 83, 2, 175, 2, 73, 2, 157, 193, 26, 6, 79, 84, 78, 79, 84, 69, 10, 60, 8, 73, 71, 65, 84, 85, 82, 69, 32, 225, 11, 2, 65, 77, 8, 88, 10, 65, 76, 69, 70, 32, 87, 73, 84, 72, 32, 116, 3, 81, 65, 70, 1, 3, 83, 65, - 68, 4, 84, 8, 76, 65, 77, 32, 87, 73, 84, 72, 253, 212, 36, 7, 89, 69, - 72, 32, 66, 65, 82, 2, 201, 209, 31, 2, 32, 89, 2, 89, 20, 32, 87, 73, + 68, 4, 84, 8, 76, 65, 77, 32, 87, 73, 84, 72, 177, 196, 36, 7, 89, 69, + 72, 32, 66, 65, 82, 2, 253, 192, 31, 2, 32, 89, 2, 89, 20, 32, 87, 73, 84, 72, 32, 76, 65, 77, 32, 87, 73, 84, 72, 32, 65, 76, 69, 70, 32, 2, - 133, 173, 22, 3, 77, 65, 75, 6, 26, 69, 191, 142, 16, 65, 4, 17, 2, 69, + 133, 161, 22, 3, 77, 65, 75, 6, 26, 69, 191, 130, 16, 65, 4, 17, 2, 69, 77, 4, 17, 2, 32, 73, 4, 22, 78, 147, 9, 83, 2, 205, 9, 2, 73, 84, 6, - 240, 199, 36, 7, 73, 71, 78, 32, 83, 65, 70, 166, 39, 69, 231, 143, 1, - 65, 4, 166, 224, 23, 72, 155, 227, 14, 65, 20, 40, 4, 79, 82, 68, 32, - 227, 197, 37, 65, 18, 74, 65, 172, 1, 2, 83, 65, 168, 201, 25, 3, 87, 65, - 81, 247, 246, 11, 81, 10, 244, 137, 7, 3, 76, 45, 74, 188, 200, 18, 3, + 164, 183, 36, 7, 73, 71, 78, 32, 83, 65, 70, 166, 39, 69, 231, 143, 1, + 65, 4, 162, 212, 23, 72, 211, 222, 14, 65, 20, 40, 4, 79, 82, 68, 32, + 151, 181, 37, 65, 18, 74, 65, 172, 1, 2, 83, 65, 220, 184, 25, 3, 87, 65, + 81, 247, 246, 11, 81, 10, 244, 133, 7, 3, 76, 45, 74, 240, 187, 18, 3, 82, 45, 82, 240, 230, 6, 7, 84, 72, 45, 84, 72, 65, 76, 236, 136, 5, 5, - 78, 45, 78, 73, 83, 161, 92, 5, 83, 45, 83, 65, 74, 4, 186, 157, 38, 75, - 207, 36, 72, 4, 17, 2, 69, 72, 5, 157, 196, 10, 12, 32, 66, 65, 82, 82, - 69, 69, 32, 87, 73, 84, 72, 22, 50, 78, 98, 87, 170, 137, 25, 77, 199, + 78, 45, 78, 73, 83, 161, 92, 5, 83, 45, 83, 65, 74, 4, 238, 140, 38, 75, + 207, 36, 72, 4, 17, 2, 69, 72, 5, 233, 187, 10, 12, 32, 66, 65, 82, 82, + 69, 69, 32, 87, 73, 84, 72, 22, 50, 78, 98, 87, 222, 248, 24, 77, 199, 224, 11, 83, 4, 21, 3, 79, 79, 78, 5, 37, 7, 32, 87, 73, 84, 72, 32, 75, - 2, 11, 65, 2, 207, 251, 37, 83, 14, 40, 4, 79, 82, 68, 32, 179, 193, 37, - 65, 12, 106, 73, 162, 135, 16, 77, 128, 182, 9, 3, 84, 65, 83, 208, 228, - 8, 2, 83, 65, 153, 228, 3, 3, 81, 65, 83, 4, 168, 168, 13, 2, 77, 65, - 181, 145, 19, 3, 83, 72, 77, 12, 138, 1, 66, 64, 3, 75, 85, 78, 141, 139, - 25, 22, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65, 76, 69, 70, 32, 77, - 79, 75, 72, 65, 83, 83, 2, 33, 6, 83, 67, 82, 73, 80, 84, 2, 137, 184, - 22, 2, 32, 65, 9, 11, 32, 6, 34, 73, 54, 77, 147, 154, 36, 66, 2, 11, 83, - 2, 209, 237, 31, 5, 79, 76, 65, 84, 69, 2, 11, 69, 2, 11, 68, 2, 11, 73, - 2, 245, 188, 37, 2, 65, 76, 34, 156, 1, 2, 68, 79, 126, 84, 188, 183, 5, - 8, 83, 77, 65, 76, 76, 32, 84, 65, 200, 212, 26, 4, 70, 79, 85, 82, 224, + 2, 11, 65, 2, 131, 235, 37, 83, 14, 40, 4, 79, 82, 68, 32, 231, 176, 37, + 65, 12, 106, 73, 162, 251, 15, 77, 180, 177, 9, 3, 84, 65, 83, 208, 228, + 8, 2, 83, 65, 153, 228, 3, 3, 81, 65, 83, 4, 244, 159, 13, 2, 77, 65, + 157, 137, 19, 3, 83, 72, 77, 12, 138, 1, 66, 64, 3, 75, 85, 78, 193, 250, + 24, 22, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65, 76, 69, 70, 32, 77, + 79, 75, 72, 65, 83, 83, 2, 33, 6, 83, 67, 82, 73, 80, 84, 2, 137, 172, + 22, 2, 32, 65, 9, 11, 32, 6, 34, 73, 54, 77, 199, 137, 36, 66, 2, 11, 83, + 2, 133, 221, 31, 5, 79, 76, 65, 84, 69, 2, 11, 69, 2, 11, 68, 2, 11, 73, + 2, 169, 172, 37, 2, 65, 76, 34, 156, 1, 2, 68, 79, 126, 84, 188, 179, 5, + 8, 83, 77, 65, 76, 76, 32, 84, 65, 252, 199, 26, 4, 70, 79, 85, 82, 224, 129, 1, 4, 87, 65, 83, 76, 187, 218, 4, 82, 6, 48, 6, 85, 66, 76, 69, 32, - 86, 215, 151, 36, 84, 2, 49, 10, 69, 82, 84, 73, 67, 65, 76, 32, 66, 65, - 2, 155, 136, 36, 82, 16, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, - 121, 8, 87, 79, 32, 68, 79, 84, 83, 32, 8, 192, 139, 32, 17, 80, 79, 73, + 86, 139, 135, 36, 84, 2, 49, 10, 69, 82, 84, 73, 67, 65, 76, 32, 66, 65, + 2, 207, 247, 35, 82, 16, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, + 121, 8, 87, 79, 32, 68, 79, 84, 83, 32, 8, 244, 250, 31, 17, 80, 79, 73, 78, 84, 73, 78, 71, 32, 68, 79, 87, 78, 87, 65, 82, 68, 150, 139, 4, 66, - 131, 165, 1, 65, 8, 128, 186, 10, 9, 86, 69, 82, 84, 73, 67, 65, 76, 76, - 222, 219, 25, 66, 131, 165, 1, 65, 30, 202, 1, 65, 152, 2, 4, 79, 78, 69, - 32, 164, 130, 11, 12, 82, 73, 80, 76, 69, 32, 68, 79, 84, 32, 80, 85, - 144, 205, 6, 8, 85, 82, 78, 69, 68, 32, 68, 65, 197, 154, 14, 8, 72, 79, - 85, 83, 65, 78, 68, 83, 12, 68, 5, 84, 87, 69, 69, 76, 177, 150, 36, 6, + 131, 165, 1, 65, 8, 204, 177, 10, 9, 86, 69, 82, 84, 73, 67, 65, 76, 76, + 198, 211, 25, 66, 131, 165, 1, 65, 30, 202, 1, 65, 152, 2, 4, 79, 78, 69, + 32, 240, 249, 10, 12, 82, 73, 80, 76, 69, 32, 68, 79, 84, 32, 80, 85, + 196, 201, 6, 8, 85, 82, 78, 69, 68, 32, 68, 65, 249, 149, 14, 8, 72, 79, + 85, 83, 65, 78, 68, 83, 12, 68, 5, 84, 87, 69, 69, 76, 229, 133, 36, 6, 73, 76, 32, 70, 82, 65, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 112, 11, - 79, 86, 69, 82, 83, 84, 82, 85, 67, 75, 32, 140, 205, 5, 7, 70, 65, 84, - 72, 65, 84, 65, 159, 233, 4, 84, 4, 26, 72, 131, 181, 37, 87, 2, 133, - 133, 30, 2, 65, 77, 12, 68, 3, 79, 78, 69, 194, 166, 30, 84, 245, 233, 5, - 4, 76, 79, 79, 80, 4, 173, 142, 34, 2, 32, 68, 8, 64, 10, 79, 87, 69, 76, - 32, 83, 73, 71, 78, 32, 255, 164, 24, 69, 6, 72, 10, 73, 78, 86, 69, 82, - 84, 69, 68, 32, 83, 2, 83, 211, 222, 25, 68, 2, 25, 4, 77, 65, 76, 76, 2, - 249, 179, 37, 2, 32, 86, 28, 104, 4, 80, 69, 82, 32, 236, 253, 5, 3, 67, - 85, 66, 204, 138, 5, 5, 70, 79, 85, 82, 84, 187, 179, 25, 68, 4, 234, - 169, 25, 77, 31, 84, 188, 1, 222, 1, 65, 34, 67, 138, 3, 69, 60, 7, 83, - 77, 65, 76, 76, 32, 76, 200, 155, 21, 17, 77, 79, 68, 73, 70, 73, 69, 82, - 32, 76, 69, 84, 84, 69, 82, 32, 76, 222, 253, 8, 72, 140, 188, 2, 3, 68, - 82, 65, 178, 255, 2, 70, 83, 81, 4, 218, 236, 31, 66, 143, 26, 80, 78, - 80, 14, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 82, 32, 191, 215, + 79, 86, 69, 82, 83, 84, 82, 85, 67, 75, 32, 140, 201, 5, 7, 70, 65, 84, + 72, 65, 84, 65, 235, 228, 4, 84, 4, 26, 72, 183, 164, 37, 87, 2, 185, + 244, 29, 2, 65, 77, 12, 68, 3, 79, 78, 69, 246, 149, 30, 84, 245, 233, 5, + 4, 76, 79, 79, 80, 4, 225, 253, 33, 2, 32, 68, 8, 64, 10, 79, 87, 69, 76, + 32, 83, 73, 71, 78, 32, 179, 148, 24, 69, 6, 72, 10, 73, 78, 86, 69, 82, + 84, 69, 68, 32, 83, 2, 83, 135, 206, 25, 68, 2, 25, 4, 77, 65, 76, 76, 2, + 173, 163, 37, 2, 32, 86, 28, 104, 4, 80, 69, 82, 32, 236, 249, 5, 3, 67, + 85, 66, 152, 134, 5, 5, 70, 79, 85, 82, 84, 163, 171, 25, 68, 4, 158, + 153, 25, 77, 31, 84, 188, 1, 222, 1, 65, 34, 67, 138, 3, 69, 60, 7, 83, + 77, 65, 76, 76, 32, 76, 200, 143, 21, 17, 77, 79, 68, 73, 70, 73, 69, 82, + 32, 76, 69, 84, 84, 69, 82, 32, 76, 146, 249, 8, 72, 140, 188, 2, 3, 68, + 82, 65, 178, 255, 2, 70, 83, 81, 4, 142, 220, 31, 66, 143, 26, 80, 78, + 80, 14, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 82, 32, 243, 198, 35, 79, 76, 250, 1, 84, 36, 2, 89, 73, 150, 3, 67, 38, 82, 34, 69, 42, - 71, 34, 74, 38, 75, 22, 80, 38, 83, 106, 65, 22, 86, 158, 1, 76, 246, - 173, 31, 70, 2, 88, 134, 241, 1, 73, 214, 174, 3, 66, 2, 77, 222, 57, 78, - 230, 28, 90, 210, 96, 72, 190, 28, 68, 171, 1, 79, 4, 214, 212, 36, 73, - 179, 214, 1, 79, 5, 131, 219, 37, 87, 4, 162, 134, 32, 88, 233, 210, 4, + 71, 34, 74, 38, 75, 22, 80, 38, 83, 106, 65, 22, 86, 158, 1, 76, 170, + 157, 31, 70, 2, 88, 134, 241, 1, 73, 214, 174, 3, 66, 2, 77, 222, 57, 78, + 230, 28, 90, 210, 96, 72, 190, 28, 68, 171, 1, 79, 4, 138, 196, 36, 73, + 179, 214, 1, 79, 5, 183, 202, 37, 87, 4, 214, 245, 31, 88, 233, 210, 4, 6, 77, 80, 72, 65, 83, 73, 92, 76, 6, 69, 84, 84, 69, 82, 32, 157, 5, 8, 73, 71, 65, 84, 85, 82, 69, 32, 80, 242, 1, 67, 38, 82, 34, 69, 42, 71, 34, 74, 38, 75, 22, 80, 38, 83, 34, 84, 74, 65, 22, 86, 32, 2, 89, 73, - 126, 76, 246, 173, 31, 70, 2, 88, 134, 241, 1, 73, 214, 174, 3, 66, 2, + 126, 76, 170, 157, 31, 70, 2, 88, 134, 241, 1, 73, 214, 174, 3, 66, 2, 77, 222, 57, 78, 230, 28, 90, 210, 96, 72, 190, 28, 68, 171, 1, 79, 8, - 34, 72, 174, 167, 38, 65, 3, 79, 4, 154, 166, 38, 69, 147, 1, 65, 6, 250, - 165, 38, 67, 146, 1, 72, 3, 84, 4, 182, 224, 37, 72, 215, 53, 73, 4, 230, - 176, 31, 72, 223, 245, 6, 65, 4, 223, 250, 33, 69, 4, 214, 251, 3, 73, - 167, 169, 34, 69, 4, 174, 163, 38, 72, 171, 1, 69, 6, 68, 7, 85, 82, 78, - 69, 68, 32, 65, 210, 206, 36, 73, 179, 214, 1, 79, 2, 135, 231, 36, 89, - 4, 202, 166, 37, 69, 163, 126, 79, 7, 194, 195, 21, 32, 171, 145, 16, 87, - 12, 84, 5, 69, 67, 72, 32, 89, 20, 4, 77, 69, 78, 32, 221, 142, 30, 4, - 86, 69, 87, 32, 2, 159, 205, 36, 73, 8, 222, 173, 31, 88, 134, 241, 1, + 34, 72, 226, 150, 38, 65, 3, 79, 4, 206, 149, 38, 69, 147, 1, 65, 6, 174, + 149, 38, 67, 146, 1, 72, 3, 84, 4, 234, 207, 37, 72, 215, 53, 73, 4, 154, + 160, 31, 72, 223, 245, 6, 65, 4, 147, 234, 33, 69, 4, 214, 251, 3, 73, + 219, 152, 34, 69, 4, 226, 146, 38, 72, 171, 1, 69, 6, 68, 7, 85, 82, 78, + 69, 68, 32, 65, 134, 190, 36, 73, 179, 214, 1, 79, 2, 187, 214, 36, 89, + 4, 254, 149, 37, 69, 163, 126, 79, 7, 194, 183, 21, 32, 223, 140, 16, 87, + 12, 84, 5, 69, 67, 72, 32, 89, 20, 4, 77, 69, 78, 32, 145, 254, 29, 4, + 86, 69, 87, 32, 2, 211, 188, 36, 73, 8, 146, 157, 31, 88, 134, 241, 1, 73, 178, 232, 3, 78, 131, 122, 69, 14, 108, 10, 32, 80, 79, 73, 78, 84, - 73, 78, 71, 32, 137, 226, 36, 11, 72, 69, 65, 68, 45, 83, 72, 65, 80, 69, + 73, 78, 71, 32, 189, 209, 36, 11, 72, 69, 65, 68, 45, 83, 72, 65, 80, 69, 68, 12, 156, 2, 24, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 84, 72, 69, 78, 32, 67, 85, 82, 86, 73, 78, 71, 32, 48, 16, 85, 80, 87, 65, 82, - 68, 83, 32, 84, 72, 69, 78, 32, 78, 79, 82, 197, 189, 35, 22, 68, 79, 87, + 68, 83, 32, 84, 72, 69, 78, 32, 78, 79, 82, 249, 172, 35, 22, 68, 79, 87, 78, 87, 65, 82, 68, 83, 32, 84, 72, 69, 78, 32, 67, 85, 82, 86, 73, 78, - 71, 6, 44, 3, 83, 79, 85, 222, 237, 26, 68, 35, 85, 2, 153, 173, 34, 4, - 84, 72, 32, 87, 4, 176, 217, 31, 11, 67, 85, 76, 65, 84, 69, 68, 32, 76, - 79, 82, 189, 252, 4, 6, 83, 84, 32, 80, 65, 76, 24, 58, 67, 38, 84, 206, - 180, 23, 89, 145, 202, 9, 2, 83, 69, 4, 242, 181, 8, 69, 167, 194, 11, + 71, 6, 44, 3, 83, 79, 85, 146, 221, 26, 68, 35, 85, 2, 205, 156, 34, 4, + 84, 72, 32, 87, 4, 228, 200, 31, 11, 67, 85, 76, 65, 84, 69, 68, 32, 76, + 79, 82, 189, 252, 4, 6, 83, 84, 32, 80, 65, 76, 24, 58, 67, 38, 84, 202, + 168, 23, 89, 201, 197, 9, 2, 83, 69, 4, 242, 177, 8, 69, 167, 186, 11, 73, 16, 48, 4, 69, 82, 73, 83, 36, 2, 79, 78, 31, 82, 6, 174, 227, 2, 75, - 239, 185, 35, 77, 2, 237, 138, 14, 2, 73, 83, 8, 104, 20, 79, 78, 79, 77, - 73, 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 211, 138, - 14, 65, 4, 164, 227, 25, 13, 65, 83, 84, 69, 82, 79, 73, 68, 32, 80, 82, - 79, 83, 205, 175, 10, 2, 85, 82, 4, 164, 197, 19, 6, 72, 76, 69, 84, 73, - 67, 165, 192, 17, 2, 79, 77, 10, 68, 2, 84, 79, 160, 249, 21, 2, 83, 84, - 209, 169, 2, 3, 66, 69, 82, 6, 54, 77, 161, 155, 37, 7, 32, 82, 73, 67, - 75, 83, 72, 4, 162, 162, 24, 79, 209, 202, 5, 12, 65, 84, 69, 68, 32, 84, - 69, 76, 76, 69, 82, 32, 112, 56, 6, 69, 83, 84, 65, 78, 32, 169, 231, 4, - 2, 79, 67, 110, 52, 7, 76, 69, 84, 84, 69, 82, 32, 223, 214, 31, 65, 108, - 234, 1, 65, 58, 71, 42, 72, 34, 78, 50, 88, 42, 83, 42, 89, 34, 84, 254, - 188, 34, 85, 206, 141, 1, 79, 238, 60, 73, 166, 140, 1, 66, 2, 68, 2, 90, + 163, 169, 35, 77, 2, 185, 130, 14, 2, 73, 83, 8, 104, 20, 79, 78, 79, 77, + 73, 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 159, 130, + 14, 65, 4, 216, 210, 25, 13, 65, 83, 84, 69, 82, 79, 73, 68, 32, 80, 82, + 79, 83, 205, 175, 10, 2, 85, 82, 4, 164, 185, 19, 6, 72, 76, 69, 84, 73, + 67, 217, 187, 17, 2, 79, 77, 10, 68, 2, 84, 79, 160, 237, 21, 2, 83, 84, + 133, 165, 2, 3, 66, 69, 82, 6, 54, 77, 213, 138, 37, 7, 32, 82, 73, 67, + 75, 83, 72, 4, 214, 145, 24, 79, 209, 202, 5, 12, 65, 84, 69, 68, 32, 84, + 69, 76, 76, 69, 82, 32, 112, 56, 6, 69, 83, 84, 65, 78, 32, 169, 227, 4, + 2, 79, 67, 110, 52, 7, 76, 69, 84, 84, 69, 82, 32, 147, 198, 31, 65, 108, + 234, 1, 65, 58, 71, 42, 72, 34, 78, 50, 88, 42, 83, 42, 89, 34, 84, 178, + 172, 34, 85, 206, 141, 1, 79, 238, 60, 73, 166, 140, 1, 66, 2, 68, 2, 90, 130, 64, 69, 206, 41, 67, 2, 70, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80, 2, - 82, 3, 86, 17, 182, 198, 35, 65, 194, 143, 2, 69, 162, 64, 78, 3, 79, 6, - 138, 255, 37, 71, 2, 72, 215, 22, 69, 4, 226, 254, 37, 77, 215, 22, 69, - 12, 46, 71, 150, 254, 37, 78, 2, 89, 215, 22, 69, 6, 146, 254, 37, 86, 2, - 89, 215, 22, 69, 8, 38, 72, 142, 231, 37, 83, 143, 45, 69, 4, 194, 253, - 37, 89, 215, 22, 69, 6, 162, 253, 37, 72, 2, 84, 215, 22, 69, 178, 42, + 82, 3, 86, 17, 234, 181, 35, 65, 194, 143, 2, 69, 162, 64, 78, 3, 79, 6, + 190, 238, 37, 71, 2, 72, 215, 22, 69, 4, 150, 238, 37, 77, 215, 22, 69, + 12, 46, 71, 202, 237, 37, 78, 2, 89, 215, 22, 69, 6, 198, 237, 37, 86, 2, + 89, 215, 22, 69, 8, 38, 72, 194, 214, 37, 83, 143, 45, 69, 4, 246, 236, + 37, 89, 215, 22, 69, 6, 214, 236, 37, 72, 2, 84, 215, 22, 69, 178, 42, 178, 1, 65, 194, 171, 1, 69, 244, 21, 9, 72, 65, 73, 75, 83, 85, 75, 73, 32, 202, 6, 73, 130, 3, 76, 182, 45, 79, 138, 70, 82, 246, 18, 85, 138, - 8, 89, 214, 183, 35, 80, 147, 1, 83, 198, 14, 132, 1, 2, 66, 89, 94, 67, + 8, 89, 138, 167, 35, 80, 147, 1, 83, 198, 14, 132, 1, 2, 66, 89, 94, 67, 206, 2, 68, 146, 1, 71, 106, 76, 192, 29, 4, 77, 85, 77, 32, 190, 115, - 78, 178, 1, 82, 98, 83, 223, 6, 84, 11, 11, 32, 8, 226, 253, 12, 67, 222, - 248, 5, 66, 144, 133, 14, 3, 65, 78, 71, 135, 128, 4, 83, 16, 62, 75, - 244, 135, 9, 5, 84, 82, 73, 65, 78, 159, 184, 28, 79, 12, 42, 32, 46, 83, - 145, 236, 10, 2, 45, 84, 4, 214, 137, 10, 87, 253, 237, 20, 2, 79, 70, 6, + 78, 178, 1, 82, 98, 83, 223, 6, 84, 11, 11, 32, 8, 174, 245, 12, 67, 146, + 245, 5, 66, 196, 128, 14, 3, 65, 78, 71, 135, 128, 4, 83, 16, 62, 75, + 244, 131, 9, 5, 84, 82, 73, 65, 78, 211, 171, 28, 79, 12, 42, 32, 46, 83, + 221, 227, 10, 2, 45, 84, 4, 162, 129, 10, 87, 229, 229, 20, 2, 79, 70, 6, 132, 1, 26, 76, 65, 78, 84, 69, 68, 32, 83, 79, 85, 84, 72, 32, 65, 82, - 82, 79, 87, 32, 87, 73, 84, 72, 32, 72, 79, 139, 209, 37, 80, 4, 138, - 221, 29, 82, 165, 193, 5, 2, 79, 75, 4, 224, 155, 35, 27, 77, 73, 78, 84, + 82, 79, 87, 32, 87, 73, 84, 72, 32, 72, 79, 191, 192, 37, 80, 4, 190, + 204, 29, 82, 165, 193, 5, 2, 79, 75, 4, 148, 139, 35, 27, 77, 73, 78, 84, 79, 78, 32, 82, 65, 67, 81, 85, 69, 84, 32, 65, 78, 68, 32, 83, 72, 85, - 84, 84, 76, 69, 67, 151, 180, 2, 71, 6, 224, 130, 31, 6, 85, 69, 84, 84, + 84, 84, 76, 69, 67, 151, 180, 2, 71, 6, 148, 242, 30, 6, 85, 69, 84, 84, 69, 32, 162, 254, 5, 69, 129, 9, 8, 71, 65, 71, 69, 32, 67, 76, 65, 156, 2, 44, 6, 73, 78, 69, 83, 69, 32, 183, 25, 76, 254, 1, 132, 3, 6, 67, 65, 82, 73, 75, 32, 84, 15, 73, 78, 86, 69, 82, 84, 69, 68, 32, 67, 65, 82, 73, 75, 32, 68, 7, 76, 69, 84, 84, 69, 82, 32, 224, 8, 15, 77, 85, 83, 73, 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 196, 6, 2, 80, 65, 184, 1, 5, 83, 73, 71, 78, 32, 176, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, - 78, 32, 220, 184, 14, 5, 65, 68, 69, 71, 32, 130, 159, 19, 87, 167, 169, - 2, 68, 6, 32, 2, 80, 65, 167, 136, 3, 83, 4, 86, 82, 177, 153, 31, 5, 77, - 85, 78, 71, 75, 4, 36, 3, 80, 65, 82, 207, 135, 3, 83, 2, 169, 177, 36, + 78, 32, 168, 176, 14, 5, 65, 68, 69, 71, 32, 234, 150, 19, 87, 167, 169, + 2, 68, 6, 32, 2, 80, 65, 167, 136, 3, 83, 4, 86, 82, 229, 136, 31, 5, 77, + 85, 78, 71, 75, 4, 36, 3, 80, 65, 82, 207, 135, 3, 83, 2, 221, 160, 36, 2, 69, 82, 110, 166, 2, 65, 112, 2, 66, 65, 32, 2, 67, 65, 32, 2, 68, 65, 110, 69, 32, 2, 71, 65, 30, 73, 2, 79, 2, 85, 36, 2, 74, 65, 30, 75, 68, 2, 76, 65, 18, 78, 72, 2, 80, 65, 36, 2, 82, 65, 16, 2, 83, 65, 54, 84, - 128, 1, 2, 86, 69, 0, 3, 90, 65, 76, 154, 252, 37, 72, 2, 77, 2, 87, 3, - 89, 10, 226, 2, 75, 184, 3, 5, 83, 89, 85, 82, 65, 184, 182, 15, 8, 82, - 67, 72, 65, 73, 67, 32, 74, 187, 255, 3, 73, 5, 197, 142, 19, 3, 32, 75, - 69, 5, 161, 152, 31, 3, 32, 76, 65, 9, 17, 2, 32, 77, 6, 44, 5, 85, 82, - 68, 65, 32, 231, 229, 33, 65, 4, 254, 195, 14, 77, 25, 3, 65, 76, 80, 4, - 254, 3, 70, 135, 186, 37, 75, 5, 217, 141, 35, 2, 32, 71, 4, 11, 75, 4, - 161, 15, 2, 65, 82, 5, 249, 239, 35, 2, 32, 74, 8, 34, 65, 225, 2, 3, 72, - 79, 84, 7, 222, 2, 70, 207, 191, 14, 32, 7, 131, 13, 32, 8, 34, 65, 166, - 254, 37, 71, 3, 89, 5, 233, 151, 27, 4, 32, 82, 65, 77, 5, 217, 244, 36, - 4, 32, 75, 65, 80, 7, 167, 12, 32, 7, 21, 3, 32, 83, 65, 4, 178, 253, 37, - 71, 3, 80, 10, 30, 65, 97, 3, 90, 73, 82, 9, 11, 32, 6, 156, 192, 14, 6, - 77, 85, 82, 68, 65, 32, 212, 7, 3, 76, 65, 84, 203, 189, 18, 84, 2, 189, - 188, 14, 2, 32, 83, 56, 168, 1, 10, 67, 79, 77, 66, 73, 78, 73, 78, 71, + 128, 1, 2, 86, 69, 0, 3, 90, 65, 76, 206, 235, 37, 72, 2, 77, 2, 87, 3, + 89, 10, 226, 2, 75, 184, 3, 5, 83, 89, 85, 82, 65, 184, 170, 15, 8, 82, + 67, 72, 65, 73, 67, 32, 74, 187, 255, 3, 73, 5, 197, 130, 19, 3, 32, 75, + 69, 5, 213, 135, 31, 3, 32, 76, 65, 9, 17, 2, 32, 77, 6, 44, 5, 85, 82, + 68, 65, 32, 155, 213, 33, 65, 4, 202, 187, 14, 77, 25, 3, 65, 76, 80, 4, + 254, 3, 70, 187, 169, 37, 75, 5, 141, 253, 34, 2, 32, 71, 4, 11, 75, 4, + 161, 15, 2, 65, 82, 5, 173, 223, 35, 2, 32, 74, 8, 34, 65, 225, 2, 3, 72, + 79, 84, 7, 222, 2, 70, 155, 183, 14, 32, 7, 131, 13, 32, 8, 34, 65, 218, + 237, 37, 71, 3, 89, 5, 157, 135, 27, 4, 32, 82, 65, 77, 5, 141, 228, 36, + 4, 32, 75, 65, 80, 7, 167, 12, 32, 7, 21, 3, 32, 83, 65, 4, 230, 236, 37, + 71, 3, 80, 10, 30, 65, 97, 3, 90, 73, 82, 9, 11, 32, 6, 232, 183, 14, 6, + 77, 85, 82, 68, 65, 32, 212, 7, 3, 76, 65, 84, 179, 181, 18, 84, 2, 137, + 180, 14, 2, 32, 83, 56, 168, 1, 10, 67, 79, 77, 66, 73, 78, 73, 78, 71, 32, 246, 1, 68, 172, 1, 10, 76, 69, 70, 84, 45, 72, 65, 78, 68, 32, 117, 11, 82, 73, 71, 72, 84, 45, 72, 65, 78, 68, 32, 18, 132, 1, 4, 75, 69, - 77, 80, 78, 74, 168, 158, 20, 2, 66, 69, 168, 187, 7, 3, 69, 78, 68, 136, + 77, 80, 78, 74, 168, 146, 20, 2, 66, 69, 220, 182, 7, 3, 69, 78, 68, 136, 172, 3, 3, 84, 69, 71, 207, 174, 4, 71, 8, 32, 2, 76, 73, 1, 2, 85, 76, - 5, 37, 7, 32, 87, 73, 84, 72, 32, 74, 2, 185, 182, 14, 3, 69, 71, 79, 20, - 50, 65, 90, 69, 146, 169, 37, 73, 2, 79, 3, 85, 10, 40, 2, 78, 71, 190, - 169, 37, 69, 3, 73, 7, 11, 32, 4, 218, 4, 83, 171, 135, 11, 71, 4, 142, - 169, 37, 85, 167, 80, 78, 10, 76, 6, 79, 80, 69, 78, 32, 80, 113, 9, 67, - 76, 79, 83, 69, 68, 32, 80, 76, 6, 158, 168, 37, 65, 2, 73, 3, 85, 8, 72, - 8, 67, 76, 79, 83, 69, 68, 32, 84, 29, 6, 79, 80, 69, 78, 32, 68, 4, 142, - 245, 37, 65, 3, 85, 4, 182, 247, 37, 65, 3, 85, 12, 30, 77, 69, 3, 78, - 84, 73, 6, 44, 3, 65, 68, 65, 193, 176, 35, 2, 69, 78, 5, 69, 2, 32, 76, - 7, 11, 32, 4, 38, 76, 209, 189, 35, 3, 66, 65, 87, 2, 129, 158, 37, 3, - 65, 78, 84, 12, 106, 83, 20, 4, 85, 76, 85, 32, 202, 128, 31, 67, 240, 6, - 3, 66, 73, 83, 133, 255, 1, 4, 82, 69, 82, 69, 2, 171, 131, 25, 85, 4, - 210, 221, 20, 67, 185, 133, 17, 3, 82, 73, 67, 30, 120, 3, 76, 65, 32, + 5, 37, 7, 32, 87, 73, 84, 72, 32, 74, 2, 133, 174, 14, 3, 69, 71, 79, 20, + 50, 65, 90, 69, 198, 152, 37, 73, 2, 79, 3, 85, 10, 40, 2, 78, 71, 242, + 152, 37, 69, 3, 73, 7, 11, 32, 4, 218, 4, 83, 247, 254, 10, 71, 4, 194, + 152, 37, 85, 167, 80, 78, 10, 76, 6, 79, 80, 69, 78, 32, 80, 113, 9, 67, + 76, 79, 83, 69, 68, 32, 80, 76, 6, 210, 151, 37, 65, 2, 73, 3, 85, 8, 72, + 8, 67, 76, 79, 83, 69, 68, 32, 84, 29, 6, 79, 80, 69, 78, 32, 68, 4, 194, + 228, 37, 65, 3, 85, 4, 234, 230, 37, 65, 3, 85, 12, 30, 77, 69, 3, 78, + 84, 73, 6, 44, 3, 65, 68, 65, 245, 159, 35, 2, 69, 78, 5, 69, 2, 32, 76, + 7, 11, 32, 4, 38, 76, 133, 173, 35, 3, 66, 65, 87, 2, 181, 141, 37, 3, + 65, 78, 84, 12, 106, 83, 20, 4, 85, 76, 85, 32, 254, 239, 30, 67, 240, 6, + 3, 66, 73, 83, 133, 255, 1, 4, 82, 69, 82, 69, 2, 223, 242, 24, 85, 4, + 210, 209, 20, 67, 237, 128, 17, 3, 82, 73, 67, 30, 120, 3, 76, 65, 32, 32, 3, 82, 65, 32, 12, 4, 83, 85, 75, 85, 34, 84, 104, 5, 80, 69, 80, 69, - 84, 53, 3, 85, 76, 85, 4, 165, 1, 4, 76, 69, 78, 71, 4, 115, 82, 5, 141, - 250, 36, 3, 32, 73, 76, 10, 36, 5, 65, 76, 73, 78, 71, 99, 69, 9, 11, 32, + 84, 53, 3, 85, 76, 85, 4, 165, 1, 4, 76, 69, 78, 71, 4, 115, 82, 5, 193, + 233, 36, 3, 32, 73, 76, 10, 36, 5, 65, 76, 73, 78, 71, 99, 69, 9, 11, 32, 6, 18, 82, 55, 84, 4, 17, 2, 69, 80, 4, 11, 65, 5, 17, 2, 32, 84, 2, 11, - 69, 2, 251, 254, 30, 68, 5, 213, 134, 31, 3, 32, 83, 65, 30, 86, 79, 208, - 174, 23, 5, 32, 79, 70, 32, 89, 217, 172, 13, 6, 69, 84, 32, 83, 72, 79, - 26, 32, 2, 79, 78, 21, 2, 84, 32, 5, 135, 217, 35, 45, 22, 44, 2, 66, 79, - 246, 1, 83, 211, 238, 37, 88, 18, 38, 88, 205, 1, 4, 76, 68, 32, 83, 17, - 33, 6, 32, 87, 73, 84, 72, 32, 14, 82, 66, 86, 83, 184, 230, 12, 4, 76, - 73, 71, 72, 134, 189, 10, 67, 151, 203, 14, 88, 6, 52, 4, 79, 76, 68, 32, - 181, 158, 37, 3, 65, 76, 76, 4, 26, 83, 191, 163, 23, 67, 2, 181, 230, + 69, 2, 175, 238, 30, 68, 5, 137, 246, 30, 3, 32, 83, 65, 30, 86, 79, 132, + 158, 23, 5, 32, 79, 70, 32, 89, 217, 172, 13, 6, 69, 84, 32, 83, 72, 79, + 26, 32, 2, 79, 78, 21, 2, 84, 32, 5, 187, 200, 35, 45, 22, 44, 2, 66, 79, + 246, 1, 83, 135, 222, 37, 88, 18, 38, 88, 205, 1, 4, 76, 68, 32, 83, 17, + 33, 6, 32, 87, 73, 84, 72, 32, 14, 82, 66, 86, 83, 132, 222, 12, 4, 76, + 73, 71, 72, 238, 180, 10, 67, 151, 203, 14, 88, 6, 52, 4, 79, 76, 68, 32, + 233, 141, 37, 3, 65, 76, 76, 4, 26, 83, 243, 146, 23, 67, 2, 129, 222, 12, 4, 67, 82, 73, 80, 172, 10, 120, 2, 67, 79, 180, 1, 7, 76, 69, 84, - 84, 69, 82, 32, 208, 92, 3, 78, 74, 65, 194, 238, 28, 83, 182, 203, 5, - 70, 83, 81, 8, 26, 77, 167, 157, 37, 76, 6, 72, 12, 66, 73, 78, 73, 78, - 71, 32, 77, 65, 82, 75, 32, 143, 234, 37, 77, 4, 184, 242, 21, 6, 84, 85, - 75, 87, 69, 78, 217, 173, 3, 4, 75, 79, 81, 78, 156, 10, 170, 1, 70, 58, + 84, 69, 82, 32, 208, 92, 3, 78, 74, 65, 246, 221, 28, 83, 182, 203, 5, + 70, 83, 81, 8, 26, 77, 219, 140, 37, 76, 6, 72, 12, 66, 73, 78, 73, 78, + 71, 32, 77, 65, 82, 75, 32, 195, 217, 37, 77, 4, 184, 230, 21, 6, 84, 85, + 75, 87, 69, 78, 141, 169, 3, 4, 75, 79, 81, 78, 156, 10, 170, 1, 70, 58, 75, 170, 1, 76, 66, 77, 102, 78, 234, 1, 80, 166, 104, 82, 102, 83, 134, - 1, 84, 54, 89, 162, 225, 2, 87, 170, 131, 34, 69, 214, 22, 65, 2, 73, 2, - 79, 3, 85, 8, 170, 80, 65, 202, 131, 37, 69, 254, 5, 79, 219, 16, 85, 22, - 78, 69, 46, 79, 246, 246, 35, 89, 234, 239, 1, 80, 186, 2, 65, 2, 73, 3, - 85, 6, 254, 218, 36, 85, 194, 142, 1, 78, 3, 84, 7, 162, 244, 35, 86, - 141, 228, 1, 2, 71, 72, 10, 154, 103, 69, 182, 158, 26, 79, 154, 227, 10, - 65, 2, 73, 3, 85, 19, 62, 69, 254, 101, 66, 238, 129, 37, 65, 2, 73, 2, - 79, 3, 85, 4, 198, 245, 35, 69, 163, 242, 1, 78, 30, 102, 71, 50, 74, 50, - 84, 238, 101, 85, 234, 130, 35, 83, 246, 7, 68, 222, 225, 1, 89, 218, 19, - 65, 3, 73, 6, 134, 247, 32, 75, 158, 237, 4, 71, 187, 2, 65, 6, 182, 233, - 26, 85, 162, 230, 10, 69, 171, 4, 65, 4, 146, 193, 37, 85, 151, 14, 69, - 136, 9, 76, 5, 72, 65, 83, 69, 45, 170, 101, 69, 138, 2, 85, 218, 253, + 1, 84, 54, 89, 162, 225, 2, 87, 222, 242, 33, 69, 214, 22, 65, 2, 73, 2, + 79, 3, 85, 8, 170, 80, 65, 254, 242, 36, 69, 254, 5, 79, 219, 16, 85, 22, + 78, 69, 46, 79, 170, 230, 35, 89, 234, 239, 1, 80, 186, 2, 65, 2, 73, 3, + 85, 6, 178, 202, 36, 85, 194, 142, 1, 78, 3, 84, 7, 214, 227, 35, 86, + 141, 228, 1, 2, 71, 72, 10, 154, 103, 69, 234, 141, 26, 79, 154, 227, 10, + 65, 2, 73, 3, 85, 19, 62, 69, 254, 101, 66, 162, 241, 36, 65, 2, 73, 2, + 79, 3, 85, 4, 250, 228, 35, 69, 163, 242, 1, 78, 30, 102, 71, 50, 74, 50, + 84, 238, 101, 85, 158, 242, 34, 83, 246, 7, 68, 222, 225, 1, 89, 218, 19, + 65, 3, 73, 6, 186, 230, 32, 75, 158, 237, 4, 71, 187, 2, 65, 6, 234, 216, + 26, 85, 162, 230, 10, 69, 171, 4, 65, 4, 198, 176, 37, 85, 151, 14, 69, + 136, 9, 76, 5, 72, 65, 83, 69, 45, 170, 101, 69, 138, 2, 85, 142, 237, 36, 65, 3, 73, 252, 8, 116, 2, 65, 32, 168, 18, 2, 66, 32, 180, 13, 2, 67, 32, 180, 20, 2, 68, 32, 172, 18, 2, 69, 32, 153, 25, 2, 70, 32, 176, 1, 158, 1, 71, 106, 75, 130, 1, 76, 102, 77, 198, 3, 78, 210, 4, 80, 146, - 2, 83, 190, 2, 84, 154, 1, 85, 216, 230, 30, 2, 70, 73, 174, 249, 4, 86, + 2, 83, 190, 2, 84, 154, 1, 85, 140, 214, 30, 2, 70, 73, 174, 249, 4, 86, 191, 225, 1, 82, 6, 60, 5, 72, 69, 85, 65, 69, 153, 47, 5, 66, 73, 69, - 69, 32, 4, 220, 27, 2, 71, 72, 215, 201, 26, 82, 12, 38, 65, 34, 69, 214, - 67, 80, 3, 85, 4, 158, 223, 37, 70, 187, 2, 81, 4, 188, 129, 34, 5, 85, - 75, 69, 85, 84, 251, 223, 3, 84, 10, 78, 85, 166, 66, 79, 232, 186, 26, - 2, 65, 80, 213, 233, 9, 4, 69, 84, 32, 75, 5, 203, 190, 27, 65, 36, 142, + 69, 32, 4, 220, 27, 2, 71, 72, 139, 185, 26, 82, 12, 38, 65, 34, 69, 214, + 67, 80, 3, 85, 4, 210, 206, 37, 70, 187, 2, 81, 4, 240, 240, 33, 5, 85, + 75, 69, 85, 84, 251, 223, 3, 84, 10, 78, 85, 166, 66, 79, 156, 170, 26, + 2, 65, 80, 213, 233, 9, 4, 69, 84, 32, 75, 5, 255, 173, 27, 65, 36, 142, 1, 65, 176, 1, 2, 66, 65, 38, 79, 76, 6, 86, 69, 85, 65, 69, 78, 180, 71, - 8, 69, 85, 78, 74, 79, 77, 78, 68, 229, 217, 34, 2, 71, 66, 20, 62, 69, - 236, 49, 2, 78, 83, 169, 148, 32, 4, 80, 32, 80, 73, 16, 58, 77, 142, - 190, 12, 75, 138, 176, 7, 78, 167, 220, 17, 83, 11, 230, 24, 66, 14, 71, - 214, 44, 86, 203, 252, 27, 75, 4, 222, 237, 19, 78, 255, 239, 17, 81, 6, - 36, 2, 79, 77, 237, 1, 2, 78, 32, 4, 242, 143, 13, 80, 207, 211, 23, 69, - 2, 219, 159, 36, 71, 48, 122, 65, 32, 2, 68, 65, 54, 71, 98, 75, 32, 2, - 83, 72, 38, 84, 102, 89, 74, 90, 170, 155, 36, 74, 178, 109, 69, 251, 70, - 73, 4, 250, 8, 65, 227, 210, 37, 81, 4, 22, 65, 203, 22, 32, 2, 217, 44, - 3, 78, 71, 71, 8, 52, 3, 75, 85, 69, 170, 226, 32, 65, 167, 162, 3, 71, - 4, 250, 7, 32, 201, 174, 12, 2, 78, 90, 4, 166, 26, 65, 143, 229, 19, 73, - 4, 230, 231, 35, 73, 163, 242, 1, 65, 8, 40, 2, 65, 80, 185, 189, 28, 2, - 79, 81, 7, 11, 32, 4, 244, 227, 35, 2, 77, 70, 1, 2, 78, 84, 6, 26, 73, - 187, 188, 37, 69, 5, 193, 13, 7, 84, 32, 77, 79, 78, 71, 75, 4, 214, 5, - 65, 137, 179, 12, 4, 85, 78, 32, 77, 22, 58, 65, 80, 3, 79, 78, 32, 210, - 186, 37, 69, 163, 28, 85, 10, 42, 65, 198, 18, 32, 142, 18, 77, 15, 83, - 4, 170, 218, 26, 82, 247, 252, 10, 77, 8, 56, 4, 77, 70, 79, 78, 1, 6, + 8, 69, 85, 78, 74, 79, 77, 78, 68, 153, 201, 34, 2, 71, 66, 20, 62, 69, + 236, 49, 2, 78, 83, 221, 131, 32, 4, 80, 32, 80, 73, 16, 58, 77, 218, + 181, 12, 75, 190, 172, 7, 78, 219, 215, 17, 83, 11, 230, 24, 66, 14, 71, + 214, 44, 86, 255, 235, 27, 75, 4, 222, 225, 19, 78, 179, 235, 17, 81, 6, + 36, 2, 79, 77, 237, 1, 2, 78, 32, 4, 190, 135, 13, 80, 183, 203, 23, 69, + 2, 143, 143, 36, 71, 48, 122, 65, 32, 2, 68, 65, 54, 71, 98, 75, 32, 2, + 83, 72, 38, 84, 102, 89, 74, 90, 222, 138, 36, 74, 178, 109, 69, 251, 70, + 73, 4, 250, 8, 65, 151, 194, 37, 81, 4, 22, 65, 203, 22, 32, 2, 217, 44, + 3, 78, 71, 71, 8, 52, 3, 75, 85, 69, 222, 209, 32, 65, 167, 162, 3, 71, + 4, 250, 7, 32, 149, 166, 12, 2, 78, 90, 4, 166, 26, 65, 143, 217, 19, 73, + 4, 154, 215, 35, 73, 163, 242, 1, 65, 8, 40, 2, 65, 80, 237, 172, 28, 2, + 79, 81, 7, 11, 32, 4, 168, 211, 35, 2, 77, 70, 1, 2, 78, 84, 6, 26, 73, + 239, 171, 37, 69, 5, 193, 13, 7, 84, 32, 77, 79, 78, 71, 75, 4, 214, 5, + 65, 213, 170, 12, 4, 85, 78, 32, 77, 22, 58, 65, 80, 3, 79, 78, 32, 134, + 170, 37, 69, 163, 28, 85, 10, 42, 65, 198, 18, 32, 142, 18, 77, 15, 83, + 4, 222, 201, 26, 82, 247, 252, 10, 77, 8, 56, 4, 77, 70, 79, 78, 1, 6, 80, 65, 32, 78, 74, 73, 4, 37, 7, 32, 80, 73, 80, 65, 69, 77, 4, 250, 16, - 71, 231, 194, 37, 66, 22, 70, 72, 194, 1, 79, 144, 67, 2, 69, 85, 250, - 235, 36, 85, 167, 34, 73, 10, 74, 73, 70, 85, 253, 168, 36, 10, 79, 81, - 32, 78, 83, 72, 85, 84, 32, 89, 4, 238, 215, 26, 82, 237, 220, 6, 8, 78, - 68, 65, 32, 80, 65, 32, 78, 4, 204, 11, 4, 69, 78, 83, 72, 211, 200, 37, - 77, 6, 220, 150, 36, 2, 78, 74, 146, 189, 1, 81, 3, 84, 10, 44, 2, 69, - 85, 44, 3, 73, 84, 65, 31, 85, 4, 134, 253, 35, 65, 1, 4, 84, 69, 85, 87, - 2, 11, 32, 2, 195, 31, 77, 4, 234, 26, 32, 247, 149, 27, 65, 4, 228, 3, - 5, 32, 89, 85, 81, 32, 245, 134, 28, 3, 78, 75, 78, 116, 164, 1, 7, 71, + 71, 155, 178, 37, 66, 22, 70, 72, 194, 1, 79, 144, 67, 2, 69, 85, 174, + 219, 36, 85, 167, 34, 73, 10, 74, 73, 70, 85, 177, 152, 36, 10, 79, 81, + 32, 78, 83, 72, 85, 84, 32, 89, 4, 162, 199, 26, 82, 237, 220, 6, 8, 78, + 68, 65, 32, 80, 65, 32, 78, 4, 204, 11, 4, 69, 78, 83, 72, 135, 184, 37, + 77, 6, 144, 134, 36, 2, 78, 74, 146, 189, 1, 81, 3, 84, 10, 44, 2, 69, + 85, 44, 3, 73, 84, 65, 31, 85, 4, 186, 236, 35, 65, 1, 4, 84, 69, 85, 87, + 2, 11, 32, 2, 195, 31, 77, 4, 234, 26, 32, 171, 133, 27, 65, 4, 228, 3, + 5, 32, 89, 85, 81, 32, 169, 246, 27, 3, 78, 75, 78, 116, 164, 1, 7, 71, 72, 69, 85, 71, 72, 69, 34, 75, 126, 76, 122, 77, 154, 3, 78, 250, 2, 80, - 118, 83, 178, 1, 84, 106, 89, 210, 22, 87, 220, 46, 2, 70, 69, 215, 219, - 11, 86, 4, 134, 57, 85, 183, 151, 37, 78, 12, 40, 2, 69, 85, 50, 73, 235, - 190, 37, 65, 6, 166, 55, 89, 174, 203, 12, 80, 243, 186, 24, 65, 4, 146, - 189, 37, 69, 175, 18, 81, 8, 46, 65, 192, 70, 2, 79, 77, 135, 236, 36, - 69, 4, 50, 65, 209, 61, 7, 77, 32, 78, 83, 72, 85, 84, 2, 199, 209, 26, + 118, 83, 178, 1, 84, 106, 89, 210, 22, 87, 220, 46, 2, 70, 69, 163, 211, + 11, 86, 4, 134, 57, 85, 235, 134, 37, 78, 12, 40, 2, 69, 85, 50, 73, 159, + 174, 37, 65, 6, 166, 55, 89, 250, 194, 12, 80, 219, 178, 24, 65, 4, 198, + 172, 37, 69, 175, 18, 81, 8, 46, 65, 192, 70, 2, 79, 77, 187, 219, 36, + 69, 4, 50, 65, 209, 61, 7, 77, 32, 78, 83, 72, 85, 84, 2, 251, 192, 26, 78, 26, 70, 65, 74, 66, 140, 1, 2, 69, 85, 58, 70, 193, 23, 3, 79, 78, - 84, 7, 21, 3, 32, 78, 74, 4, 210, 238, 18, 85, 209, 160, 17, 3, 69, 85, - 65, 10, 90, 65, 218, 46, 85, 152, 178, 30, 2, 69, 85, 133, 153, 6, 7, 73, - 84, 32, 77, 66, 65, 65, 4, 198, 12, 65, 213, 218, 19, 4, 32, 77, 65, 69, - 4, 208, 179, 32, 5, 84, 32, 78, 71, 71, 187, 152, 5, 81, 4, 48, 4, 79, - 78, 32, 84, 253, 231, 26, 2, 73, 89, 2, 243, 65, 69, 26, 110, 71, 182, 1, - 83, 50, 89, 200, 23, 8, 84, 73, 69, 69, 32, 83, 72, 69, 193, 187, 35, 5, - 68, 85, 32, 78, 74, 14, 70, 71, 196, 208, 36, 8, 75, 73, 78, 68, 73, 32, - 77, 86, 191, 104, 79, 10, 76, 3, 85, 79, 81, 244, 237, 19, 2, 69, 85, - 134, 158, 16, 65, 187, 172, 1, 79, 5, 205, 212, 28, 2, 32, 76, 4, 26, 72, - 243, 248, 36, 69, 2, 183, 147, 37, 85, 4, 168, 46, 2, 65, 69, 227, 17, - 73, 10, 76, 3, 85, 78, 71, 252, 213, 10, 2, 69, 69, 178, 177, 12, 65, - 243, 163, 14, 73, 4, 194, 194, 31, 71, 247, 199, 4, 65, 12, 88, 2, 65, - 75, 16, 2, 72, 69, 156, 212, 19, 2, 69, 84, 254, 255, 15, 73, 207, 219, - 1, 85, 2, 231, 25, 69, 4, 144, 227, 26, 4, 84, 32, 78, 74, 221, 138, 5, - 4, 85, 65, 69, 81, 6, 32, 2, 85, 32, 195, 136, 36, 65, 4, 36, 4, 77, 65, + 84, 7, 21, 3, 32, 78, 74, 4, 210, 226, 18, 85, 133, 156, 17, 3, 69, 85, + 65, 10, 90, 65, 218, 46, 85, 204, 161, 30, 2, 69, 85, 133, 153, 6, 7, 73, + 84, 32, 77, 66, 65, 65, 4, 198, 12, 65, 213, 206, 19, 4, 32, 77, 65, 69, + 4, 132, 163, 32, 5, 84, 32, 78, 71, 71, 187, 152, 5, 81, 4, 48, 4, 79, + 78, 32, 84, 177, 215, 26, 2, 73, 89, 2, 243, 65, 69, 26, 110, 71, 182, 1, + 83, 50, 89, 200, 23, 8, 84, 73, 69, 69, 32, 83, 72, 69, 245, 170, 35, 5, + 68, 85, 32, 78, 74, 14, 70, 71, 248, 191, 36, 8, 75, 73, 78, 68, 73, 32, + 77, 86, 191, 104, 79, 10, 76, 3, 85, 79, 81, 244, 225, 19, 2, 69, 85, + 186, 153, 16, 65, 187, 172, 1, 79, 5, 129, 196, 28, 2, 32, 76, 4, 26, 72, + 167, 232, 36, 69, 2, 235, 130, 37, 85, 4, 168, 46, 2, 65, 69, 227, 17, + 73, 10, 76, 3, 85, 78, 71, 200, 205, 10, 2, 69, 69, 154, 169, 12, 65, + 243, 163, 14, 73, 4, 246, 177, 31, 71, 247, 199, 4, 65, 12, 88, 2, 65, + 75, 16, 2, 72, 69, 156, 200, 19, 2, 69, 84, 178, 251, 15, 73, 207, 219, + 1, 85, 2, 231, 25, 69, 4, 196, 210, 26, 4, 84, 32, 78, 74, 221, 138, 5, + 4, 85, 65, 69, 81, 6, 32, 2, 85, 32, 247, 247, 35, 65, 4, 36, 4, 77, 65, 69, 77, 143, 7, 78, 2, 11, 71, 2, 139, 7, 66, 4, 44, 4, 65, 70, 85, 32, - 233, 4, 2, 69, 85, 2, 253, 202, 32, 6, 76, 69, 69, 82, 65, 69, 198, 1, + 233, 4, 2, 69, 85, 2, 177, 186, 32, 6, 76, 69, 69, 82, 65, 69, 198, 1, 174, 1, 71, 82, 75, 206, 2, 76, 50, 77, 250, 3, 78, 238, 6, 80, 78, 83, - 134, 1, 84, 176, 1, 3, 86, 69, 85, 46, 87, 62, 89, 170, 189, 30, 66, 226, - 227, 2, 70, 247, 234, 3, 82, 6, 40, 2, 72, 65, 213, 210, 19, 2, 66, 65, - 4, 218, 197, 26, 82, 247, 252, 10, 80, 22, 66, 69, 182, 1, 85, 144, 221, - 26, 3, 80, 65, 82, 239, 224, 10, 65, 14, 40, 2, 78, 32, 54, 85, 139, 193, - 37, 84, 4, 208, 177, 33, 4, 70, 65, 84, 73, 191, 145, 3, 76, 8, 42, 83, - 186, 221, 26, 75, 167, 227, 10, 77, 4, 248, 14, 3, 72, 69, 85, 255, 53, - 69, 4, 48, 6, 79, 80, 32, 78, 75, 65, 131, 192, 37, 84, 2, 11, 65, 2, - 255, 194, 26, 82, 8, 234, 47, 65, 222, 172, 26, 73, 155, 227, 10, 85, 38, - 82, 65, 130, 1, 66, 234, 192, 26, 85, 208, 25, 4, 71, 66, 65, 83, 135, - 241, 8, 73, 8, 18, 32, 79, 69, 4, 42, 78, 141, 252, 17, 4, 75, 69, 85, - 65, 2, 11, 83, 2, 239, 203, 35, 73, 4, 210, 144, 37, 77, 211, 25, 83, 24, - 34, 65, 114, 69, 82, 73, 35, 85, 6, 32, 2, 65, 32, 155, 205, 19, 78, 4, - 192, 243, 31, 8, 67, 65, 66, 66, 65, 71, 69, 45, 253, 246, 4, 2, 80, 73, - 8, 50, 85, 162, 191, 26, 82, 189, 228, 5, 2, 69, 75, 4, 146, 188, 37, 77, - 3, 88, 7, 226, 7, 82, 151, 180, 37, 84, 4, 170, 169, 37, 65, 175, 18, 69, + 134, 1, 84, 176, 1, 3, 86, 69, 85, 46, 87, 62, 89, 222, 172, 30, 66, 226, + 227, 2, 70, 247, 234, 3, 82, 6, 40, 2, 72, 65, 213, 198, 19, 2, 66, 65, + 4, 142, 181, 26, 82, 247, 252, 10, 80, 22, 66, 69, 182, 1, 85, 196, 204, + 26, 3, 80, 65, 82, 239, 224, 10, 65, 14, 40, 2, 78, 32, 54, 85, 191, 176, + 37, 84, 4, 132, 161, 33, 4, 70, 65, 84, 73, 191, 145, 3, 76, 8, 42, 83, + 238, 204, 26, 75, 167, 227, 10, 77, 4, 248, 14, 3, 72, 69, 85, 255, 53, + 69, 4, 48, 6, 79, 80, 32, 78, 75, 65, 183, 175, 37, 84, 2, 11, 65, 2, + 179, 178, 26, 82, 8, 234, 47, 65, 146, 156, 26, 73, 155, 227, 10, 85, 38, + 82, 65, 130, 1, 66, 158, 176, 26, 85, 208, 25, 4, 71, 66, 65, 83, 135, + 241, 8, 73, 8, 18, 32, 79, 69, 4, 42, 78, 141, 240, 17, 4, 75, 69, 85, + 65, 2, 11, 83, 2, 163, 187, 35, 73, 4, 134, 128, 37, 77, 211, 25, 83, 24, + 34, 65, 114, 69, 82, 73, 35, 85, 6, 32, 2, 65, 32, 155, 193, 19, 78, 4, + 244, 226, 31, 8, 67, 65, 66, 66, 65, 71, 69, 45, 253, 246, 4, 2, 80, 73, + 8, 50, 85, 214, 174, 26, 82, 189, 228, 5, 2, 69, 75, 4, 198, 171, 37, 77, + 3, 88, 7, 226, 7, 82, 203, 163, 37, 84, 4, 222, 152, 37, 65, 175, 18, 69, 72, 130, 1, 65, 54, 68, 110, 71, 222, 1, 74, 102, 83, 130, 1, 84, 102, - 90, 253, 7, 12, 89, 73, 82, 32, 77, 75, 80, 65, 82, 65, 81, 32, 4, 140, - 215, 26, 4, 78, 83, 65, 78, 167, 227, 10, 81, 12, 60, 2, 69, 85, 206, 41, - 65, 238, 180, 19, 79, 135, 182, 17, 73, 4, 144, 199, 35, 2, 65, 69, 175, - 242, 1, 84, 20, 50, 71, 98, 75, 234, 212, 26, 65, 195, 210, 10, 79, 12, - 26, 85, 231, 232, 36, 69, 11, 212, 39, 3, 65, 69, 78, 142, 193, 36, 79, - 202, 26, 69, 155, 53, 77, 4, 36, 3, 85, 69, 32, 195, 212, 26, 65, 2, 249, - 205, 19, 3, 77, 65, 69, 10, 34, 65, 34, 69, 199, 233, 12, 85, 4, 186, - 166, 37, 69, 219, 16, 77, 4, 210, 196, 35, 69, 227, 99, 85, 12, 78, 85, - 226, 210, 26, 72, 220, 243, 5, 2, 69, 85, 242, 222, 4, 79, 219, 16, 65, - 4, 208, 162, 37, 4, 79, 84, 32, 78, 179, 19, 78, 8, 54, 69, 228, 152, 37, - 4, 85, 32, 77, 66, 131, 26, 65, 4, 176, 201, 19, 2, 85, 78, 235, 235, 17, - 78, 4, 202, 137, 36, 69, 167, 171, 1, 65, 6, 26, 73, 211, 228, 36, 69, 4, - 26, 82, 151, 180, 37, 78, 2, 131, 222, 35, 73, 12, 30, 69, 30, 72, 163, - 7, 85, 4, 78, 84, 211, 164, 36, 85, 6, 48, 2, 69, 84, 226, 229, 12, 85, - 155, 234, 13, 73, 2, 163, 227, 36, 70, 10, 40, 2, 65, 65, 34, 69, 41, 2, - 73, 84, 2, 11, 83, 2, 207, 181, 26, 72, 4, 228, 25, 2, 85, 84, 203, 152, - 37, 84, 4, 38, 85, 133, 162, 33, 3, 65, 32, 89, 2, 251, 143, 27, 65, 4, - 200, 149, 28, 2, 65, 69, 131, 156, 9, 88, 4, 40, 4, 65, 78, 71, 75, 235, - 176, 37, 85, 2, 143, 19, 85, 10, 42, 85, 158, 227, 12, 69, 231, 202, 24, - 65, 6, 210, 18, 87, 212, 3, 4, 32, 77, 85, 79, 147, 154, 37, 77, 234, 1, + 90, 253, 7, 12, 89, 73, 82, 32, 77, 75, 80, 65, 82, 65, 81, 32, 4, 192, + 198, 26, 4, 78, 83, 65, 78, 167, 227, 10, 81, 12, 60, 2, 69, 85, 206, 41, + 65, 238, 168, 19, 79, 187, 177, 17, 73, 4, 196, 182, 35, 2, 65, 69, 175, + 242, 1, 84, 20, 50, 71, 98, 75, 158, 196, 26, 65, 195, 210, 10, 79, 12, + 26, 85, 155, 216, 36, 69, 11, 212, 39, 3, 65, 69, 78, 194, 176, 36, 79, + 202, 26, 69, 155, 53, 77, 4, 36, 3, 85, 69, 32, 247, 195, 26, 65, 2, 249, + 193, 19, 3, 77, 65, 69, 10, 34, 65, 34, 69, 147, 225, 12, 85, 4, 238, + 149, 37, 69, 219, 16, 77, 4, 134, 180, 35, 69, 227, 99, 85, 12, 78, 85, + 150, 194, 26, 72, 220, 243, 5, 2, 69, 85, 242, 222, 4, 79, 219, 16, 65, + 4, 132, 146, 37, 4, 79, 84, 32, 78, 179, 19, 78, 8, 54, 69, 152, 136, 37, + 4, 85, 32, 77, 66, 131, 26, 65, 4, 176, 189, 19, 2, 85, 78, 159, 231, 17, + 78, 4, 254, 248, 35, 69, 167, 171, 1, 65, 6, 26, 73, 135, 212, 36, 69, 4, + 26, 82, 203, 163, 37, 78, 2, 183, 205, 35, 73, 12, 30, 69, 30, 72, 163, + 7, 85, 4, 78, 84, 135, 148, 36, 85, 6, 48, 2, 69, 84, 174, 221, 12, 85, + 131, 226, 13, 73, 2, 215, 210, 36, 70, 10, 40, 2, 65, 65, 34, 69, 41, 2, + 73, 84, 2, 11, 83, 2, 131, 165, 26, 72, 4, 228, 25, 2, 85, 84, 255, 135, + 37, 84, 4, 38, 85, 185, 145, 33, 3, 65, 32, 89, 2, 175, 255, 26, 65, 4, + 252, 132, 28, 2, 65, 69, 131, 156, 9, 88, 4, 40, 4, 65, 78, 71, 75, 159, + 160, 37, 85, 2, 143, 19, 85, 10, 42, 85, 234, 218, 12, 69, 207, 194, 24, + 65, 6, 210, 18, 87, 212, 3, 4, 32, 77, 85, 79, 199, 137, 37, 77, 234, 1, 134, 1, 70, 68, 2, 71, 72, 34, 75, 254, 1, 76, 142, 1, 77, 130, 3, 78, 130, 5, 80, 122, 82, 90, 83, 190, 1, 84, 158, 1, 87, 39, 89, 4, 36, 3, - 69, 85, 70, 147, 172, 37, 65, 2, 11, 69, 2, 151, 2, 85, 4, 202, 1, 69, - 171, 170, 37, 65, 22, 46, 69, 146, 1, 85, 42, 87, 135, 186, 35, 89, 10, - 26, 85, 195, 173, 37, 84, 8, 72, 3, 65, 69, 84, 20, 5, 79, 84, 32, 77, - 66, 226, 172, 37, 77, 3, 80, 2, 207, 140, 12, 77, 2, 235, 175, 26, 85, 9, - 242, 155, 37, 79, 218, 16, 78, 3, 81, 2, 139, 247, 36, 65, 14, 58, 69, - 190, 200, 26, 79, 250, 240, 8, 73, 203, 225, 1, 85, 8, 42, 85, 138, 185, - 35, 69, 163, 242, 1, 84, 4, 194, 137, 27, 65, 231, 161, 10, 77, 41, 94, - 65, 58, 66, 66, 69, 38, 70, 80, 2, 71, 66, 226, 163, 32, 79, 198, 139, 4, - 86, 151, 121, 85, 4, 144, 232, 17, 2, 76, 69, 249, 140, 19, 3, 69, 78, - 74, 6, 32, 2, 65, 65, 215, 138, 37, 85, 5, 133, 135, 29, 2, 32, 83, 6, - 202, 202, 18, 85, 195, 236, 16, 69, 10, 44, 2, 69, 85, 238, 170, 35, 79, - 207, 11, 73, 4, 130, 146, 37, 65, 215, 22, 84, 6, 150, 182, 35, 73, 252, + 69, 85, 70, 199, 155, 37, 65, 2, 11, 69, 2, 151, 2, 85, 4, 202, 1, 69, + 223, 153, 37, 65, 22, 46, 69, 146, 1, 85, 42, 87, 187, 169, 35, 89, 10, + 26, 85, 247, 156, 37, 84, 8, 72, 3, 65, 69, 84, 20, 5, 79, 84, 32, 77, + 66, 150, 156, 37, 77, 3, 80, 2, 155, 132, 12, 77, 2, 159, 159, 26, 85, 9, + 166, 139, 37, 79, 218, 16, 78, 3, 81, 2, 191, 230, 36, 65, 14, 58, 69, + 242, 183, 26, 79, 250, 240, 8, 73, 203, 225, 1, 85, 8, 42, 85, 190, 168, + 35, 69, 163, 242, 1, 84, 4, 246, 248, 26, 65, 231, 161, 10, 77, 41, 94, + 65, 58, 66, 66, 69, 38, 70, 80, 2, 71, 66, 150, 147, 32, 79, 198, 139, 4, + 86, 151, 121, 85, 4, 144, 220, 17, 2, 76, 69, 173, 136, 19, 3, 69, 78, + 74, 6, 32, 2, 65, 65, 139, 250, 36, 85, 5, 185, 246, 28, 2, 32, 83, 6, + 202, 190, 18, 85, 247, 231, 16, 69, 10, 44, 2, 69, 85, 162, 154, 35, 79, + 207, 11, 73, 4, 182, 129, 37, 65, 215, 22, 84, 6, 202, 165, 35, 73, 252, 70, 2, 79, 70, 247, 42, 69, 72, 78, 68, 46, 71, 226, 1, 74, 98, 83, 110, - 84, 34, 89, 190, 163, 37, 73, 3, 85, 8, 210, 39, 69, 130, 176, 36, 79, - 139, 63, 65, 24, 18, 71, 99, 75, 12, 54, 65, 218, 42, 69, 158, 140, 32, - 87, 231, 222, 4, 85, 6, 168, 38, 2, 65, 77, 147, 128, 37, 80, 12, 68, 2, - 69, 85, 174, 179, 35, 73, 2, 89, 194, 162, 1, 85, 215, 79, 65, 4, 154, - 216, 12, 65, 219, 185, 24, 82, 12, 60, 2, 69, 85, 230, 15, 73, 214, 199, - 12, 85, 167, 205, 24, 65, 4, 186, 146, 37, 65, 175, 18, 84, 10, 46, 72, - 32, 3, 73, 69, 69, 163, 147, 37, 85, 4, 234, 135, 37, 85, 219, 5, 69, 4, - 246, 163, 37, 80, 3, 84, 6, 130, 14, 69, 243, 240, 36, 85, 8, 142, 135, - 37, 69, 218, 5, 85, 254, 5, 65, 219, 16, 73, 12, 42, 69, 46, 85, 162, - 162, 37, 65, 3, 73, 4, 224, 165, 26, 2, 85, 84, 247, 252, 10, 69, 4, 254, - 133, 37, 85, 175, 28, 81, 8, 48, 3, 69, 78, 32, 130, 142, 37, 73, 175, 1, - 65, 4, 138, 242, 26, 79, 155, 141, 10, 77, 26, 58, 72, 90, 85, 202, 16, - 65, 174, 6, 69, 131, 237, 36, 79, 12, 54, 69, 170, 189, 26, 79, 194, 207, - 10, 73, 219, 19, 85, 6, 214, 7, 85, 235, 152, 37, 69, 6, 202, 137, 37, - 65, 214, 22, 69, 3, 85, 18, 62, 69, 74, 85, 218, 187, 26, 79, 198, 204, - 10, 65, 215, 22, 73, 8, 26, 85, 255, 172, 35, 69, 6, 150, 201, 35, 65, - 134, 214, 1, 78, 3, 84, 5, 195, 130, 37, 79, 4, 146, 175, 32, 85, 191, - 239, 4, 65, 10, 40, 2, 65, 69, 18, 85, 159, 206, 36, 69, 2, 251, 3, 77, - 6, 22, 87, 243, 13, 79, 2, 203, 186, 26, 79, 188, 2, 178, 1, 70, 154, 1, + 84, 34, 89, 242, 146, 37, 73, 3, 85, 8, 210, 39, 69, 182, 159, 36, 79, + 139, 63, 65, 24, 18, 71, 99, 75, 12, 54, 65, 218, 42, 69, 210, 251, 31, + 87, 231, 222, 4, 85, 6, 168, 38, 2, 65, 77, 199, 239, 36, 80, 12, 68, 2, + 69, 85, 226, 162, 35, 73, 2, 89, 194, 162, 1, 85, 215, 79, 65, 4, 230, + 207, 12, 65, 195, 177, 24, 82, 12, 60, 2, 69, 85, 230, 15, 73, 162, 191, + 12, 85, 143, 197, 24, 65, 4, 238, 129, 37, 65, 175, 18, 84, 10, 46, 72, + 32, 3, 73, 69, 69, 215, 130, 37, 85, 4, 158, 247, 36, 85, 219, 5, 69, 4, + 170, 147, 37, 80, 3, 84, 6, 130, 14, 69, 167, 224, 36, 85, 8, 194, 246, + 36, 69, 218, 5, 85, 254, 5, 65, 219, 16, 73, 12, 42, 69, 46, 85, 214, + 145, 37, 65, 3, 73, 4, 148, 149, 26, 2, 85, 84, 247, 252, 10, 69, 4, 178, + 245, 36, 85, 175, 28, 81, 8, 48, 3, 69, 78, 32, 182, 253, 36, 73, 175, 1, + 65, 4, 190, 225, 26, 79, 155, 141, 10, 77, 26, 58, 72, 90, 85, 202, 16, + 65, 174, 6, 69, 183, 220, 36, 79, 12, 54, 69, 222, 172, 26, 79, 194, 207, + 10, 73, 219, 19, 85, 6, 214, 7, 85, 159, 136, 37, 69, 6, 254, 248, 36, + 65, 214, 22, 69, 3, 85, 18, 62, 69, 74, 85, 142, 171, 26, 79, 198, 204, + 10, 65, 215, 22, 73, 8, 26, 85, 179, 156, 35, 69, 6, 202, 184, 35, 65, + 134, 214, 1, 78, 3, 84, 5, 247, 241, 36, 79, 4, 198, 158, 32, 85, 191, + 239, 4, 65, 10, 40, 2, 65, 69, 18, 85, 211, 189, 36, 69, 2, 251, 3, 77, + 6, 22, 87, 243, 13, 79, 2, 255, 169, 26, 79, 188, 2, 178, 1, 70, 154, 1, 71, 202, 1, 75, 170, 1, 76, 158, 1, 77, 134, 2, 78, 206, 7, 80, 166, 2, - 82, 78, 83, 166, 1, 84, 246, 1, 86, 66, 87, 34, 89, 190, 134, 37, 65, 2, - 73, 3, 79, 18, 54, 85, 158, 156, 23, 65, 242, 232, 13, 69, 255, 5, 79, - 10, 26, 32, 239, 178, 31, 69, 6, 156, 255, 23, 4, 82, 69, 77, 69, 242, - 145, 11, 67, 183, 138, 2, 73, 16, 24, 2, 66, 69, 39, 72, 4, 162, 140, 36, - 85, 195, 142, 1, 84, 12, 34, 65, 34, 69, 167, 137, 37, 79, 2, 11, 65, 2, - 155, 157, 26, 77, 8, 26, 85, 227, 153, 37, 84, 6, 138, 131, 37, 65, 214, - 22, 78, 3, 88, 18, 50, 69, 62, 80, 18, 85, 186, 152, 37, 73, 3, 79, 6, - 26, 85, 235, 152, 37, 84, 4, 146, 130, 37, 65, 215, 22, 88, 2, 227, 28, - 69, 6, 138, 252, 36, 69, 162, 28, 79, 15, 84, 18, 50, 65, 40, 2, 69, 85, - 22, 79, 163, 151, 37, 85, 6, 130, 135, 37, 65, 218, 16, 80, 3, 81, 2, - 135, 133, 37, 65, 8, 190, 184, 18, 79, 226, 222, 18, 77, 3, 81, 32, 110, - 65, 44, 2, 66, 69, 34, 70, 20, 2, 71, 66, 34, 73, 146, 152, 26, 85, 150, - 173, 10, 69, 2, 79, 139, 60, 86, 11, 218, 140, 18, 69, 170, 137, 19, 80, - 3, 81, 4, 254, 132, 37, 85, 219, 16, 69, 2, 155, 200, 12, 69, 4, 194, - 197, 36, 69, 227, 79, 65, 5, 175, 254, 36, 69, 82, 114, 68, 170, 1, 71, - 154, 3, 74, 112, 2, 83, 72, 58, 84, 32, 3, 89, 73, 32, 54, 90, 162, 205, - 36, 65, 191, 47, 75, 12, 34, 65, 98, 73, 155, 195, 36, 85, 6, 32, 2, 65, - 32, 183, 147, 37, 80, 4, 208, 190, 18, 3, 77, 89, 32, 189, 188, 13, 3, - 83, 79, 70, 4, 222, 175, 26, 65, 155, 227, 10, 81, 38, 78, 71, 66, 85, - 122, 75, 118, 79, 128, 240, 11, 3, 69, 85, 82, 219, 159, 25, 65, 14, 34, - 69, 50, 85, 167, 145, 37, 79, 6, 26, 85, 167, 159, 35, 69, 4, 167, 171, - 24, 65, 6, 64, 6, 65, 69, 83, 72, 65, 69, 250, 147, 26, 82, 247, 252, 10, - 80, 2, 11, 32, 2, 191, 215, 23, 78, 12, 34, 65, 20, 2, 69, 85, 35, 85, 5, - 195, 252, 36, 65, 4, 230, 253, 36, 65, 175, 18, 88, 4, 242, 143, 37, 77, - 3, 80, 4, 214, 143, 37, 80, 3, 81, 8, 18, 65, 31, 69, 2, 197, 139, 32, 2, - 69, 77, 6, 26, 69, 179, 128, 36, 85, 5, 197, 236, 36, 4, 32, 69, 80, 79, - 6, 26, 85, 147, 156, 35, 73, 4, 162, 142, 37, 79, 15, 69, 4, 186, 253, - 36, 85, 207, 16, 65, 4, 180, 186, 26, 4, 67, 76, 69, 65, 167, 248, 1, 66, - 4, 166, 170, 26, 65, 3, 85, 34, 42, 65, 90, 69, 58, 73, 50, 79, 23, 85, - 8, 32, 2, 32, 80, 175, 131, 18, 65, 4, 252, 179, 28, 2, 69, 79, 237, 204, - 7, 2, 76, 85, 6, 26, 85, 175, 251, 36, 69, 4, 130, 140, 37, 84, 3, 88, 7, - 11, 69, 4, 194, 168, 26, 69, 155, 227, 10, 84, 5, 215, 187, 36, 79, 11, - 82, 65, 210, 138, 37, 69, 3, 77, 8, 46, 65, 238, 14, 69, 253, 143, 19, 2, - 73, 77, 4, 206, 138, 37, 69, 3, 81, 18, 62, 69, 30, 72, 146, 154, 32, 85, - 242, 222, 4, 79, 163, 14, 65, 4, 242, 137, 37, 69, 3, 84, 8, 42, 69, 234, - 137, 23, 79, 175, 156, 3, 73, 2, 249, 187, 12, 2, 85, 65, 28, 34, 65, 94, - 69, 50, 79, 39, 85, 10, 56, 2, 69, 78, 238, 136, 23, 65, 198, 255, 13, - 77, 3, 81, 2, 161, 228, 11, 3, 32, 78, 84, 6, 26, 85, 247, 135, 37, 78, - 5, 195, 186, 12, 65, 6, 242, 137, 35, 79, 239, 253, 1, 81, 6, 170, 7, 77, - 191, 233, 36, 65, 6, 26, 69, 171, 246, 36, 79, 4, 138, 138, 26, 85, 247, - 252, 10, 69, 6, 246, 10, 69, 255, 223, 32, 85, 26, 68, 2, 69, 85, 46, 73, - 32, 3, 79, 81, 32, 54, 85, 235, 132, 37, 65, 8, 214, 159, 24, 65, 158, - 230, 12, 77, 3, 88, 4, 242, 238, 36, 69, 215, 22, 84, 4, 168, 214, 12, 4, - 83, 87, 73, 77, 143, 205, 9, 67, 8, 218, 161, 26, 69, 150, 141, 9, 65, + 82, 78, 83, 166, 1, 84, 246, 1, 86, 66, 87, 34, 89, 242, 245, 36, 65, 2, + 73, 3, 79, 18, 54, 85, 210, 139, 23, 65, 242, 232, 13, 69, 255, 5, 79, + 10, 26, 32, 163, 162, 31, 69, 6, 208, 238, 23, 4, 82, 69, 77, 69, 242, + 145, 11, 67, 183, 138, 2, 73, 16, 24, 2, 66, 69, 39, 72, 4, 214, 251, 35, + 85, 195, 142, 1, 84, 12, 34, 65, 34, 69, 219, 248, 36, 79, 2, 11, 65, 2, + 207, 140, 26, 77, 8, 26, 85, 151, 137, 37, 84, 6, 190, 242, 36, 65, 214, + 22, 78, 3, 88, 18, 50, 69, 62, 80, 18, 85, 238, 135, 37, 73, 3, 79, 6, + 26, 85, 159, 136, 37, 84, 4, 198, 241, 36, 65, 215, 22, 88, 2, 227, 28, + 69, 6, 190, 235, 36, 69, 162, 28, 79, 15, 84, 18, 50, 65, 40, 2, 69, 85, + 22, 79, 215, 134, 37, 85, 6, 182, 246, 36, 65, 218, 16, 80, 3, 81, 2, + 187, 244, 36, 65, 8, 190, 172, 18, 79, 150, 218, 18, 77, 3, 81, 32, 110, + 65, 44, 2, 66, 69, 34, 70, 20, 2, 71, 66, 34, 73, 198, 135, 26, 85, 150, + 173, 10, 69, 2, 79, 139, 60, 86, 11, 218, 128, 18, 69, 222, 132, 19, 80, + 3, 81, 4, 178, 244, 36, 85, 219, 16, 69, 2, 231, 191, 12, 69, 4, 246, + 180, 36, 69, 227, 79, 65, 5, 227, 237, 36, 69, 82, 114, 68, 170, 1, 71, + 154, 3, 74, 112, 2, 83, 72, 58, 84, 32, 3, 89, 73, 32, 54, 90, 214, 188, + 36, 65, 191, 47, 75, 12, 34, 65, 98, 73, 207, 178, 36, 85, 6, 32, 2, 65, + 32, 235, 130, 37, 80, 4, 208, 178, 18, 3, 77, 89, 32, 241, 183, 13, 3, + 83, 79, 70, 4, 146, 159, 26, 65, 155, 227, 10, 81, 38, 78, 71, 66, 85, + 122, 75, 118, 79, 204, 231, 11, 3, 69, 85, 82, 195, 151, 25, 65, 14, 34, + 69, 50, 85, 219, 128, 37, 79, 6, 26, 85, 219, 142, 35, 69, 4, 219, 154, + 24, 65, 6, 64, 6, 65, 69, 83, 72, 65, 69, 174, 131, 26, 82, 247, 252, 10, + 80, 2, 11, 32, 2, 243, 198, 23, 78, 12, 34, 65, 20, 2, 69, 85, 35, 85, 5, + 247, 235, 36, 65, 4, 154, 237, 36, 65, 175, 18, 88, 4, 166, 255, 36, 77, + 3, 80, 4, 138, 255, 36, 80, 3, 81, 8, 18, 65, 31, 69, 2, 249, 250, 31, 2, + 69, 77, 6, 26, 69, 231, 239, 35, 85, 5, 249, 219, 36, 4, 32, 69, 80, 79, + 6, 26, 85, 199, 139, 35, 73, 4, 214, 253, 36, 79, 15, 69, 4, 238, 236, + 36, 85, 207, 16, 65, 4, 232, 169, 26, 4, 67, 76, 69, 65, 167, 248, 1, 66, + 4, 218, 153, 26, 65, 3, 85, 34, 42, 65, 90, 69, 58, 73, 50, 79, 23, 85, + 8, 32, 2, 32, 80, 175, 247, 17, 65, 4, 176, 163, 28, 2, 69, 79, 237, 204, + 7, 2, 76, 85, 6, 26, 85, 227, 234, 36, 69, 4, 182, 251, 36, 84, 3, 88, 7, + 11, 69, 4, 246, 151, 26, 69, 155, 227, 10, 84, 5, 139, 171, 36, 79, 11, + 82, 65, 134, 250, 36, 69, 3, 77, 8, 46, 65, 238, 14, 69, 253, 131, 19, 2, + 73, 77, 4, 130, 250, 36, 69, 3, 81, 18, 62, 69, 30, 72, 198, 137, 32, 85, + 242, 222, 4, 79, 163, 14, 65, 4, 166, 249, 36, 69, 3, 84, 8, 42, 69, 158, + 249, 22, 79, 175, 156, 3, 73, 2, 197, 179, 12, 2, 85, 65, 28, 34, 65, 94, + 69, 50, 79, 39, 85, 10, 56, 2, 69, 78, 162, 248, 22, 65, 198, 255, 13, + 77, 3, 81, 2, 237, 219, 11, 3, 32, 78, 84, 6, 26, 85, 171, 247, 36, 78, + 5, 143, 178, 12, 65, 6, 166, 249, 34, 79, 239, 253, 1, 81, 6, 170, 7, 77, + 243, 216, 36, 65, 6, 26, 69, 223, 229, 36, 79, 4, 190, 249, 25, 85, 247, + 252, 10, 69, 6, 246, 10, 69, 179, 207, 32, 85, 26, 68, 2, 69, 85, 46, 73, + 32, 3, 79, 81, 32, 54, 85, 159, 244, 36, 65, 8, 138, 143, 24, 65, 158, + 230, 12, 77, 3, 88, 4, 166, 222, 36, 69, 215, 22, 84, 4, 244, 205, 12, 4, + 83, 87, 73, 77, 191, 201, 9, 67, 8, 142, 145, 26, 69, 150, 141, 9, 65, 134, 214, 1, 78, 3, 81, 108, 162, 1, 75, 82, 76, 46, 77, 98, 78, 190, 1, - 80, 66, 82, 50, 83, 110, 84, 38, 89, 130, 228, 2, 87, 204, 204, 9, 2, 86, - 85, 222, 182, 24, 69, 242, 5, 70, 231, 16, 85, 14, 178, 164, 18, 69, 194, - 236, 16, 89, 234, 239, 1, 80, 186, 2, 65, 2, 79, 3, 85, 6, 170, 159, 26, - 79, 154, 227, 10, 65, 3, 73, 13, 42, 66, 34, 69, 206, 129, 37, 65, 3, 79, - 4, 138, 178, 36, 69, 171, 77, 65, 2, 171, 143, 35, 69, 22, 94, 71, 38, - 74, 38, 85, 234, 130, 35, 83, 246, 7, 68, 150, 3, 84, 202, 222, 1, 89, - 219, 19, 73, 4, 130, 145, 32, 75, 159, 237, 4, 71, 4, 190, 131, 26, 85, - 203, 234, 10, 65, 5, 187, 233, 36, 65, 6, 26, 69, 239, 130, 26, 85, 4, - 158, 241, 35, 85, 195, 142, 1, 69, 12, 186, 2, 69, 178, 146, 9, 73, 211, - 234, 27, 85, 14, 66, 72, 230, 2, 69, 138, 146, 19, 65, 246, 196, 17, 85, - 235, 36, 73, 6, 238, 234, 36, 73, 218, 19, 79, 3, 85, 6, 214, 167, 21, - 65, 159, 186, 15, 69, 4, 226, 154, 26, 79, 155, 227, 10, 65, 4, 130, 231, - 36, 65, 215, 22, 69, 14, 54, 69, 178, 146, 9, 73, 254, 211, 27, 65, 215, - 22, 85, 6, 190, 238, 35, 85, 194, 142, 1, 69, 3, 78, 16, 62, 72, 50, 69, - 138, 146, 19, 65, 246, 196, 17, 85, 235, 36, 73, 8, 46, 69, 142, 232, 36, - 73, 218, 19, 79, 3, 85, 2, 163, 237, 35, 85, 10, 238, 156, 18, 69, 154, - 136, 3, 65, 203, 214, 15, 73, 6, 130, 152, 26, 79, 2, 85, 155, 227, 10, - 65, 14, 42, 75, 174, 188, 35, 65, 167, 159, 1, 74, 11, 49, 10, 78, 79, - 84, 69, 32, 87, 73, 84, 72, 32, 8, 224, 220, 9, 2, 80, 79, 198, 1, 89, - 148, 190, 12, 2, 69, 85, 187, 182, 6, 68, 6, 38, 32, 149, 137, 17, 3, 66, - 69, 82, 4, 198, 233, 29, 67, 201, 252, 5, 5, 79, 70, 32, 83, 79, 78, 72, - 3, 75, 69, 84, 60, 7, 83, 65, 32, 86, 65, 72, 32, 155, 237, 34, 69, 5, - 193, 177, 16, 10, 66, 65, 76, 76, 32, 65, 78, 68, 32, 72, 72, 104, 10, + 80, 66, 82, 50, 83, 110, 84, 38, 89, 130, 228, 2, 87, 152, 196, 9, 2, 86, + 85, 198, 174, 24, 69, 242, 5, 70, 231, 16, 85, 14, 178, 152, 18, 69, 246, + 231, 16, 89, 234, 239, 1, 80, 186, 2, 65, 2, 79, 3, 85, 6, 222, 142, 26, + 79, 154, 227, 10, 65, 3, 73, 13, 42, 66, 34, 69, 130, 241, 36, 65, 3, 79, + 4, 190, 161, 36, 69, 171, 77, 65, 2, 223, 254, 34, 69, 22, 94, 71, 38, + 74, 38, 85, 158, 242, 34, 83, 246, 7, 68, 150, 3, 84, 202, 222, 1, 89, + 219, 19, 73, 4, 182, 128, 32, 75, 159, 237, 4, 71, 4, 242, 242, 25, 85, + 203, 234, 10, 65, 5, 239, 216, 36, 65, 6, 26, 69, 163, 242, 25, 85, 4, + 210, 224, 35, 85, 195, 142, 1, 69, 12, 186, 2, 69, 254, 137, 9, 73, 187, + 226, 27, 85, 14, 66, 72, 230, 2, 69, 138, 134, 19, 65, 170, 192, 17, 85, + 235, 36, 73, 6, 162, 218, 36, 73, 218, 19, 79, 3, 85, 6, 214, 155, 21, + 65, 211, 181, 15, 69, 4, 150, 138, 26, 79, 155, 227, 10, 65, 4, 182, 214, + 36, 65, 215, 22, 69, 14, 54, 69, 254, 137, 9, 73, 230, 203, 27, 65, 215, + 22, 85, 6, 242, 221, 35, 85, 194, 142, 1, 69, 3, 78, 16, 62, 72, 50, 69, + 138, 134, 19, 65, 170, 192, 17, 85, 235, 36, 73, 8, 46, 69, 194, 215, 36, + 73, 218, 19, 79, 3, 85, 2, 215, 220, 35, 85, 10, 238, 144, 18, 69, 154, + 136, 3, 65, 255, 209, 15, 73, 6, 182, 135, 26, 79, 2, 85, 155, 227, 10, + 65, 14, 42, 75, 226, 171, 35, 65, 167, 159, 1, 74, 11, 49, 10, 78, 79, + 84, 69, 32, 87, 73, 84, 72, 32, 8, 172, 212, 9, 2, 80, 79, 198, 1, 89, + 192, 186, 12, 2, 69, 85, 247, 177, 6, 68, 6, 38, 32, 149, 253, 16, 3, 66, + 69, 82, 4, 250, 216, 29, 67, 201, 252, 5, 5, 79, 70, 32, 83, 79, 78, 72, + 3, 75, 69, 84, 60, 7, 83, 65, 32, 86, 65, 72, 32, 207, 220, 34, 69, 5, + 193, 165, 16, 10, 66, 65, 76, 76, 32, 65, 78, 68, 32, 72, 72, 104, 10, 67, 79, 77, 66, 73, 78, 73, 78, 71, 32, 164, 1, 7, 76, 69, 84, 84, 69, - 82, 32, 151, 160, 34, 70, 10, 52, 4, 72, 73, 71, 72, 44, 3, 76, 79, 87, - 39, 77, 4, 136, 246, 21, 2, 45, 76, 255, 138, 11, 32, 4, 32, 2, 45, 77, - 187, 128, 33, 32, 2, 169, 128, 33, 2, 73, 68, 60, 238, 1, 68, 38, 69, 38, - 71, 34, 75, 38, 85, 20, 2, 87, 65, 22, 89, 164, 132, 30, 2, 72, 87, 154, + 82, 32, 203, 143, 34, 70, 10, 52, 4, 72, 73, 71, 72, 44, 3, 76, 79, 87, + 39, 77, 4, 136, 234, 21, 2, 45, 76, 179, 134, 11, 32, 4, 32, 2, 45, 77, + 239, 239, 32, 32, 2, 221, 239, 32, 2, 73, 68, 60, 238, 1, 68, 38, 69, 38, + 71, 34, 75, 38, 85, 20, 2, 87, 65, 22, 89, 216, 243, 29, 2, 72, 87, 154, 197, 1, 77, 186, 223, 2, 79, 202, 164, 2, 86, 246, 5, 74, 2, 84, 2, 90, - 162, 8, 67, 2, 83, 158, 20, 66, 2, 70, 2, 80, 186, 2, 65, 3, 73, 4, 138, - 173, 34, 72, 207, 198, 2, 79, 7, 218, 238, 31, 78, 219, 132, 5, 69, 4, - 166, 206, 36, 66, 219, 35, 65, 4, 238, 132, 30, 80, 131, 238, 6, 65, 5, - 227, 205, 36, 87, 5, 179, 205, 36, 68, 4, 206, 242, 35, 69, 131, 105, 73, - 121, 48, 3, 65, 75, 32, 230, 10, 72, 179, 200, 22, 84, 112, 196, 1, 15, + 162, 8, 67, 2, 83, 158, 20, 66, 2, 70, 2, 80, 186, 2, 65, 3, 73, 4, 190, + 156, 34, 72, 207, 198, 2, 79, 7, 142, 222, 31, 78, 219, 132, 5, 69, 4, + 218, 189, 36, 66, 219, 35, 65, 4, 162, 244, 29, 80, 131, 238, 6, 65, 5, + 151, 189, 36, 87, 5, 231, 188, 36, 68, 4, 130, 226, 35, 69, 131, 105, 73, + 121, 48, 3, 65, 75, 32, 230, 10, 72, 231, 183, 22, 84, 112, 196, 1, 15, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 28, 7, 76, 69, 84, 84, 69, 82, 32, 248, 4, 3, 80, 65, 78, 50, 83, 141, 2, 11, 86, - 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 4, 178, 239, 36, 78, 87, 72, 76, - 194, 1, 77, 114, 78, 68, 2, 80, 65, 38, 83, 192, 248, 18, 4, 75, 65, 82, - 79, 218, 241, 17, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 76, 2, 82, 2, - 87, 2, 89, 186, 2, 65, 2, 73, 3, 85, 10, 26, 65, 215, 235, 36, 66, 9, 45, - 9, 78, 68, 65, 73, 76, 73, 78, 71, 32, 6, 162, 235, 36, 72, 2, 78, 3, 83, - 10, 152, 2, 2, 79, 82, 230, 232, 36, 68, 2, 71, 2, 89, 187, 2, 65, 5, - 221, 142, 21, 4, 75, 80, 65, 75, 24, 80, 10, 73, 77, 65, 76, 85, 78, 71, - 85, 78, 32, 96, 2, 79, 85, 159, 235, 36, 65, 20, 194, 233, 36, 71, 2, 72, - 2, 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 87, 2, 89, 187, 2, 65, 2, 233, 248, - 18, 5, 84, 72, 69, 82, 78, 4, 166, 2, 71, 249, 248, 18, 4, 79, 78, 71, - 79, 10, 96, 12, 89, 77, 66, 79, 76, 32, 66, 73, 78, 68, 85, 32, 189, 198, - 10, 6, 73, 71, 78, 32, 84, 79, 8, 78, 80, 220, 177, 11, 3, 74, 85, 68, - 145, 180, 25, 6, 78, 65, 32, 77, 69, 84, 4, 64, 3, 65, 78, 71, 249, 182, - 23, 7, 73, 78, 65, 82, 66, 79, 82, 2, 131, 255, 25, 79, 18, 122, 85, 136, - 175, 26, 6, 80, 65, 75, 80, 65, 75, 152, 254, 2, 5, 75, 65, 82, 79, 32, - 254, 249, 6, 69, 162, 64, 73, 3, 79, 5, 249, 218, 30, 15, 32, 70, 79, 82, - 32, 83, 73, 77, 65, 76, 85, 78, 71, 85, 78, 5, 235, 245, 23, 84, 228, 2, + 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 4, 230, 222, 36, 78, 87, 72, 76, + 194, 1, 77, 114, 78, 68, 2, 80, 65, 38, 83, 192, 236, 18, 4, 75, 65, 82, + 79, 142, 237, 17, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 76, 2, 82, 2, + 87, 2, 89, 186, 2, 65, 2, 73, 3, 85, 10, 26, 65, 139, 219, 36, 66, 9, 45, + 9, 78, 68, 65, 73, 76, 73, 78, 71, 32, 6, 214, 218, 36, 72, 2, 78, 3, 83, + 10, 152, 2, 2, 79, 82, 154, 216, 36, 68, 2, 71, 2, 89, 187, 2, 65, 5, + 221, 130, 21, 4, 75, 80, 65, 75, 24, 80, 10, 73, 77, 65, 76, 85, 78, 71, + 85, 78, 32, 96, 2, 79, 85, 211, 218, 36, 65, 20, 246, 216, 36, 71, 2, 72, + 2, 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 87, 2, 89, 187, 2, 65, 2, 233, 236, + 18, 5, 84, 72, 69, 82, 78, 4, 166, 2, 71, 249, 236, 18, 4, 79, 78, 71, + 79, 10, 96, 12, 89, 77, 66, 79, 76, 32, 66, 73, 78, 68, 85, 32, 137, 190, + 10, 6, 73, 71, 78, 32, 84, 79, 8, 78, 80, 168, 169, 11, 3, 74, 85, 68, + 249, 171, 25, 6, 78, 65, 32, 77, 69, 84, 4, 64, 3, 65, 78, 71, 173, 166, + 23, 7, 73, 78, 65, 82, 66, 79, 82, 2, 183, 238, 25, 79, 18, 122, 85, 188, + 158, 26, 6, 80, 65, 75, 80, 65, 75, 152, 254, 2, 5, 75, 65, 82, 79, 32, + 254, 249, 6, 69, 162, 64, 73, 3, 79, 5, 173, 202, 30, 15, 32, 70, 79, 82, + 32, 83, 73, 77, 65, 76, 85, 78, 71, 85, 78, 5, 159, 229, 23, 84, 228, 2, 182, 1, 65, 230, 2, 69, 50, 76, 146, 1, 78, 188, 10, 9, 82, 73, 65, 32, - 69, 82, 70, 69, 32, 186, 5, 84, 228, 136, 33, 2, 67, 65, 176, 185, 2, 5, + 69, 82, 70, 69, 32, 186, 5, 84, 152, 248, 32, 2, 67, 65, 176, 185, 2, 5, 86, 69, 82, 65, 71, 243, 142, 1, 68, 20, 136, 1, 4, 77, 69, 68, 32, 170, - 1, 82, 140, 176, 3, 10, 67, 72, 32, 87, 73, 84, 72, 32, 85, 77, 194, 169, - 7, 84, 178, 203, 25, 86, 19, 78, 8, 86, 65, 0, 2, 68, 69, 52, 4, 69, 73, - 71, 72, 1, 7, 83, 73, 88, 84, 69, 69, 78, 2, 169, 190, 20, 8, 83, 67, 69, - 78, 68, 73, 78, 71, 2, 161, 190, 20, 2, 84, 72, 4, 168, 222, 32, 3, 68, - 69, 68, 171, 199, 3, 32, 4, 152, 209, 8, 3, 82, 32, 77, 227, 234, 26, 84, - 15, 11, 76, 13, 54, 32, 200, 182, 25, 3, 72, 79, 80, 231, 236, 9, 79, 6, - 162, 204, 12, 80, 236, 172, 16, 6, 87, 73, 84, 72, 32, 67, 139, 211, 6, + 1, 82, 140, 172, 3, 10, 67, 72, 32, 87, 73, 84, 72, 32, 85, 77, 142, 165, + 7, 84, 154, 195, 25, 86, 19, 78, 8, 86, 65, 0, 2, 68, 69, 52, 4, 69, 73, + 71, 72, 1, 7, 83, 73, 88, 84, 69, 69, 78, 2, 169, 178, 20, 8, 83, 67, 69, + 78, 68, 73, 78, 71, 2, 161, 178, 20, 2, 84, 72, 4, 220, 205, 32, 3, 68, + 69, 68, 171, 199, 3, 32, 4, 228, 200, 8, 3, 82, 32, 77, 203, 226, 26, 84, + 15, 11, 76, 13, 54, 32, 252, 165, 25, 3, 72, 79, 80, 231, 236, 9, 79, 6, + 238, 195, 12, 80, 212, 164, 16, 6, 87, 73, 84, 72, 32, 67, 139, 211, 6, 83, 208, 1, 84, 5, 71, 65, 76, 73, 32, 158, 9, 84, 37, 9, 90, 69, 78, 69, 32, 82, 73, 78, 71, 200, 1, 210, 1, 65, 40, 9, 67, 85, 82, 82, 69, 78, 67, 89, 32, 148, 2, 7, 76, 69, 84, 84, 69, 82, 32, 204, 3, 6, 82, 85, 80, - 69, 69, 32, 34, 83, 246, 239, 22, 73, 134, 4, 86, 158, 240, 11, 68, 225, - 110, 3, 71, 65, 78, 6, 138, 190, 32, 66, 50, 78, 135, 63, 85, 12, 120, - 10, 78, 85, 77, 69, 82, 65, 84, 79, 82, 32, 153, 196, 23, 14, 68, 69, 78, - 79, 77, 73, 78, 65, 84, 79, 82, 32, 83, 73, 10, 52, 3, 79, 78, 69, 158, - 193, 31, 70, 135, 169, 3, 84, 5, 173, 208, 29, 19, 32, 76, 69, 83, 83, + 69, 69, 32, 34, 83, 170, 223, 22, 73, 134, 4, 86, 158, 240, 11, 68, 225, + 110, 3, 71, 65, 78, 6, 190, 173, 32, 66, 50, 78, 135, 63, 85, 12, 120, + 10, 78, 85, 77, 69, 82, 65, 84, 79, 82, 32, 205, 179, 23, 14, 68, 69, 78, + 79, 77, 73, 78, 65, 84, 79, 82, 32, 83, 73, 10, 52, 3, 79, 78, 69, 210, + 176, 31, 70, 135, 169, 3, 84, 5, 225, 191, 29, 19, 32, 76, 69, 83, 83, 32, 84, 72, 65, 78, 32, 84, 72, 69, 32, 68, 69, 78, 79, 108, 226, 1, 75, - 90, 82, 238, 209, 21, 86, 190, 143, 8, 89, 178, 154, 3, 65, 38, 68, 114, + 90, 82, 238, 197, 21, 86, 242, 138, 8, 89, 178, 154, 3, 65, 38, 68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 80, 138, 69, 72, 2, 76, 2, 77, 186, 2, 69, 3, 79, 8, 26, - 72, 139, 218, 36, 65, 6, 26, 65, 215, 145, 14, 73, 5, 185, 231, 18, 3, - 78, 68, 65, 10, 34, 65, 242, 214, 36, 72, 3, 82, 7, 33, 6, 32, 87, 73, - 84, 72, 32, 4, 232, 174, 25, 5, 76, 79, 87, 69, 82, 1, 6, 77, 73, 68, 68, - 76, 69, 4, 210, 209, 35, 83, 191, 69, 77, 20, 116, 19, 69, 81, 85, 69, - 78, 67, 69, 32, 70, 79, 82, 32, 76, 69, 84, 84, 69, 82, 32, 158, 154, 26, - 65, 227, 158, 6, 73, 6, 154, 242, 22, 82, 175, 226, 13, 89, 4, 134, 174, - 26, 32, 151, 154, 9, 79, 5, 197, 220, 33, 3, 32, 87, 73, 100, 56, 6, 67, + 72, 191, 201, 36, 65, 6, 26, 65, 215, 133, 14, 73, 5, 185, 219, 18, 3, + 78, 68, 65, 10, 34, 65, 166, 198, 36, 72, 3, 82, 7, 33, 6, 32, 87, 73, + 84, 72, 32, 4, 156, 158, 25, 5, 76, 79, 87, 69, 82, 1, 6, 77, 73, 68, 68, + 76, 69, 4, 134, 193, 35, 83, 191, 69, 77, 20, 116, 19, 69, 81, 85, 69, + 78, 67, 69, 32, 70, 79, 82, 32, 76, 69, 84, 84, 69, 82, 32, 210, 137, 26, + 65, 227, 158, 6, 73, 6, 206, 225, 22, 82, 175, 226, 13, 89, 4, 186, 157, + 26, 32, 151, 154, 9, 79, 5, 249, 203, 33, 3, 32, 87, 73, 100, 56, 6, 67, 65, 80, 73, 84, 65, 1, 4, 83, 77, 65, 76, 50, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 50, 182, 2, 65, 50, 68, 42, 69, 82, 71, 38, 78, 38, 83, - 154, 143, 17, 77, 136, 235, 1, 6, 72, 73, 82, 68, 69, 65, 0, 2, 75, 79, - 172, 199, 13, 6, 84, 65, 84, 65, 83, 79, 196, 209, 2, 5, 66, 65, 83, 73, + 154, 131, 17, 77, 136, 235, 1, 6, 72, 73, 82, 68, 69, 65, 0, 2, 75, 79, + 224, 194, 13, 6, 84, 65, 84, 65, 83, 79, 196, 209, 2, 5, 66, 65, 83, 73, 71, 244, 50, 3, 87, 65, 83, 164, 108, 3, 70, 73, 84, 0, 3, 76, 65, 75, - 170, 11, 79, 2, 80, 2, 85, 219, 19, 73, 4, 26, 82, 255, 210, 36, 89, 2, - 215, 157, 23, 75, 4, 160, 223, 31, 3, 65, 82, 66, 3, 74, 6, 40, 4, 82, - 73, 71, 79, 151, 210, 36, 72, 5, 245, 184, 20, 4, 32, 84, 65, 77, 4, 158, - 243, 29, 79, 155, 220, 6, 78, 4, 242, 204, 31, 73, 187, 246, 3, 71, 4, - 194, 175, 26, 72, 155, 182, 3, 69, 4, 242, 250, 34, 87, 219, 64, 32, 194, + 170, 11, 79, 2, 80, 2, 85, 219, 19, 73, 4, 26, 82, 179, 194, 36, 89, 2, + 139, 141, 23, 75, 4, 212, 206, 31, 3, 65, 82, 66, 3, 74, 6, 40, 4, 82, + 73, 71, 79, 203, 193, 36, 72, 5, 245, 172, 20, 4, 32, 84, 65, 77, 4, 210, + 226, 29, 79, 155, 220, 6, 78, 4, 166, 188, 31, 73, 187, 246, 3, 71, 4, + 246, 158, 26, 72, 155, 182, 3, 69, 4, 166, 234, 34, 87, 219, 64, 32, 194, 1, 184, 2, 7, 76, 69, 84, 84, 69, 82, 32, 244, 1, 7, 78, 85, 77, 66, 69, 82, 32, 72, 5, 83, 73, 71, 78, 32, 48, 11, 86, 79, 87, 69, 76, 32, 83, - 73, 71, 78, 32, 190, 138, 26, 68, 198, 247, 3, 87, 208, 195, 2, 10, 71, + 73, 71, 78, 32, 242, 249, 25, 68, 198, 247, 3, 87, 208, 195, 2, 10, 71, 65, 80, 32, 70, 73, 76, 76, 69, 82, 161, 187, 3, 12, 72, 85, 78, 68, 82, - 69, 68, 83, 32, 85, 78, 73, 92, 210, 1, 86, 222, 238, 32, 65, 38, 68, + 69, 68, 83, 32, 85, 78, 73, 92, 210, 1, 86, 146, 222, 32, 65, 38, 68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 89, - 186, 2, 69, 3, 79, 8, 234, 1, 79, 231, 202, 36, 65, 36, 142, 126, 69, 38, - 70, 66, 78, 26, 83, 182, 193, 21, 84, 195, 240, 12, 79, 10, 134, 174, 32, - 67, 158, 67, 65, 187, 151, 3, 86, 24, 80, 2, 86, 79, 198, 243, 32, 65, + 186, 2, 69, 3, 79, 8, 234, 1, 79, 155, 186, 36, 65, 36, 142, 126, 69, 38, + 70, 66, 78, 26, 83, 234, 176, 21, 84, 195, 240, 12, 79, 10, 186, 157, 32, + 67, 158, 67, 65, 187, 151, 3, 86, 24, 80, 2, 86, 79, 250, 226, 32, 65, 38, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 6, 33, 6, 67, 65, 76, - 73, 67, 32, 6, 162, 244, 32, 82, 159, 214, 3, 76, 26, 148, 1, 4, 67, 89, - 67, 76, 36, 2, 71, 32, 28, 2, 76, 76, 46, 82, 66, 84, 224, 186, 19, 4, - 79, 72, 65, 90, 160, 136, 12, 2, 75, 73, 239, 180, 4, 83, 4, 142, 219, - 32, 73, 247, 237, 3, 69, 4, 174, 175, 34, 82, 67, 83, 4, 164, 228, 9, 2, - 69, 68, 131, 131, 24, 73, 4, 236, 219, 32, 7, 84, 72, 68, 65, 89, 32, 67, - 171, 236, 3, 68, 4, 244, 224, 13, 2, 67, 79, 169, 229, 22, 4, 73, 78, 71, + 73, 67, 32, 6, 214, 227, 32, 82, 159, 214, 3, 76, 26, 148, 1, 4, 67, 89, + 67, 76, 36, 2, 71, 32, 28, 2, 76, 76, 46, 82, 66, 84, 224, 174, 19, 4, + 79, 72, 65, 90, 212, 131, 12, 2, 75, 73, 239, 180, 4, 83, 4, 194, 202, + 32, 73, 247, 237, 3, 69, 4, 226, 158, 34, 82, 67, 83, 4, 240, 219, 9, 2, + 69, 68, 235, 250, 23, 73, 4, 160, 203, 32, 7, 84, 72, 68, 65, 89, 32, 67, + 171, 236, 3, 68, 4, 192, 216, 13, 2, 67, 79, 145, 221, 22, 4, 73, 78, 71, 32, 196, 7, 42, 65, 174, 33, 79, 165, 11, 2, 85, 69, 246, 2, 32, 2, 67, - 75, 207, 128, 18, 78, 244, 2, 22, 32, 223, 31, 45, 228, 2, 210, 1, 67, + 75, 207, 244, 17, 78, 244, 2, 22, 32, 223, 31, 45, 228, 2, 210, 1, 67, 254, 4, 68, 174, 2, 70, 102, 72, 82, 76, 186, 4, 77, 250, 2, 78, 38, 80, - 46, 82, 150, 4, 83, 154, 4, 84, 82, 85, 248, 2, 3, 86, 69, 82, 210, 141, - 12, 79, 164, 228, 20, 3, 66, 79, 87, 187, 249, 1, 81, 102, 196, 1, 5, 73, - 82, 67, 76, 69, 200, 1, 6, 85, 82, 86, 69, 68, 32, 244, 145, 26, 12, 82, + 46, 82, 150, 4, 83, 154, 4, 84, 82, 85, 248, 2, 3, 86, 69, 82, 158, 133, + 12, 79, 140, 220, 20, 3, 66, 79, 87, 187, 249, 1, 81, 102, 196, 1, 5, 73, + 82, 67, 76, 69, 200, 1, 6, 85, 82, 86, 69, 68, 32, 168, 129, 26, 12, 82, 79, 83, 83, 32, 79, 78, 32, 83, 72, 73, 69, 248, 161, 3, 5, 69, 78, 84, 82, 69, 254, 172, 5, 72, 159, 14, 76, 11, 11, 32, 8, 72, 5, 87, 73, 84, - 72, 32, 189, 250, 16, 7, 70, 79, 82, 32, 82, 69, 67, 6, 140, 69, 8, 87, - 72, 73, 84, 69, 32, 68, 79, 218, 134, 19, 68, 181, 146, 2, 8, 84, 87, 79, + 72, 32, 189, 238, 16, 7, 70, 79, 82, 32, 82, 69, 67, 6, 140, 69, 8, 87, + 72, 73, 84, 69, 32, 68, 79, 218, 250, 18, 68, 177, 146, 2, 8, 84, 87, 79, 32, 87, 72, 73, 84, 16, 84, 4, 68, 79, 87, 78, 0, 2, 85, 80, 56, 3, 76, - 69, 70, 1, 4, 82, 73, 71, 72, 4, 153, 155, 32, 9, 87, 65, 82, 68, 83, 32, + 69, 70, 1, 4, 82, 73, 71, 72, 4, 205, 138, 32, 9, 87, 65, 82, 68, 83, 32, 65, 78, 68, 4, 53, 11, 84, 87, 65, 82, 68, 83, 32, 65, 78, 68, 32, 4, - 194, 163, 21, 85, 203, 170, 12, 68, 30, 64, 6, 73, 65, 77, 79, 78, 68, - 152, 1, 3, 79, 87, 78, 43, 82, 13, 11, 32, 10, 154, 19, 67, 172, 136, 13, - 10, 77, 73, 78, 85, 83, 32, 87, 72, 73, 84, 244, 172, 6, 6, 87, 73, 84, - 72, 32, 68, 254, 178, 15, 79, 135, 13, 83, 12, 214, 19, 32, 62, 45, 151, - 199, 31, 87, 6, 196, 219, 34, 2, 79, 80, 179, 21, 65, 8, 18, 76, 39, 79, - 4, 142, 132, 28, 79, 179, 184, 8, 65, 4, 184, 219, 2, 2, 85, 82, 223, - 189, 31, 76, 12, 38, 69, 158, 244, 34, 65, 251, 2, 79, 6, 228, 245, 34, + 194, 151, 21, 85, 255, 165, 12, 68, 30, 64, 6, 73, 65, 77, 79, 78, 68, + 152, 1, 3, 79, 87, 78, 43, 82, 13, 11, 32, 10, 154, 19, 67, 248, 255, 12, + 10, 77, 73, 78, 85, 83, 32, 87, 72, 73, 84, 168, 169, 6, 6, 87, 73, 84, + 72, 32, 68, 178, 174, 15, 79, 135, 13, 83, 12, 214, 19, 32, 62, 45, 203, + 182, 31, 87, 6, 248, 202, 34, 2, 79, 80, 179, 21, 65, 8, 18, 76, 39, 79, + 4, 194, 243, 27, 79, 179, 184, 8, 65, 4, 184, 219, 2, 2, 85, 82, 147, + 173, 31, 76, 12, 38, 69, 210, 227, 34, 65, 251, 2, 79, 6, 152, 229, 34, 2, 65, 82, 247, 11, 88, 40, 64, 5, 65, 82, 71, 69, 32, 140, 2, 3, 69, 70, - 84, 203, 1, 79, 12, 48, 6, 67, 73, 82, 67, 76, 69, 159, 152, 35, 83, 11, + 84, 203, 1, 79, 12, 48, 6, 67, 73, 82, 67, 76, 69, 211, 135, 35, 83, 11, 37, 7, 32, 77, 73, 78, 85, 83, 32, 8, 54, 76, 36, 4, 82, 73, 71, 72, 13, 3, 85, 80, 80, 4, 32, 2, 69, 70, 13, 2, 79, 87, 2, 31, 84, 2, 17, 2, 69, - 82, 2, 177, 183, 33, 8, 32, 81, 85, 65, 82, 84, 69, 82, 22, 96, 10, 45, - 80, 79, 73, 78, 84, 73, 78, 71, 32, 64, 6, 87, 65, 82, 68, 83, 32, 175, - 245, 34, 32, 12, 146, 7, 68, 190, 8, 73, 130, 233, 34, 80, 206, 24, 83, - 51, 84, 4, 250, 200, 33, 69, 231, 140, 1, 66, 6, 158, 15, 87, 243, 240, - 34, 90, 30, 76, 6, 69, 68, 73, 85, 77, 32, 153, 243, 21, 7, 79, 79, 78, + 82, 2, 229, 166, 33, 8, 32, 81, 85, 65, 82, 84, 69, 82, 22, 96, 10, 45, + 80, 79, 73, 78, 84, 73, 78, 71, 32, 64, 6, 87, 65, 82, 68, 83, 32, 227, + 228, 34, 32, 12, 146, 7, 68, 190, 8, 73, 182, 216, 34, 80, 206, 24, 83, + 51, 84, 4, 174, 184, 33, 69, 231, 140, 1, 66, 6, 158, 15, 87, 167, 224, + 34, 90, 30, 76, 6, 69, 68, 73, 85, 77, 32, 205, 226, 21, 7, 79, 79, 78, 32, 76, 73, 76, 28, 66, 68, 42, 76, 36, 4, 82, 73, 71, 72, 12, 2, 85, 80, - 111, 83, 6, 84, 3, 79, 87, 78, 231, 246, 34, 73, 6, 32, 2, 69, 70, 135, - 254, 34, 79, 4, 11, 84, 4, 81, 18, 45, 80, 79, 73, 78, 84, 73, 78, 71, + 111, 83, 6, 84, 3, 79, 87, 78, 155, 230, 34, 73, 6, 32, 2, 69, 70, 187, + 237, 34, 79, 4, 11, 84, 4, 81, 18, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 84, 82, 73, 65, 78, 71, 76, 69, 5, 145, 9, 2, 32, 67, 8, 198, 13, 77, - 203, 132, 35, 81, 4, 194, 165, 17, 69, 139, 209, 17, 73, 8, 234, 156, 25, - 85, 230, 217, 9, 65, 87, 69, 34, 52, 4, 73, 71, 72, 84, 238, 161, 34, 79, + 255, 243, 34, 81, 4, 194, 153, 17, 69, 191, 204, 17, 73, 8, 158, 140, 25, + 85, 230, 217, 9, 65, 87, 69, 34, 52, 4, 73, 71, 72, 84, 162, 145, 34, 79, 239, 85, 69, 30, 94, 32, 84, 10, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 245, 1, 6, 87, 65, 82, 68, 83, 32, 6, 60, 9, 84, 82, 73, 65, 78, 71, 76, - 69, 32, 239, 136, 35, 80, 2, 243, 210, 6, 67, 16, 90, 68, 88, 8, 84, 82, - 73, 65, 78, 71, 76, 69, 230, 7, 73, 134, 238, 34, 80, 203, 19, 83, 4, 65, - 14, 79, 85, 66, 76, 69, 32, 84, 82, 73, 65, 78, 71, 76, 69, 5, 227, 202, - 12, 32, 5, 241, 249, 20, 11, 32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, - 8, 250, 178, 19, 65, 150, 142, 14, 69, 231, 140, 1, 66, 40, 158, 2, 77, - 148, 1, 5, 81, 85, 65, 82, 69, 128, 150, 26, 3, 85, 78, 32, 160, 224, 1, + 69, 32, 163, 248, 34, 80, 2, 243, 206, 6, 67, 16, 90, 68, 88, 8, 84, 82, + 73, 65, 78, 71, 76, 69, 230, 7, 73, 186, 221, 34, 80, 203, 19, 83, 4, 65, + 14, 79, 85, 66, 76, 69, 32, 84, 82, 73, 65, 78, 71, 76, 69, 5, 175, 194, + 12, 32, 5, 241, 237, 20, 11, 32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, + 8, 250, 166, 19, 65, 202, 137, 14, 69, 231, 140, 1, 66, 40, 158, 2, 77, + 148, 1, 5, 81, 85, 65, 82, 69, 180, 133, 26, 3, 85, 78, 32, 160, 224, 1, 5, 75, 85, 76, 76, 32, 228, 183, 3, 3, 78, 79, 87, 168, 228, 1, 5, 65, 70, 69, 84, 89, 184, 131, 1, 13, 76, 73, 71, 72, 84, 76, 89, 32, 83, 77, 65, 76, 76, 198, 93, 67, 50, 72, 222, 1, 80, 191, 19, 84, 12, 40, 4, 65, - 76, 76, 32, 143, 246, 34, 73, 10, 154, 238, 34, 68, 150, 7, 76, 70, 83, + 76, 76, 32, 195, 229, 34, 73, 10, 206, 221, 34, 68, 150, 7, 76, 70, 83, 213, 15, 13, 85, 80, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 67, 9, 11, - 32, 6, 54, 67, 216, 214, 33, 3, 70, 79, 82, 223, 159, 1, 66, 2, 193, 151, - 31, 3, 69, 78, 84, 14, 192, 4, 3, 73, 78, 89, 162, 195, 23, 82, 174, 182, - 11, 79, 54, 69, 135, 2, 87, 18, 38, 80, 233, 249, 32, 3, 78, 73, 86, 16, - 46, 32, 62, 45, 170, 1, 80, 239, 197, 31, 87, 2, 173, 129, 35, 10, 80, + 32, 6, 54, 67, 140, 198, 33, 3, 70, 79, 82, 223, 159, 1, 66, 2, 245, 134, + 31, 3, 69, 78, 84, 14, 192, 4, 3, 73, 78, 89, 214, 178, 23, 82, 174, 182, + 11, 79, 54, 69, 135, 2, 87, 18, 38, 80, 157, 233, 32, 3, 78, 73, 86, 16, + 46, 32, 62, 45, 170, 1, 80, 163, 181, 31, 87, 2, 225, 240, 34, 10, 80, 79, 73, 78, 84, 73, 78, 71, 32, 66, 8, 45, 9, 80, 79, 73, 78, 84, 73, 78, - 71, 32, 8, 66, 73, 224, 253, 34, 5, 68, 79, 85, 66, 76, 238, 3, 83, 51, - 84, 2, 217, 254, 33, 8, 83, 79, 83, 67, 69, 76, 69, 83, 4, 21, 3, 69, 82, - 32, 4, 130, 204, 24, 76, 163, 178, 9, 82, 10, 56, 6, 84, 73, 67, 65, 76, - 32, 41, 4, 89, 32, 83, 77, 4, 220, 235, 34, 2, 82, 69, 235, 22, 69, 6, - 21, 3, 65, 76, 76, 6, 11, 32, 6, 254, 231, 34, 68, 150, 7, 76, 135, 21, + 71, 32, 8, 66, 73, 148, 237, 34, 5, 68, 79, 85, 66, 76, 238, 3, 83, 51, + 84, 2, 141, 238, 33, 8, 83, 79, 83, 67, 69, 76, 69, 83, 4, 21, 3, 69, 82, + 32, 4, 182, 187, 24, 76, 163, 178, 9, 82, 10, 56, 6, 84, 73, 67, 65, 76, + 32, 41, 4, 89, 32, 83, 77, 4, 144, 219, 34, 2, 82, 69, 235, 22, 69, 6, + 21, 3, 65, 76, 76, 6, 11, 32, 6, 178, 215, 34, 68, 150, 7, 76, 135, 21, 83, 16, 84, 15, 76, 69, 84, 84, 69, 82, 32, 67, 65, 80, 73, 84, 65, 76, - 32, 171, 159, 11, 70, 10, 242, 165, 36, 67, 2, 72, 2, 73, 2, 82, 3, 90, - 200, 4, 52, 3, 67, 75, 32, 186, 151, 2, 83, 219, 214, 10, 87, 196, 4, 80, + 32, 247, 150, 11, 70, 10, 166, 149, 36, 67, 2, 72, 2, 73, 2, 82, 3, 90, + 200, 4, 52, 3, 67, 75, 32, 186, 151, 2, 83, 167, 206, 10, 87, 196, 4, 80, 7, 79, 67, 84, 65, 78, 84, 45, 149, 7, 8, 83, 69, 88, 84, 65, 78, 84, 45, 204, 3, 58, 49, 130, 3, 50, 114, 53, 50, 54, 18, 51, 215, 1, 52, 234, 1, - 74, 50, 246, 1, 51, 174, 91, 52, 46, 53, 38, 54, 30, 55, 147, 197, 35, - 56, 116, 62, 51, 226, 92, 52, 46, 53, 38, 54, 30, 55, 147, 197, 35, 56, - 55, 54, 52, 214, 92, 53, 38, 54, 30, 55, 147, 197, 35, 56, 22, 50, 53, - 166, 2, 54, 190, 90, 55, 147, 197, 35, 56, 11, 42, 54, 150, 246, 28, 55, - 179, 171, 7, 56, 4, 194, 161, 36, 55, 3, 56, 56, 170, 1, 53, 50, 54, 210, - 89, 52, 110, 55, 147, 197, 35, 56, 118, 62, 52, 254, 89, 51, 98, 53, 38, - 54, 30, 55, 147, 197, 35, 56, 24, 46, 53, 50, 54, 190, 90, 55, 147, 197, - 35, 56, 13, 206, 1, 54, 254, 242, 28, 55, 179, 171, 7, 56, 7, 187, 90, - 55, 61, 54, 52, 118, 53, 230, 88, 54, 30, 55, 147, 197, 35, 56, 31, 46, - 53, 170, 89, 54, 30, 55, 147, 197, 35, 56, 15, 38, 54, 158, 89, 55, 147, - 197, 35, 56, 7, 170, 158, 36, 55, 3, 56, 14, 226, 88, 54, 30, 55, 147, - 197, 35, 56, 31, 46, 54, 234, 87, 53, 66, 55, 147, 197, 35, 56, 6, 166, - 88, 55, 147, 197, 35, 56, 120, 70, 49, 238, 1, 50, 238, 209, 25, 51, 38, - 52, 30, 53, 187, 200, 10, 54, 61, 58, 50, 126, 51, 198, 210, 25, 52, 30, - 53, 187, 200, 10, 54, 31, 50, 51, 142, 211, 25, 52, 30, 53, 187, 200, 10, - 54, 15, 42, 52, 254, 210, 25, 53, 187, 200, 10, 54, 7, 178, 155, 36, 53, - 3, 54, 15, 194, 210, 25, 52, 186, 157, 3, 53, 159, 171, 7, 54, 31, 50, - 52, 186, 209, 25, 51, 66, 53, 187, 200, 10, 54, 7, 247, 209, 25, 53, 6, - 226, 173, 22, 32, 213, 206, 8, 4, 66, 69, 82, 82, 232, 4, 200, 1, 3, 76, + 74, 50, 246, 1, 51, 174, 91, 52, 46, 53, 38, 54, 30, 55, 199, 180, 35, + 56, 116, 62, 51, 226, 92, 52, 46, 53, 38, 54, 30, 55, 199, 180, 35, 56, + 55, 54, 52, 214, 92, 53, 38, 54, 30, 55, 199, 180, 35, 56, 22, 50, 53, + 166, 2, 54, 190, 90, 55, 199, 180, 35, 56, 11, 42, 54, 202, 229, 28, 55, + 179, 171, 7, 56, 4, 246, 144, 36, 55, 3, 56, 56, 170, 1, 53, 50, 54, 210, + 89, 52, 110, 55, 199, 180, 35, 56, 118, 62, 52, 254, 89, 51, 98, 53, 38, + 54, 30, 55, 199, 180, 35, 56, 24, 46, 53, 50, 54, 190, 90, 55, 199, 180, + 35, 56, 13, 206, 1, 54, 178, 226, 28, 55, 179, 171, 7, 56, 7, 187, 90, + 55, 61, 54, 52, 118, 53, 230, 88, 54, 30, 55, 199, 180, 35, 56, 31, 46, + 53, 170, 89, 54, 30, 55, 199, 180, 35, 56, 15, 38, 54, 158, 89, 55, 199, + 180, 35, 56, 7, 222, 141, 36, 55, 3, 56, 14, 226, 88, 54, 30, 55, 199, + 180, 35, 56, 31, 46, 54, 234, 87, 53, 66, 55, 199, 180, 35, 56, 6, 166, + 88, 55, 199, 180, 35, 56, 120, 70, 49, 238, 1, 50, 162, 193, 25, 51, 38, + 52, 30, 53, 187, 200, 10, 54, 61, 58, 50, 126, 51, 250, 193, 25, 52, 30, + 53, 187, 200, 10, 54, 31, 50, 51, 194, 194, 25, 52, 30, 53, 187, 200, 10, + 54, 15, 42, 52, 178, 194, 25, 53, 187, 200, 10, 54, 7, 230, 138, 36, 53, + 3, 54, 15, 246, 193, 25, 52, 186, 157, 3, 53, 159, 171, 7, 54, 31, 50, + 52, 238, 192, 25, 51, 66, 53, 187, 200, 10, 54, 7, 171, 193, 25, 53, 6, + 150, 157, 22, 32, 213, 206, 8, 4, 66, 69, 82, 82, 232, 4, 200, 1, 3, 76, 68, 32, 78, 79, 104, 7, 80, 79, 77, 79, 70, 79, 32, 188, 6, 2, 84, 84, - 216, 6, 5, 85, 81, 85, 69, 84, 54, 87, 198, 1, 88, 182, 221, 5, 77, 146, - 175, 3, 89, 186, 194, 26, 65, 139, 34, 78, 14, 190, 197, 8, 83, 190, 212, - 7, 69, 202, 228, 17, 70, 234, 2, 87, 203, 11, 71, 10, 26, 75, 135, 165, - 23, 77, 9, 40, 4, 77, 65, 82, 75, 135, 151, 36, 83, 5, 189, 191, 23, 3, + 216, 6, 5, 85, 81, 85, 69, 84, 54, 87, 198, 1, 88, 182, 217, 5, 77, 222, + 170, 3, 89, 162, 186, 26, 65, 139, 34, 78, 14, 138, 189, 8, 83, 242, 208, + 7, 69, 254, 223, 17, 70, 234, 2, 87, 203, 11, 71, 10, 26, 75, 187, 148, + 23, 77, 9, 40, 4, 77, 65, 82, 75, 187, 134, 36, 83, 5, 241, 174, 23, 3, 32, 84, 65, 150, 1, 96, 13, 70, 73, 78, 65, 76, 32, 76, 69, 84, 84, 69, - 82, 32, 53, 7, 76, 69, 84, 84, 69, 82, 32, 10, 250, 149, 36, 71, 2, 72, + 82, 32, 53, 7, 76, 69, 84, 84, 69, 82, 32, 10, 174, 133, 36, 71, 2, 72, 2, 75, 2, 80, 3, 84, 140, 1, 234, 1, 65, 54, 85, 22, 69, 82, 71, 46, 73, - 70, 78, 38, 79, 98, 90, 190, 160, 7, 75, 178, 223, 24, 67, 2, 76, 2, 83, + 70, 78, 38, 79, 98, 90, 190, 156, 7, 75, 230, 210, 24, 67, 2, 76, 2, 83, 230, 57, 66, 186, 202, 1, 74, 198, 140, 2, 68, 2, 70, 2, 72, 2, 77, 2, - 80, 2, 81, 2, 82, 2, 84, 2, 86, 3, 88, 21, 50, 73, 2, 85, 74, 78, 222, - 146, 36, 72, 3, 77, 5, 195, 195, 35, 78, 17, 50, 78, 222, 146, 36, 69, 2, - 72, 2, 73, 3, 82, 7, 218, 146, 36, 71, 3, 78, 11, 190, 146, 36, 72, 2, - 78, 2, 85, 3, 87, 15, 164, 148, 34, 2, 78, 78, 238, 253, 1, 72, 2, 77, 2, - 82, 3, 85, 9, 206, 147, 34, 71, 131, 254, 1, 78, 17, 66, 78, 230, 143, - 35, 32, 134, 129, 1, 69, 2, 77, 2, 79, 3, 85, 4, 230, 144, 36, 71, 3, 78, - 9, 202, 144, 36, 72, 2, 73, 3, 89, 66, 104, 3, 79, 77, 32, 221, 199, 21, + 80, 2, 81, 2, 82, 2, 84, 2, 86, 3, 88, 21, 50, 73, 2, 85, 74, 78, 146, + 130, 36, 72, 3, 77, 5, 247, 178, 35, 78, 17, 50, 78, 146, 130, 36, 69, 2, + 72, 2, 73, 3, 82, 7, 142, 130, 36, 71, 3, 78, 11, 242, 129, 36, 72, 2, + 78, 2, 85, 3, 87, 15, 216, 131, 34, 2, 78, 78, 238, 253, 1, 72, 2, 77, 2, + 82, 3, 85, 9, 130, 131, 34, 71, 131, 254, 1, 78, 17, 66, 78, 154, 255, + 34, 32, 134, 129, 1, 69, 2, 77, 2, 79, 3, 85, 4, 154, 128, 36, 71, 3, 78, + 9, 254, 255, 35, 72, 2, 73, 3, 89, 66, 104, 3, 79, 77, 32, 145, 183, 21, 17, 76, 69, 32, 87, 73, 84, 72, 32, 80, 79, 80, 80, 73, 78, 71, 32, 67, 64, 152, 2, 5, 72, 65, 76, 70, 32, 232, 1, 5, 76, 69, 70, 84, 32, 88, 6, 82, 73, 71, 72, 84, 32, 88, 14, 83, 81, 85, 65, 82, 69, 32, 66, 82, 65, - 67, 75, 69, 84, 210, 228, 15, 65, 226, 154, 16, 67, 210, 3, 80, 140, 3, + 67, 75, 69, 84, 210, 216, 15, 65, 150, 150, 16, 67, 210, 3, 80, 140, 3, 13, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32, 85, 80, 80, 135, 5, 84, 32, 148, 1, 16, 70, 79, 82, 87, 65, 82, 68, 45, 70, 65, 67, 73, 78, 71, 32, - 82, 134, 132, 32, 76, 22, 82, 252, 2, 2, 83, 84, 174, 5, 66, 211, 245, 1, - 73, 10, 196, 179, 29, 11, 85, 78, 78, 69, 82, 32, 70, 82, 65, 77, 69, - 155, 210, 2, 79, 8, 196, 137, 32, 13, 74, 85, 83, 84, 73, 70, 73, 69, 68, - 32, 85, 80, 80, 126, 67, 51, 72, 8, 234, 137, 32, 67, 50, 72, 33, 13, 74, - 85, 83, 84, 73, 70, 73, 69, 68, 32, 85, 80, 80, 5, 129, 236, 23, 9, 32, - 79, 86, 69, 82, 32, 84, 79, 80, 5, 209, 248, 34, 8, 32, 79, 70, 32, 70, - 76, 79, 87, 14, 58, 76, 116, 3, 84, 73, 69, 149, 170, 33, 3, 32, 65, 78, - 6, 26, 32, 207, 183, 35, 73, 4, 224, 195, 9, 7, 79, 70, 32, 72, 89, 71, - 73, 173, 154, 23, 6, 87, 73, 84, 72, 32, 83, 7, 211, 231, 32, 32, 218, 2, - 88, 10, 32, 68, 82, 65, 87, 73, 78, 71, 83, 32, 153, 138, 35, 6, 73, 78, + 82, 186, 243, 31, 76, 22, 82, 252, 2, 2, 83, 84, 174, 5, 66, 211, 245, 1, + 73, 10, 248, 162, 29, 11, 85, 78, 78, 69, 82, 32, 70, 82, 65, 77, 69, + 155, 210, 2, 79, 8, 248, 248, 31, 13, 74, 85, 83, 84, 73, 70, 73, 69, 68, + 32, 85, 80, 80, 126, 67, 51, 72, 8, 158, 249, 31, 67, 50, 72, 33, 13, 74, + 85, 83, 84, 73, 70, 73, 69, 68, 32, 85, 80, 80, 5, 181, 219, 23, 9, 32, + 79, 86, 69, 82, 32, 84, 79, 80, 5, 133, 232, 34, 8, 32, 79, 70, 32, 70, + 76, 79, 87, 14, 58, 76, 116, 3, 84, 73, 69, 201, 153, 33, 3, 32, 65, 78, + 6, 26, 32, 131, 167, 35, 73, 4, 172, 187, 9, 7, 79, 70, 32, 72, 89, 71, + 73, 149, 146, 23, 6, 87, 73, 84, 72, 32, 83, 7, 135, 215, 32, 32, 218, 2, + 88, 10, 32, 68, 82, 65, 87, 73, 78, 71, 83, 32, 205, 249, 34, 6, 73, 78, 71, 32, 71, 76, 216, 2, 176, 1, 2, 68, 79, 228, 6, 6, 72, 69, 65, 86, 89, 32, 254, 2, 76, 204, 25, 6, 82, 73, 71, 72, 84, 32, 144, 4, 3, 85, 80, 32, 245, 3, 9, 86, 69, 82, 84, 73, 67, 65, 76, 32, 66, 52, 5, 85, 66, 76, 69, 32, 165, 3, 3, 87, 78, 32, 30, 58, 68, 216, 2, 2, 85, 80, 234, 5, 86, - 203, 188, 29, 72, 14, 64, 8, 73, 65, 71, 79, 78, 65, 76, 32, 149, 2, 3, + 255, 171, 29, 72, 14, 64, 8, 73, 65, 71, 79, 78, 65, 76, 32, 149, 2, 3, 79, 87, 78, 8, 104, 6, 85, 80, 80, 69, 82, 32, 205, 14, 15, 76, 79, 87, 69, 82, 32, 76, 69, 70, 84, 32, 84, 79, 32, 77, 6, 76, 8, 76, 69, 70, 84, 32, 84, 79, 32, 237, 24, 6, 82, 73, 71, 72, 84, 32, 4, 204, 23, 14, 77, - 73, 68, 68, 76, 69, 32, 67, 69, 78, 84, 82, 69, 32, 191, 194, 23, 76, 6, + 73, 68, 68, 76, 69, 32, 67, 69, 78, 84, 82, 69, 32, 243, 177, 23, 76, 6, 199, 26, 32, 36, 128, 1, 10, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 132, 1, 10, 76, 73, 71, 72, 84, 32, 65, 78, 68, 32, 210, 38, 68, 131, 4, 83, 12, 76, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 228, 35, 2, 85, 80, 151, 5, - 72, 4, 17, 2, 84, 32, 4, 230, 32, 85, 199, 180, 35, 76, 12, 76, 3, 76, + 72, 4, 17, 2, 84, 32, 4, 230, 32, 85, 251, 163, 35, 76, 12, 76, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 156, 36, 2, 85, 80, 235, 4, 72, 4, 17, 2, 84, 32, 4, 198, 32, 85, 135, 9, 72, 46, 136, 1, 4, 76, 69, 70, 84, 68, 2, - 85, 80, 130, 1, 86, 172, 20, 2, 68, 79, 170, 2, 81, 100, 2, 84, 82, 146, - 165, 29, 72, 247, 148, 6, 82, 5, 45, 9, 32, 65, 78, 68, 32, 76, 73, 71, - 72, 2, 255, 169, 34, 84, 11, 29, 5, 32, 65, 78, 68, 32, 8, 42, 76, 254, - 188, 29, 72, 247, 148, 6, 82, 4, 220, 195, 24, 4, 73, 71, 72, 84, 131, + 85, 80, 130, 1, 86, 172, 20, 2, 68, 79, 170, 2, 81, 100, 2, 84, 82, 198, + 148, 29, 72, 247, 148, 6, 82, 5, 45, 9, 32, 65, 78, 68, 32, 76, 73, 71, + 72, 2, 179, 153, 34, 84, 11, 29, 5, 32, 65, 78, 68, 32, 8, 42, 76, 178, + 172, 29, 72, 247, 148, 6, 82, 4, 144, 179, 24, 4, 73, 71, 72, 84, 131, 142, 11, 69, 8, 209, 20, 7, 69, 82, 84, 73, 67, 65, 76, 156, 1, 56, 4, 69, 70, 84, 32, 169, 2, 5, 73, 71, 72, 84, 32, 16, 160, 27, 19, 68, 79, 87, 78, 32, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 82, 73, 71, 72, 24, @@ -1232,150 +1232,150 @@ static const unsigned char packed_name_dawg[] = { 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 82, 73, 71, 72, 140, 1, 248, 1, 4, 65, 82, 67, 32, 30, 68, 248, 15, 10, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 112, 4, 76, 69, 70, 84, 62, 81, 34, 84, 172, 1, 2, 85, 80, 120, - 8, 86, 69, 82, 84, 73, 67, 65, 76, 156, 211, 13, 7, 66, 79, 84, 84, 79, - 77, 32, 139, 229, 21, 82, 8, 166, 222, 17, 68, 67, 85, 80, 52, 8, 73, 65, + 8, 86, 69, 82, 84, 73, 67, 65, 76, 156, 199, 13, 7, 66, 79, 84, 84, 79, + 77, 32, 191, 224, 21, 82, 8, 166, 210, 17, 68, 67, 85, 80, 52, 8, 73, 65, 71, 79, 78, 65, 76, 32, 199, 14, 79, 68, 168, 1, 14, 76, 79, 87, 69, 82, 32, 76, 69, 70, 84, 32, 84, 79, 32, 96, 7, 77, 73, 68, 68, 76, 69, 32, - 136, 3, 6, 85, 80, 80, 69, 82, 32, 230, 173, 34, 67, 183, 4, 68, 4, 38, + 136, 3, 6, 85, 80, 80, 69, 82, 32, 154, 157, 34, 67, 183, 4, 68, 4, 38, 77, 33, 5, 85, 80, 80, 69, 82, 2, 29, 5, 73, 68, 68, 76, 69, 2, 129, 12, 2, 32, 67, 16, 88, 8, 76, 69, 70, 84, 32, 84, 79, 32, 213, 1, 9, 82, 73, 71, 72, 84, 32, 84, 79, 32, 10, 156, 1, 6, 76, 79, 87, 69, 82, 32, 33, 28, 85, 80, 80, 69, 82, 32, 67, 69, 78, 84, 82, 69, 32, 84, 79, 32, 77, - 73, 68, 68, 76, 69, 32, 82, 73, 71, 72, 84, 6, 246, 3, 67, 215, 195, 35, - 82, 5, 171, 211, 20, 32, 6, 232, 4, 15, 85, 80, 80, 69, 82, 32, 67, 69, + 73, 68, 68, 76, 69, 32, 82, 73, 71, 72, 84, 6, 246, 3, 67, 139, 179, 35, + 82, 5, 171, 199, 20, 32, 6, 232, 4, 15, 85, 80, 80, 69, 82, 32, 67, 69, 78, 84, 82, 69, 32, 84, 79, 235, 3, 76, 44, 144, 1, 10, 67, 69, 78, 84, 82, 69, 32, 84, 79, 32, 248, 3, 8, 76, 69, 70, 84, 32, 84, 79, 32, 193, 2, 9, 82, 73, 71, 72, 84, 32, 84, 79, 32, 20, 52, 7, 77, 73, 68, 68, 76, - 69, 32, 203, 197, 23, 76, 16, 56, 4, 76, 69, 70, 84, 165, 1, 5, 82, 73, + 69, 32, 255, 180, 23, 76, 16, 56, 4, 76, 69, 70, 84, 165, 1, 5, 82, 73, 71, 72, 84, 9, 11, 32, 6, 84, 10, 84, 79, 32, 76, 79, 87, 69, 82, 32, 67, - 141, 207, 20, 5, 65, 78, 68, 32, 77, 4, 29, 5, 69, 78, 84, 82, 69, 5, - 137, 232, 32, 3, 32, 84, 79, 9, 11, 32, 6, 88, 3, 65, 78, 68, 65, 15, 84, - 79, 32, 76, 79, 87, 69, 82, 32, 67, 69, 78, 84, 82, 69, 2, 149, 206, 20, - 11, 32, 77, 73, 68, 68, 76, 69, 32, 76, 69, 70, 5, 133, 224, 10, 9, 32, + 141, 195, 20, 5, 65, 78, 68, 32, 77, 4, 29, 5, 69, 78, 84, 82, 69, 5, + 189, 215, 32, 3, 32, 84, 79, 9, 11, 32, 6, 88, 3, 65, 78, 68, 65, 15, 84, + 79, 32, 76, 79, 87, 69, 82, 32, 67, 69, 78, 84, 82, 69, 2, 149, 194, 20, + 11, 32, 77, 73, 68, 68, 76, 69, 32, 76, 69, 70, 5, 209, 215, 10, 9, 32, 84, 79, 32, 77, 73, 68, 68, 76, 14, 68, 6, 76, 79, 87, 69, 82, 32, 97, 7, - 77, 73, 68, 68, 76, 69, 32, 6, 48, 6, 67, 69, 78, 84, 82, 69, 187, 192, + 77, 73, 68, 68, 76, 69, 32, 6, 48, 6, 67, 69, 78, 84, 82, 69, 239, 175, 35, 82, 5, 11, 32, 2, 233, 4, 4, 84, 79, 32, 85, 8, 76, 10, 67, 69, 78, 84, 82, 69, 32, 84, 79, 32, 33, 5, 82, 73, 71, 72, 84, 4, 250, 3, 85, - 231, 214, 13, 76, 5, 11, 32, 2, 157, 218, 13, 2, 84, 79, 10, 46, 76, 69, - 7, 77, 73, 68, 68, 76, 69, 32, 4, 29, 5, 79, 87, 69, 82, 32, 4, 202, 227, + 231, 202, 13, 76, 5, 11, 32, 2, 157, 206, 13, 2, 84, 79, 10, 46, 76, 69, + 7, 77, 73, 68, 68, 76, 69, 32, 4, 29, 5, 79, 87, 69, 82, 32, 4, 254, 210, 32, 67, 191, 218, 2, 76, 6, 34, 67, 37, 4, 76, 69, 70, 84, 2, 45, 6, 69, - 78, 84, 82, 69, 32, 5, 11, 32, 2, 165, 191, 23, 2, 84, 79, 12, 36, 2, 87, - 78, 253, 2, 2, 85, 66, 9, 11, 32, 6, 25, 4, 65, 78, 68, 32, 6, 202, 167, + 78, 84, 82, 69, 32, 5, 11, 32, 2, 217, 174, 23, 2, 84, 79, 12, 36, 2, 87, + 78, 253, 2, 2, 85, 66, 9, 11, 32, 6, 25, 4, 65, 78, 68, 32, 6, 254, 150, 29, 72, 218, 148, 6, 76, 31, 82, 9, 11, 32, 6, 40, 4, 65, 78, 68, 32, - 187, 181, 35, 87, 4, 26, 85, 211, 189, 23, 76, 2, 225, 189, 23, 2, 80, - 80, 5, 209, 146, 34, 10, 32, 65, 78, 68, 32, 72, 69, 65, 86, 89, 4, 109, - 5, 85, 65, 68, 82, 85, 6, 66, 82, 189, 213, 13, 10, 79, 80, 32, 65, 78, + 239, 164, 35, 87, 4, 26, 85, 135, 173, 23, 76, 2, 149, 173, 23, 2, 80, + 80, 5, 133, 130, 34, 10, 32, 65, 78, 68, 32, 72, 69, 65, 86, 89, 4, 109, + 5, 85, 65, 68, 82, 85, 6, 66, 82, 189, 201, 13, 10, 79, 80, 32, 65, 78, 68, 32, 85, 80, 80, 4, 11, 73, 4, 11, 80, 4, 41, 8, 76, 69, 32, 68, 65, - 83, 72, 32, 4, 166, 193, 16, 86, 167, 227, 12, 72, 11, 29, 5, 32, 65, 78, - 68, 32, 8, 34, 72, 190, 184, 35, 76, 31, 82, 4, 196, 170, 24, 4, 69, 65, - 86, 89, 171, 249, 4, 79, 17, 29, 5, 32, 65, 78, 68, 32, 14, 230, 168, 28, + 83, 72, 32, 4, 166, 181, 16, 86, 219, 222, 12, 72, 11, 29, 5, 32, 65, 78, + 68, 32, 8, 34, 72, 242, 167, 35, 76, 31, 82, 4, 248, 153, 24, 4, 69, 65, + 86, 89, 171, 249, 4, 79, 17, 29, 5, 32, 65, 78, 68, 32, 14, 154, 152, 28, 66, 42, 84, 130, 122, 72, 218, 148, 6, 76, 31, 82, 16, 148, 2, 18, 68, 79, 87, 78, 32, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 76, 69, 70, 24, 13, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 76, 69, 70, 100, 13, 76, 73, 71, 72, 84, 32, 65, 78, 68, 32, 76, 69, 70, 97, 16, 85, 80, 32, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 76, 69, 70, 2, 101, 3, 84, 32, 85, 6, 17, 2, 84, 32, 6, 58, 85, 178, 3, 68, 245, 4, 6, 86, 69, 82, 84, 73, 67, 2, - 179, 194, 33, 80, 6, 17, 2, 84, 32, 6, 58, 85, 134, 4, 68, 205, 4, 6, 86, + 231, 177, 33, 80, 6, 17, 2, 84, 32, 6, 58, 85, 134, 4, 68, 205, 4, 6, 86, 69, 82, 84, 73, 67, 2, 239, 8, 80, 2, 185, 2, 3, 84, 32, 68, 36, 128, 1, 10, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 188, 1, 10, 76, 73, 71, 72, 84, 32, 65, 78, 68, 32, 186, 2, 68, 131, 4, 83, 12, 80, 4, 68, 79, 87, 78, 24, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 255, 4, 72, 2, 145, 5, 2, - 32, 72, 4, 17, 2, 84, 32, 4, 26, 68, 151, 177, 35, 76, 2, 129, 191, 33, + 32, 72, 4, 17, 2, 84, 32, 4, 26, 68, 203, 160, 35, 76, 2, 181, 174, 33, 3, 79, 87, 78, 12, 80, 4, 68, 79, 87, 78, 24, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 211, 4, 72, 2, 229, 4, 2, 32, 72, 4, 17, 2, 84, 32, 4, 22, 68, 131, 5, 72, 2, 233, 4, 3, 79, 87, 78, 24, 130, 1, 68, 188, 1, 10, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 144, 1, 10, 76, 73, 71, 72, 84, 32, 65, 78, 68, 32, 183, 1, 83, 6, 49, 10, 79, 85, 66, 76, 69, 32, 65, 78, 68, 32, 6, 92, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 13, 10, 72, 79, 82, - 73, 90, 79, 78, 84, 65, 76, 2, 11, 84, 2, 169, 129, 27, 2, 32, 83, 6, 54, + 73, 90, 79, 78, 84, 65, 76, 2, 11, 84, 2, 221, 240, 26, 2, 32, 83, 6, 54, 72, 68, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 37, 7, 79, 82, 73, 90, - 79, 78, 84, 2, 141, 186, 33, 2, 65, 76, 2, 243, 185, 33, 84, 6, 54, 72, + 79, 78, 84, 2, 193, 169, 33, 2, 65, 76, 2, 167, 169, 33, 84, 6, 54, 72, 60, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 37, 7, 79, 82, 73, 90, 79, - 78, 84, 2, 29, 2, 65, 76, 2, 11, 84, 2, 17, 2, 32, 72, 2, 225, 195, 35, + 78, 84, 2, 29, 2, 65, 76, 2, 11, 84, 2, 17, 2, 32, 72, 2, 149, 179, 35, 3, 69, 65, 86, 6, 49, 10, 73, 78, 71, 76, 69, 32, 65, 78, 68, 32, 6, 96, - 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 177, 197, 26, 9, 72, 79, 82, 73, 90, - 79, 78, 84, 65, 2, 187, 197, 26, 84, 134, 6, 46, 65, 178, 14, 69, 150, 1, + 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 229, 180, 26, 9, 72, 79, 82, 73, 90, + 79, 78, 84, 65, 2, 239, 180, 26, 84, 134, 6, 46, 65, 178, 14, 69, 150, 1, 73, 179, 1, 79, 232, 5, 36, 4, 72, 77, 73, 32, 247, 9, 73, 230, 1, 192, 1, 7, 76, 69, 84, 84, 69, 82, 32, 196, 2, 7, 78, 85, 77, 66, 69, 82, 32, 144, 2, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 84, 5, 83, - 73, 71, 78, 32, 122, 86, 159, 138, 25, 68, 108, 210, 1, 79, 242, 241, 31, + 73, 71, 78, 32, 122, 86, 211, 249, 24, 68, 108, 210, 1, 79, 166, 225, 31, 65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 89, 187, 2, 69, 15, 45, 9, 76, 68, 32, 84, 65, 77, - 73, 76, 32, 12, 150, 152, 29, 76, 142, 155, 2, 83, 210, 97, 78, 131, 246, - 2, 82, 42, 82, 69, 38, 70, 66, 78, 26, 83, 182, 193, 21, 84, 130, 234, 5, - 79, 227, 227, 7, 74, 4, 129, 189, 31, 4, 73, 71, 72, 84, 8, 26, 79, 143, - 168, 21, 73, 4, 254, 221, 33, 82, 135, 183, 1, 85, 4, 65, 3, 73, 78, 69, - 8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 5, 175, 187, 35, 84, 10, 46, 76, - 130, 222, 12, 68, 177, 16, 2, 67, 82, 4, 242, 210, 19, 79, 147, 222, 14, - 73, 12, 174, 174, 31, 67, 228, 67, 9, 79, 76, 68, 32, 84, 65, 77, 73, 76, + 73, 76, 32, 12, 202, 135, 29, 76, 142, 155, 2, 83, 210, 97, 78, 131, 246, + 2, 82, 42, 82, 69, 38, 70, 66, 78, 26, 83, 234, 176, 21, 84, 130, 234, 5, + 79, 227, 227, 7, 74, 4, 181, 172, 31, 4, 73, 71, 72, 84, 8, 26, 79, 195, + 151, 21, 73, 4, 178, 205, 33, 82, 135, 183, 1, 85, 4, 65, 3, 73, 78, 69, + 8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 5, 227, 170, 35, 84, 10, 46, 76, + 206, 213, 12, 68, 177, 16, 2, 67, 82, 4, 242, 198, 19, 79, 199, 217, 14, + 73, 12, 226, 157, 31, 67, 228, 67, 9, 79, 76, 68, 32, 84, 65, 77, 73, 76, 246, 157, 1, 74, 158, 2, 86, 122, 85, 255, 243, 1, 65, 34, 64, 10, 79, - 87, 69, 76, 32, 83, 73, 71, 78, 32, 187, 142, 33, 73, 32, 138, 1, 79, - 228, 199, 29, 11, 66, 72, 65, 84, 84, 73, 80, 82, 79, 76, 85, 198, 170, - 2, 65, 38, 85, 22, 86, 166, 202, 1, 73, 199, 140, 2, 69, 7, 181, 173, 31, + 87, 69, 76, 32, 83, 73, 71, 78, 32, 239, 253, 32, 73, 32, 138, 1, 79, + 152, 183, 29, 11, 66, 72, 65, 84, 84, 73, 80, 82, 79, 76, 85, 198, 170, + 2, 65, 38, 85, 22, 86, 166, 202, 1, 73, 199, 140, 2, 69, 7, 233, 156, 31, 10, 76, 68, 32, 84, 65, 77, 73, 76, 32, 83, 130, 4, 72, 12, 76, 76, 69, - 32, 80, 65, 84, 84, 69, 82, 78, 32, 191, 200, 35, 78, 128, 4, 44, 5, 68, - 79, 84, 83, 45, 207, 250, 6, 66, 254, 3, 74, 49, 74, 50, 66, 51, 54, 52, - 46, 53, 38, 54, 30, 55, 147, 197, 35, 56, 129, 2, 66, 50, 66, 51, 54, 52, - 46, 53, 38, 54, 30, 55, 147, 197, 35, 56, 129, 1, 58, 51, 54, 52, 46, 53, - 38, 54, 30, 55, 147, 197, 35, 56, 65, 50, 52, 46, 53, 38, 54, 30, 55, - 147, 197, 35, 56, 33, 42, 53, 38, 54, 30, 55, 147, 197, 35, 56, 17, 34, - 54, 30, 55, 147, 197, 35, 56, 9, 26, 55, 147, 197, 35, 56, 5, 143, 197, - 35, 56, 8, 26, 65, 143, 174, 35, 86, 6, 196, 205, 20, 11, 75, 32, 80, 69, - 82, 77, 73, 84, 84, 69, 68, 228, 176, 8, 6, 83, 84, 45, 70, 69, 69, 183, - 198, 6, 68, 10, 42, 68, 96, 2, 69, 70, 199, 191, 35, 67, 4, 212, 197, 32, + 32, 80, 65, 84, 84, 69, 82, 78, 32, 243, 183, 35, 78, 128, 4, 44, 5, 68, + 79, 84, 83, 45, 175, 246, 6, 66, 254, 3, 74, 49, 74, 50, 66, 51, 54, 52, + 46, 53, 38, 54, 30, 55, 199, 180, 35, 56, 129, 2, 66, 50, 66, 51, 54, 52, + 46, 53, 38, 54, 30, 55, 199, 180, 35, 56, 129, 1, 58, 51, 54, 52, 46, 53, + 38, 54, 30, 55, 199, 180, 35, 56, 65, 50, 52, 46, 53, 38, 54, 30, 55, + 199, 180, 35, 56, 33, 42, 53, 38, 54, 30, 55, 199, 180, 35, 56, 17, 34, + 54, 30, 55, 199, 180, 35, 56, 9, 26, 55, 199, 180, 35, 56, 5, 195, 180, + 35, 56, 8, 26, 65, 195, 157, 35, 86, 6, 196, 193, 20, 11, 75, 32, 80, 69, + 82, 77, 73, 84, 84, 69, 68, 152, 172, 8, 6, 83, 84, 45, 70, 69, 69, 183, + 198, 6, 68, 10, 42, 68, 96, 2, 69, 70, 251, 174, 35, 67, 4, 136, 181, 32, 6, 71, 69, 32, 65, 84, 32, 149, 158, 1, 9, 69, 32, 87, 73, 84, 72, 32, - 86, 69, 4, 190, 153, 32, 67, 159, 169, 3, 83, 12, 84, 4, 75, 69, 78, 32, - 244, 204, 8, 2, 67, 67, 176, 237, 25, 2, 87, 78, 231, 118, 79, 6, 196, - 199, 27, 17, 67, 73, 82, 67, 76, 69, 32, 87, 73, 84, 72, 32, 78, 79, 82, + 86, 69, 4, 242, 136, 32, 67, 159, 169, 3, 83, 12, 84, 4, 75, 69, 78, 32, + 192, 196, 8, 2, 67, 67, 152, 229, 25, 2, 87, 78, 231, 118, 79, 6, 248, + 182, 27, 17, 67, 73, 82, 67, 76, 69, 32, 87, 73, 84, 72, 32, 78, 79, 82, 84, 72, 222, 214, 6, 66, 151, 28, 72, 134, 1, 208, 1, 4, 66, 66, 76, 69, 46, 71, 156, 4, 4, 72, 73, 68, 32, 36, 2, 76, 76, 122, 83, 56, 4, 84, 84, - 69, 82, 164, 134, 11, 10, 73, 76, 68, 73, 78, 71, 32, 67, 79, 78, 144, - 226, 16, 2, 82, 82, 255, 253, 6, 67, 4, 144, 171, 28, 2, 32, 84, 131, + 69, 82, 240, 253, 10, 10, 73, 76, 68, 73, 78, 71, 32, 67, 79, 78, 248, + 217, 16, 2, 82, 82, 255, 253, 6, 67, 4, 196, 154, 28, 2, 32, 84, 131, 148, 7, 83, 63, 33, 6, 73, 78, 69, 83, 69, 32, 60, 144, 1, 7, 76, 69, 84, 84, 69, 82, 32, 172, 2, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, - 146, 196, 16, 69, 141, 253, 13, 4, 80, 65, 76, 76, 46, 154, 1, 77, 34, - 78, 190, 185, 35, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, - 80, 2, 82, 2, 83, 2, 84, 2, 86, 2, 89, 187, 2, 65, 4, 218, 185, 35, 80, - 187, 2, 65, 12, 46, 71, 34, 89, 238, 184, 35, 82, 187, 2, 65, 4, 138, - 185, 35, 75, 187, 2, 65, 4, 234, 184, 35, 67, 187, 2, 65, 10, 174, 164, - 35, 65, 214, 22, 69, 2, 73, 2, 79, 3, 85, 40, 230, 164, 10, 76, 167, 253, - 18, 86, 10, 56, 2, 69, 84, 20, 4, 72, 79, 82, 78, 175, 175, 9, 83, 5, - 179, 246, 31, 32, 5, 189, 210, 27, 5, 32, 87, 73, 84, 72, 9, 26, 84, 147, - 228, 32, 32, 4, 182, 210, 27, 83, 15, 32, 5, 199, 149, 35, 70, 240, 3, + 146, 184, 16, 69, 193, 248, 13, 4, 80, 65, 76, 76, 46, 154, 1, 77, 34, + 78, 242, 168, 35, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, + 80, 2, 82, 2, 83, 2, 84, 2, 86, 2, 89, 187, 2, 65, 4, 142, 169, 35, 80, + 187, 2, 65, 12, 46, 71, 34, 89, 162, 168, 35, 82, 187, 2, 65, 4, 190, + 168, 35, 75, 187, 2, 65, 4, 158, 168, 35, 67, 187, 2, 65, 10, 226, 147, + 35, 65, 214, 22, 69, 2, 73, 2, 79, 3, 85, 40, 178, 156, 10, 76, 143, 245, + 18, 86, 10, 56, 2, 69, 84, 20, 4, 72, 79, 82, 78, 251, 166, 9, 83, 5, + 231, 229, 31, 32, 5, 241, 193, 27, 5, 32, 87, 73, 84, 72, 9, 26, 84, 199, + 211, 32, 32, 4, 234, 193, 27, 83, 15, 32, 5, 251, 132, 35, 70, 240, 3, 140, 1, 23, 90, 65, 78, 84, 73, 78, 69, 32, 77, 85, 83, 73, 67, 65, 76, - 32, 83, 89, 77, 66, 79, 76, 32, 153, 200, 20, 5, 84, 69, 32, 79, 82, 238, + 32, 83, 89, 77, 66, 79, 76, 32, 149, 188, 20, 5, 84, 69, 32, 79, 82, 238, 3, 154, 2, 65, 128, 7, 2, 67, 72, 170, 1, 68, 158, 5, 69, 206, 2, 70, 166, 8, 71, 202, 3, 73, 162, 2, 75, 142, 5, 76, 190, 2, 77, 250, 4, 79, 114, 80, 174, 4, 82, 42, 83, 194, 5, 84, 196, 5, 2, 86, 65, 250, 1, 89, - 178, 196, 32, 78, 201, 146, 2, 9, 88, 73, 82, 79, 78, 32, 75, 76, 65, 62, + 230, 179, 32, 78, 201, 146, 2, 9, 88, 73, 82, 79, 78, 32, 75, 76, 65, 62, 60, 5, 71, 79, 71, 73, 32, 222, 1, 78, 118, 80, 199, 2, 82, 16, 70, 65, 0, 2, 71, 79, 64, 2, 77, 69, 37, 5, 80, 79, 76, 73, 32, 4, 17, 2, 82, 71, - 4, 128, 242, 15, 2, 79, 84, 147, 194, 19, 73, 4, 158, 164, 9, 84, 243, - 251, 25, 83, 4, 26, 65, 1, 2, 71, 79, 2, 239, 222, 17, 82, 6, 72, 6, 84, - 73, 75, 69, 78, 79, 161, 145, 35, 6, 65, 84, 82, 73, 67, 72, 4, 168, 32, - 2, 75, 89, 231, 143, 35, 77, 22, 52, 5, 69, 83, 79, 32, 69, 38, 79, 239, - 157, 35, 76, 4, 204, 1, 2, 88, 79, 147, 55, 75, 16, 80, 6, 83, 84, 82, + 4, 128, 230, 15, 2, 79, 84, 199, 189, 19, 73, 4, 234, 155, 9, 84, 219, + 243, 25, 83, 4, 26, 65, 1, 2, 71, 79, 2, 239, 210, 17, 82, 6, 72, 6, 84, + 73, 75, 69, 78, 79, 213, 128, 35, 6, 65, 84, 82, 73, 67, 72, 4, 168, 32, + 2, 75, 89, 155, 255, 34, 77, 22, 52, 5, 69, 83, 79, 32, 69, 38, 79, 163, + 141, 35, 76, 4, 204, 1, 2, 88, 79, 147, 55, 75, 16, 80, 6, 83, 84, 82, 79, 70, 79, 188, 40, 3, 68, 69, 82, 237, 129, 1, 2, 84, 72, 10, 24, 2, 73, 32, 79, 83, 4, 56, 9, 83, 89, 78, 68, 69, 83, 77, 79, 83, 195, 24, - 84, 2, 143, 44, 32, 7, 11, 32, 4, 214, 60, 68, 183, 166, 22, 78, 18, 48, - 2, 71, 79, 33, 6, 75, 84, 73, 75, 79, 32, 4, 170, 21, 83, 255, 153, 35, - 78, 14, 130, 216, 27, 86, 146, 184, 7, 90, 162, 8, 75, 254, 2, 68, 2, 78, + 84, 2, 143, 44, 32, 7, 11, 32, 4, 214, 60, 68, 235, 149, 22, 78, 18, 48, + 2, 71, 79, 33, 6, 75, 84, 73, 75, 79, 32, 4, 170, 21, 83, 179, 137, 35, + 78, 14, 182, 199, 27, 86, 146, 184, 7, 90, 162, 8, 75, 254, 2, 68, 2, 78, 162, 17, 71, 3, 80, 14, 80, 4, 82, 79, 65, 32, 168, 37, 4, 79, 82, 69, - 86, 221, 2, 4, 65, 77, 73, 76, 6, 132, 235, 19, 2, 83, 80, 232, 192, 3, - 3, 90, 89, 71, 205, 204, 10, 3, 75, 76, 73, 42, 50, 73, 244, 231, 8, 2, - 65, 83, 239, 165, 26, 89, 38, 122, 65, 200, 1, 5, 69, 83, 73, 83, 32, 70, - 71, 208, 1, 3, 80, 76, 73, 249, 208, 27, 8, 70, 84, 79, 71, 71, 79, 83, - 32, 10, 48, 6, 83, 84, 79, 76, 73, 32, 243, 240, 33, 82, 8, 80, 6, 65, - 80, 76, 73, 32, 77, 174, 55, 68, 185, 241, 22, 5, 84, 72, 69, 83, 69, 4, - 40, 2, 69, 71, 217, 190, 28, 2, 73, 75, 2, 195, 166, 30, 65, 12, 38, 84, + 86, 221, 2, 4, 65, 77, 73, 76, 6, 132, 223, 19, 2, 83, 80, 156, 188, 3, + 3, 90, 89, 71, 205, 204, 10, 3, 75, 76, 73, 42, 50, 73, 192, 223, 8, 2, + 65, 83, 215, 157, 26, 89, 38, 122, 65, 200, 1, 5, 69, 83, 73, 83, 32, 70, + 71, 208, 1, 3, 80, 76, 73, 173, 192, 27, 8, 70, 84, 79, 71, 71, 79, 83, + 32, 10, 48, 6, 83, 84, 79, 76, 73, 32, 167, 224, 33, 82, 8, 80, 6, 65, + 80, 76, 73, 32, 77, 174, 55, 68, 237, 224, 22, 5, 84, 72, 69, 83, 69, 4, + 40, 2, 69, 71, 141, 174, 28, 2, 73, 75, 2, 247, 149, 30, 65, 12, 38, 84, 246, 50, 65, 42, 68, 63, 77, 6, 194, 10, 69, 239, 41, 82, 10, 72, 5, 79, - 82, 71, 79, 78, 173, 168, 35, 7, 82, 65, 77, 77, 65, 32, 71, 9, 69, 15, + 82, 71, 79, 78, 225, 151, 35, 7, 82, 65, 77, 77, 65, 32, 71, 9, 69, 15, 32, 80, 65, 82, 69, 83, 84, 73, 71, 77, 69, 78, 79, 78, 32, 6, 222, 38, 68, 137, 10, 8, 65, 82, 73, 83, 84, 69, 82, 65, 5, 175, 47, 32, 16, 166, - 1, 78, 116, 6, 84, 69, 82, 79, 78, 32, 188, 44, 4, 88, 79, 32, 69, 136, - 147, 33, 4, 80, 69, 71, 69, 236, 48, 6, 75, 83, 84, 82, 69, 80, 237, 13, - 3, 76, 65, 70, 4, 224, 22, 3, 68, 79, 70, 221, 184, 27, 18, 65, 82, 88, + 1, 78, 116, 6, 84, 69, 82, 79, 78, 32, 188, 44, 4, 88, 79, 32, 69, 188, + 130, 33, 4, 80, 69, 71, 69, 236, 48, 6, 75, 83, 84, 82, 69, 80, 237, 13, + 3, 76, 65, 70, 4, 224, 22, 3, 68, 79, 70, 145, 168, 27, 18, 65, 82, 88, 73, 83, 32, 75, 65, 73, 32, 70, 84, 72, 79, 82, 65, 32, 86, 4, 208, 11, 5, 65, 82, 71, 79, 83, 151, 20, 80, 44, 180, 1, 9, 65, 78, 69, 82, 79, 83, 73, 83, 32, 52, 6, 84, 72, 79, 82, 65, 32, 165, 6, 22, 72, 84, 79, @@ -1384,3129 +1384,3108 @@ static const unsigned char packed_name_dawg[] = { 82, 67, 72, 65, 73, 79, 78, 80, 10, 68, 73, 65, 84, 79, 78, 73, 75, 73, 32, 96, 11, 73, 32, 89, 70, 69, 83, 73, 83, 32, 84, 69, 32, 15, 77, 65, 76, 65, 75, 79, 78, 32, 67, 72, 82, 79, 77, 65, 32, 74, 78, 40, 8, 83, - 75, 76, 73, 82, 79, 78, 32, 157, 229, 18, 18, 69, 78, 65, 82, 77, 79, 78, + 75, 76, 73, 82, 79, 78, 32, 157, 217, 18, 18, 69, 78, 65, 82, 77, 79, 78, 73, 79, 83, 32, 65, 78, 84, 73, 70, 79, 78, 5, 57, 12, 32, 68, 69, 89, - 84, 69, 82, 79, 85, 32, 73, 67, 2, 147, 201, 27, 72, 14, 62, 78, 210, - 128, 35, 90, 162, 8, 75, 254, 2, 68, 163, 17, 80, 6, 242, 39, 73, 187, - 185, 33, 65, 2, 237, 42, 4, 84, 65, 82, 84, 4, 18, 68, 15, 77, 2, 35, 73, - 2, 21, 3, 79, 78, 79, 2, 151, 19, 70, 4, 166, 19, 65, 193, 128, 33, 2, - 69, 78, 6, 84, 7, 67, 72, 82, 79, 77, 65, 32, 193, 169, 17, 8, 68, 73, - 65, 84, 79, 78, 79, 78, 4, 42, 86, 169, 173, 17, 4, 83, 89, 78, 65, 2, - 251, 245, 32, 65, 22, 80, 6, 69, 78, 73, 75, 73, 32, 44, 2, 79, 82, 185, - 26, 5, 82, 79, 78, 84, 72, 4, 192, 149, 31, 2, 68, 73, 1, 2, 89, 70, 16, + 84, 69, 82, 79, 85, 32, 73, 67, 2, 199, 184, 27, 72, 14, 62, 78, 134, + 240, 34, 90, 162, 8, 75, 254, 2, 68, 163, 17, 80, 6, 242, 39, 73, 239, + 168, 33, 65, 2, 237, 42, 4, 84, 65, 82, 84, 4, 18, 68, 15, 77, 2, 35, 73, + 2, 21, 3, 79, 78, 79, 2, 151, 19, 70, 4, 166, 19, 65, 245, 239, 32, 2, + 69, 78, 6, 84, 7, 67, 72, 82, 79, 77, 65, 32, 193, 157, 17, 8, 68, 73, + 65, 84, 79, 78, 79, 78, 4, 42, 86, 169, 161, 17, 4, 83, 89, 78, 65, 2, + 175, 229, 32, 65, 22, 80, 6, 69, 78, 73, 75, 73, 32, 44, 2, 79, 82, 185, + 26, 5, 82, 79, 78, 84, 72, 4, 244, 132, 31, 2, 68, 73, 1, 2, 89, 70, 16, 68, 2, 71, 79, 225, 1, 10, 84, 72, 77, 73, 75, 79, 78, 32, 78, 32, 12, 28, 2, 78, 32, 155, 1, 83, 10, 96, 14, 80, 65, 82, 69, 83, 84, 73, 71, 77, 69, 78, 79, 78, 32, 242, 33, 65, 113, 3, 78, 69, 79, 4, 214, 24, 68, - 229, 239, 32, 5, 65, 82, 73, 83, 84, 2, 217, 228, 33, 5, 89, 78, 84, 72, - 69, 4, 142, 28, 65, 1, 2, 68, 73, 16, 56, 2, 77, 73, 114, 83, 181, 152, + 153, 223, 32, 5, 65, 82, 73, 83, 84, 2, 141, 212, 33, 5, 89, 78, 84, 72, + 69, 4, 142, 28, 65, 1, 2, 68, 73, 16, 56, 2, 77, 73, 114, 83, 233, 135, 34, 4, 67, 72, 65, 68, 8, 34, 70, 169, 28, 3, 68, 73, 65, 6, 40, 4, 84, - 72, 79, 82, 251, 139, 34, 79, 4, 198, 200, 34, 79, 227, 79, 65, 6, 44, 6, - 65, 75, 73, 65, 32, 84, 231, 13, 79, 2, 165, 221, 21, 12, 69, 76, 79, 85, + 72, 79, 82, 175, 251, 33, 79, 4, 250, 183, 34, 79, 227, 79, 65, 6, 44, 6, + 65, 75, 73, 65, 32, 84, 231, 13, 79, 2, 217, 204, 21, 12, 69, 76, 79, 85, 83, 32, 73, 67, 72, 73, 77, 65, 54, 108, 2, 65, 84, 96, 6, 69, 78, 84, 73, 77, 65, 140, 1, 5, 76, 65, 83, 77, 65, 18, 79, 98, 82, 175, 1, 89, 6, 40, 3, 65, 86, 65, 201, 3, 2, 72, 73, 4, 140, 29, 5, 32, 84, 82, 79, 77, - 219, 215, 34, 83, 18, 24, 2, 84, 65, 15, 32, 11, 11, 32, 8, 36, 4, 78, - 69, 79, 32, 183, 28, 65, 6, 208, 166, 28, 2, 77, 69, 170, 222, 2, 75, - 235, 230, 3, 65, 7, 243, 28, 32, 8, 64, 6, 78, 84, 69, 86, 77, 65, 146, - 225, 8, 82, 163, 145, 26, 85, 5, 145, 181, 14, 2, 32, 65, 14, 44, 4, 65, - 84, 73, 77, 105, 3, 69, 77, 65, 12, 18, 65, 35, 79, 8, 182, 23, 32, 151, - 249, 34, 84, 4, 134, 12, 75, 181, 220, 31, 5, 89, 80, 79, 82, 82, 2, 175, - 166, 27, 83, 2, 243, 240, 34, 76, 14, 22, 69, 147, 22, 89, 12, 44, 5, 73, - 77, 77, 65, 32, 191, 154, 30, 77, 10, 72, 2, 69, 78, 0, 5, 73, 77, 73, - 83, 69, 54, 84, 69, 3, 68, 89, 79, 2, 237, 185, 27, 8, 79, 83, 32, 67, + 143, 199, 34, 83, 18, 24, 2, 84, 65, 15, 32, 11, 11, 32, 8, 36, 4, 78, + 69, 79, 32, 183, 28, 65, 6, 132, 150, 28, 2, 77, 69, 170, 222, 2, 75, + 235, 230, 3, 65, 7, 243, 28, 32, 8, 64, 6, 78, 84, 69, 86, 77, 65, 222, + 216, 8, 82, 139, 137, 26, 85, 5, 145, 169, 14, 2, 32, 65, 14, 44, 4, 65, + 84, 73, 77, 105, 3, 69, 77, 65, 12, 18, 65, 35, 79, 8, 182, 23, 32, 203, + 232, 34, 84, 4, 134, 12, 75, 233, 203, 31, 5, 89, 80, 79, 82, 82, 2, 227, + 149, 27, 83, 2, 167, 224, 34, 76, 14, 22, 69, 147, 22, 89, 12, 44, 5, 73, + 77, 77, 65, 32, 243, 137, 30, 77, 10, 72, 2, 69, 78, 0, 5, 73, 77, 73, + 83, 69, 54, 84, 69, 3, 68, 89, 79, 2, 161, 169, 27, 8, 79, 83, 32, 67, 72, 82, 79, 78, 4, 44, 5, 69, 83, 83, 65, 82, 1, 2, 82, 73, 2, 17, 2, 79, - 78, 2, 25, 4, 32, 67, 72, 82, 2, 175, 131, 34, 79, 28, 84, 8, 65, 82, 84, - 89, 82, 73, 65, 32, 229, 138, 31, 7, 73, 75, 82, 79, 78, 32, 73, 26, 72, + 78, 2, 25, 4, 32, 67, 72, 82, 2, 227, 242, 33, 79, 28, 84, 8, 65, 82, 84, + 89, 82, 73, 65, 32, 153, 250, 30, 7, 73, 75, 82, 79, 78, 32, 73, 26, 72, 5, 65, 76, 76, 73, 32, 38, 68, 38, 80, 134, 1, 86, 30, 84, 87, 76, 4, 34, 68, 177, 2, 3, 80, 82, 79, 2, 237, 2, 5, 69, 89, 84, 69, 82, 8, 60, 7, 76, 65, 71, 73, 79, 83, 32, 45, 4, 82, 79, 84, 79, 4, 200, 1, 5, 84, 69, 84, 65, 82, 111, 73, 4, 22, 86, 227, 1, 83, 2, 209, 1, 3, 65, 82, 89, 8, 56, 8, 69, 84, 65, 82, 84, 79, 83, 32, 61, 2, 82, 73, 4, 22, 76, 135, 1, - 73, 2, 21, 3, 69, 71, 69, 2, 63, 84, 4, 18, 70, 35, 84, 2, 221, 217, 21, - 3, 79, 78, 73, 2, 11, 79, 2, 11, 83, 2, 17, 2, 32, 73, 2, 199, 132, 23, + 73, 2, 21, 3, 69, 71, 69, 2, 63, 84, 4, 18, 70, 35, 84, 2, 145, 201, 21, + 3, 79, 78, 73, 2, 11, 79, 2, 11, 83, 2, 17, 2, 32, 73, 2, 251, 243, 22, 67, 18, 92, 4, 76, 73, 71, 79, 180, 1, 5, 89, 82, 65, 78, 73, 210, 14, - 88, 249, 169, 34, 2, 77, 65, 4, 211, 1, 78, 42, 60, 2, 65, 82, 100, 2, - 73, 65, 90, 69, 169, 1, 2, 83, 73, 12, 40, 2, 65, 75, 161, 190, 17, 2, + 88, 173, 153, 34, 2, 77, 65, 4, 211, 1, 78, 42, 60, 2, 65, 82, 100, 2, + 73, 65, 90, 69, 169, 1, 2, 83, 73, 12, 40, 2, 65, 75, 161, 178, 17, 2, 73, 67, 10, 52, 3, 65, 76, 69, 45, 6, 76, 73, 84, 73, 75, 73, 4, 11, 83, - 4, 17, 2, 77, 65, 4, 23, 32, 7, 11, 32, 4, 198, 15, 65, 211, 171, 22, 78, - 12, 72, 3, 84, 65, 83, 136, 3, 6, 76, 65, 83, 84, 79, 78, 135, 229, 8, - 82, 6, 26, 84, 203, 132, 35, 77, 4, 32, 2, 79, 75, 223, 134, 35, 73, 2, - 165, 229, 34, 2, 79, 85, 14, 36, 5, 70, 73, 83, 84, 79, 67, 76, 10, 46, - 80, 214, 1, 78, 170, 8, 76, 187, 1, 83, 2, 135, 11, 65, 4, 246, 181, 34, - 79, 227, 79, 73, 4, 178, 5, 69, 221, 222, 34, 2, 65, 80, 42, 120, 5, 69, + 4, 17, 2, 77, 65, 4, 23, 32, 7, 11, 32, 4, 198, 15, 65, 135, 155, 22, 78, + 12, 72, 3, 84, 65, 83, 136, 3, 6, 76, 65, 83, 84, 79, 78, 211, 220, 8, + 82, 6, 26, 84, 255, 243, 34, 77, 4, 32, 2, 79, 75, 147, 246, 34, 73, 2, + 217, 212, 34, 2, 79, 85, 14, 36, 5, 70, 73, 83, 84, 79, 67, 76, 10, 46, + 80, 214, 1, 78, 170, 8, 76, 187, 1, 83, 2, 135, 11, 65, 4, 170, 165, 34, + 79, 227, 79, 73, 4, 178, 5, 69, 145, 206, 34, 2, 65, 80, 42, 120, 5, 69, 73, 83, 77, 65, 32, 8, 73, 77, 65, 78, 83, 73, 83, 32, 182, 1, 84, 154, - 1, 89, 229, 243, 1, 3, 65, 88, 73, 5, 11, 32, 2, 151, 183, 22, 78, 16, + 1, 89, 229, 239, 1, 3, 65, 88, 73, 5, 11, 32, 2, 203, 166, 22, 78, 16, 36, 2, 65, 82, 1, 3, 84, 72, 69, 8, 25, 4, 83, 69, 79, 83, 9, 11, 32, 6, - 18, 84, 39, 68, 4, 34, 82, 13, 4, 69, 84, 82, 65, 2, 11, 73, 2, 217, 171, + 18, 84, 39, 68, 4, 34, 82, 13, 4, 69, 84, 82, 65, 2, 11, 73, 2, 141, 155, 27, 3, 83, 73, 77, 8, 68, 5, 65, 86, 82, 79, 83, 52, 4, 82, 65, 71, 71, - 251, 218, 16, 73, 5, 29, 5, 32, 65, 80, 79, 68, 2, 199, 232, 8, 69, 2, - 253, 243, 1, 2, 73, 83, 12, 34, 78, 149, 1, 3, 82, 77, 65, 8, 36, 5, 65, - 71, 77, 65, 32, 91, 69, 6, 154, 8, 65, 210, 171, 22, 78, 237, 245, 4, 10, - 77, 69, 84, 65, 32, 83, 84, 65, 86, 82, 2, 243, 222, 34, 86, 5, 11, 84, - 2, 243, 137, 17, 73, 40, 42, 69, 70, 72, 218, 1, 82, 227, 2, 73, 6, 136, - 12, 3, 84, 82, 65, 186, 174, 8, 76, 237, 178, 24, 2, 83, 83, 12, 26, 69, - 251, 217, 34, 73, 10, 64, 2, 77, 65, 217, 231, 33, 8, 83, 32, 75, 65, 73, + 251, 206, 16, 73, 5, 29, 5, 32, 65, 80, 79, 68, 2, 147, 224, 8, 69, 2, + 253, 239, 1, 2, 73, 83, 12, 34, 78, 149, 1, 3, 82, 77, 65, 8, 36, 5, 65, + 71, 77, 65, 32, 91, 69, 6, 154, 8, 65, 134, 155, 22, 78, 237, 245, 4, 10, + 77, 69, 84, 65, 32, 83, 84, 65, 86, 82, 2, 167, 206, 34, 86, 5, 11, 84, + 2, 243, 253, 16, 73, 40, 42, 69, 70, 72, 218, 1, 82, 227, 2, 73, 6, 136, + 12, 3, 84, 82, 65, 134, 166, 8, 76, 213, 170, 24, 2, 83, 83, 12, 26, 69, + 175, 201, 34, 73, 10, 64, 2, 77, 65, 141, 215, 33, 8, 83, 32, 75, 65, 73, 32, 65, 80, 9, 56, 2, 32, 65, 33, 8, 84, 73, 83, 77, 79, 83, 32, 69, 2, - 145, 253, 33, 3, 80, 76, 79, 4, 174, 222, 34, 83, 3, 88, 20, 38, 73, 73, - 5, 79, 77, 73, 75, 79, 6, 48, 2, 71, 79, 206, 248, 29, 80, 227, 131, 5, - 65, 2, 247, 193, 33, 82, 14, 42, 76, 32, 2, 78, 32, 62, 80, 95, 83, 2, - 11, 89, 2, 183, 218, 34, 71, 6, 26, 65, 195, 174, 22, 78, 4, 250, 2, 82, - 231, 213, 34, 76, 4, 46, 65, 193, 197, 33, 5, 83, 73, 70, 73, 83, 2, 193, - 217, 34, 6, 82, 65, 75, 65, 76, 69, 2, 11, 89, 2, 217, 211, 16, 2, 78, - 65, 10, 26, 82, 175, 216, 34, 84, 8, 21, 3, 69, 73, 65, 8, 26, 32, 113, - 2, 73, 32, 6, 38, 69, 242, 5, 68, 183, 166, 22, 78, 2, 11, 75, 2, 29, 5, - 70, 79, 78, 73, 84, 2, 249, 168, 34, 2, 73, 75, 2, 11, 65, 2, 11, 82, 2, - 237, 167, 34, 3, 67, 72, 65, 22, 28, 2, 70, 69, 231, 3, 80, 14, 34, 78, - 49, 4, 83, 73, 83, 32, 4, 11, 32, 4, 202, 231, 30, 75, 235, 230, 3, 65, + 197, 236, 33, 3, 80, 76, 79, 4, 226, 205, 34, 83, 3, 88, 20, 38, 73, 73, + 5, 79, 77, 73, 75, 79, 6, 48, 2, 71, 79, 130, 232, 29, 80, 227, 131, 5, + 65, 2, 171, 177, 33, 82, 14, 42, 76, 32, 2, 78, 32, 62, 80, 95, 83, 2, + 11, 89, 2, 235, 201, 34, 71, 6, 26, 65, 247, 157, 22, 78, 4, 250, 2, 82, + 155, 197, 34, 76, 4, 46, 65, 245, 180, 33, 5, 83, 73, 70, 73, 83, 2, 245, + 200, 34, 6, 82, 65, 75, 65, 76, 69, 2, 11, 89, 2, 217, 199, 16, 2, 78, + 65, 10, 26, 82, 227, 199, 34, 84, 8, 21, 3, 69, 73, 65, 8, 26, 32, 113, + 2, 73, 32, 6, 38, 69, 242, 5, 68, 235, 149, 22, 78, 2, 11, 75, 2, 29, 5, + 70, 79, 78, 73, 84, 2, 173, 152, 34, 2, 73, 75, 2, 11, 65, 2, 11, 82, 2, + 161, 151, 34, 3, 67, 72, 65, 22, 28, 2, 70, 69, 231, 3, 80, 14, 34, 78, + 49, 4, 83, 73, 83, 32, 4, 11, 32, 4, 254, 214, 30, 75, 235, 230, 3, 65, 10, 42, 65, 42, 68, 62, 77, 89, 2, 84, 82, 2, 133, 2, 6, 80, 76, 73, 32, 68, 89, 2, 233, 1, 11, 73, 71, 82, 65, 77, 77, 79, 83, 32, 69, 88, 2, 173, 1, 18, 79, 78, 79, 71, 82, 65, 77, 77, 79, 83, 32, 84, 69, 83, 83, 69, 82, 65, 4, 11, 73, 4, 60, 11, 71, 82, 65, 77, 77, 79, 83, 32, 79, 75, - 84, 59, 84, 2, 11, 79, 2, 153, 180, 2, 6, 32, 68, 79, 68, 69, 75, 2, 237, - 163, 34, 4, 73, 77, 79, 82, 8, 26, 79, 139, 240, 29, 83, 6, 56, 6, 75, - 82, 73, 83, 73, 83, 181, 252, 29, 2, 82, 82, 5, 17, 2, 32, 68, 2, 11, 73, - 2, 183, 239, 29, 80, 232, 82, 182, 1, 65, 250, 71, 69, 230, 1, 72, 222, - 32, 73, 208, 41, 3, 74, 75, 32, 138, 26, 76, 186, 18, 79, 238, 117, 82, - 234, 7, 85, 150, 128, 2, 89, 134, 180, 19, 71, 190, 235, 10, 83, 203, 18, + 84, 59, 84, 2, 11, 79, 2, 153, 176, 2, 6, 32, 68, 79, 68, 69, 75, 2, 161, + 147, 34, 4, 73, 77, 79, 82, 8, 26, 79, 191, 223, 29, 83, 6, 56, 6, 75, + 82, 73, 83, 73, 83, 233, 235, 29, 2, 82, 82, 5, 17, 2, 32, 68, 2, 11, 73, + 2, 235, 222, 29, 80, 252, 66, 182, 1, 65, 250, 71, 69, 230, 1, 72, 222, + 32, 73, 208, 41, 3, 74, 75, 32, 138, 22, 76, 186, 18, 79, 238, 117, 82, + 234, 7, 85, 150, 128, 2, 89, 186, 167, 19, 71, 190, 235, 10, 83, 203, 18, 67, 198, 13, 110, 68, 58, 76, 50, 77, 90, 78, 174, 51, 80, 62, 82, 198, - 7, 84, 138, 1, 85, 162, 185, 18, 67, 227, 208, 6, 83, 4, 34, 85, 205, - 164, 27, 2, 65, 32, 2, 147, 229, 7, 67, 4, 248, 219, 9, 3, 76, 32, 77, - 231, 218, 19, 69, 6, 36, 3, 69, 82, 65, 195, 158, 34, 80, 5, 237, 202, + 7, 84, 138, 1, 85, 162, 173, 18, 67, 151, 204, 6, 83, 4, 34, 85, 129, + 148, 27, 2, 65, 32, 2, 223, 220, 7, 67, 4, 196, 211, 9, 3, 76, 32, 77, + 207, 210, 19, 69, 6, 36, 3, 69, 82, 65, 247, 141, 34, 80, 5, 161, 186, 27, 7, 32, 87, 73, 84, 72, 32, 70, 193, 11, 148, 1, 16, 65, 68, 73, 65, 78, 32, 83, 89, 76, 76, 65, 66, 73, 67, 83, 32, 148, 49, 2, 67, 69, 94, - 68, 140, 249, 23, 3, 78, 69, 68, 171, 172, 10, 79, 172, 11, 226, 1, 65, + 68, 192, 232, 23, 3, 78, 69, 68, 171, 172, 10, 79, 172, 11, 226, 1, 65, 190, 1, 66, 162, 2, 67, 242, 8, 69, 50, 70, 198, 4, 72, 38, 73, 30, 75, 134, 1, 76, 82, 77, 174, 1, 78, 202, 4, 81, 178, 1, 79, 194, 1, 80, 70, - 82, 142, 1, 83, 194, 4, 84, 246, 3, 87, 254, 5, 89, 143, 225, 17, 71, 21, - 90, 65, 30, 73, 40, 10, 84, 72, 65, 80, 65, 83, 67, 65, 78, 32, 242, 234, - 34, 78, 3, 89, 7, 178, 235, 34, 73, 3, 89, 5, 169, 242, 23, 5, 86, 73, - 76, 73, 75, 4, 238, 234, 34, 77, 3, 83, 42, 156, 1, 9, 76, 65, 67, 75, - 70, 79, 79, 84, 32, 212, 171, 19, 9, 73, 66, 76, 69, 45, 67, 82, 69, 69, - 137, 208, 7, 10, 69, 65, 86, 69, 82, 32, 68, 69, 78, 69, 36, 82, 87, 162, - 242, 11, 75, 2, 78, 194, 246, 22, 65, 2, 69, 2, 73, 2, 79, 3, 83, 11, - 222, 232, 34, 65, 2, 69, 2, 73, 3, 79, 141, 3, 82, 65, 186, 42, 87, 222, - 181, 8, 72, 154, 190, 23, 79, 238, 60, 73, 199, 140, 2, 69, 241, 2, 48, - 6, 82, 82, 73, 69, 82, 32, 227, 218, 32, 65, 234, 2, 170, 1, 68, 122, 71, + 82, 142, 1, 83, 194, 4, 84, 246, 3, 87, 254, 5, 89, 143, 213, 17, 71, 21, + 90, 65, 30, 73, 40, 10, 84, 72, 65, 80, 65, 83, 67, 65, 78, 32, 166, 218, + 34, 78, 3, 89, 7, 230, 218, 34, 73, 3, 89, 5, 221, 225, 23, 5, 86, 73, + 76, 73, 75, 4, 162, 218, 34, 77, 3, 83, 42, 156, 1, 9, 76, 65, 67, 75, + 70, 79, 79, 84, 32, 212, 159, 19, 9, 73, 66, 76, 69, 45, 67, 82, 69, 69, + 189, 203, 7, 10, 69, 65, 86, 69, 82, 32, 68, 69, 78, 69, 36, 82, 87, 238, + 233, 11, 75, 2, 78, 170, 238, 22, 65, 2, 69, 2, 73, 2, 79, 3, 83, 11, + 146, 216, 34, 65, 2, 69, 2, 73, 3, 79, 141, 3, 82, 65, 186, 42, 87, 170, + 173, 8, 72, 130, 182, 23, 79, 238, 60, 73, 199, 140, 2, 69, 241, 2, 48, + 6, 82, 82, 73, 69, 82, 32, 151, 202, 32, 65, 234, 2, 170, 1, 68, 122, 71, 94, 72, 46, 73, 46, 74, 82, 75, 30, 78, 66, 83, 66, 80, 2, 90, 58, 84, - 38, 76, 132, 1, 2, 67, 72, 2, 77, 2, 82, 2, 87, 2, 89, 171, 201, 34, 69, - 32, 46, 69, 202, 5, 76, 2, 90, 255, 223, 34, 73, 6, 26, 78, 171, 229, 34, - 69, 4, 134, 154, 17, 69, 249, 211, 6, 2, 84, 65, 30, 254, 4, 72, 202, - 186, 21, 87, 198, 147, 9, 65, 210, 209, 3, 69, 162, 64, 73, 2, 79, 3, 85, - 19, 162, 4, 87, 170, 201, 34, 69, 215, 22, 73, 5, 197, 150, 14, 6, 78, - 73, 84, 73, 65, 76, 26, 202, 3, 74, 222, 159, 34, 69, 234, 61, 87, 186, - 2, 65, 2, 73, 2, 79, 3, 85, 26, 154, 1, 75, 227, 1, 72, 14, 186, 162, 34, - 69, 162, 64, 65, 2, 71, 2, 73, 2, 79, 3, 85, 26, 62, 72, 190, 161, 34, - 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 15, 186, 161, 34, 69, 162, 64, 65, + 38, 76, 132, 1, 2, 67, 72, 2, 77, 2, 82, 2, 87, 2, 89, 223, 184, 34, 69, + 32, 46, 69, 202, 5, 76, 2, 90, 179, 207, 34, 73, 6, 26, 78, 223, 212, 34, + 69, 4, 134, 142, 17, 69, 173, 207, 6, 2, 84, 65, 30, 254, 4, 72, 254, + 169, 21, 87, 198, 147, 9, 65, 210, 209, 3, 69, 162, 64, 73, 2, 79, 3, 85, + 19, 162, 4, 87, 222, 184, 34, 69, 215, 22, 73, 5, 197, 138, 14, 6, 78, + 73, 84, 73, 65, 76, 26, 202, 3, 74, 146, 143, 34, 69, 234, 61, 87, 186, + 2, 65, 2, 73, 2, 79, 3, 85, 26, 154, 1, 75, 227, 1, 72, 14, 238, 145, 34, + 69, 162, 64, 65, 2, 71, 2, 73, 2, 79, 3, 85, 26, 62, 72, 242, 144, 34, + 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 15, 238, 144, 34, 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 72, 34, 76, 70, 84, 66, 72, 3, 83, 24, 130, 1, 72, - 222, 159, 34, 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 24, 62, 83, 222, 159, - 34, 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 12, 218, 159, 34, 69, 162, 64, - 65, 2, 73, 2, 79, 3, 85, 7, 236, 29, 4, 65, 83, 84, 69, 215, 193, 34, 78, - 51, 74, 65, 22, 73, 142, 137, 32, 85, 250, 11, 79, 254, 83, 87, 183, 245, - 1, 69, 7, 131, 210, 32, 65, 33, 40, 4, 78, 65, 76, 32, 139, 222, 34, 73, - 28, 160, 1, 2, 68, 79, 134, 1, 82, 78, 83, 138, 148, 14, 71, 186, 2, 65, - 180, 182, 3, 6, 66, 79, 84, 84, 79, 77, 0, 3, 84, 79, 80, 150, 131, 13, - 80, 175, 247, 2, 77, 6, 44, 5, 85, 66, 76, 69, 32, 235, 184, 24, 87, 4, - 164, 205, 6, 12, 83, 72, 79, 82, 84, 32, 86, 69, 82, 84, 73, 67, 187, - 202, 7, 65, 6, 38, 73, 149, 141, 33, 3, 65, 73, 83, 4, 254, 204, 17, 71, - 231, 141, 17, 78, 4, 240, 171, 25, 4, 77, 65, 76, 76, 133, 135, 7, 4, 72, - 79, 82, 84, 4, 234, 201, 26, 89, 231, 144, 8, 75, 7, 170, 218, 34, 73, 3, - 78, 39, 66, 87, 234, 27, 65, 182, 244, 31, 79, 238, 60, 73, 199, 140, 2, - 69, 19, 210, 156, 12, 65, 202, 243, 19, 79, 238, 60, 73, 199, 140, 2, 69, - 49, 142, 7, 72, 154, 20, 65, 66, 87, 246, 243, 31, 79, 238, 60, 73, 199, - 140, 2, 69, 43, 70, 69, 38, 79, 238, 25, 65, 66, 87, 226, 176, 32, 73, - 199, 140, 2, 72, 7, 153, 234, 26, 4, 68, 73, 65, 76, 7, 11, 79, 5, 193, - 144, 33, 8, 83, 69, 45, 67, 82, 69, 69, 32, 149, 1, 164, 1, 8, 45, 67, + 146, 143, 34, 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 24, 62, 83, 146, 143, + 34, 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 12, 142, 143, 34, 69, 162, 64, + 65, 2, 73, 2, 79, 3, 85, 7, 236, 29, 4, 65, 83, 84, 69, 139, 177, 34, 78, + 51, 74, 65, 22, 73, 194, 248, 31, 85, 250, 11, 79, 254, 83, 87, 183, 245, + 1, 69, 7, 183, 193, 32, 65, 33, 40, 4, 78, 65, 76, 32, 191, 205, 34, 73, + 28, 160, 1, 2, 68, 79, 134, 1, 82, 78, 83, 138, 136, 14, 71, 186, 2, 65, + 180, 182, 3, 6, 66, 79, 84, 84, 79, 77, 0, 3, 84, 79, 80, 202, 254, 12, + 80, 175, 247, 2, 77, 6, 44, 5, 85, 66, 76, 69, 32, 159, 168, 24, 87, 4, + 240, 196, 6, 12, 83, 72, 79, 82, 84, 32, 86, 69, 82, 84, 73, 67, 239, + 198, 7, 65, 6, 38, 73, 201, 252, 32, 3, 65, 73, 83, 4, 254, 192, 17, 71, + 155, 137, 17, 78, 4, 164, 155, 25, 4, 77, 65, 76, 76, 133, 135, 7, 4, 72, + 79, 82, 84, 4, 158, 185, 26, 89, 231, 144, 8, 75, 7, 222, 201, 34, 73, 3, + 78, 39, 66, 87, 234, 27, 65, 234, 227, 31, 79, 238, 60, 73, 199, 140, 2, + 69, 19, 210, 144, 12, 65, 254, 238, 19, 79, 238, 60, 73, 199, 140, 2, 69, + 49, 142, 7, 72, 154, 20, 65, 66, 87, 170, 227, 31, 79, 238, 60, 73, 199, + 140, 2, 69, 43, 70, 69, 38, 79, 238, 25, 65, 66, 87, 150, 160, 32, 73, + 199, 140, 2, 72, 7, 205, 217, 26, 4, 68, 73, 65, 76, 7, 11, 79, 5, 245, + 255, 32, 8, 83, 69, 45, 67, 82, 69, 69, 32, 149, 1, 164, 1, 8, 45, 67, 82, 69, 69, 32, 84, 72, 38, 65, 250, 2, 71, 76, 2, 78, 71, 48, 4, 85, 78, - 65, 86, 142, 20, 79, 30, 87, 226, 176, 32, 73, 198, 140, 2, 69, 3, 72, 6, - 158, 201, 32, 73, 199, 140, 2, 69, 63, 104, 6, 83, 75, 65, 80, 73, 32, - 188, 1, 7, 84, 84, 73, 76, 73, 75, 32, 214, 198, 32, 65, 199, 140, 2, 89, + 65, 86, 142, 20, 79, 30, 87, 150, 160, 32, 73, 198, 140, 2, 69, 3, 72, 6, + 210, 184, 32, 73, 199, 140, 2, 69, 63, 104, 6, 83, 75, 65, 80, 73, 32, + 188, 1, 7, 84, 84, 73, 76, 73, 75, 32, 138, 182, 32, 65, 199, 140, 2, 89, 30, 70, 83, 86, 87, 210, 17, 67, 2, 75, 2, 77, 2, 78, 2, 84, 3, 89, 14, - 174, 218, 29, 67, 2, 80, 2, 84, 236, 103, 2, 75, 87, 190, 156, 2, 87, - 151, 119, 45, 4, 194, 180, 34, 79, 191, 28, 65, 24, 30, 72, 1, 3, 83, 72, - 82, 12, 134, 193, 30, 65, 194, 200, 1, 79, 239, 60, 73, 19, 38, 65, 242, - 136, 32, 79, 239, 60, 73, 9, 218, 197, 32, 65, 199, 140, 2, 73, 15, 138, - 192, 30, 65, 194, 200, 1, 79, 239, 60, 73, 18, 224, 9, 3, 73, 75, 32, - 185, 207, 23, 2, 85, 84, 33, 68, 7, 74, 73, 66, 87, 65, 89, 32, 210, 208, - 34, 78, 2, 79, 3, 89, 24, 74, 78, 166, 191, 30, 83, 226, 144, 4, 67, 2, - 75, 2, 77, 2, 80, 3, 84, 11, 11, 87, 8, 198, 134, 32, 79, 239, 60, 73, - 39, 206, 4, 87, 166, 13, 65, 38, 79, 254, 176, 32, 73, 199, 140, 2, 69, - 39, 104, 7, 45, 67, 82, 69, 69, 32, 82, 146, 14, 87, 182, 2, 65, 182, - 244, 31, 79, 238, 60, 73, 199, 140, 2, 69, 4, 210, 183, 34, 87, 215, 22, - 69, 125, 94, 65, 218, 1, 72, 138, 1, 79, 238, 2, 87, 158, 209, 11, 80, - 254, 233, 20, 73, 199, 140, 2, 69, 43, 26, 89, 203, 192, 32, 65, 37, 25, - 4, 73, 83, 73, 32, 34, 70, 72, 54, 74, 218, 4, 83, 198, 179, 34, 89, 202, - 18, 84, 147, 1, 77, 10, 246, 130, 32, 79, 178, 201, 2, 65, 2, 69, 3, 73, - 6, 246, 244, 30, 85, 255, 214, 3, 73, 37, 70, 87, 202, 13, 79, 202, 128, - 12, 65, 182, 176, 20, 73, 199, 140, 2, 69, 16, 198, 13, 79, 210, 171, 30, + 226, 201, 29, 67, 2, 80, 2, 84, 236, 103, 2, 75, 87, 190, 156, 2, 87, + 151, 119, 45, 4, 246, 163, 34, 79, 191, 28, 65, 24, 30, 72, 1, 3, 83, 72, + 82, 12, 186, 176, 30, 65, 194, 200, 1, 79, 239, 60, 73, 19, 38, 65, 166, + 248, 31, 79, 239, 60, 73, 9, 142, 181, 32, 65, 199, 140, 2, 73, 15, 190, + 175, 30, 65, 194, 200, 1, 79, 239, 60, 73, 18, 224, 9, 3, 73, 75, 32, + 237, 190, 23, 2, 85, 84, 33, 68, 7, 74, 73, 66, 87, 65, 89, 32, 134, 192, + 34, 78, 2, 79, 3, 89, 24, 74, 78, 218, 174, 30, 83, 226, 144, 4, 67, 2, + 75, 2, 77, 2, 80, 3, 84, 11, 11, 87, 8, 250, 245, 31, 79, 239, 60, 73, + 39, 206, 4, 87, 166, 13, 65, 38, 79, 178, 160, 32, 73, 199, 140, 2, 69, + 39, 104, 7, 45, 67, 82, 69, 69, 32, 82, 146, 14, 87, 182, 2, 65, 234, + 227, 31, 79, 238, 60, 73, 199, 140, 2, 69, 4, 134, 167, 34, 87, 215, 22, + 69, 125, 94, 65, 218, 1, 72, 138, 1, 79, 238, 2, 87, 234, 200, 11, 80, + 230, 225, 20, 73, 199, 140, 2, 69, 43, 26, 89, 255, 175, 32, 65, 37, 25, + 4, 73, 83, 73, 32, 34, 70, 72, 54, 74, 218, 4, 83, 250, 162, 34, 89, 202, + 18, 84, 147, 1, 77, 10, 170, 242, 31, 79, 178, 201, 2, 65, 2, 69, 3, 73, + 6, 170, 228, 30, 85, 255, 214, 3, 73, 37, 70, 87, 202, 13, 79, 202, 244, + 11, 65, 234, 171, 20, 73, 199, 140, 2, 69, 16, 198, 13, 79, 134, 155, 30, 65, 174, 133, 2, 73, 199, 140, 2, 69, 15, 80, 12, 85, 84, 72, 45, 83, 76, - 65, 86, 69, 89, 32, 75, 246, 201, 34, 79, 3, 89, 8, 226, 200, 34, 65, 2, + 65, 86, 69, 89, 32, 75, 170, 185, 34, 79, 3, 89, 8, 150, 184, 34, 65, 2, 69, 2, 73, 3, 79, 117, 110, 72, 190, 1, 76, 78, 84, 238, 8, 65, 66, 87, - 230, 198, 11, 89, 146, 173, 20, 79, 238, 60, 73, 199, 140, 2, 69, 39, - 108, 7, 45, 67, 82, 69, 69, 32, 84, 226, 4, 87, 154, 177, 30, 65, 194, - 200, 1, 79, 238, 60, 73, 199, 140, 2, 69, 16, 11, 72, 17, 234, 181, 30, - 65, 194, 200, 1, 79, 238, 60, 73, 199, 140, 2, 69, 12, 11, 72, 12, 222, - 253, 31, 79, 222, 178, 2, 87, 214, 22, 65, 2, 69, 3, 73, 24, 50, 72, 158, - 198, 34, 65, 2, 69, 2, 73, 3, 79, 17, 170, 180, 30, 65, 194, 200, 1, 79, + 178, 190, 11, 89, 250, 164, 20, 79, 238, 60, 73, 199, 140, 2, 69, 39, + 108, 7, 45, 67, 82, 69, 69, 32, 84, 226, 4, 87, 206, 160, 30, 65, 194, + 200, 1, 79, 238, 60, 73, 199, 140, 2, 69, 16, 11, 72, 17, 158, 165, 30, + 65, 194, 200, 1, 79, 238, 60, 73, 199, 140, 2, 69, 12, 11, 72, 12, 146, + 237, 31, 79, 222, 178, 2, 87, 214, 22, 65, 2, 69, 3, 73, 24, 50, 72, 210, + 181, 34, 65, 2, 69, 2, 73, 3, 79, 17, 222, 163, 30, 65, 194, 200, 1, 79, 222, 178, 2, 87, 214, 22, 69, 3, 73, 224, 1, 54, 69, 218, 3, 79, 202, - 132, 12, 65, 183, 176, 20, 73, 185, 1, 17, 2, 83, 84, 182, 1, 44, 6, 45, + 248, 11, 65, 235, 171, 20, 73, 185, 1, 17, 2, 83, 84, 182, 1, 44, 6, 45, 67, 82, 69, 69, 32, 251, 2, 69, 180, 1, 110, 76, 66, 77, 2, 80, 2, 89, 16, 2, 78, 87, 38, 82, 62, 83, 26, 67, 2, 75, 18, 84, 26, 70, 199, 4, 87, - 27, 178, 6, 87, 182, 171, 30, 65, 194, 200, 1, 79, 179, 201, 2, 69, 17, - 243, 5, 87, 6, 150, 177, 30, 65, 243, 145, 4, 69, 13, 174, 205, 32, 87, + 27, 178, 6, 87, 234, 154, 30, 65, 194, 200, 1, 79, 179, 201, 2, 69, 17, + 243, 5, 87, 6, 202, 160, 30, 65, 243, 145, 4, 69, 13, 226, 188, 32, 87, 182, 245, 1, 65, 2, 69, 2, 73, 3, 79, 28, 22, 72, 239, 4, 87, 14, 235, 4, - 87, 16, 22, 72, 199, 4, 87, 2, 179, 204, 32, 87, 2, 171, 204, 23, 82, 31, + 87, 16, 22, 72, 199, 4, 87, 2, 231, 187, 32, 87, 2, 223, 187, 23, 82, 31, 11, 79, 29, 41, 8, 68, 83, 45, 67, 82, 69, 69, 32, 26, 56, 2, 84, 72, - 213, 187, 32, 6, 70, 73, 78, 65, 76, 32, 25, 50, 87, 154, 192, 34, 65, 2, - 69, 2, 73, 3, 79, 14, 166, 174, 30, 65, 194, 200, 1, 79, 238, 60, 73, + 137, 171, 32, 6, 70, 73, 78, 65, 76, 32, 25, 50, 87, 206, 175, 34, 65, 2, + 69, 2, 73, 3, 79, 14, 218, 157, 30, 65, 194, 200, 1, 79, 238, 60, 73, 243, 245, 1, 69, 61, 92, 6, 45, 67, 82, 69, 69, 32, 150, 1, 65, 38, 79, - 30, 87, 226, 176, 32, 73, 199, 140, 2, 69, 24, 110, 80, 146, 243, 31, 67, + 30, 87, 150, 160, 32, 73, 199, 140, 2, 69, 24, 110, 80, 198, 226, 31, 67, 2, 75, 2, 76, 2, 77, 2, 78, 2, 83, 2, 84, 2, 89, 134, 172, 2, 79, 247, - 30, 87, 4, 210, 200, 32, 87, 195, 214, 1, 79, 9, 158, 177, 32, 65, 199, - 140, 2, 89, 7, 190, 189, 34, 79, 3, 89, 14, 178, 171, 30, 65, 194, 200, - 1, 79, 238, 60, 73, 199, 140, 2, 69, 10, 26, 76, 203, 188, 34, 82, 9, 26, - 32, 231, 193, 9, 76, 4, 218, 171, 22, 67, 231, 164, 10, 84, 4, 178, 165, - 34, 76, 215, 22, 89, 4, 180, 191, 15, 3, 73, 84, 85, 161, 134, 8, 3, 82, + 30, 87, 4, 134, 184, 32, 87, 195, 214, 1, 79, 9, 210, 160, 32, 65, 199, + 140, 2, 89, 7, 242, 172, 34, 79, 3, 89, 14, 230, 154, 30, 65, 194, 200, + 1, 79, 238, 60, 73, 199, 140, 2, 69, 10, 26, 76, 255, 171, 34, 82, 9, 26, + 32, 179, 185, 9, 76, 4, 142, 155, 22, 67, 231, 164, 10, 84, 4, 230, 148, + 34, 76, 215, 22, 89, 4, 180, 179, 15, 3, 73, 84, 85, 213, 129, 8, 3, 82, 73, 67, 124, 140, 1, 2, 68, 32, 102, 69, 72, 11, 73, 65, 78, 32, 76, 69, - 84, 84, 69, 82, 32, 210, 3, 79, 62, 80, 90, 82, 217, 237, 27, 4, 32, 83, - 76, 73, 6, 52, 5, 73, 78, 68, 69, 88, 233, 170, 33, 2, 70, 73, 5, 229, - 168, 33, 6, 32, 68, 73, 86, 73, 68, 6, 26, 84, 151, 211, 21, 32, 5, 193, - 169, 10, 6, 32, 73, 78, 83, 69, 82, 98, 196, 1, 2, 67, 45, 38, 76, 22, - 77, 50, 78, 38, 83, 46, 84, 22, 85, 166, 219, 3, 65, 2, 68, 2, 69, 2, 71, - 2, 75, 2, 80, 158, 132, 27, 82, 218, 201, 1, 73, 198, 140, 2, 66, 2, 79, - 2, 81, 3, 88, 4, 246, 139, 27, 49, 155, 177, 3, 51, 7, 203, 220, 3, 68, - 11, 11, 66, 9, 226, 182, 34, 50, 2, 51, 3, 52, 9, 190, 182, 34, 68, 2, - 71, 3, 78, 13, 226, 219, 3, 72, 2, 84, 187, 218, 30, 83, 7, 183, 219, 3, - 84, 13, 11, 85, 11, 11, 85, 9, 194, 181, 34, 50, 2, 51, 3, 85, 4, 224, - 169, 33, 6, 85, 83, 69, 76, 32, 72, 191, 139, 1, 78, 4, 172, 215, 27, 6, + 84, 84, 69, 82, 32, 210, 3, 79, 62, 80, 90, 82, 141, 221, 27, 4, 32, 83, + 76, 73, 6, 52, 5, 73, 78, 68, 69, 88, 157, 154, 33, 2, 70, 73, 5, 153, + 152, 33, 6, 32, 68, 73, 86, 73, 68, 6, 26, 84, 203, 194, 21, 32, 5, 141, + 161, 10, 6, 32, 73, 78, 83, 69, 82, 98, 196, 1, 2, 67, 45, 38, 76, 22, + 77, 50, 78, 38, 83, 46, 84, 22, 85, 166, 215, 3, 65, 2, 68, 2, 69, 2, 71, + 2, 75, 2, 80, 210, 247, 26, 82, 218, 201, 1, 73, 198, 140, 2, 66, 2, 79, + 2, 81, 3, 88, 4, 170, 251, 26, 49, 155, 177, 3, 51, 7, 203, 216, 3, 68, + 11, 11, 66, 9, 150, 166, 34, 50, 2, 51, 3, 52, 9, 242, 165, 34, 68, 2, + 71, 3, 78, 13, 226, 215, 3, 72, 2, 84, 239, 205, 30, 83, 7, 183, 215, 3, + 84, 13, 11, 85, 11, 11, 85, 9, 246, 164, 34, 50, 2, 51, 3, 85, 4, 148, + 153, 33, 6, 85, 83, 69, 76, 32, 72, 191, 139, 1, 78, 4, 224, 198, 27, 6, 32, 83, 84, 82, 69, 65, 137, 223, 5, 7, 69, 78, 84, 82, 89, 32, 83, 4, - 218, 225, 27, 73, 135, 182, 6, 79, 9, 29, 5, 32, 70, 65, 67, 69, 7, 33, - 6, 32, 87, 73, 84, 72, 32, 4, 148, 242, 6, 2, 84, 69, 197, 152, 25, 6, + 142, 209, 27, 73, 135, 182, 6, 79, 9, 29, 5, 32, 70, 65, 67, 69, 7, 33, + 6, 32, 87, 73, 84, 72, 32, 4, 224, 233, 6, 2, 84, 69, 173, 144, 25, 6, 87, 82, 89, 32, 83, 77, 108, 88, 16, 67, 65, 83, 73, 65, 78, 32, 65, 76, - 66, 65, 78, 73, 65, 78, 32, 243, 172, 30, 84, 106, 60, 7, 76, 69, 84, 84, - 69, 82, 32, 161, 147, 28, 2, 67, 73, 104, 170, 2, 65, 34, 67, 146, 1, 68, + 66, 65, 78, 73, 65, 78, 32, 167, 156, 30, 84, 106, 60, 7, 76, 69, 84, 84, + 69, 82, 32, 213, 130, 28, 2, 67, 73, 104, 170, 2, 65, 34, 67, 146, 1, 68, 78, 69, 34, 71, 46, 73, 46, 74, 34, 75, 34, 76, 34, 80, 34, 83, 74, 84, - 62, 89, 46, 90, 148, 133, 17, 2, 81, 65, 190, 193, 6, 77, 252, 132, 9, 3, + 62, 89, 46, 90, 148, 249, 16, 2, 81, 65, 242, 188, 6, 77, 252, 132, 9, 3, 86, 69, 89, 154, 33, 70, 128, 19, 3, 78, 79, 87, 226, 32, 82, 186, 11, - 88, 154, 46, 79, 202, 26, 66, 237, 24, 3, 72, 69, 89, 4, 186, 246, 33, - 79, 179, 28, 76, 16, 34, 65, 34, 72, 49, 2, 89, 65, 4, 242, 222, 33, 89, - 227, 79, 82, 8, 218, 197, 28, 65, 146, 215, 5, 79, 203, 17, 73, 4, 130, - 174, 34, 87, 3, 89, 8, 42, 90, 162, 225, 32, 89, 243, 175, 1, 65, 4, 154, - 159, 33, 89, 219, 124, 65, 4, 186, 221, 33, 89, 227, 79, 66, 4, 212, 254, - 32, 2, 72, 69, 207, 157, 1, 73, 6, 214, 238, 32, 82, 154, 110, 87, 135, - 77, 78, 4, 214, 157, 33, 72, 227, 16, 65, 4, 226, 173, 33, 73, 199, 69, - 65, 4, 130, 220, 33, 65, 171, 51, 89, 4, 142, 1, 73, 215, 218, 33, 69, 8, - 34, 72, 233, 167, 34, 2, 69, 89, 6, 234, 171, 20, 65, 207, 237, 13, 79, - 6, 38, 73, 150, 156, 33, 89, 199, 80, 65, 2, 215, 241, 33, 87, 4, 252, - 227, 33, 2, 65, 89, 1, 2, 79, 87, 6, 242, 166, 16, 72, 131, 186, 4, 65, - 16, 72, 2, 68, 73, 32, 2, 78, 84, 204, 193, 32, 3, 76, 84, 73, 151, 81, - 82, 4, 142, 162, 33, 32, 223, 100, 76, 8, 32, 2, 82, 69, 207, 161, 33, - 32, 6, 44, 5, 76, 73, 78, 69, 32, 167, 232, 4, 32, 4, 246, 234, 21, 76, + 88, 154, 46, 79, 202, 26, 66, 237, 24, 3, 72, 69, 89, 4, 238, 229, 33, + 79, 179, 28, 76, 16, 34, 65, 34, 72, 49, 2, 89, 65, 4, 166, 206, 33, 89, + 227, 79, 82, 8, 142, 181, 28, 65, 146, 215, 5, 79, 203, 17, 73, 4, 182, + 157, 34, 87, 3, 89, 8, 42, 90, 214, 208, 32, 89, 243, 175, 1, 65, 4, 206, + 142, 33, 89, 219, 124, 65, 4, 238, 204, 33, 89, 227, 79, 66, 4, 136, 238, + 32, 2, 72, 69, 207, 157, 1, 73, 6, 138, 222, 32, 82, 154, 110, 87, 135, + 77, 78, 4, 138, 141, 33, 72, 227, 16, 65, 4, 150, 157, 33, 73, 199, 69, + 65, 4, 182, 203, 33, 65, 171, 51, 89, 4, 142, 1, 73, 139, 202, 33, 69, 8, + 34, 72, 157, 151, 34, 2, 69, 89, 6, 158, 155, 20, 65, 207, 237, 13, 79, + 6, 38, 73, 202, 139, 33, 89, 199, 80, 65, 2, 139, 225, 33, 87, 4, 176, + 211, 33, 2, 65, 89, 1, 2, 79, 87, 6, 242, 154, 16, 72, 183, 181, 4, 65, + 16, 72, 2, 68, 73, 32, 2, 78, 84, 128, 177, 32, 3, 76, 84, 73, 151, 81, + 82, 4, 194, 145, 33, 32, 223, 100, 76, 8, 32, 2, 82, 69, 131, 145, 33, + 32, 6, 44, 5, 76, 73, 78, 69, 32, 167, 228, 4, 32, 4, 170, 218, 21, 76, 207, 210, 10, 79, 130, 6, 102, 65, 170, 17, 69, 162, 8, 73, 190, 2, 79, - 188, 205, 13, 6, 82, 73, 83, 84, 77, 65, 155, 137, 10, 85, 198, 2, 66, - 73, 32, 4, 75, 77, 65, 32, 148, 6, 2, 77, 32, 131, 8, 82, 4, 218, 232, + 188, 193, 13, 6, 82, 73, 83, 84, 77, 65, 207, 132, 10, 85, 198, 2, 66, + 73, 32, 4, 75, 77, 65, 32, 148, 6, 2, 77, 32, 131, 8, 82, 4, 142, 216, 33, 78, 223, 61, 82, 142, 1, 156, 1, 7, 76, 69, 84, 84, 69, 82, 32, 142, - 3, 83, 98, 86, 142, 224, 23, 68, 154, 236, 7, 81, 176, 95, 5, 77, 65, 65, + 3, 83, 98, 86, 194, 207, 23, 68, 154, 236, 7, 81, 176, 95, 5, 77, 65, 65, 89, 89, 240, 179, 1, 2, 65, 85, 3, 79, 76, 202, 1, 68, 54, 78, 54, 84, - 54, 89, 178, 153, 29, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 76, 2, 80, 170, + 54, 89, 230, 136, 29, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 76, 2, 80, 170, 147, 3, 72, 2, 77, 2, 82, 2, 83, 2, 86, 2, 87, 254, 242, 1, 65, 186, 2, - 69, 2, 73, 3, 85, 8, 202, 154, 29, 68, 170, 147, 3, 72, 255, 242, 1, 65, - 8, 190, 173, 32, 71, 2, 78, 2, 89, 255, 242, 1, 65, 8, 226, 153, 29, 84, - 170, 147, 3, 72, 255, 242, 1, 65, 4, 214, 172, 32, 89, 255, 242, 1, 65, - 8, 40, 4, 73, 71, 78, 32, 195, 142, 22, 69, 6, 218, 131, 30, 67, 246, + 69, 2, 73, 3, 85, 8, 254, 137, 29, 68, 170, 147, 3, 72, 255, 242, 1, 65, + 8, 242, 156, 32, 71, 2, 78, 2, 89, 255, 242, 1, 65, 8, 150, 137, 29, 84, + 170, 147, 3, 72, 255, 242, 1, 65, 4, 138, 156, 32, 89, 255, 242, 1, 65, + 8, 40, 4, 73, 71, 78, 32, 247, 253, 21, 69, 6, 142, 243, 29, 67, 246, 227, 1, 86, 247, 244, 1, 65, 26, 64, 10, 79, 87, 69, 76, 32, 83, 73, 71, - 78, 32, 171, 228, 31, 73, 24, 206, 194, 30, 65, 250, 6, 85, 186, 202, 1, + 78, 32, 223, 211, 31, 73, 24, 130, 178, 30, 65, 250, 6, 85, 186, 202, 1, 69, 2, 73, 3, 79, 166, 1, 236, 1, 15, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 112, 7, 76, 69, 84, 84, 69, 82, 32, 152, 4, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 60, 11, 86, 79, 87, 69, - 76, 32, 83, 73, 71, 78, 32, 199, 164, 32, 68, 14, 72, 6, 70, 73, 78, 65, - 76, 32, 142, 155, 34, 76, 2, 82, 2, 87, 3, 89, 6, 238, 156, 34, 78, 86, + 76, 32, 83, 73, 71, 78, 32, 251, 147, 32, 68, 14, 72, 6, 70, 73, 78, 65, + 76, 32, 194, 138, 34, 76, 2, 82, 2, 87, 3, 89, 6, 162, 140, 34, 78, 86, 72, 3, 77, 104, 132, 2, 6, 70, 73, 78, 65, 76, 32, 110, 78, 50, 77, 78, - 80, 174, 229, 11, 66, 226, 141, 6, 68, 158, 145, 12, 83, 198, 136, 2, 65, + 80, 174, 217, 11, 66, 226, 141, 6, 68, 210, 140, 12, 83, 198, 136, 2, 65, 132, 197, 1, 2, 67, 72, 2, 71, 2, 74, 2, 75, 2, 84, 138, 69, 72, 2, 76, - 2, 82, 2, 86, 2, 89, 186, 2, 69, 2, 73, 2, 79, 3, 85, 22, 150, 157, 32, + 2, 82, 2, 86, 2, 89, 186, 2, 69, 2, 73, 2, 79, 3, 85, 22, 202, 140, 32, 78, 166, 192, 1, 83, 206, 60, 67, 146, 1, 71, 2, 75, 2, 76, 2, 80, 2, 82, - 2, 84, 3, 89, 14, 46, 71, 34, 72, 138, 131, 34, 85, 215, 22, 65, 4, 166, - 131, 34, 85, 215, 22, 65, 6, 134, 131, 34, 85, 158, 20, 74, 187, 2, 65, - 6, 246, 150, 34, 72, 2, 80, 187, 2, 65, 8, 182, 170, 11, 83, 134, 142, - 19, 68, 45, 4, 84, 82, 73, 80, 20, 170, 193, 30, 65, 222, 202, 1, 73, + 2, 84, 3, 89, 14, 46, 71, 34, 72, 190, 242, 33, 85, 215, 22, 65, 4, 218, + 242, 33, 85, 215, 22, 65, 6, 186, 242, 33, 85, 158, 20, 74, 187, 2, 65, + 6, 170, 134, 34, 72, 2, 80, 187, 2, 65, 8, 130, 162, 11, 83, 238, 133, + 19, 68, 45, 4, 84, 82, 73, 80, 20, 222, 176, 30, 65, 222, 202, 1, 73, 166, 204, 1, 79, 2, 85, 203, 44, 69, 14, 72, 7, 65, 67, 84, 69, 82, 32, - 84, 49, 7, 84, 32, 87, 73, 84, 72, 32, 8, 244, 255, 9, 3, 65, 66, 85, - 239, 128, 24, 73, 6, 128, 1, 13, 85, 80, 87, 65, 82, 68, 83, 32, 84, 82, - 69, 78, 68, 161, 186, 25, 12, 68, 79, 87, 78, 87, 65, 82, 68, 83, 32, 84, - 82, 5, 153, 250, 6, 6, 32, 65, 78, 68, 32, 89, 236, 2, 80, 2, 67, 75, 82, - 69, 90, 82, 176, 253, 4, 2, 83, 84, 133, 166, 15, 2, 81, 85, 6, 56, 8, - 69, 82, 32, 66, 79, 65, 82, 68, 143, 211, 33, 32, 5, 227, 152, 31, 32, 4, - 224, 202, 27, 4, 83, 69, 32, 87, 221, 156, 5, 9, 82, 73, 78, 71, 32, 77, + 84, 49, 7, 84, 32, 87, 73, 84, 72, 32, 8, 192, 247, 9, 3, 65, 66, 85, + 215, 248, 23, 73, 6, 128, 1, 13, 85, 80, 87, 65, 82, 68, 83, 32, 84, 82, + 69, 78, 68, 213, 169, 25, 12, 68, 79, 87, 78, 87, 65, 82, 68, 83, 32, 84, + 82, 5, 229, 241, 6, 6, 32, 65, 78, 68, 32, 89, 236, 2, 80, 2, 67, 75, 82, + 69, 90, 82, 176, 249, 4, 2, 83, 84, 185, 153, 15, 2, 81, 85, 6, 56, 8, + 69, 82, 32, 66, 79, 65, 82, 68, 195, 194, 33, 32, 5, 151, 136, 31, 32, 4, + 148, 186, 27, 4, 83, 69, 32, 87, 221, 156, 5, 9, 82, 73, 78, 71, 32, 77, 69, 71, 65, 222, 2, 40, 5, 79, 75, 69, 69, 32, 143, 5, 82, 216, 2, 46, 76, 1, 7, 83, 77, 65, 76, 76, 32, 76, 172, 1, 33, 6, 69, 84, 84, 69, 82, 32, 172, 1, 170, 1, 68, 74, 72, 74, 78, 70, 83, 62, 84, 54, 71, 2, 76, 2, - 77, 0, 2, 81, 85, 2, 87, 2, 89, 162, 140, 34, 75, 186, 2, 65, 2, 69, 2, - 73, 2, 79, 2, 85, 3, 86, 14, 226, 142, 34, 76, 186, 2, 65, 2, 69, 2, 73, - 2, 79, 2, 85, 3, 86, 14, 154, 142, 34, 78, 186, 2, 65, 2, 69, 2, 73, 2, - 79, 2, 85, 3, 86, 14, 170, 255, 29, 65, 226, 144, 4, 69, 2, 73, 2, 79, 2, - 85, 3, 86, 15, 198, 143, 34, 65, 2, 69, 2, 73, 2, 79, 2, 85, 3, 86, 30, - 50, 76, 2, 83, 218, 142, 34, 65, 2, 69, 3, 73, 12, 214, 142, 34, 65, 2, - 69, 2, 73, 2, 79, 2, 85, 3, 86, 6, 32, 2, 89, 32, 247, 247, 32, 73, 4, - 40, 4, 66, 76, 79, 83, 163, 248, 32, 83, 2, 231, 252, 33, 83, 16, 152, 1, - 2, 76, 68, 48, 11, 78, 69, 83, 69, 32, 83, 77, 65, 76, 76, 32, 206, 247, - 7, 32, 184, 247, 2, 2, 80, 77, 228, 198, 21, 2, 67, 75, 155, 134, 1, 82, - 5, 173, 247, 28, 7, 82, 69, 78, 32, 67, 82, 79, 4, 248, 224, 19, 10, 83, + 77, 0, 2, 81, 85, 2, 87, 2, 89, 214, 251, 33, 75, 186, 2, 65, 2, 69, 2, + 73, 2, 79, 2, 85, 3, 86, 14, 150, 254, 33, 76, 186, 2, 65, 2, 69, 2, 73, + 2, 79, 2, 85, 3, 86, 14, 206, 253, 33, 78, 186, 2, 65, 2, 69, 2, 73, 2, + 79, 2, 85, 3, 86, 14, 222, 238, 29, 65, 226, 144, 4, 69, 2, 73, 2, 79, 2, + 85, 3, 86, 15, 250, 254, 33, 65, 2, 69, 2, 73, 2, 79, 2, 85, 3, 86, 30, + 50, 76, 2, 83, 142, 254, 33, 65, 2, 69, 3, 73, 12, 138, 254, 33, 65, 2, + 69, 2, 73, 2, 79, 2, 85, 3, 86, 6, 32, 2, 89, 32, 171, 231, 32, 73, 4, + 40, 4, 66, 76, 79, 83, 215, 231, 32, 83, 2, 155, 236, 33, 83, 16, 152, 1, + 2, 76, 68, 48, 11, 78, 69, 83, 69, 32, 83, 77, 65, 76, 76, 32, 154, 239, + 7, 32, 184, 247, 2, 2, 80, 77, 204, 190, 21, 2, 67, 75, 155, 134, 1, 82, + 5, 225, 230, 28, 7, 82, 69, 78, 32, 67, 82, 79, 4, 172, 208, 19, 10, 83, 73, 77, 80, 76, 73, 70, 73, 69, 68, 1, 11, 84, 82, 65, 68, 73, 84, 73, - 79, 78, 65, 76, 60, 92, 8, 82, 65, 83, 77, 73, 65, 78, 32, 254, 130, 5, - 80, 197, 141, 12, 5, 67, 79, 76, 65, 84, 56, 52, 7, 76, 69, 84, 84, 69, - 82, 32, 199, 214, 21, 78, 42, 224, 1, 6, 67, 85, 82, 76, 69, 68, 30, 83, - 158, 211, 21, 68, 34, 76, 134, 206, 1, 82, 142, 220, 2, 65, 50, 71, 90, + 79, 78, 65, 76, 60, 92, 8, 82, 65, 83, 77, 73, 65, 78, 32, 254, 254, 4, + 80, 197, 133, 12, 5, 67, 79, 76, 65, 84, 56, 52, 7, 76, 69, 84, 84, 69, + 82, 32, 251, 197, 21, 78, 42, 224, 1, 6, 67, 85, 82, 76, 69, 68, 30, 83, + 210, 194, 21, 68, 34, 76, 134, 206, 1, 82, 142, 220, 2, 65, 50, 71, 90, 90, 98, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, - 134, 2, 84, 2, 87, 218, 103, 80, 171, 4, 77, 2, 209, 137, 33, 2, 32, 87, - 6, 132, 211, 21, 6, 77, 65, 76, 76, 32, 65, 232, 243, 5, 2, 65, 77, 163, + 134, 2, 84, 2, 87, 218, 103, 80, 171, 4, 77, 2, 133, 249, 32, 2, 32, 87, + 6, 184, 194, 21, 6, 77, 65, 76, 76, 32, 65, 232, 243, 5, 2, 65, 77, 163, 193, 5, 72, 232, 4, 66, 78, 20, 2, 82, 67, 201, 40, 7, 84, 89, 83, 67, - 65, 80, 69, 2, 183, 229, 33, 69, 226, 4, 28, 2, 76, 69, 207, 39, 85, 220, + 65, 80, 69, 2, 235, 212, 33, 69, 226, 4, 28, 2, 76, 69, 207, 39, 85, 220, 4, 30, 32, 185, 6, 2, 68, 32, 24, 244, 1, 5, 87, 73, 84, 72, 32, 161, - 205, 18, 49, 68, 73, 86, 73, 68, 69, 68, 32, 66, 89, 32, 72, 79, 82, 73, + 193, 18, 49, 68, 73, 86, 73, 68, 69, 68, 32, 66, 89, 32, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32, 66, 65, 82, 32, 65, 78, 68, 32, 84, 79, 80, 32, 72, 65, 76, 70, 32, 68, 73, 86, 73, 68, 69, 68, 32, 66, 89, 22, 146, 2, 76, 46, 83, 108, 22, 84, 87, 79, 32, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32, 83, 84, 82, 79, 75, 69, 83, 44, 6, 85, 80, 80, 69, 82, 32, 44, 17, 65, 76, 76, 32, 66, 85, 84, 32, 85, 80, 80, 69, 82, 32, 76, 69, - 70, 190, 205, 26, 86, 242, 146, 4, 82, 183, 251, 1, 72, 4, 142, 226, 30, + 70, 242, 188, 26, 86, 242, 146, 4, 82, 183, 251, 1, 72, 4, 194, 209, 30, 69, 49, 4, 79, 87, 69, 82, 4, 104, 11, 77, 65, 76, 76, 32, 67, 73, 82, - 67, 76, 69, 221, 5, 10, 85, 80, 69, 82, 73, 77, 80, 79, 83, 69, 2, 225, - 251, 30, 6, 32, 84, 79, 32, 84, 72, 4, 40, 4, 82, 73, 71, 72, 231, 224, - 30, 72, 2, 249, 224, 30, 10, 84, 32, 81, 85, 65, 68, 82, 65, 78, 84, 196, + 67, 76, 69, 221, 5, 10, 85, 80, 69, 82, 73, 77, 80, 79, 83, 69, 2, 149, + 235, 30, 6, 32, 84, 79, 32, 84, 72, 4, 40, 4, 82, 73, 71, 72, 155, 208, + 30, 72, 2, 173, 208, 30, 10, 84, 32, 81, 85, 65, 68, 82, 65, 78, 84, 196, 4, 230, 2, 65, 186, 1, 66, 58, 67, 230, 1, 68, 246, 1, 72, 230, 2, 73, 194, 10, 75, 190, 2, 76, 38, 77, 136, 1, 7, 78, 85, 77, 66, 69, 82, 32, 192, 4, 17, 79, 80, 69, 78, 32, 67, 69, 78, 84, 82, 69, 32, 69, 73, 71, - 72, 84, 54, 80, 114, 82, 50, 84, 78, 87, 192, 132, 10, 4, 90, 69, 82, 79, - 158, 196, 16, 69, 182, 188, 4, 86, 146, 68, 71, 150, 115, 83, 227, 162, - 1, 88, 6, 100, 12, 78, 84, 73, 67, 76, 79, 67, 75, 87, 73, 83, 69, 157, - 184, 30, 7, 83, 84, 69, 82, 73, 83, 75, 4, 212, 249, 8, 11, 45, 82, 79, - 84, 65, 84, 69, 68, 32, 68, 73, 191, 229, 23, 32, 4, 32, 2, 79, 76, 219, - 152, 32, 85, 2, 223, 221, 14, 68, 16, 60, 4, 82, 79, 83, 83, 210, 2, 32, - 202, 247, 33, 67, 3, 68, 10, 26, 32, 199, 197, 1, 73, 8, 64, 6, 70, 79, - 82, 77, 69, 69, 153, 135, 32, 4, 80, 79, 77, 77, 7, 33, 6, 32, 87, 73, - 84, 72, 32, 4, 158, 210, 31, 70, 135, 84, 84, 30, 34, 73, 70, 79, 135, - 141, 32, 65, 24, 168, 192, 4, 8, 86, 73, 83, 73, 79, 78, 32, 83, 183, - 196, 27, 71, 4, 64, 10, 76, 76, 65, 82, 32, 83, 73, 71, 78, 32, 135, 180, - 30, 84, 2, 173, 175, 19, 13, 87, 73, 84, 72, 32, 79, 86, 69, 82, 76, 65, - 73, 68, 64, 192, 1, 6, 65, 78, 71, 85, 76, 32, 252, 203, 12, 20, 79, 82, + 72, 84, 54, 80, 114, 82, 50, 84, 78, 87, 140, 252, 9, 4, 90, 69, 82, 79, + 134, 188, 16, 69, 182, 188, 4, 86, 146, 68, 71, 150, 115, 83, 227, 162, + 1, 88, 6, 100, 12, 78, 84, 73, 67, 76, 79, 67, 75, 87, 73, 83, 69, 209, + 167, 30, 7, 83, 84, 69, 82, 73, 83, 75, 4, 160, 241, 8, 11, 45, 82, 79, + 84, 65, 84, 69, 68, 32, 68, 73, 167, 221, 23, 32, 4, 32, 2, 79, 76, 143, + 136, 32, 85, 2, 223, 209, 14, 68, 16, 60, 4, 82, 79, 83, 83, 210, 2, 32, + 254, 230, 33, 67, 3, 68, 10, 26, 32, 199, 193, 1, 73, 8, 64, 6, 70, 79, + 82, 77, 69, 69, 205, 246, 31, 4, 80, 79, 77, 77, 7, 33, 6, 32, 87, 73, + 84, 72, 32, 4, 210, 193, 31, 70, 135, 84, 84, 30, 34, 73, 70, 79, 187, + 252, 31, 65, 24, 168, 188, 4, 8, 86, 73, 83, 73, 79, 78, 32, 83, 235, + 183, 27, 71, 4, 64, 10, 76, 76, 65, 82, 32, 83, 73, 71, 78, 32, 187, 163, + 30, 84, 2, 225, 158, 19, 13, 87, 73, 84, 72, 32, 79, 86, 69, 82, 76, 65, + 73, 68, 64, 192, 1, 6, 65, 78, 71, 85, 76, 32, 252, 191, 12, 20, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32, 66, 65, 82, 32, 87, 73, 84, 72, 32, 78, - 204, 217, 9, 4, 85, 77, 65, 78, 145, 1, 4, 69, 65, 86, 89, 58, 110, 67, - 140, 207, 20, 5, 73, 69, 85, 78, 71, 42, 72, 30, 75, 66, 77, 34, 78, 34, - 80, 62, 82, 30, 83, 27, 84, 8, 234, 206, 20, 72, 157, 3, 4, 73, 69, 85, + 128, 213, 9, 4, 85, 77, 65, 78, 145, 1, 4, 69, 65, 86, 89, 58, 110, 67, + 192, 190, 20, 5, 73, 69, 85, 78, 71, 42, 72, 30, 75, 66, 77, 34, 78, 34, + 80, 62, 82, 30, 83, 27, 84, 8, 158, 190, 20, 72, 157, 3, 4, 73, 69, 85, 67, 116, 220, 1, 9, 68, 69, 79, 71, 82, 65, 80, 72, 32, 196, 8, 27, 84, 65, 76, 73, 67, 32, 76, 65, 84, 73, 78, 32, 67, 65, 80, 73, 84, 65, 76, - 32, 76, 69, 84, 84, 69, 82, 32, 169, 162, 27, 9, 78, 70, 79, 82, 77, 65, + 32, 76, 69, 84, 84, 69, 82, 32, 221, 145, 27, 9, 78, 70, 79, 82, 77, 65, 84, 73, 79, 110, 174, 1, 65, 110, 67, 90, 69, 86, 70, 62, 72, 38, 75, 70, - 76, 50, 77, 86, 78, 62, 81, 30, 82, 74, 83, 198, 178, 6, 80, 162, 157, - 14, 84, 50, 87, 202, 215, 1, 73, 163, 168, 10, 79, 8, 242, 207, 20, 76, + 76, 50, 77, 86, 78, 62, 81, 30, 82, 74, 83, 146, 170, 6, 80, 138, 149, + 14, 84, 50, 87, 202, 215, 1, 73, 163, 168, 10, 79, 8, 166, 191, 20, 76, 200, 134, 1, 3, 67, 67, 69, 184, 249, 6, 3, 84, 84, 69, 249, 17, 5, 68, - 86, 65, 78, 84, 8, 26, 79, 235, 234, 30, 69, 6, 236, 212, 10, 2, 82, 82, - 190, 250, 9, 78, 147, 143, 13, 80, 8, 190, 207, 20, 78, 174, 179, 9, 65, - 180, 169, 3, 5, 88, 67, 69, 76, 76, 231, 24, 73, 10, 202, 207, 20, 73, - 144, 190, 5, 2, 69, 77, 199, 232, 6, 79, 4, 146, 193, 29, 73, 211, 176, - 3, 65, 4, 228, 166, 7, 8, 73, 78, 68, 69, 82, 71, 65, 82, 167, 212, 22, - 79, 6, 218, 206, 20, 65, 214, 160, 12, 79, 195, 83, 69, 8, 38, 69, 190, - 198, 32, 65, 211, 86, 79, 4, 184, 209, 32, 3, 68, 73, 67, 227, 15, 84, 6, - 26, 73, 195, 210, 32, 65, 4, 246, 193, 33, 71, 231, 19, 78, 2, 233, 208, - 28, 2, 85, 69, 8, 26, 69, 151, 193, 33, 73, 6, 226, 205, 20, 83, 217, - 136, 8, 2, 76, 73, 22, 90, 69, 38, 85, 184, 161, 14, 2, 67, 72, 130, 172, - 6, 79, 22, 80, 34, 84, 131, 142, 12, 73, 4, 238, 164, 10, 67, 223, 239, - 21, 86, 6, 182, 206, 20, 80, 146, 128, 2, 73, 231, 155, 11, 78, 4, 246, - 233, 33, 67, 3, 82, 98, 116, 8, 65, 84, 65, 75, 65, 78, 65, 32, 133, 1, + 86, 65, 78, 84, 8, 26, 79, 159, 218, 30, 69, 6, 184, 204, 10, 2, 82, 82, + 166, 242, 9, 78, 147, 143, 13, 80, 8, 242, 190, 20, 78, 174, 179, 9, 65, + 180, 169, 3, 5, 88, 67, 69, 76, 76, 231, 24, 73, 10, 254, 190, 20, 73, + 144, 190, 5, 2, 69, 77, 199, 232, 6, 79, 4, 198, 176, 29, 73, 211, 176, + 3, 65, 4, 176, 158, 7, 8, 73, 78, 68, 69, 82, 71, 65, 82, 143, 204, 22, + 79, 6, 142, 190, 20, 65, 214, 160, 12, 79, 195, 83, 69, 8, 38, 69, 242, + 181, 32, 65, 211, 86, 79, 4, 236, 192, 32, 3, 68, 73, 67, 227, 15, 84, 6, + 26, 73, 247, 193, 32, 65, 4, 170, 177, 33, 71, 231, 19, 78, 2, 157, 192, + 28, 2, 85, 69, 8, 26, 69, 203, 176, 33, 73, 6, 150, 189, 20, 83, 217, + 136, 8, 2, 76, 73, 22, 90, 69, 38, 85, 184, 149, 14, 2, 67, 72, 182, 167, + 6, 79, 22, 80, 34, 84, 131, 142, 12, 73, 4, 186, 156, 10, 67, 199, 231, + 21, 86, 6, 234, 189, 20, 80, 146, 128, 2, 73, 231, 155, 11, 78, 4, 170, + 217, 33, 67, 3, 82, 98, 116, 8, 65, 84, 65, 75, 65, 78, 65, 32, 133, 1, 16, 79, 82, 69, 65, 78, 32, 67, 72, 65, 82, 65, 67, 84, 69, 82, 32, 94, - 166, 241, 10, 72, 2, 75, 2, 77, 2, 78, 2, 82, 2, 83, 2, 84, 126, 87, 46, - 89, 150, 246, 22, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 152, 157, 16, 3, 74, - 85, 69, 197, 171, 17, 4, 67, 72, 65, 77, 106, 222, 196, 27, 65, 255, 140, + 242, 232, 10, 72, 2, 75, 2, 77, 2, 78, 2, 82, 2, 83, 2, 84, 126, 87, 46, + 89, 254, 237, 22, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 152, 145, 16, 3, 74, + 85, 69, 249, 166, 17, 4, 67, 72, 65, 77, 106, 146, 180, 27, 65, 255, 140, 4, 69, 4, 100, 19, 85, 76, 84, 73, 80, 76, 73, 67, 65, 84, 73, 79, 78, - 32, 83, 73, 71, 78, 32, 167, 221, 31, 73, 2, 209, 85, 4, 87, 73, 84, 72, - 98, 50, 69, 46, 70, 98, 83, 94, 84, 147, 202, 20, 78, 6, 180, 1, 3, 73, - 71, 72, 203, 193, 25, 76, 30, 28, 3, 73, 70, 84, 35, 79, 6, 214, 1, 89, - 155, 141, 32, 69, 24, 142, 2, 82, 251, 201, 20, 85, 8, 40, 4, 69, 86, 69, - 78, 1, 2, 73, 88, 4, 11, 84, 4, 104, 2, 89, 32, 143, 141, 32, 69, 52, 56, - 2, 69, 78, 32, 4, 72, 73, 82, 84, 29, 2, 87, 69, 5, 11, 32, 2, 139, 223, - 25, 79, 24, 74, 89, 175, 140, 32, 69, 24, 26, 78, 243, 229, 32, 76, 22, - 17, 2, 84, 89, 23, 11, 32, 20, 72, 2, 79, 78, 206, 238, 31, 70, 30, 83, - 42, 84, 142, 87, 78, 239, 112, 69, 4, 230, 221, 25, 32, 243, 131, 8, 69, - 2, 193, 199, 31, 8, 32, 80, 79, 73, 78, 84, 69, 68, 8, 248, 217, 17, 3, - 79, 83, 84, 190, 251, 6, 65, 228, 203, 2, 8, 69, 82, 80, 69, 78, 68, 73, - 67, 131, 183, 4, 76, 4, 200, 156, 30, 3, 73, 78, 71, 163, 170, 1, 69, 6, - 52, 7, 82, 73, 65, 78, 71, 76, 69, 143, 199, 26, 73, 5, 211, 166, 22, 32, - 6, 44, 5, 72, 73, 84, 69, 32, 231, 222, 33, 90, 4, 194, 252, 31, 66, 215, - 25, 83, 6, 154, 184, 27, 77, 184, 190, 4, 6, 76, 65, 84, 73, 79, 78, 201, - 164, 1, 3, 83, 32, 84, 5, 233, 150, 32, 6, 32, 65, 84, 32, 68, 85, 158, - 18, 192, 1, 24, 67, 79, 77, 80, 65, 84, 73, 66, 73, 76, 73, 84, 89, 32, - 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 144, 3, 8, 82, 65, 68, 73, 67, - 65, 76, 32, 245, 17, 7, 83, 84, 82, 79, 75, 69, 32, 236, 15, 24, 2, 50, - 70, 75, 70, 188, 8, 34, 65, 170, 130, 11, 56, 3, 57, 60, 202, 1, 49, 243, - 254, 18, 48, 176, 7, 26, 65, 235, 129, 11, 57, 176, 3, 134, 1, 54, 242, - 254, 18, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 2, 57, 2, - 65, 2, 66, 2, 67, 215, 156, 9, 68, 28, 226, 217, 33, 48, 2, 49, 2, 50, 2, - 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 3, 68, - 230, 1, 210, 1, 66, 126, 67, 226, 4, 68, 62, 69, 50, 70, 34, 71, 50, 72, - 86, 74, 154, 1, 76, 62, 77, 130, 1, 80, 46, 82, 78, 83, 182, 3, 84, 82, - 87, 164, 230, 10, 2, 78, 69, 156, 17, 4, 75, 78, 73, 70, 203, 160, 12, - 79, 14, 74, 79, 188, 134, 11, 4, 82, 85, 83, 72, 162, 240, 4, 65, 143, - 208, 13, 76, 6, 182, 173, 10, 76, 186, 146, 23, 78, 215, 22, 88, 56, 104, - 12, 45, 83, 73, 77, 80, 76, 73, 70, 73, 69, 68, 32, 162, 3, 73, 50, 76, - 186, 211, 32, 79, 191, 78, 72, 44, 114, 69, 38, 70, 50, 71, 38, 76, 34, - 83, 94, 84, 182, 217, 14, 87, 42, 68, 130, 244, 16, 66, 170, 121, 72, - 163, 4, 67, 4, 174, 254, 31, 86, 219, 185, 1, 65, 6, 134, 233, 31, 73, - 194, 217, 1, 76, 235, 16, 82, 4, 146, 164, 23, 79, 187, 230, 8, 65, 4, - 138, 210, 32, 69, 187, 48, 79, 10, 162, 230, 6, 73, 146, 199, 17, 65, + 32, 83, 73, 71, 78, 32, 219, 204, 31, 73, 2, 209, 81, 4, 87, 73, 84, 72, + 98, 50, 69, 46, 70, 98, 83, 94, 84, 199, 185, 20, 78, 6, 180, 1, 3, 73, + 71, 72, 255, 176, 25, 76, 30, 28, 3, 73, 70, 84, 35, 79, 6, 214, 1, 89, + 207, 252, 31, 69, 24, 142, 2, 82, 175, 185, 20, 85, 8, 40, 4, 69, 86, 69, + 78, 1, 2, 73, 88, 4, 11, 84, 4, 104, 2, 89, 32, 195, 252, 31, 69, 52, 56, + 2, 69, 78, 32, 4, 72, 73, 82, 84, 29, 2, 87, 69, 5, 11, 32, 2, 191, 206, + 25, 79, 24, 74, 89, 227, 251, 31, 69, 24, 26, 78, 167, 213, 32, 76, 22, + 17, 2, 84, 89, 23, 11, 32, 20, 72, 2, 79, 78, 130, 222, 31, 70, 30, 83, + 42, 84, 142, 87, 78, 239, 112, 69, 4, 154, 205, 25, 32, 243, 131, 8, 69, + 2, 245, 182, 31, 8, 32, 80, 79, 73, 78, 84, 69, 68, 8, 248, 205, 17, 3, + 79, 83, 84, 242, 246, 6, 65, 228, 203, 2, 8, 69, 82, 80, 69, 78, 68, 73, + 67, 131, 183, 4, 76, 4, 252, 139, 30, 3, 73, 78, 71, 163, 170, 1, 69, 6, + 52, 7, 82, 73, 65, 78, 71, 76, 69, 195, 182, 26, 73, 5, 135, 150, 22, 32, + 6, 44, 5, 72, 73, 84, 69, 32, 155, 206, 33, 90, 4, 246, 235, 31, 66, 215, + 25, 83, 6, 206, 167, 27, 77, 184, 190, 4, 6, 76, 65, 84, 73, 79, 78, 201, + 164, 1, 3, 83, 32, 84, 5, 157, 134, 32, 6, 32, 65, 84, 32, 68, 85, 178, + 2, 80, 8, 82, 65, 68, 73, 67, 65, 76, 32, 245, 17, 7, 83, 84, 82, 79, 75, + 69, 32, 230, 1, 210, 1, 66, 126, 67, 226, 4, 68, 62, 69, 50, 70, 34, 71, + 50, 72, 86, 74, 154, 1, 76, 62, 77, 130, 1, 80, 46, 82, 78, 83, 182, 3, + 84, 82, 87, 240, 225, 10, 2, 78, 69, 208, 13, 4, 75, 78, 73, 70, 255, + 155, 12, 79, 14, 74, 79, 188, 254, 10, 4, 82, 85, 83, 72, 162, 240, 4, + 65, 195, 203, 13, 76, 6, 130, 169, 10, 76, 162, 138, 23, 78, 215, 22, 88, + 56, 104, 12, 45, 83, 73, 77, 80, 76, 73, 70, 73, 69, 68, 32, 162, 3, 73, + 50, 76, 238, 198, 32, 79, 191, 78, 72, 44, 114, 69, 38, 70, 50, 71, 38, + 76, 34, 83, 94, 84, 182, 209, 14, 87, 42, 68, 182, 239, 16, 66, 170, 121, + 72, 163, 4, 67, 4, 226, 241, 31, 86, 219, 185, 1, 65, 6, 186, 220, 31, + 73, 194, 217, 1, 76, 235, 16, 82, 4, 198, 151, 23, 79, 187, 230, 8, 65, + 4, 190, 197, 32, 69, 187, 48, 79, 10, 238, 225, 6, 73, 250, 190, 17, 65, 194, 194, 1, 72, 128, 193, 7, 3, 80, 69, 69, 215, 11, 69, 6, 214, 10, 85, - 148, 188, 10, 2, 65, 78, 235, 164, 4, 79, 4, 128, 229, 20, 3, 86, 73, 76, - 191, 219, 12, 84, 4, 150, 233, 17, 73, 167, 210, 14, 79, 6, 240, 172, 24, - 2, 73, 86, 222, 240, 2, 69, 147, 179, 6, 79, 10, 196, 6, 2, 65, 84, 222, - 179, 33, 87, 3, 89, 4, 138, 174, 32, 73, 135, 82, 79, 8, 244, 5, 4, 82, - 65, 83, 83, 179, 220, 29, 72, 10, 48, 2, 69, 65, 226, 188, 28, 79, 211, - 130, 4, 65, 6, 186, 8, 82, 139, 199, 33, 68, 10, 72, 12, 45, 83, 73, 77, - 80, 76, 73, 70, 73, 69, 68, 32, 231, 187, 31, 65, 8, 42, 84, 202, 213, - 14, 68, 143, 134, 17, 69, 4, 194, 6, 85, 255, 224, 14, 79, 12, 128, 254, - 10, 3, 79, 78, 71, 205, 129, 16, 3, 65, 77, 69, 14, 18, 69, 35, 79, 4, - 142, 177, 33, 65, 159, 27, 83, 10, 144, 253, 10, 3, 85, 78, 68, 182, 174, - 13, 84, 138, 217, 7, 82, 239, 120, 79, 6, 196, 252, 10, 2, 65, 87, 239, - 203, 18, 69, 8, 34, 65, 197, 194, 32, 2, 69, 80, 6, 158, 252, 32, 73, + 224, 183, 10, 2, 65, 78, 159, 161, 4, 79, 4, 180, 216, 20, 3, 86, 73, 76, + 191, 219, 12, 84, 4, 150, 225, 17, 73, 219, 205, 14, 79, 6, 164, 160, 24, + 2, 73, 86, 222, 240, 2, 69, 147, 179, 6, 79, 10, 196, 6, 2, 65, 84, 146, + 167, 33, 87, 3, 89, 4, 190, 161, 32, 73, 135, 82, 79, 8, 244, 5, 4, 82, + 65, 83, 83, 231, 207, 29, 72, 10, 48, 2, 69, 65, 150, 176, 28, 79, 211, + 130, 4, 65, 6, 186, 8, 82, 191, 186, 33, 68, 10, 72, 12, 45, 83, 73, 77, + 80, 76, 73, 70, 73, 69, 68, 32, 155, 175, 31, 65, 8, 42, 84, 202, 205, + 14, 68, 195, 129, 17, 69, 4, 194, 6, 85, 255, 216, 14, 79, 12, 128, 246, + 10, 3, 79, 78, 71, 129, 253, 15, 3, 65, 77, 69, 14, 18, 69, 35, 79, 4, + 194, 164, 33, 65, 159, 27, 83, 10, 144, 245, 10, 3, 85, 78, 68, 234, 169, + 13, 84, 138, 217, 7, 82, 239, 120, 79, 6, 196, 244, 10, 2, 65, 87, 163, + 199, 18, 69, 8, 34, 65, 249, 181, 32, 2, 69, 80, 6, 210, 239, 32, 73, 226, 79, 77, 3, 80, 38, 122, 69, 90, 73, 186, 1, 78, 196, 1, 4, 80, 73, - 82, 73, 128, 247, 10, 4, 77, 65, 76, 76, 166, 158, 12, 72, 135, 226, 9, - 85, 8, 40, 4, 67, 79, 78, 68, 227, 190, 32, 65, 6, 11, 32, 6, 218, 215, - 31, 84, 155, 87, 79, 12, 60, 9, 77, 80, 76, 73, 70, 73, 69, 68, 32, 175, - 198, 33, 76, 10, 34, 72, 50, 87, 131, 194, 10, 89, 4, 136, 172, 10, 3, - 65, 76, 70, 179, 138, 18, 79, 4, 246, 219, 6, 65, 191, 227, 25, 72, 6, - 192, 1, 2, 79, 85, 179, 151, 33, 65, 8, 58, 85, 150, 241, 24, 65, 242, - 204, 1, 72, 191, 184, 3, 73, 2, 135, 159, 24, 82, 12, 26, 65, 49, 2, 69, - 83, 8, 172, 247, 10, 2, 76, 75, 1, 3, 84, 69, 82, 4, 255, 246, 10, 84, - 76, 110, 72, 182, 1, 80, 38, 83, 194, 198, 31, 84, 152, 253, 1, 2, 66, - 88, 2, 87, 2, 88, 86, 68, 2, 78, 3, 81, 31, 42, 80, 22, 88, 30, 90, 171, - 197, 33, 71, 5, 131, 197, 33, 87, 4, 238, 196, 33, 87, 87, 71, 19, 50, - 90, 246, 198, 31, 87, 130, 254, 1, 71, 3, 84, 9, 242, 198, 31, 90, 131, - 254, 1, 80, 9, 206, 196, 33, 68, 2, 71, 3, 90, 23, 50, 87, 30, 90, 222, - 195, 33, 71, 2, 80, 3, 84, 7, 246, 195, 33, 71, 3, 90, 9, 134, 195, 33, - 87, 86, 80, 3, 90, 124, 62, 65, 194, 1, 73, 114, 79, 181, 132, 21, 4, 69, + 82, 73, 128, 239, 10, 4, 77, 65, 76, 76, 218, 153, 12, 72, 135, 226, 9, + 85, 8, 40, 4, 67, 79, 78, 68, 151, 178, 32, 65, 6, 11, 32, 6, 142, 203, + 31, 84, 155, 87, 79, 12, 60, 9, 77, 80, 76, 73, 70, 73, 69, 68, 32, 227, + 185, 33, 76, 10, 34, 72, 50, 87, 207, 189, 10, 89, 4, 212, 167, 10, 3, + 65, 76, 70, 155, 130, 18, 79, 4, 194, 215, 6, 65, 167, 219, 25, 72, 6, + 192, 1, 2, 79, 85, 231, 138, 33, 65, 8, 58, 85, 202, 228, 24, 65, 242, + 204, 1, 72, 191, 184, 3, 73, 2, 187, 146, 24, 82, 12, 26, 65, 49, 2, 69, + 83, 8, 172, 239, 10, 2, 76, 75, 1, 3, 84, 69, 82, 4, 255, 238, 10, 84, + 76, 110, 72, 182, 1, 80, 38, 83, 246, 185, 31, 84, 152, 253, 1, 2, 66, + 88, 2, 87, 2, 88, 86, 68, 2, 78, 3, 81, 31, 42, 80, 22, 88, 30, 90, 223, + 184, 33, 71, 5, 183, 184, 33, 87, 4, 162, 184, 33, 87, 87, 71, 19, 50, + 90, 170, 186, 31, 87, 130, 254, 1, 71, 3, 84, 9, 166, 186, 31, 90, 131, + 254, 1, 80, 9, 130, 184, 33, 68, 2, 71, 3, 90, 23, 50, 87, 30, 90, 146, + 183, 33, 71, 2, 80, 3, 84, 7, 170, 183, 33, 71, 3, 90, 9, 186, 182, 33, + 87, 86, 80, 3, 90, 124, 62, 65, 194, 1, 73, 114, 79, 233, 247, 20, 4, 69, 65, 82, 32, 8, 132, 1, 2, 80, 80, 128, 217, 3, 6, 83, 83, 73, 67, 65, 76, - 129, 188, 28, 14, 77, 83, 72, 69, 76, 76, 32, 77, 79, 66, 73, 76, 69, 32, - 4, 180, 208, 19, 5, 73, 78, 71, 32, 72, 227, 228, 1, 69, 6, 48, 6, 78, - 75, 73, 78, 71, 32, 247, 167, 32, 80, 4, 194, 169, 25, 71, 149, 189, 3, + 181, 175, 28, 14, 77, 83, 72, 69, 76, 76, 32, 77, 79, 66, 73, 76, 69, 32, + 4, 232, 195, 19, 5, 73, 78, 71, 32, 72, 227, 228, 1, 69, 6, 48, 6, 78, + 75, 73, 78, 71, 32, 171, 155, 32, 80, 4, 246, 156, 25, 71, 149, 189, 3, 6, 66, 69, 69, 82, 32, 77, 108, 72, 2, 67, 75, 140, 10, 2, 83, 69, 236, - 3, 2, 85, 68, 207, 187, 30, 87, 70, 64, 6, 32, 70, 65, 67, 69, 32, 237, + 3, 2, 85, 68, 131, 175, 30, 87, 70, 64, 6, 32, 70, 65, 67, 69, 32, 237, 2, 5, 87, 73, 83, 69, 32, 48, 58, 69, 46, 70, 36, 2, 78, 73, 2, 79, 18, 83, 51, 84, 8, 120, 2, 76, 69, 125, 4, 73, 71, 72, 84, 8, 178, 1, 73, 25, 3, 79, 85, 82, 4, 155, 1, 78, 8, 26, 69, 125, 2, 73, 88, 4, 57, 2, 86, 69, 16, 38, 69, 14, 87, 41, 3, 72, 82, 69, 4, 63, 78, 8, 24, 2, 69, 76, - 27, 79, 4, 11, 86, 4, 11, 69, 4, 176, 153, 29, 2, 32, 79, 193, 179, 2, 3, + 27, 79, 4, 11, 86, 4, 11, 69, 4, 228, 140, 29, 2, 32, 79, 193, 179, 2, 3, 45, 84, 72, 22, 90, 67, 58, 68, 122, 71, 48, 5, 82, 73, 71, 72, 84, 226, - 2, 84, 122, 79, 195, 172, 31, 73, 4, 196, 1, 3, 76, 79, 83, 181, 103, 4, + 2, 84, 122, 79, 247, 159, 31, 73, 4, 196, 1, 3, 76, 79, 83, 181, 103, 4, 79, 78, 84, 79, 2, 141, 3, 26, 79, 87, 78, 87, 65, 82, 68, 83, 32, 65, 78, 68, 32, 85, 80, 87, 65, 82, 68, 83, 32, 79, 80, 69, 78, 32, 2, 21, 3, 65, 80, 80, 2, 133, 4, 2, 69, 68, 6, 228, 1, 14, 32, 65, 78, 68, 32, 76, 69, 70, 84, 32, 83, 69, 77, 73, 45, 38, 87, 65, 82, 68, 83, 32, 65, 78, 68, 32, 76, 69, 70, 84, 87, 65, 82, 68, 83, 32, 79, 80, 69, 78, 32, 67, - 73, 82, 67, 76, 69, 32, 65, 82, 82, 79, 87, 83, 2, 133, 217, 30, 6, 67, + 73, 82, 67, 76, 69, 32, 65, 82, 82, 79, 87, 83, 2, 185, 204, 30, 6, 67, 73, 82, 67, 76, 69, 5, 253, 85, 15, 32, 87, 73, 84, 72, 32, 67, 73, 82, 67, 76, 69, 68, 32, 79, 4, 82, 79, 37, 16, 82, 73, 65, 78, 71, 76, 69, 45, 72, 69, 65, 68, 69, 68, 32, 79, 2, 69, 6, 80, 32, 83, 69, 77, 73, 2, - 21, 3, 80, 69, 78, 2, 11, 32, 2, 165, 215, 30, 4, 67, 73, 82, 67, 26, 32, - 2, 68, 32, 219, 191, 32, 32, 24, 216, 1, 2, 83, 85, 66, 85, 162, 194, 19, + 21, 3, 80, 69, 78, 2, 11, 32, 2, 217, 202, 30, 4, 67, 73, 82, 67, 26, 32, + 2, 68, 32, 143, 179, 32, 32, 24, 216, 1, 2, 83, 85, 66, 85, 214, 181, 19, 77, 180, 3, 9, 76, 79, 67, 75, 32, 87, 73, 84, 72, 238, 151, 12, 66, 149, 152, 1, 23, 73, 78, 84, 69, 82, 83, 69, 67, 84, 73, 79, 78, 32, 87, 73, - 84, 72, 32, 83, 69, 82, 73, 70, 8, 30, 66, 1, 3, 80, 69, 82, 4, 185, 148, + 84, 72, 32, 83, 69, 82, 73, 70, 8, 30, 66, 1, 3, 80, 69, 82, 4, 237, 135, 25, 3, 83, 69, 84, 6, 82, 77, 33, 16, 78, 73, 79, 78, 32, 87, 73, 84, 72, - 32, 83, 69, 82, 73, 70, 83, 2, 149, 247, 24, 3, 66, 82, 69, 5, 237, 160, + 32, 83, 69, 82, 73, 70, 83, 2, 201, 234, 24, 3, 66, 82, 69, 5, 161, 148, 32, 9, 32, 65, 78, 68, 32, 83, 77, 65, 83, 11, 33, 6, 32, 87, 73, 84, 72, - 32, 8, 72, 4, 84, 79, 82, 78, 190, 172, 5, 76, 250, 239, 19, 83, 251, - 229, 6, 82, 2, 211, 241, 25, 65, 152, 10, 158, 1, 67, 82, 76, 98, 77, - 202, 86, 78, 220, 5, 2, 79, 75, 58, 80, 154, 19, 82, 138, 1, 85, 246, - 149, 28, 87, 232, 167, 3, 2, 70, 70, 246, 47, 73, 183, 51, 65, 6, 26, 75, - 155, 153, 4, 79, 4, 202, 244, 8, 82, 153, 161, 23, 4, 84, 65, 73, 76, 8, - 44, 2, 79, 78, 185, 158, 25, 3, 76, 73, 83, 7, 11, 32, 4, 150, 152, 26, + 32, 8, 72, 4, 84, 79, 82, 78, 138, 168, 5, 76, 226, 231, 19, 83, 251, + 229, 6, 82, 2, 135, 229, 25, 65, 152, 10, 158, 1, 67, 82, 76, 98, 77, + 202, 86, 78, 220, 5, 2, 79, 75, 58, 80, 154, 19, 82, 138, 1, 85, 170, + 137, 28, 87, 232, 167, 3, 2, 70, 70, 246, 47, 73, 183, 51, 65, 6, 26, 75, + 155, 153, 4, 79, 4, 150, 240, 8, 82, 129, 153, 23, 4, 84, 65, 73, 76, 8, + 44, 2, 79, 78, 237, 145, 25, 3, 76, 73, 83, 7, 11, 32, 4, 202, 139, 26, 69, 211, 143, 6, 83, 212, 6, 72, 7, 66, 73, 78, 73, 78, 71, 32, 206, 84, - 77, 94, 80, 139, 188, 32, 69, 196, 6, 210, 2, 65, 186, 2, 66, 118, 67, + 77, 94, 80, 191, 175, 32, 69, 196, 6, 210, 2, 65, 186, 2, 66, 118, 67, 246, 12, 68, 226, 10, 69, 142, 2, 70, 70, 71, 156, 9, 2, 72, 79, 82, 73, 248, 1, 2, 75, 65, 162, 1, 76, 158, 14, 77, 178, 2, 78, 78, 79, 138, 2, 80, 182, 1, 82, 248, 4, 5, 90, 73, 71, 90, 65, 138, 2, 83, 162, 4, 84, 238, 2, 85, 168, 1, 8, 86, 69, 82, 84, 73, 67, 65, 76, 204, 1, 2, 87, 73, - 171, 1, 88, 26, 148, 1, 4, 67, 85, 84, 69, 98, 78, 136, 156, 25, 6, 83, + 171, 1, 88, 26, 148, 1, 4, 67, 85, 84, 69, 98, 78, 188, 143, 25, 6, 83, 84, 69, 82, 73, 83, 241, 234, 5, 14, 76, 77, 79, 83, 84, 32, 69, 81, 85, - 65, 76, 32, 84, 79, 12, 22, 45, 231, 34, 32, 6, 186, 57, 86, 184, 160, + 65, 76, 32, 84, 79, 12, 22, 45, 231, 34, 32, 6, 186, 57, 86, 184, 152, 12, 6, 71, 82, 65, 86, 69, 45, 251, 210, 3, 77, 6, 228, 2, 4, 84, 73, 67, - 76, 237, 183, 3, 4, 78, 85, 73, 84, 12, 42, 82, 137, 247, 30, 4, 73, 78, - 68, 85, 10, 32, 3, 69, 86, 69, 243, 37, 73, 7, 210, 177, 12, 45, 159, - 197, 18, 32, 142, 1, 142, 1, 65, 34, 76, 98, 79, 116, 8, 89, 82, 73, 76, + 76, 237, 183, 3, 4, 78, 85, 73, 84, 12, 42, 82, 189, 234, 30, 4, 73, 78, + 68, 85, 10, 32, 3, 69, 86, 69, 243, 37, 73, 7, 210, 169, 12, 45, 211, + 192, 18, 32, 142, 1, 142, 1, 65, 34, 76, 98, 79, 116, 8, 89, 82, 73, 76, 76, 73, 67, 32, 252, 29, 11, 73, 82, 67, 85, 77, 70, 76, 69, 88, 32, 65, - 171, 162, 12, 69, 6, 222, 19, 82, 159, 245, 28, 78, 4, 41, 8, 79, 67, 75, - 87, 73, 83, 69, 32, 4, 248, 184, 12, 4, 82, 73, 78, 71, 139, 239, 16, 65, + 171, 154, 12, 69, 6, 222, 19, 82, 211, 232, 28, 78, 4, 41, 8, 79, 67, 75, + 87, 73, 83, 69, 32, 4, 248, 176, 12, 4, 82, 73, 78, 71, 191, 234, 16, 65, 10, 76, 4, 77, 77, 65, 32, 249, 17, 10, 78, 74, 79, 73, 78, 73, 78, 71, - 32, 77, 6, 142, 161, 13, 65, 251, 225, 17, 66, 116, 252, 1, 8, 72, 85, + 32, 77, 6, 142, 153, 13, 65, 175, 221, 17, 66, 116, 252, 1, 8, 72, 85, 78, 68, 82, 69, 68, 32, 32, 7, 76, 69, 84, 84, 69, 82, 32, 166, 5, 80, - 116, 5, 68, 65, 83, 73, 65, 38, 84, 106, 77, 230, 247, 2, 75, 220, 152, - 13, 15, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 66, 89, 169, - 213, 16, 2, 86, 90, 4, 194, 7, 77, 247, 162, 3, 84, 84, 238, 1, 66, 38, + 116, 5, 68, 65, 83, 73, 65, 38, 84, 106, 77, 230, 247, 2, 75, 220, 144, + 13, 15, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 66, 89, 221, + 208, 16, 2, 86, 90, 4, 194, 7, 77, 247, 162, 3, 84, 84, 238, 1, 66, 38, 68, 50, 69, 82, 73, 106, 79, 22, 83, 66, 85, 30, 89, 238, 141, 3, 76, - 140, 5, 5, 77, 79, 78, 79, 71, 150, 18, 72, 154, 241, 12, 84, 130, 135, + 140, 5, 5, 77, 79, 78, 79, 71, 150, 18, 72, 154, 233, 12, 84, 182, 130, 16, 90, 150, 83, 67, 2, 71, 182, 8, 70, 134, 14, 80, 2, 86, 158, 20, 75, - 187, 2, 65, 4, 142, 173, 6, 73, 179, 243, 26, 69, 4, 136, 130, 26, 3, 74, - 69, 82, 147, 158, 7, 69, 14, 58, 83, 178, 159, 33, 70, 2, 76, 2, 77, 2, - 78, 3, 82, 5, 155, 214, 31, 45, 11, 56, 8, 79, 84, 73, 70, 73, 69, 68, - 32, 227, 158, 33, 69, 6, 162, 171, 6, 66, 190, 243, 26, 65, 3, 69, 5, - 175, 217, 25, 77, 6, 26, 72, 139, 152, 16, 79, 4, 218, 160, 31, 67, 171, - 253, 1, 65, 5, 225, 157, 3, 2, 75, 82, 8, 198, 219, 28, 69, 210, 165, 4, - 65, 174, 28, 73, 3, 85, 8, 66, 65, 48, 4, 83, 73, 76, 73, 141, 230, 29, - 4, 79, 75, 82, 89, 4, 194, 250, 2, 89, 169, 242, 12, 3, 76, 65, 84, 2, + 187, 2, 65, 4, 218, 168, 6, 73, 155, 235, 26, 69, 4, 188, 245, 25, 3, 74, + 69, 82, 147, 158, 7, 69, 14, 58, 83, 230, 146, 33, 70, 2, 76, 2, 77, 2, + 78, 3, 82, 5, 207, 201, 31, 45, 11, 56, 8, 79, 84, 73, 70, 73, 69, 68, + 32, 151, 146, 33, 69, 6, 238, 166, 6, 66, 166, 235, 26, 65, 3, 69, 5, + 227, 204, 25, 77, 6, 26, 72, 139, 144, 16, 79, 4, 142, 148, 31, 67, 171, + 253, 1, 65, 5, 225, 157, 3, 2, 75, 82, 8, 250, 206, 28, 69, 210, 165, 4, + 65, 174, 28, 73, 3, 85, 8, 66, 65, 48, 4, 83, 73, 76, 73, 193, 217, 29, + 4, 79, 75, 82, 89, 4, 194, 250, 2, 89, 169, 234, 12, 3, 76, 65, 84, 2, 209, 14, 5, 32, 80, 78, 69, 85, 10, 80, 2, 69, 78, 0, 7, 72, 79, 85, 83, - 65, 78, 68, 237, 9, 4, 73, 84, 76, 79, 2, 17, 2, 32, 77, 2, 201, 254, 21, + 65, 78, 68, 237, 9, 4, 73, 84, 76, 79, 2, 17, 2, 32, 77, 2, 253, 241, 21, 5, 73, 76, 76, 73, 79, 124, 66, 69, 244, 1, 8, 73, 65, 69, 82, 69, 83, - 73, 83, 131, 1, 79, 38, 68, 9, 86, 65, 78, 65, 71, 65, 82, 73, 32, 177, - 176, 32, 2, 76, 69, 36, 92, 7, 76, 69, 84, 84, 69, 82, 32, 248, 155, 26, - 6, 83, 73, 71, 78, 32, 65, 251, 136, 5, 68, 14, 158, 133, 33, 86, 162, - 17, 75, 2, 78, 2, 80, 2, 82, 186, 2, 65, 3, 85, 9, 26, 32, 207, 130, 28, - 45, 4, 162, 246, 30, 66, 189, 142, 1, 16, 87, 73, 84, 72, 32, 82, 65, 73, + 73, 83, 131, 1, 79, 38, 68, 9, 86, 65, 78, 65, 71, 65, 82, 73, 32, 229, + 163, 32, 2, 76, 69, 36, 92, 7, 76, 69, 84, 84, 69, 82, 32, 172, 143, 26, + 6, 83, 73, 71, 78, 32, 65, 251, 136, 5, 68, 14, 210, 248, 32, 86, 162, + 17, 75, 2, 78, 2, 80, 2, 82, 186, 2, 65, 3, 85, 9, 26, 32, 131, 246, 27, + 45, 4, 214, 233, 30, 66, 189, 142, 1, 16, 87, 73, 84, 72, 32, 82, 65, 73, 83, 69, 68, 32, 76, 69, 70, 84, 78, 58, 84, 164, 1, 4, 85, 66, 76, 69, - 169, 5, 2, 87, 78, 16, 74, 32, 232, 186, 10, 5, 45, 65, 78, 68, 45, 161, - 226, 5, 3, 84, 69, 68, 10, 64, 5, 65, 66, 79, 86, 69, 217, 189, 6, 5, 66, - 69, 76, 79, 87, 7, 223, 234, 32, 32, 56, 22, 32, 247, 4, 68, 54, 222, 1, + 169, 5, 2, 87, 78, 16, 74, 32, 180, 182, 10, 5, 45, 65, 78, 68, 45, 213, + 222, 5, 3, 84, 69, 68, 10, 64, 5, 65, 66, 79, 86, 69, 165, 185, 6, 5, 66, + 69, 76, 79, 87, 7, 147, 222, 32, 32, 56, 22, 32, 247, 4, 68, 54, 222, 1, 65, 34, 66, 0, 10, 73, 78, 86, 69, 82, 84, 69, 68, 32, 66, 26, 67, 34, 77, 54, 79, 34, 80, 68, 2, 82, 73, 48, 5, 84, 73, 76, 68, 69, 80, 9, 86, - 69, 82, 84, 73, 67, 65, 76, 32, 146, 152, 16, 71, 191, 187, 4, 76, 6, - 226, 17, 82, 131, 137, 16, 67, 4, 145, 17, 2, 82, 69, 4, 230, 235, 31, - 65, 135, 42, 73, 4, 21, 3, 65, 67, 82, 4, 165, 135, 17, 2, 79, 78, 4, - 138, 37, 80, 255, 130, 31, 86, 6, 146, 38, 76, 177, 233, 7, 9, 65, 82, - 69, 78, 84, 72, 69, 83, 69, 6, 240, 52, 4, 71, 72, 84, 87, 207, 129, 10, - 78, 7, 11, 32, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 219, 236, - 30, 84, 6, 182, 163, 12, 83, 175, 187, 14, 76, 2, 201, 146, 16, 2, 32, - 67, 6, 138, 51, 32, 207, 187, 31, 87, 18, 72, 9, 78, 67, 76, 79, 83, 73, + 69, 82, 84, 73, 67, 65, 76, 32, 146, 144, 16, 71, 243, 182, 4, 76, 6, + 226, 17, 82, 131, 129, 16, 67, 4, 145, 17, 2, 82, 69, 4, 154, 223, 31, + 65, 135, 42, 73, 4, 21, 3, 65, 67, 82, 4, 165, 255, 16, 2, 79, 78, 4, + 138, 37, 80, 179, 246, 30, 86, 6, 146, 38, 76, 253, 228, 7, 9, 65, 82, + 69, 78, 84, 72, 69, 83, 69, 6, 240, 52, 4, 71, 72, 84, 87, 155, 253, 9, + 78, 7, 11, 32, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 143, 224, + 30, 84, 6, 182, 155, 12, 83, 227, 182, 14, 76, 2, 201, 138, 16, 2, 32, + 67, 6, 138, 51, 32, 131, 175, 31, 87, 18, 72, 9, 78, 67, 76, 79, 83, 73, 78, 71, 32, 177, 35, 4, 81, 85, 65, 76, 14, 132, 1, 6, 67, 73, 82, 67, - 76, 69, 22, 83, 140, 170, 6, 3, 75, 69, 89, 240, 216, 19, 7, 85, 80, 87, - 65, 82, 68, 32, 171, 204, 5, 68, 5, 163, 198, 18, 32, 4, 182, 239, 25, - 67, 147, 252, 5, 81, 6, 48, 2, 69, 82, 206, 145, 5, 79, 251, 134, 12, 76, + 76, 69, 22, 83, 216, 165, 6, 3, 75, 69, 89, 216, 208, 19, 7, 85, 80, 87, + 65, 82, 68, 32, 171, 204, 5, 68, 5, 215, 185, 18, 32, 4, 234, 226, 25, + 67, 147, 252, 5, 81, 6, 48, 2, 69, 82, 154, 141, 5, 79, 175, 131, 12, 76, 2, 255, 76, 77, 128, 1, 88, 17, 76, 65, 71, 79, 76, 73, 84, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 143, 3, 82, 76, 238, 1, 68, 30, 73, 46, 83, - 50, 84, 210, 146, 6, 65, 22, 66, 94, 67, 134, 1, 70, 38, 71, 238, 2, 77, + 50, 84, 158, 142, 6, 65, 22, 66, 94, 67, 134, 1, 70, 38, 71, 238, 2, 77, 32, 2, 76, 74, 34, 78, 88, 2, 80, 79, 30, 82, 194, 2, 86, 22, 89, 90, 90, - 234, 145, 19, 72, 190, 133, 2, 85, 162, 177, 5, 79, 235, 5, 75, 4, 138, - 149, 6, 74, 31, 79, 11, 150, 150, 6, 78, 54, 79, 243, 198, 26, 90, 8, - 246, 150, 6, 77, 130, 4, 76, 247, 218, 22, 72, 4, 170, 155, 6, 86, 235, - 218, 26, 83, 52, 38, 65, 185, 3, 4, 69, 69, 75, 32, 38, 84, 5, 78, 84, - 72, 65, 32, 196, 1, 2, 86, 69, 137, 216, 28, 5, 80, 72, 69, 77, 69, 24, + 210, 137, 19, 72, 190, 133, 2, 85, 162, 177, 5, 79, 235, 5, 75, 4, 214, + 144, 6, 74, 31, 79, 11, 226, 145, 6, 78, 54, 79, 219, 190, 26, 90, 8, + 194, 146, 6, 77, 130, 4, 76, 223, 210, 22, 72, 4, 246, 150, 6, 86, 211, + 210, 26, 83, 52, 38, 65, 185, 3, 4, 69, 69, 75, 32, 38, 84, 5, 78, 84, + 72, 65, 32, 196, 1, 2, 86, 69, 189, 203, 28, 5, 80, 72, 69, 77, 69, 24, 68, 6, 68, 73, 71, 73, 84, 32, 65, 7, 76, 69, 84, 84, 69, 82, 32, 14, - 170, 247, 16, 83, 202, 157, 14, 70, 70, 84, 62, 90, 223, 86, 79, 10, 230, - 243, 32, 86, 162, 17, 75, 2, 78, 2, 80, 187, 2, 65, 12, 18, 32, 67, 45, - 6, 26, 65, 131, 184, 16, 84, 4, 237, 147, 4, 4, 67, 67, 69, 78, 6, 150, - 22, 86, 168, 250, 11, 6, 65, 67, 85, 84, 69, 45, 139, 249, 3, 77, 14, - 148, 1, 8, 77, 85, 83, 73, 67, 65, 76, 32, 130, 155, 4, 75, 170, 202, 2, - 80, 174, 4, 89, 217, 239, 3, 11, 68, 73, 65, 76, 89, 84, 73, 75, 65, 32, - 84, 6, 26, 84, 255, 203, 15, 80, 4, 214, 204, 15, 69, 35, 82, 6, 146, - 130, 13, 79, 128, 133, 19, 8, 77, 79, 84, 72, 69, 84, 73, 67, 167, 45, - 82, 16, 26, 78, 151, 210, 30, 83, 14, 52, 7, 86, 69, 82, 84, 69, 68, 32, - 243, 209, 28, 70, 12, 60, 2, 66, 82, 69, 9, 68, 79, 85, 66, 76, 69, 32, - 65, 82, 8, 18, 69, 23, 73, 4, 203, 232, 11, 86, 4, 233, 223, 30, 2, 68, - 71, 4, 11, 67, 4, 207, 223, 30, 72, 8, 128, 1, 16, 84, 65, 75, 65, 78, - 65, 45, 72, 73, 82, 65, 71, 65, 78, 65, 32, 229, 250, 17, 9, 86, 89, 75, - 65, 32, 65, 66, 79, 86, 4, 242, 139, 10, 83, 35, 86, 162, 1, 80, 5, 65, + 170, 239, 16, 83, 254, 152, 14, 70, 70, 84, 62, 90, 223, 86, 79, 10, 154, + 231, 32, 86, 162, 17, 75, 2, 78, 2, 80, 187, 2, 65, 12, 18, 32, 67, 45, + 6, 26, 65, 131, 176, 16, 84, 4, 237, 147, 4, 4, 67, 67, 69, 78, 6, 150, + 22, 86, 168, 242, 11, 6, 65, 67, 85, 84, 69, 45, 139, 249, 3, 77, 14, + 148, 1, 8, 77, 85, 83, 73, 67, 65, 76, 32, 130, 155, 4, 75, 246, 197, 2, + 80, 174, 4, 89, 141, 236, 3, 11, 68, 73, 65, 76, 89, 84, 73, 75, 65, 32, + 84, 6, 26, 84, 255, 195, 15, 80, 4, 214, 196, 15, 69, 35, 82, 6, 146, + 250, 12, 79, 180, 128, 19, 8, 77, 79, 84, 72, 69, 84, 73, 67, 167, 45, + 82, 16, 26, 78, 203, 197, 30, 83, 14, 52, 7, 86, 69, 82, 84, 69, 68, 32, + 167, 197, 28, 70, 12, 60, 2, 66, 82, 69, 9, 68, 79, 85, 66, 76, 69, 32, + 65, 82, 8, 18, 69, 23, 73, 4, 203, 224, 11, 86, 4, 157, 211, 30, 2, 68, + 71, 4, 11, 67, 4, 131, 211, 30, 72, 8, 128, 1, 16, 84, 65, 75, 65, 78, + 65, 45, 72, 73, 82, 65, 71, 65, 78, 65, 32, 229, 242, 17, 9, 86, 89, 75, + 65, 32, 65, 66, 79, 86, 4, 190, 135, 10, 83, 35, 86, 162, 1, 80, 5, 65, 84, 73, 78, 32, 164, 8, 3, 69, 70, 84, 232, 3, 2, 73, 71, 83, 79, 106, 156, 1, 21, 76, 69, 84, 84, 69, 82, 32, 83, 77, 65, 76, 76, 32, 67, 65, 80, 73, 84, 65, 76, 32, 53, 13, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, - 69, 82, 32, 10, 182, 254, 32, 71, 2, 76, 2, 77, 2, 78, 3, 82, 96, 226, 1, + 69, 82, 32, 10, 234, 241, 32, 71, 2, 76, 2, 77, 2, 78, 3, 82, 96, 226, 1, 65, 70, 67, 34, 69, 30, 70, 78, 73, 86, 76, 106, 79, 2, 85, 134, 1, 82, - 50, 84, 158, 183, 12, 83, 162, 151, 2, 66, 238, 157, 2, 87, 190, 139, 16, + 50, 84, 158, 175, 12, 83, 162, 151, 2, 66, 238, 157, 2, 87, 242, 134, 16, 68, 2, 71, 2, 72, 2, 75, 2, 77, 2, 78, 2, 80, 2, 86, 2, 88, 3, 90, 13, - 182, 246, 2, 32, 226, 169, 26, 76, 138, 220, 3, 69, 2, 79, 3, 86, 5, 173, - 151, 12, 3, 32, 67, 69, 7, 170, 250, 32, 83, 3, 84, 5, 225, 207, 27, 14, + 182, 246, 2, 32, 150, 157, 26, 76, 138, 220, 3, 69, 2, 79, 3, 86, 5, 173, + 143, 12, 3, 32, 67, 69, 7, 222, 237, 32, 83, 3, 84, 5, 149, 195, 27, 14, 76, 65, 84, 84, 69, 78, 69, 68, 32, 79, 80, 69, 78, 32, 11, 37, 7, 78, - 83, 85, 76, 65, 82, 32, 8, 170, 250, 32, 68, 2, 71, 2, 82, 3, 84, 7, 148, - 151, 16, 14, 32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 69, 32, 77, 133, - 233, 12, 3, 79, 78, 71, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 146, 167, - 12, 68, 209, 233, 12, 15, 76, 73, 71, 72, 84, 32, 67, 69, 78, 84, 82, 65, - 76, 73, 90, 7, 11, 32, 4, 210, 133, 12, 82, 203, 208, 18, 66, 5, 201, - 198, 30, 7, 85, 82, 78, 69, 68, 32, 87, 36, 46, 32, 133, 3, 6, 87, 65, + 83, 85, 76, 65, 82, 32, 8, 222, 237, 32, 68, 2, 71, 2, 82, 3, 84, 7, 148, + 143, 16, 14, 32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 69, 32, 77, 185, + 228, 12, 3, 79, 78, 71, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 146, 159, + 12, 68, 133, 229, 12, 15, 76, 73, 71, 72, 84, 32, 67, 69, 78, 84, 82, 65, + 76, 73, 90, 7, 11, 32, 4, 210, 253, 11, 82, 255, 203, 18, 66, 5, 253, + 185, 30, 7, 85, 82, 78, 69, 68, 32, 87, 36, 46, 32, 133, 3, 6, 87, 65, 82, 68, 83, 32, 32, 122, 65, 192, 1, 12, 80, 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 32, 166, 13, 72, 154, 10, 84, 57, 5, 82, 73, 71, 72, 84, 14, 52, 5, 78, 71, 76, 69, 32, 77, 4, 82, 82, 79, 87, 6, 140, 253, 3, 6, 67, - 69, 78, 84, 82, 69, 214, 214, 26, 66, 131, 165, 1, 65, 8, 26, 72, 227, - 210, 30, 32, 4, 209, 210, 30, 3, 69, 65, 68, 4, 144, 232, 7, 4, 65, 66, - 79, 86, 241, 217, 24, 5, 66, 69, 76, 79, 87, 4, 142, 14, 72, 245, 248, + 69, 78, 84, 82, 69, 138, 202, 26, 66, 131, 165, 1, 65, 8, 26, 72, 151, + 198, 30, 32, 4, 133, 198, 30, 3, 69, 65, 68, 4, 220, 227, 7, 4, 65, 66, + 79, 86, 217, 209, 24, 5, 66, 69, 76, 79, 87, 4, 142, 14, 72, 245, 240, 11, 5, 65, 82, 82, 79, 87, 10, 52, 6, 65, 84, 85, 82, 69, 32, 129, 18, 2, - 72, 84, 8, 234, 1, 76, 23, 82, 10, 36, 3, 78, 71, 32, 131, 215, 31, 87, + 72, 84, 8, 234, 1, 76, 23, 82, 10, 36, 3, 78, 71, 32, 183, 202, 31, 87, 8, 236, 7, 7, 68, 79, 85, 66, 76, 69, 32, 242, 7, 83, 71, 86, 26, 48, 5, 65, 67, 82, 79, 78, 205, 5, 2, 73, 78, 23, 18, 32, 127, 45, 10, 34, 76, - 22, 82, 171, 207, 30, 66, 4, 41, 2, 69, 70, 4, 21, 3, 73, 71, 72, 4, 189, - 229, 16, 6, 84, 32, 72, 65, 76, 70, 10, 54, 86, 250, 20, 65, 150, 148, - 12, 71, 235, 176, 3, 66, 2, 205, 212, 31, 8, 69, 82, 84, 73, 67, 65, 76, - 45, 4, 164, 9, 9, 85, 77, 66, 69, 82, 32, 83, 73, 71, 129, 223, 11, 2, + 22, 82, 223, 194, 30, 66, 4, 41, 2, 69, 70, 4, 21, 3, 73, 71, 72, 4, 189, + 221, 16, 6, 84, 32, 72, 65, 76, 70, 10, 54, 86, 250, 20, 65, 150, 140, + 12, 71, 235, 176, 3, 66, 2, 129, 200, 31, 8, 69, 82, 84, 73, 67, 65, 76, + 45, 4, 164, 9, 9, 85, 77, 66, 69, 82, 32, 83, 73, 71, 129, 215, 11, 2, 79, 84, 18, 136, 1, 17, 76, 68, 32, 80, 69, 82, 77, 73, 67, 32, 76, 69, - 84, 84, 69, 82, 32, 82, 80, 216, 166, 12, 4, 71, 79, 78, 69, 167, 220, - 18, 86, 10, 198, 45, 90, 142, 163, 18, 78, 182, 166, 9, 68, 186, 176, 2, - 83, 239, 246, 1, 65, 2, 229, 224, 24, 6, 69, 78, 32, 77, 65, 82, 12, 18, - 65, 107, 76, 8, 220, 7, 9, 82, 69, 78, 84, 72, 69, 83, 69, 83, 173, 216, - 24, 9, 76, 65, 84, 65, 76, 73, 90, 69, 68, 4, 11, 85, 4, 241, 201, 30, 6, + 84, 84, 69, 82, 32, 82, 80, 216, 158, 12, 4, 71, 79, 78, 69, 219, 215, + 18, 86, 10, 198, 45, 90, 194, 150, 18, 78, 182, 166, 9, 68, 186, 176, 2, + 83, 239, 246, 1, 65, 2, 153, 212, 24, 6, 69, 78, 32, 77, 65, 82, 12, 18, + 65, 107, 76, 8, 220, 7, 9, 82, 69, 78, 84, 72, 69, 83, 69, 83, 225, 203, + 24, 9, 76, 65, 84, 65, 76, 73, 90, 69, 68, 4, 11, 85, 4, 165, 189, 30, 6, 83, 32, 83, 73, 71, 78, 40, 18, 69, 127, 73, 6, 72, 5, 86, 69, 82, 83, - 69, 141, 222, 24, 7, 84, 82, 79, 70, 76, 69, 88, 4, 22, 32, 251, 12, 68, + 69, 193, 209, 24, 7, 84, 82, 79, 70, 76, 69, 88, 4, 22, 32, 251, 12, 68, 2, 137, 8, 2, 83, 79, 34, 40, 3, 71, 72, 84, 133, 5, 2, 78, 71, 28, 50, 32, 253, 3, 7, 87, 65, 82, 68, 83, 32, 72, 26, 108, 5, 65, 82, 82, 79, 87, 218, 1, 72, 124, 12, 80, 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 32, - 159, 9, 84, 12, 44, 5, 72, 69, 65, 68, 32, 199, 198, 30, 32, 8, 26, 65, - 199, 198, 30, 66, 6, 36, 3, 78, 68, 32, 171, 235, 31, 66, 4, 40, 4, 68, - 79, 87, 78, 1, 2, 85, 80, 2, 249, 231, 8, 9, 32, 65, 82, 82, 79, 87, 72, + 159, 9, 84, 12, 44, 5, 72, 69, 65, 68, 32, 251, 185, 30, 32, 8, 26, 65, + 251, 185, 30, 66, 6, 36, 3, 78, 68, 32, 223, 222, 31, 66, 4, 40, 4, 68, + 79, 87, 78, 1, 2, 85, 80, 2, 197, 227, 8, 9, 32, 65, 82, 82, 79, 87, 72, 69, 65, 6, 11, 65, 6, 48, 6, 76, 70, 32, 82, 73, 78, 21, 2, 82, 80, 4, - 207, 196, 30, 71, 2, 17, 2, 79, 79, 2, 183, 233, 31, 78, 4, 146, 228, 9, - 65, 245, 174, 21, 5, 66, 69, 76, 79, 87, 2, 185, 161, 21, 16, 65, 82, 80, + 131, 184, 30, 71, 2, 17, 2, 79, 79, 2, 235, 220, 31, 78, 4, 222, 223, 9, + 65, 221, 166, 21, 5, 66, 69, 76, 79, 87, 2, 237, 148, 21, 16, 65, 82, 80, 79, 79, 78, 32, 87, 73, 84, 72, 32, 66, 65, 82, 66, 6, 11, 32, 6, 166, - 248, 11, 79, 254, 202, 18, 66, 131, 165, 1, 65, 24, 166, 1, 72, 204, 1, + 240, 11, 79, 178, 198, 18, 66, 131, 165, 1, 65, 24, 166, 1, 72, 204, 1, 6, 81, 85, 65, 82, 69, 32, 84, 5, 84, 82, 79, 78, 71, 128, 195, 3, 2, 85, - 83, 236, 145, 21, 2, 78, 65, 149, 234, 5, 6, 69, 65, 71, 85, 76, 76, 8, - 40, 4, 79, 82, 84, 32, 187, 194, 16, 65, 6, 18, 83, 71, 86, 4, 26, 79, - 187, 245, 11, 84, 2, 217, 245, 11, 5, 76, 73, 68, 85, 83, 2, 49, 10, 69, - 82, 84, 73, 67, 65, 76, 32, 76, 73, 2, 243, 244, 11, 78, 6, 26, 66, 227, - 228, 31, 65, 4, 216, 222, 7, 5, 82, 65, 67, 75, 69, 147, 225, 22, 69, 2, - 209, 212, 24, 17, 32, 67, 69, 78, 84, 82, 65, 76, 73, 90, 65, 84, 73, 79, + 83, 160, 133, 21, 2, 78, 65, 149, 234, 5, 6, 69, 65, 71, 85, 76, 76, 8, + 40, 4, 79, 82, 84, 32, 187, 186, 16, 65, 6, 18, 83, 71, 86, 4, 26, 79, + 187, 237, 11, 84, 2, 217, 237, 11, 5, 76, 73, 68, 85, 83, 2, 49, 10, 69, + 82, 84, 73, 67, 65, 76, 32, 76, 73, 2, 243, 236, 11, 78, 6, 26, 66, 151, + 216, 31, 65, 4, 164, 218, 7, 5, 82, 65, 67, 75, 69, 251, 216, 22, 69, 2, + 133, 200, 24, 17, 32, 67, 69, 78, 84, 82, 65, 76, 73, 90, 65, 84, 73, 79, 78, 32, 83, 20, 98, 72, 32, 4, 73, 76, 68, 69, 136, 1, 6, 82, 73, 80, 76, - 69, 32, 69, 5, 85, 82, 78, 69, 68, 2, 205, 220, 7, 3, 82, 69, 69, 11, 11, - 32, 8, 76, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 246, 241, 11, 79, 255, - 202, 18, 66, 2, 193, 173, 30, 6, 84, 32, 72, 65, 76, 70, 6, 178, 229, 15, - 65, 216, 229, 15, 5, 85, 78, 68, 69, 82, 239, 66, 68, 2, 249, 191, 15, 2, - 32, 67, 12, 34, 80, 170, 224, 31, 82, 3, 83, 8, 18, 32, 43, 87, 4, 11, - 84, 4, 133, 208, 24, 2, 65, 67, 4, 25, 4, 65, 82, 68, 83, 4, 189, 186, + 69, 32, 69, 5, 85, 82, 78, 69, 68, 2, 153, 216, 7, 3, 82, 69, 69, 11, 11, + 32, 8, 76, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 246, 233, 11, 79, 179, + 198, 18, 66, 2, 245, 160, 30, 6, 84, 32, 72, 65, 76, 70, 6, 178, 221, 15, + 65, 140, 225, 15, 5, 85, 78, 68, 69, 82, 239, 66, 68, 2, 249, 183, 15, 2, + 32, 67, 12, 34, 80, 222, 211, 31, 82, 3, 83, 8, 18, 32, 43, 87, 4, 11, + 84, 4, 185, 195, 24, 2, 65, 67, 4, 25, 4, 65, 82, 68, 83, 4, 241, 173, 30, 6, 32, 65, 82, 82, 79, 87, 16, 42, 32, 37, 6, 45, 76, 73, 78, 69, 45, - 6, 250, 169, 26, 76, 175, 202, 2, 84, 10, 54, 65, 48, 5, 71, 82, 65, 86, - 69, 139, 222, 15, 77, 4, 25, 4, 67, 85, 84, 69, 5, 147, 229, 11, 45, 5, - 143, 139, 12, 45, 6, 52, 3, 68, 69, 32, 137, 238, 11, 4, 71, 71, 76, 89, - 4, 132, 206, 24, 14, 73, 78, 86, 69, 82, 84, 69, 68, 32, 66, 82, 73, 68, - 71, 149, 229, 4, 5, 66, 82, 73, 68, 71, 6, 194, 245, 11, 45, 235, 193, - 18, 32, 6, 52, 7, 69, 82, 67, 73, 65, 76, 32, 219, 216, 32, 65, 4, 166, - 166, 29, 77, 135, 150, 3, 65, 8, 158, 166, 8, 82, 228, 161, 16, 3, 79, + 6, 174, 157, 26, 76, 175, 202, 2, 84, 10, 54, 65, 48, 5, 71, 82, 65, 86, + 69, 139, 214, 15, 77, 4, 25, 4, 67, 85, 84, 69, 5, 147, 221, 11, 45, 5, + 143, 131, 12, 45, 6, 52, 3, 68, 69, 32, 137, 230, 11, 4, 71, 71, 76, 89, + 4, 184, 193, 24, 14, 73, 78, 86, 69, 82, 84, 69, 68, 32, 66, 82, 73, 68, + 71, 149, 229, 4, 5, 66, 82, 73, 68, 71, 6, 194, 237, 11, 45, 159, 189, + 18, 32, 6, 52, 7, 69, 82, 67, 73, 65, 76, 32, 143, 204, 32, 65, 4, 218, + 153, 29, 77, 135, 150, 3, 65, 8, 234, 161, 8, 82, 204, 153, 16, 3, 79, 83, 73, 250, 244, 2, 76, 231, 130, 4, 65, 38, 214, 1, 70, 84, 10, 83, 84, 82, 85, 67, 84, 73, 79, 78, 32, 46, 84, 252, 235, 2, 8, 86, 69, 78, 73, - 69, 78, 67, 69, 204, 195, 18, 6, 73, 67, 65, 76, 32, 84, 234, 189, 9, 74, - 217, 102, 7, 71, 82, 85, 69, 78, 84, 32, 6, 140, 173, 27, 4, 69, 84, 84, - 73, 150, 242, 1, 85, 245, 163, 2, 4, 79, 85, 78, 68, 4, 240, 221, 20, 2, + 69, 78, 67, 69, 128, 183, 18, 6, 73, 67, 65, 76, 32, 84, 234, 189, 9, 74, + 217, 102, 7, 71, 82, 85, 69, 78, 84, 32, 6, 192, 160, 27, 4, 69, 84, 84, + 73, 150, 242, 1, 85, 245, 163, 2, 4, 79, 85, 78, 68, 4, 164, 209, 20, 2, 87, 79, 223, 240, 10, 83, 20, 80, 5, 65, 73, 78, 83, 32, 198, 1, 79, 28, 4, 82, 79, 76, 32, 183, 146, 3, 73, 12, 48, 3, 65, 83, 32, 93, 5, 87, 73, - 84, 72, 32, 6, 186, 172, 24, 77, 181, 8, 15, 78, 79, 82, 77, 65, 76, 32, - 83, 85, 66, 71, 82, 79, 85, 80, 6, 250, 195, 4, 76, 202, 233, 19, 86, - 239, 243, 4, 79, 2, 229, 200, 30, 2, 85, 82, 4, 144, 251, 19, 3, 75, 78, + 84, 72, 32, 6, 238, 159, 24, 77, 181, 8, 15, 78, 79, 82, 77, 65, 76, 32, + 83, 85, 66, 71, 82, 79, 85, 80, 6, 198, 191, 4, 76, 178, 225, 19, 86, + 239, 243, 4, 79, 2, 153, 188, 30, 2, 85, 82, 4, 196, 238, 19, 3, 75, 78, 79, 173, 134, 4, 8, 83, 69, 81, 85, 69, 78, 67, 69, 6, 26, 73, 147, 158, - 2, 69, 4, 150, 209, 32, 78, 87, 69, 206, 2, 36, 4, 84, 73, 67, 32, 175, + 2, 69, 4, 202, 196, 32, 78, 87, 69, 206, 2, 36, 4, 84, 73, 67, 32, 175, 18, 89, 202, 2, 186, 1, 67, 204, 1, 6, 69, 80, 65, 67, 84, 32, 86, 70, - 36, 11, 79, 76, 68, 32, 78, 85, 66, 73, 65, 78, 32, 110, 83, 213, 146, + 36, 11, 79, 76, 68, 32, 78, 85, 66, 73, 65, 78, 32, 110, 83, 137, 134, 29, 13, 77, 79, 82, 80, 72, 79, 76, 79, 71, 73, 67, 65, 76, 126, 76, 9, 79, 77, 66, 73, 78, 73, 78, 71, 32, 161, 3, 5, 65, 80, 73, 84, 65, 6, 68, - 9, 83, 80, 73, 82, 73, 84, 85, 83, 32, 201, 209, 31, 2, 78, 73, 4, 128, - 156, 6, 2, 76, 69, 181, 144, 17, 2, 65, 83, 56, 158, 188, 21, 78, 170, - 198, 2, 68, 141, 250, 6, 8, 84, 72, 79, 85, 83, 65, 78, 68, 4, 218, 187, - 18, 82, 195, 188, 11, 85, 8, 58, 68, 0, 3, 73, 78, 68, 146, 15, 86, 163, - 232, 29, 70, 2, 253, 247, 29, 7, 73, 82, 69, 67, 84, 32, 81, 134, 1, 56, + 9, 83, 80, 73, 82, 73, 84, 85, 83, 32, 253, 196, 31, 2, 78, 73, 4, 204, + 151, 6, 2, 76, 69, 157, 136, 17, 2, 65, 83, 56, 210, 175, 21, 78, 170, + 198, 2, 68, 141, 250, 6, 8, 84, 72, 79, 85, 83, 65, 78, 68, 4, 142, 175, + 18, 82, 195, 188, 11, 85, 8, 58, 68, 0, 3, 73, 78, 68, 146, 15, 86, 215, + 219, 29, 70, 2, 177, 235, 29, 7, 73, 82, 69, 67, 84, 32, 81, 134, 1, 56, 3, 77, 65, 76, 197, 11, 6, 89, 77, 66, 79, 76, 32, 120, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 120, 138, 2, 65, 48, 6, 66, 79, 72, 65, 73, 82, 32, 2, 67, 82, 170, 1, 68, 160, 1, 2, 71, 65, 34, 72, 38, 75, 46, 70, - 34, 76, 66, 79, 138, 3, 83, 90, 84, 46, 90, 202, 218, 5, 86, 214, 54, 80, - 170, 211, 3, 73, 142, 189, 22, 82, 198, 3, 69, 218, 7, 77, 2, 78, 163, - 17, 85, 4, 44, 5, 75, 72, 77, 73, 77, 171, 208, 19, 76, 2, 177, 1, 4, 73, + 34, 76, 66, 79, 138, 3, 83, 90, 84, 46, 90, 150, 214, 5, 86, 214, 54, 80, + 170, 211, 3, 73, 246, 180, 22, 82, 198, 3, 69, 218, 7, 77, 2, 78, 163, + 17, 85, 4, 44, 5, 75, 72, 77, 73, 77, 223, 195, 19, 76, 2, 177, 1, 4, 73, 67, 32, 75, 10, 92, 12, 89, 80, 84, 79, 71, 82, 65, 77, 77, 73, 67, 32, - 53, 7, 79, 83, 83, 69, 68, 32, 83, 8, 50, 83, 226, 4, 71, 198, 167, 32, - 69, 219, 7, 78, 2, 187, 240, 24, 72, 12, 80, 9, 73, 65, 76, 69, 67, 84, - 45, 80, 32, 232, 161, 32, 2, 65, 76, 175, 17, 69, 8, 206, 163, 8, 72, - 174, 158, 8, 65, 200, 199, 12, 2, 75, 65, 211, 169, 3, 78, 4, 190, 3, 78, - 211, 161, 32, 77, 4, 178, 218, 25, 79, 187, 162, 5, 65, 8, 42, 72, 138, - 136, 29, 65, 211, 169, 3, 83, 4, 214, 177, 32, 69, 219, 19, 73, 4, 252, - 205, 19, 7, 45, 83, 72, 65, 80, 69, 68, 239, 251, 7, 65, 35, 36, 3, 76, - 68, 32, 195, 159, 32, 79, 30, 76, 7, 67, 79, 80, 84, 73, 67, 32, 193, 1, + 53, 7, 79, 83, 83, 69, 68, 32, 83, 8, 50, 83, 226, 4, 71, 250, 154, 32, + 69, 219, 7, 78, 2, 239, 227, 24, 72, 12, 80, 9, 73, 65, 76, 69, 67, 84, + 45, 80, 32, 156, 149, 32, 2, 65, 76, 175, 17, 69, 8, 154, 159, 8, 72, + 226, 154, 8, 65, 252, 194, 12, 2, 75, 65, 211, 169, 3, 78, 4, 190, 3, 78, + 135, 149, 32, 77, 4, 230, 205, 25, 79, 187, 162, 5, 65, 8, 42, 72, 190, + 251, 28, 65, 211, 169, 3, 83, 4, 138, 165, 32, 69, 219, 19, 73, 4, 176, + 193, 19, 7, 45, 83, 72, 65, 80, 69, 68, 239, 251, 7, 65, 35, 36, 3, 76, + 68, 32, 247, 146, 32, 79, 30, 76, 7, 67, 79, 80, 84, 73, 67, 32, 193, 1, 7, 78, 85, 66, 73, 65, 78, 32, 22, 98, 71, 42, 72, 188, 1, 2, 83, 72, - 162, 236, 14, 68, 238, 253, 9, 79, 254, 235, 5, 69, 183, 107, 65, 2, 17, - 2, 65, 78, 2, 231, 137, 16, 71, 8, 254, 214, 25, 79, 246, 130, 1, 65, - 131, 213, 5, 69, 8, 50, 78, 172, 192, 16, 2, 83, 72, 223, 158, 5, 87, 4, - 138, 174, 32, 71, 3, 89, 10, 54, 72, 238, 157, 6, 65, 190, 254, 25, 79, - 219, 3, 73, 4, 254, 159, 32, 73, 187, 13, 69, 4, 224, 147, 32, 3, 72, 69, - 84, 167, 8, 65, 2, 247, 155, 32, 65, 14, 62, 75, 30, 77, 2, 80, 22, 83, - 133, 132, 28, 3, 84, 65, 85, 4, 26, 72, 255, 171, 32, 65, 2, 151, 132, - 28, 73, 4, 132, 190, 16, 6, 72, 73, 77, 65, 32, 83, 193, 255, 3, 3, 84, - 65, 85, 4, 164, 220, 24, 3, 76, 69, 70, 133, 151, 2, 4, 82, 73, 71, 72, - 6, 96, 6, 78, 73, 83, 72, 32, 86, 188, 220, 25, 8, 82, 69, 83, 80, 79, - 78, 68, 83, 203, 213, 5, 65, 2, 241, 131, 29, 4, 69, 82, 83, 69, 44, 104, - 2, 78, 84, 192, 132, 3, 6, 67, 72, 32, 65, 78, 68, 201, 176, 28, 8, 80, + 162, 228, 14, 68, 162, 249, 9, 79, 254, 235, 5, 69, 183, 107, 65, 2, 17, + 2, 65, 78, 2, 231, 129, 16, 71, 8, 178, 202, 25, 79, 246, 130, 1, 65, + 131, 213, 5, 69, 8, 50, 78, 172, 184, 16, 2, 83, 72, 147, 154, 5, 87, 4, + 190, 161, 32, 71, 3, 89, 10, 54, 72, 186, 153, 6, 65, 166, 246, 25, 79, + 219, 3, 73, 4, 178, 147, 32, 73, 187, 13, 69, 4, 148, 135, 32, 3, 72, 69, + 84, 167, 8, 65, 2, 171, 143, 32, 65, 14, 62, 75, 30, 77, 2, 80, 22, 83, + 185, 247, 27, 3, 84, 65, 85, 4, 26, 72, 179, 159, 32, 65, 2, 203, 247, + 27, 73, 4, 132, 182, 16, 6, 72, 73, 77, 65, 32, 83, 245, 250, 3, 3, 84, + 65, 85, 4, 216, 207, 24, 3, 76, 69, 70, 133, 151, 2, 4, 82, 73, 71, 72, + 6, 96, 6, 78, 73, 83, 72, 32, 86, 240, 207, 25, 8, 82, 69, 83, 80, 79, + 78, 68, 83, 203, 213, 5, 65, 2, 165, 247, 28, 4, 69, 82, 83, 69, 44, 104, + 2, 78, 84, 192, 132, 3, 6, 67, 72, 32, 65, 78, 68, 253, 163, 28, 8, 80, 76, 69, 32, 87, 73, 84, 72, 40, 56, 2, 69, 82, 37, 8, 73, 78, 71, 32, 82, - 79, 68, 32, 4, 246, 206, 27, 66, 167, 136, 1, 83, 36, 48, 4, 84, 69, 78, - 83, 1, 4, 85, 78, 73, 84, 18, 221, 239, 23, 2, 32, 68, 51, 82, 69, 76, 5, - 73, 67, 75, 69, 84, 34, 79, 198, 5, 85, 50, 89, 235, 245, 30, 65, 4, 240, - 175, 8, 3, 68, 73, 84, 165, 224, 20, 7, 83, 67, 69, 78, 84, 32, 77, 5, - 205, 144, 27, 3, 32, 66, 65, 28, 84, 2, 83, 83, 180, 144, 30, 3, 67, 79, + 79, 68, 32, 4, 170, 194, 27, 66, 167, 136, 1, 83, 36, 48, 4, 84, 69, 78, + 83, 1, 4, 85, 78, 73, 84, 18, 145, 227, 23, 2, 32, 68, 51, 82, 69, 76, 5, + 73, 67, 75, 69, 84, 34, 79, 198, 5, 85, 50, 89, 159, 233, 30, 65, 4, 188, + 171, 8, 3, 68, 73, 84, 141, 216, 20, 7, 83, 67, 69, 78, 84, 32, 77, 5, + 129, 132, 27, 3, 32, 66, 65, 28, 84, 2, 83, 83, 232, 131, 30, 3, 67, 79, 68, 208, 156, 1, 3, 73, 83, 83, 155, 60, 87, 22, 46, 32, 184, 2, 3, 69, - 68, 32, 223, 1, 73, 14, 44, 3, 79, 70, 32, 82, 80, 163, 246, 31, 77, 4, - 216, 202, 28, 6, 74, 69, 82, 85, 83, 65, 133, 210, 2, 5, 76, 79, 82, 82, + 68, 32, 223, 1, 73, 14, 44, 3, 79, 70, 32, 82, 80, 215, 233, 31, 77, 4, + 140, 190, 28, 6, 74, 69, 82, 85, 83, 65, 133, 210, 2, 5, 76, 79, 82, 82, 65, 8, 76, 10, 65, 84, 84, 89, 32, 87, 73, 84, 72, 32, 41, 5, 79, 77, 77, - 69, 69, 4, 206, 173, 10, 82, 25, 3, 76, 69, 70, 5, 225, 161, 3, 11, 32, - 87, 73, 84, 72, 32, 72, 65, 76, 70, 45, 6, 168, 152, 25, 37, 78, 69, 71, + 69, 69, 4, 206, 165, 10, 82, 25, 3, 76, 69, 70, 5, 225, 161, 3, 11, 32, + 87, 73, 84, 72, 32, 72, 65, 76, 70, 45, 6, 220, 139, 25, 37, 78, 69, 71, 65, 84, 73, 86, 69, 32, 83, 81, 85, 65, 82, 69, 68, 32, 76, 65, 84, 73, 78, 32, 67, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 82, 248, 226, - 2, 2, 70, 76, 177, 216, 2, 3, 83, 87, 79, 2, 233, 254, 23, 5, 78, 71, 32, - 76, 65, 4, 184, 214, 17, 3, 90, 69, 73, 175, 187, 14, 84, 6, 214, 234, + 2, 2, 70, 76, 177, 216, 2, 3, 83, 87, 79, 2, 157, 242, 23, 5, 78, 71, 32, + 76, 65, 4, 176, 206, 17, 3, 90, 69, 73, 235, 182, 14, 84, 6, 138, 222, 19, 73, 141, 160, 7, 4, 83, 84, 65, 76, 206, 19, 154, 1, 66, 20, 8, 78, 69, 73, 70, 79, 82, 77, 32, 154, 250, 1, 80, 114, 82, 180, 3, 2, 83, 84, - 226, 234, 15, 67, 161, 191, 13, 6, 84, 32, 79, 70, 32, 77, 2, 179, 182, + 150, 222, 15, 67, 161, 191, 13, 6, 84, 32, 79, 70, 32, 77, 2, 255, 177, 5, 69, 170, 19, 176, 1, 13, 78, 85, 77, 69, 82, 73, 67, 32, 83, 73, 71, 78, 32, 184, 20, 17, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 83, 73, 71, 78, 32, 233, 1, 5, 83, 73, 71, 78, 32, 222, 1, 78, 69, 166, 2, 70, 152, 3, 2, 78, 73, 154, 2, 79, 130, 3, 83, 151, 4, 84, 24, 68, 5, 73, 71, 72, 84, 32, 153, 1, 7, 76, 65, 77, 73, 84, 69, 32, 16, 142, 14, 83, 230, 113, 85, 238, 50, 71, 136, 56, 17, 86, 65, 82, 73, 65, 78, 84, 32, - 70, 79, 82, 77, 32, 85, 83, 83, 85, 242, 223, 26, 68, 199, 249, 1, 65, 8, - 252, 155, 21, 5, 79, 78, 69, 32, 84, 234, 160, 9, 70, 175, 14, 84, 58, + 70, 79, 82, 77, 32, 85, 83, 83, 85, 166, 211, 26, 68, 199, 249, 1, 65, 8, + 176, 143, 21, 5, 79, 78, 69, 32, 84, 234, 160, 9, 70, 175, 14, 84, 58, 48, 4, 73, 86, 69, 32, 125, 4, 79, 85, 82, 32, 26, 70, 83, 206, 1, 66, - 250, 12, 65, 82, 71, 138, 110, 85, 231, 202, 27, 68, 6, 182, 15, 72, 245, - 158, 19, 5, 73, 88, 84, 72, 83, 32, 150, 1, 66, 44, 18, 86, 65, 82, 73, + 250, 12, 65, 82, 71, 138, 110, 85, 155, 190, 27, 68, 6, 182, 15, 72, 169, + 146, 19, 5, 73, 88, 84, 72, 83, 32, 150, 1, 66, 44, 18, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, 77, 32, 76, 73, 77, 77, 85, 206, 12, 65, 82, - 71, 26, 83, 242, 109, 85, 231, 202, 27, 68, 6, 204, 123, 3, 65, 78, 50, - 183, 237, 26, 85, 9, 206, 211, 12, 32, 135, 215, 19, 52, 24, 44, 4, 71, - 73, 68, 65, 33, 3, 78, 69, 32, 4, 246, 190, 30, 69, 183, 107, 77, 20, + 71, 26, 83, 242, 109, 85, 155, 190, 27, 68, 6, 204, 123, 3, 65, 78, 50, + 235, 224, 26, 85, 9, 206, 203, 12, 32, 187, 210, 19, 52, 24, 44, 4, 71, + 73, 68, 65, 33, 3, 78, 69, 32, 4, 170, 178, 30, 69, 183, 107, 77, 20, 156, 1, 19, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, 77, 32, 73, 76, - 73, 77, 77, 85, 174, 7, 83, 230, 113, 85, 238, 50, 71, 250, 151, 27, 68, - 199, 249, 1, 65, 9, 134, 166, 32, 32, 186, 2, 51, 3, 52, 28, 92, 16, 76, + 73, 77, 77, 85, 174, 7, 83, 230, 113, 85, 238, 50, 71, 174, 139, 27, 68, + 199, 249, 1, 65, 9, 186, 153, 32, 32, 186, 2, 51, 3, 52, 28, 92, 16, 76, 68, 32, 65, 83, 83, 89, 82, 73, 65, 78, 32, 79, 78, 69, 32, 37, 3, 78, - 69, 32, 4, 246, 208, 18, 83, 219, 208, 11, 81, 24, 166, 1, 69, 52, 8, 81, + 69, 32, 4, 170, 196, 18, 83, 219, 208, 11, 81, 24, 166, 1, 69, 52, 8, 81, 85, 65, 82, 84, 69, 82, 32, 206, 7, 66, 54, 71, 84, 5, 84, 72, 73, 82, - 68, 164, 214, 24, 2, 83, 72, 237, 205, 6, 6, 72, 65, 76, 70, 32, 71, 4, - 158, 8, 83, 205, 164, 1, 5, 73, 71, 72, 84, 72, 4, 174, 186, 30, 65, 183, + 68, 216, 201, 24, 2, 83, 72, 237, 205, 6, 6, 72, 65, 76, 70, 32, 71, 4, + 158, 8, 83, 205, 164, 1, 5, 73, 71, 72, 84, 72, 4, 226, 173, 30, 65, 183, 114, 71, 38, 144, 1, 5, 69, 86, 69, 78, 32, 188, 1, 20, 72, 65, 82, 50, 32, 84, 73, 77, 69, 83, 32, 71, 65, 76, 32, 80, 76, 85, 83, 32, 37, 3, 73, 88, 32, 18, 148, 1, 17, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, - 77, 32, 73, 77, 73, 78, 218, 1, 83, 230, 113, 85, 238, 50, 71, 250, 151, - 27, 68, 199, 249, 1, 65, 6, 230, 203, 12, 32, 135, 215, 19, 51, 4, 250, - 189, 28, 68, 251, 228, 2, 77, 16, 142, 1, 83, 142, 3, 65, 218, 110, 85, - 238, 50, 71, 172, 130, 27, 16, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, + 77, 32, 73, 77, 73, 78, 218, 1, 83, 230, 113, 85, 238, 50, 71, 174, 139, + 27, 68, 199, 249, 1, 65, 6, 230, 195, 12, 32, 187, 210, 19, 51, 4, 174, + 177, 28, 68, 251, 228, 2, 77, 16, 142, 1, 83, 142, 3, 65, 218, 110, 85, + 238, 50, 71, 224, 245, 26, 16, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, 77, 32, 65, 83, 72, 207, 21, 68, 2, 227, 61, 72, 50, 52, 5, 72, 82, 69, 69, 32, 241, 1, 3, 87, 79, 32, 28, 142, 1, 66, 40, 4, 83, 72, 65, 82, 24, 16, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, 77, 32, 69, 83, 72, - 118, 65, 82, 71, 239, 184, 28, 68, 6, 136, 112, 3, 85, 82, 85, 199, 10, - 65, 8, 226, 111, 50, 3, 85, 4, 222, 243, 24, 49, 203, 3, 50, 22, 82, 65, + 118, 65, 82, 71, 163, 172, 28, 68, 6, 136, 112, 3, 85, 82, 85, 199, 10, + 65, 8, 226, 111, 50, 3, 85, 4, 146, 231, 24, 49, 203, 3, 50, 22, 82, 65, 30, 66, 32, 2, 69, 83, 22, 71, 26, 83, 61, 6, 84, 72, 73, 82, 68, 83, 4, - 225, 184, 1, 2, 83, 72, 4, 254, 120, 65, 243, 226, 26, 85, 2, 211, 246, - 24, 72, 4, 53, 3, 69, 83, 72, 4, 11, 72, 4, 17, 2, 65, 82, 4, 254, 156, - 32, 50, 3, 85, 4, 11, 32, 4, 216, 211, 27, 12, 86, 65, 82, 73, 65, 78, + 225, 184, 1, 2, 83, 72, 4, 254, 120, 65, 167, 214, 26, 85, 2, 135, 234, + 24, 72, 4, 53, 3, 69, 83, 72, 4, 11, 72, 4, 17, 2, 65, 82, 4, 178, 144, + 32, 50, 3, 85, 4, 11, 32, 4, 140, 199, 27, 12, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, 77, 179, 100, 68, 10, 160, 1, 9, 68, 73, 65, 71, 79, - 78, 65, 76, 32, 220, 222, 25, 6, 86, 69, 82, 84, 73, 67, 145, 130, 3, 14, - 79, 76, 68, 32, 65, 83, 83, 89, 82, 73, 65, 78, 32, 87, 6, 220, 203, 28, + 78, 65, 76, 32, 144, 210, 25, 6, 86, 69, 82, 84, 73, 67, 145, 130, 3, 14, + 79, 76, 68, 32, 65, 83, 83, 89, 82, 73, 65, 78, 32, 87, 6, 144, 191, 28, 2, 84, 82, 244, 254, 2, 4, 81, 85, 65, 68, 15, 67, 194, 17, 202, 1, 65, 186, 15, 66, 170, 5, 68, 190, 15, 69, 202, 10, 71, 182, 30, 72, 238, 3, 73, 238, 4, 75, 154, 20, 76, 134, 37, 77, 134, 6, 78, 226, 17, 80, 210, 3, 82, 42, 83, 238, 19, 84, 186, 8, 85, 207, 20, 90, 141, 1, 160, 1, 7, 32, 84, 73, 77, 69, 83, 32, 142, 1, 66, 250, 3, 68, 38, 75, 90, 76, 212, - 1, 3, 77, 65, 82, 78, 78, 134, 2, 82, 42, 83, 138, 141, 31, 80, 215, 127, - 50, 16, 144, 173, 1, 5, 76, 65, 71, 65, 82, 226, 23, 71, 254, 253, 12, - 73, 174, 197, 13, 77, 162, 163, 2, 83, 194, 165, 1, 66, 246, 67, 72, 187, + 1, 3, 77, 65, 82, 78, 78, 134, 2, 82, 42, 83, 190, 128, 31, 80, 215, 127, + 50, 16, 144, 173, 1, 5, 76, 65, 71, 65, 82, 226, 23, 71, 254, 245, 12, + 73, 226, 192, 13, 77, 162, 163, 2, 83, 194, 165, 1, 66, 246, 67, 72, 187, 2, 65, 45, 22, 32, 219, 2, 50, 28, 48, 6, 84, 73, 77, 69, 83, 32, 139, 203, 1, 71, 26, 180, 1, 2, 71, 65, 38, 73, 36, 2, 83, 72, 128, 113, 8, 85, 32, 80, 76, 85, 83, 32, 85, 188, 56, 4, 68, 85, 78, 51, 166, 2, 65, - 204, 2, 3, 78, 85, 78, 242, 27, 76, 255, 198, 30, 72, 4, 194, 210, 1, 78, - 215, 193, 30, 76, 4, 210, 169, 1, 71, 207, 234, 29, 77, 4, 142, 236, 24, + 204, 2, 3, 78, 85, 78, 242, 27, 76, 179, 186, 30, 72, 4, 194, 210, 1, 78, + 139, 181, 30, 76, 4, 210, 169, 1, 71, 131, 222, 29, 77, 4, 194, 223, 24, 85, 187, 188, 5, 69, 15, 37, 7, 32, 84, 73, 77, 69, 83, 32, 12, 206, 133, - 1, 77, 130, 59, 71, 194, 9, 83, 234, 10, 84, 148, 210, 28, 2, 66, 65, + 1, 77, 130, 59, 71, 194, 9, 83, 234, 10, 84, 200, 197, 28, 2, 66, 65, 251, 235, 1, 65, 5, 249, 51, 5, 32, 84, 73, 77, 69, 7, 37, 7, 32, 84, 73, 77, 69, 83, 32, 4, 252, 27, 5, 83, 72, 73, 84, 65, 215, 80, 69, 23, 68, - 7, 32, 84, 73, 77, 69, 83, 32, 234, 221, 25, 69, 155, 227, 5, 65, 16, - 102, 75, 156, 173, 1, 2, 68, 73, 146, 254, 26, 71, 198, 249, 1, 85, 186, - 95, 65, 198, 94, 83, 215, 42, 72, 4, 130, 158, 1, 65, 247, 241, 30, 73, - 7, 37, 7, 32, 84, 73, 77, 69, 83, 32, 4, 142, 254, 3, 75, 147, 228, 27, - 83, 13, 26, 32, 227, 225, 31, 83, 8, 128, 1, 10, 80, 76, 85, 83, 32, 78, - 65, 71, 65, 32, 172, 192, 8, 7, 84, 72, 82, 69, 69, 32, 84, 141, 131, 6, + 7, 32, 84, 73, 77, 69, 83, 32, 158, 209, 25, 69, 155, 227, 5, 65, 16, + 102, 75, 156, 173, 1, 2, 68, 73, 198, 241, 26, 71, 198, 249, 1, 85, 186, + 95, 65, 198, 94, 83, 215, 42, 72, 4, 130, 158, 1, 65, 171, 229, 30, 73, + 7, 37, 7, 32, 84, 73, 77, 69, 83, 32, 4, 218, 249, 3, 75, 251, 219, 27, + 83, 13, 26, 32, 151, 213, 31, 83, 8, 128, 1, 10, 80, 76, 85, 83, 32, 78, + 65, 71, 65, 32, 248, 187, 8, 7, 84, 72, 82, 69, 69, 32, 84, 193, 255, 5, 4, 79, 86, 69, 82, 4, 144, 140, 1, 16, 79, 80, 80, 79, 83, 73, 78, 71, - 32, 65, 78, 32, 80, 76, 85, 83, 215, 195, 23, 83, 6, 200, 49, 2, 65, 68, - 151, 166, 18, 75, 18, 26, 72, 139, 173, 12, 65, 17, 42, 32, 242, 214, 18, + 32, 65, 78, 32, 80, 76, 85, 83, 139, 183, 23, 83, 6, 200, 49, 2, 65, 68, + 203, 153, 18, 75, 18, 26, 72, 139, 165, 12, 65, 17, 42, 32, 166, 202, 18, 71, 167, 181, 13, 50, 10, 68, 9, 79, 86, 69, 82, 32, 65, 83, 72, 32, 174, 97, 90, 135, 112, 75, 6, 176, 1, 8, 79, 86, 69, 82, 32, 65, 83, 72, 157, 143, 1, 29, 84, 85, 71, 50, 32, 79, 86, 69, 82, 32, 84, 85, 71, 50, 32, 84, 85, 71, 50, 32, 79, 86, 69, 82, 32, 84, 85, 71, 50, 5, 149, 145, 1, 27, 32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 65, 83, 72, 32, 79, 86, 69, 82, 32, 65, 83, 72, 32, 79, 86, 69, 82, 52, 30, 65, 158, 2, 73, 95, 85, - 27, 66, 68, 44, 4, 72, 65, 82, 50, 90, 76, 66, 82, 151, 140, 28, 71, 5, + 27, 66, 68, 44, 4, 72, 65, 82, 50, 90, 76, 66, 82, 203, 255, 27, 71, 5, 145, 208, 1, 6, 32, 84, 73, 77, 69, 83, 9, 37, 7, 32, 84, 73, 77, 69, 83, - 32, 6, 238, 164, 1, 65, 154, 207, 30, 78, 163, 17, 90, 7, 208, 251, 30, - 7, 32, 79, 86, 69, 82, 32, 66, 139, 139, 1, 65, 5, 175, 223, 24, 65, 9, - 37, 7, 32, 84, 73, 77, 69, 83, 32, 6, 134, 156, 1, 73, 242, 198, 29, 71, + 32, 6, 238, 164, 1, 65, 206, 194, 30, 78, 163, 17, 90, 7, 132, 239, 30, + 7, 32, 79, 86, 69, 82, 32, 66, 139, 139, 1, 65, 5, 227, 210, 24, 65, 9, + 37, 7, 32, 84, 73, 77, 69, 83, 32, 6, 134, 156, 1, 73, 166, 186, 29, 71, 191, 163, 1, 65, 19, 50, 32, 168, 1, 3, 76, 85, 71, 239, 169, 1, 82, 8, - 88, 8, 79, 86, 69, 82, 32, 66, 85, 32, 149, 208, 27, 8, 67, 82, 79, 83, - 83, 73, 78, 71, 6, 160, 207, 12, 7, 84, 73, 77, 69, 83, 32, 78, 214, 247, - 17, 65, 155, 110, 85, 5, 249, 242, 3, 8, 32, 79, 86, 69, 82, 32, 66, 85, + 88, 8, 79, 86, 69, 82, 32, 66, 85, 32, 201, 195, 27, 8, 67, 82, 79, 83, + 83, 73, 78, 71, 6, 160, 199, 12, 7, 84, 73, 77, 69, 83, 32, 78, 138, 243, + 17, 65, 155, 110, 85, 5, 197, 238, 3, 8, 32, 79, 86, 69, 82, 32, 66, 85, 180, 1, 34, 65, 222, 5, 73, 195, 2, 85, 67, 50, 71, 150, 5, 82, 146, 49, - 32, 243, 204, 31, 77, 55, 26, 32, 251, 130, 32, 51, 50, 76, 13, 75, 73, + 32, 167, 192, 31, 77, 55, 26, 32, 175, 246, 31, 51, 50, 76, 13, 75, 73, 83, 73, 77, 53, 32, 84, 73, 77, 69, 83, 32, 227, 198, 1, 84, 48, 146, 1, 65, 30, 66, 38, 71, 112, 2, 73, 82, 42, 76, 94, 85, 182, 131, 1, 80, 162, - 61, 84, 134, 133, 28, 75, 182, 162, 2, 78, 254, 2, 83, 163, 17, 72, 4, - 110, 32, 235, 220, 30, 77, 4, 254, 148, 30, 65, 251, 235, 1, 73, 10, 34, - 65, 58, 73, 219, 185, 31, 85, 5, 11, 32, 2, 141, 149, 30, 6, 80, 76, 85, - 83, 32, 77, 5, 183, 216, 24, 82, 5, 129, 142, 14, 5, 32, 80, 76, 85, 83, - 8, 26, 85, 163, 255, 31, 65, 7, 160, 151, 1, 7, 32, 80, 76, 85, 83, 32, - 77, 255, 231, 30, 77, 6, 52, 7, 50, 32, 80, 76, 85, 83, 32, 155, 253, 31, - 83, 4, 128, 27, 2, 71, 73, 147, 248, 29, 77, 7, 187, 202, 12, 65, 25, 54, - 77, 150, 1, 78, 76, 2, 83, 72, 215, 251, 31, 66, 13, 44, 7, 32, 84, 73, - 77, 69, 83, 32, 59, 50, 6, 220, 69, 2, 85, 32, 238, 226, 13, 73, 175, - 167, 17, 83, 5, 205, 166, 13, 6, 32, 84, 73, 77, 69, 83, 5, 253, 253, 18, + 61, 84, 186, 248, 27, 75, 182, 162, 2, 78, 254, 2, 83, 163, 17, 72, 4, + 110, 32, 159, 208, 30, 77, 4, 178, 136, 30, 65, 251, 235, 1, 73, 10, 34, + 65, 58, 73, 143, 173, 31, 85, 5, 11, 32, 2, 193, 136, 30, 6, 80, 76, 85, + 83, 32, 77, 5, 235, 203, 24, 82, 5, 129, 134, 14, 5, 32, 80, 76, 85, 83, + 8, 26, 85, 215, 242, 31, 65, 7, 160, 151, 1, 7, 32, 80, 76, 85, 83, 32, + 77, 179, 219, 30, 77, 6, 52, 7, 50, 32, 80, 76, 85, 83, 32, 207, 240, 31, + 83, 4, 128, 27, 2, 71, 73, 199, 235, 29, 77, 7, 187, 194, 12, 65, 25, 54, + 77, 150, 1, 78, 76, 2, 83, 72, 139, 239, 31, 66, 13, 44, 7, 32, 84, 73, + 77, 69, 83, 32, 59, 50, 6, 220, 69, 2, 85, 32, 238, 218, 13, 73, 227, + 162, 17, 83, 5, 205, 158, 13, 6, 32, 84, 73, 77, 69, 83, 5, 177, 241, 18, 14, 32, 75, 65, 83, 75, 65, 76, 32, 85, 32, 71, 85, 78, 85, 5, 245, 157, - 1, 5, 32, 80, 76, 85, 83, 91, 70, 32, 66, 66, 94, 71, 234, 4, 78, 162, - 205, 24, 82, 195, 167, 7, 72, 6, 154, 176, 1, 71, 170, 3, 83, 181, 211, - 12, 4, 79, 86, 69, 82, 9, 52, 7, 32, 84, 73, 77, 69, 83, 32, 239, 249, - 31, 50, 4, 250, 145, 1, 69, 231, 186, 30, 83, 61, 52, 7, 32, 84, 73, 77, - 69, 83, 32, 243, 178, 31, 85, 56, 122, 65, 58, 68, 30, 71, 74, 75, 90, - 76, 110, 77, 50, 83, 130, 80, 69, 218, 58, 73, 130, 213, 16, 72, 214, - 129, 14, 78, 3, 80, 6, 32, 2, 83, 72, 219, 202, 31, 78, 5, 251, 220, 14, - 32, 4, 250, 167, 31, 73, 3, 85, 8, 26, 73, 167, 247, 31, 65, 7, 140, 141, - 1, 2, 82, 50, 135, 233, 30, 83, 8, 26, 85, 211, 185, 1, 65, 6, 40, 4, 83, - 72, 85, 50, 179, 246, 31, 82, 5, 175, 26, 32, 8, 26, 65, 45, 2, 85, 72, - 6, 202, 26, 77, 169, 178, 24, 3, 75, 45, 48, 2, 225, 57, 5, 32, 80, 76, - 85, 83, 6, 170, 138, 30, 65, 174, 173, 1, 69, 223, 61, 73, 4, 238, 138, - 1, 73, 195, 211, 30, 72, 11, 26, 51, 199, 244, 31, 52, 7, 143, 9, 32, + 1, 5, 32, 80, 76, 85, 83, 91, 70, 32, 66, 66, 94, 71, 234, 4, 78, 214, + 192, 24, 82, 195, 167, 7, 72, 6, 154, 176, 1, 71, 170, 3, 83, 181, 203, + 12, 4, 79, 86, 69, 82, 9, 52, 7, 32, 84, 73, 77, 69, 83, 32, 163, 237, + 31, 50, 4, 250, 145, 1, 69, 155, 174, 30, 83, 61, 52, 7, 32, 84, 73, 77, + 69, 83, 32, 167, 166, 31, 85, 56, 122, 65, 58, 68, 30, 71, 74, 75, 90, + 76, 110, 77, 50, 83, 130, 80, 69, 218, 58, 73, 182, 200, 16, 72, 214, + 129, 14, 78, 3, 80, 6, 32, 2, 83, 72, 143, 190, 31, 78, 5, 251, 212, 14, + 32, 4, 174, 155, 31, 73, 3, 85, 8, 26, 73, 219, 234, 31, 65, 7, 140, 141, + 1, 2, 82, 50, 187, 220, 30, 83, 8, 26, 85, 211, 185, 1, 65, 6, 40, 4, 83, + 72, 85, 50, 231, 233, 31, 82, 5, 175, 26, 32, 8, 26, 65, 45, 2, 85, 72, + 6, 202, 26, 77, 221, 165, 24, 3, 75, 45, 48, 2, 225, 57, 5, 32, 80, 76, + 85, 83, 6, 222, 253, 29, 65, 174, 173, 1, 69, 223, 61, 73, 4, 238, 138, + 1, 73, 247, 198, 30, 72, 11, 26, 51, 251, 231, 31, 52, 7, 143, 9, 32, 117, 130, 1, 32, 90, 50, 210, 1, 78, 202, 1, 82, 60, 3, 83, 72, 50, 52, - 3, 90, 69, 78, 242, 239, 18, 71, 142, 255, 11, 68, 215, 127, 76, 4, 168, + 3, 90, 69, 78, 166, 227, 18, 71, 142, 255, 11, 68, 215, 127, 76, 4, 168, 25, 11, 79, 86, 69, 82, 32, 69, 32, 78, 85, 78, 32, 253, 94, 4, 84, 73, 77, 69, 19, 37, 7, 32, 84, 73, 77, 69, 83, 32, 16, 134, 1, 83, 144, 168, - 1, 10, 65, 32, 80, 76, 85, 83, 32, 72, 65, 32, 222, 165, 29, 71, 182, 16, - 80, 182, 26, 75, 254, 100, 77, 219, 19, 85, 4, 214, 229, 30, 65, 255, + 1, 10, 65, 32, 80, 76, 85, 83, 32, 72, 65, 32, 146, 153, 29, 71, 182, 16, + 80, 182, 26, 75, 254, 100, 77, 219, 19, 85, 4, 138, 217, 30, 65, 255, 116, 72, 15, 11, 32, 12, 96, 4, 67, 82, 79, 83, 0, 4, 79, 80, 80, 79, 36, - 6, 84, 73, 77, 69, 83, 32, 247, 177, 24, 83, 2, 245, 160, 14, 4, 83, 73, - 78, 71, 6, 204, 138, 1, 4, 71, 65, 78, 50, 211, 206, 30, 77, 6, 36, 3, - 73, 78, 50, 187, 159, 31, 69, 5, 215, 224, 30, 32, 5, 229, 16, 9, 32, 67, + 6, 84, 73, 77, 69, 83, 32, 171, 165, 24, 83, 2, 245, 152, 14, 4, 83, 73, + 78, 71, 6, 204, 138, 1, 4, 71, 65, 78, 50, 135, 194, 30, 77, 6, 36, 3, + 73, 78, 50, 239, 146, 31, 69, 5, 139, 212, 30, 32, 5, 229, 16, 9, 32, 67, 82, 79, 83, 83, 73, 78, 71, 63, 11, 32, 60, 96, 14, 83, 72, 69, 83, 72, 73, 71, 32, 84, 73, 77, 69, 83, 32, 97, 6, 84, 73, 77, 69, 83, 32, 16, - 178, 131, 1, 73, 254, 224, 2, 77, 170, 158, 26, 65, 220, 110, 2, 76, 65, + 178, 131, 1, 73, 202, 220, 2, 77, 146, 150, 26, 65, 220, 110, 2, 76, 65, 198, 87, 83, 147, 17, 72, 44, 134, 1, 65, 68, 5, 68, 85, 78, 51, 32, 26, - 75, 58, 76, 62, 83, 34, 85, 222, 127, 73, 204, 31, 2, 72, 65, 242, 156, + 75, 58, 76, 62, 83, 34, 85, 222, 127, 73, 204, 31, 2, 72, 65, 166, 144, 29, 71, 199, 103, 66, 9, 244, 86, 9, 32, 80, 76, 85, 83, 32, 76, 65, 76, - 131, 149, 31, 78, 4, 217, 32, 2, 71, 85, 6, 132, 173, 24, 5, 65, 83, 75, - 65, 76, 187, 195, 3, 85, 8, 34, 65, 194, 234, 31, 73, 3, 85, 5, 201, 85, - 2, 76, 32, 4, 210, 211, 31, 72, 215, 22, 85, 4, 134, 234, 31, 50, 3, 68, + 183, 136, 31, 78, 4, 217, 32, 2, 71, 85, 6, 184, 160, 24, 5, 65, 83, 75, + 65, 76, 187, 195, 3, 85, 8, 34, 65, 246, 221, 31, 73, 3, 85, 5, 201, 85, + 2, 76, 32, 4, 134, 199, 31, 72, 215, 22, 85, 4, 186, 221, 31, 50, 3, 68, 160, 2, 42, 65, 166, 19, 69, 122, 73, 135, 5, 85, 191, 1, 114, 50, 144, - 16, 2, 66, 65, 94, 68, 22, 76, 38, 78, 206, 140, 1, 32, 154, 6, 82, 166, - 175, 28, 83, 155, 149, 2, 77, 153, 1, 11, 32, 150, 1, 68, 6, 84, 73, 77, + 16, 2, 66, 65, 94, 68, 22, 76, 38, 78, 206, 140, 1, 32, 154, 6, 82, 218, + 162, 28, 83, 155, 149, 2, 77, 153, 1, 11, 32, 150, 1, 68, 6, 84, 73, 77, 69, 83, 32, 153, 128, 1, 5, 79, 86, 69, 82, 32, 148, 1, 202, 1, 65, 162, 2, 66, 154, 1, 68, 178, 1, 69, 58, 71, 178, 1, 72, 230, 1, 73, 70, 75, - 194, 1, 76, 62, 77, 50, 78, 130, 1, 83, 142, 1, 85, 222, 154, 1, 84, 204, - 150, 23, 3, 90, 73, 90, 139, 165, 7, 80, 18, 132, 1, 6, 32, 80, 76, 85, - 83, 32, 50, 78, 52, 2, 83, 72, 137, 175, 18, 14, 66, 50, 32, 84, 69, 78, - 85, 32, 80, 76, 85, 83, 32, 84, 6, 202, 58, 68, 142, 214, 13, 73, 131, - 210, 17, 72, 5, 185, 61, 9, 32, 80, 76, 85, 83, 32, 75, 65, 75, 7, 11, + 194, 1, 76, 62, 77, 50, 78, 130, 1, 83, 142, 1, 85, 222, 154, 1, 84, 128, + 138, 23, 3, 90, 73, 90, 139, 165, 7, 80, 18, 132, 1, 6, 32, 80, 76, 85, + 83, 32, 50, 78, 52, 2, 83, 72, 189, 162, 18, 14, 66, 50, 32, 84, 69, 78, + 85, 32, 80, 76, 85, 83, 32, 84, 6, 202, 58, 68, 142, 206, 13, 73, 183, + 205, 17, 72, 5, 185, 61, 9, 32, 80, 76, 85, 83, 32, 75, 65, 75, 7, 11, 50, 5, 133, 90, 6, 32, 80, 76, 85, 83, 32, 10, 26, 65, 77, 2, 85, 82, 6, - 42, 72, 44, 2, 82, 32, 135, 227, 31, 68, 2, 11, 65, 2, 227, 187, 24, 82, - 5, 11, 32, 2, 169, 152, 31, 4, 80, 76, 85, 83, 14, 34, 73, 54, 85, 139, - 226, 31, 65, 7, 17, 2, 77, 32, 4, 146, 22, 84, 207, 129, 1, 71, 6, 56, 8, - 71, 32, 84, 73, 77, 69, 83, 32, 207, 225, 31, 66, 4, 158, 119, 73, 151, - 45, 75, 10, 38, 78, 254, 2, 76, 139, 136, 30, 82, 5, 243, 28, 32, 18, 18, + 42, 72, 44, 2, 82, 32, 187, 214, 31, 68, 2, 11, 65, 2, 151, 175, 24, 82, + 5, 11, 32, 2, 221, 139, 31, 4, 80, 76, 85, 83, 14, 34, 73, 54, 85, 191, + 213, 31, 65, 7, 17, 2, 77, 32, 4, 146, 22, 84, 207, 129, 1, 71, 6, 56, 8, + 71, 32, 84, 73, 77, 69, 83, 32, 131, 213, 31, 66, 4, 158, 119, 73, 151, + 45, 75, 10, 38, 78, 254, 2, 76, 191, 251, 29, 82, 5, 243, 28, 32, 18, 18, 65, 99, 73, 11, 26, 82, 247, 158, 1, 78, 7, 33, 6, 32, 80, 76, 85, 83, - 32, 4, 206, 201, 31, 78, 255, 2, 68, 9, 174, 122, 52, 253, 242, 12, 7, - 82, 50, 32, 80, 76, 85, 83, 12, 62, 65, 154, 124, 85, 233, 240, 12, 6, + 32, 4, 130, 189, 31, 78, 255, 2, 68, 9, 174, 122, 52, 253, 234, 12, 7, + 82, 50, 32, 80, 76, 85, 83, 12, 62, 65, 154, 124, 85, 233, 232, 12, 6, 73, 32, 80, 76, 85, 83, 8, 40, 6, 32, 80, 76, 85, 83, 32, 83, 76, 4, 48, - 6, 76, 85, 32, 80, 76, 85, 171, 222, 31, 65, 2, 11, 83, 2, 215, 97, 32, - 5, 149, 236, 13, 5, 32, 80, 76, 85, 83, 4, 176, 100, 10, 83, 72, 32, 80, + 6, 76, 85, 32, 80, 76, 85, 223, 209, 31, 65, 2, 11, 83, 2, 215, 97, 32, + 5, 149, 228, 13, 5, 32, 80, 76, 85, 83, 4, 176, 100, 10, 83, 72, 32, 80, 76, 85, 83, 32, 72, 85, 147, 15, 71, 12, 34, 65, 36, 2, 73, 68, 27, 85, - 4, 234, 224, 24, 83, 147, 252, 6, 75, 5, 225, 77, 2, 32, 80, 4, 60, 5, + 4, 158, 212, 24, 83, 147, 252, 6, 75, 5, 225, 77, 2, 32, 80, 4, 60, 5, 83, 72, 85, 50, 32, 197, 127, 5, 51, 32, 80, 76, 85, 2, 205, 158, 1, 3, - 80, 76, 85, 8, 26, 65, 183, 218, 31, 85, 7, 11, 77, 5, 227, 159, 1, 32, - 6, 250, 77, 69, 162, 162, 29, 85, 139, 235, 1, 73, 10, 26, 69, 73, 2, 85, - 78, 7, 33, 6, 32, 80, 76, 85, 83, 32, 4, 242, 178, 24, 69, 235, 147, 7, - 71, 5, 11, 32, 2, 187, 101, 79, 14, 42, 72, 254, 235, 23, 65, 247, 220, - 7, 85, 8, 18, 69, 51, 73, 5, 221, 224, 30, 7, 32, 80, 76, 85, 83, 32, 84, - 4, 130, 217, 31, 68, 3, 77, 7, 11, 68, 5, 237, 228, 13, 5, 32, 80, 76, - 85, 83, 7, 11, 32, 4, 206, 249, 29, 82, 177, 177, 1, 11, 67, 82, 79, 83, - 83, 73, 78, 71, 32, 71, 65, 5, 191, 131, 1, 32, 7, 134, 131, 1, 32, 231, - 195, 30, 65, 11, 11, 50, 9, 11, 32, 6, 80, 8, 67, 82, 79, 83, 83, 73, 78, - 71, 0, 4, 79, 86, 69, 82, 239, 207, 26, 84, 2, 197, 49, 3, 32, 71, 65, 8, - 44, 5, 83, 72, 84, 73, 78, 171, 174, 24, 50, 7, 37, 7, 32, 84, 73, 77, - 69, 83, 32, 4, 234, 220, 30, 75, 215, 120, 85, 49, 70, 32, 94, 52, 114, - 82, 190, 1, 83, 130, 207, 30, 68, 211, 130, 1, 71, 6, 152, 133, 9, 6, 84, + 80, 76, 85, 8, 26, 65, 235, 205, 31, 85, 7, 11, 77, 5, 227, 159, 1, 32, + 6, 250, 77, 69, 214, 149, 29, 85, 139, 235, 1, 73, 10, 26, 69, 73, 2, 85, + 78, 7, 33, 6, 32, 80, 76, 85, 83, 32, 4, 166, 166, 24, 69, 235, 147, 7, + 71, 5, 11, 32, 2, 187, 101, 79, 14, 42, 72, 178, 223, 23, 65, 247, 220, + 7, 85, 8, 18, 69, 51, 73, 5, 145, 212, 30, 7, 32, 80, 76, 85, 83, 32, 84, + 4, 182, 204, 31, 68, 3, 77, 7, 11, 68, 5, 237, 220, 13, 5, 32, 80, 76, + 85, 83, 7, 11, 32, 4, 130, 237, 29, 82, 177, 177, 1, 11, 67, 82, 79, 83, + 83, 73, 78, 71, 32, 71, 65, 5, 191, 131, 1, 32, 7, 134, 131, 1, 32, 155, + 183, 30, 65, 11, 11, 50, 9, 11, 32, 6, 80, 8, 67, 82, 79, 83, 83, 73, 78, + 71, 0, 4, 79, 86, 69, 82, 163, 195, 26, 84, 2, 197, 49, 3, 32, 71, 65, 8, + 44, 5, 83, 72, 84, 73, 78, 223, 161, 24, 50, 7, 37, 7, 32, 84, 73, 77, + 69, 83, 32, 4, 158, 208, 30, 75, 215, 120, 85, 49, 70, 32, 94, 52, 114, + 82, 190, 1, 83, 182, 194, 30, 68, 211, 130, 1, 71, 6, 152, 253, 8, 6, 84, 73, 77, 69, 83, 32, 249, 250, 4, 8, 67, 82, 79, 83, 83, 73, 78, 71, 7, 11, 32, 4, 64, 8, 67, 82, 79, 83, 83, 73, 78, 71, 1, 4, 79, 86, 69, 82, - 2, 197, 170, 24, 3, 32, 71, 73, 16, 26, 51, 147, 136, 1, 50, 13, 37, 7, + 2, 249, 157, 24, 3, 32, 71, 73, 16, 26, 51, 147, 136, 1, 50, 13, 37, 7, 32, 84, 73, 77, 69, 83, 32, 10, 70, 65, 0, 2, 76, 85, 206, 127, 71, 254, - 253, 12, 73, 131, 210, 17, 80, 2, 197, 253, 13, 7, 32, 80, 76, 85, 83, - 32, 73, 14, 26, 72, 231, 197, 30, 65, 13, 11, 32, 10, 22, 84, 247, 20, - 67, 8, 44, 5, 73, 77, 69, 83, 32, 239, 171, 31, 69, 6, 192, 20, 6, 71, - 73, 83, 72, 32, 67, 146, 126, 84, 227, 247, 29, 66, 43, 110, 50, 174, 1, - 68, 218, 1, 77, 54, 82, 152, 250, 13, 9, 32, 67, 82, 79, 83, 83, 73, 78, - 71, 223, 209, 17, 76, 15, 11, 32, 12, 48, 6, 84, 73, 77, 69, 83, 32, 167, + 245, 12, 73, 183, 205, 17, 80, 2, 197, 245, 13, 7, 32, 80, 76, 85, 83, + 32, 73, 14, 26, 72, 155, 185, 30, 65, 13, 11, 32, 10, 22, 84, 247, 20, + 67, 8, 44, 5, 73, 77, 69, 83, 32, 163, 159, 31, 69, 6, 192, 20, 6, 71, + 73, 83, 72, 32, 67, 146, 126, 84, 151, 235, 29, 66, 43, 110, 50, 174, 1, + 68, 218, 1, 77, 54, 82, 152, 242, 13, 9, 32, 67, 82, 79, 83, 83, 73, 78, + 71, 147, 205, 17, 76, 15, 11, 32, 12, 48, 6, 84, 73, 77, 69, 83, 32, 167, 132, 1, 71, 10, 252, 24, 3, 75, 65, 75, 194, 75, 73, 152, 20, 10, 83, 65, - 76, 32, 80, 76, 85, 83, 32, 84, 231, 213, 29, 78, 11, 11, 32, 8, 128, 1, + 76, 32, 80, 76, 85, 83, 32, 84, 155, 201, 29, 78, 11, 11, 32, 8, 128, 1, 10, 80, 76, 85, 83, 32, 71, 73, 83, 72, 32, 16, 6, 84, 73, 77, 69, 83, 32, 177, 66, 8, 79, 86, 69, 82, 32, 71, 85, 68, 2, 135, 121, 84, 4, 172, - 145, 1, 5, 65, 32, 80, 76, 85, 223, 194, 29, 75, 5, 17, 2, 32, 84, 2, - 241, 42, 4, 73, 77, 69, 83, 9, 26, 85, 219, 203, 31, 55, 4, 198, 202, 31, - 83, 147, 1, 78, 50, 30, 65, 82, 73, 215, 1, 85, 11, 26, 32, 255, 202, 31, + 145, 1, 5, 65, 32, 80, 76, 85, 147, 182, 29, 75, 5, 17, 2, 32, 84, 2, + 241, 42, 4, 73, 77, 69, 83, 9, 26, 85, 143, 191, 31, 55, 4, 250, 189, 31, + 83, 147, 1, 78, 50, 30, 65, 82, 73, 215, 1, 85, 11, 26, 32, 179, 190, 31, 76, 6, 32, 2, 84, 69, 147, 128, 1, 71, 4, 235, 127, 78, 23, 37, 7, 32, - 84, 73, 77, 69, 83, 32, 20, 104, 3, 65, 83, 72, 234, 228, 27, 68, 158, + 84, 73, 77, 69, 83, 32, 20, 104, 3, 65, 83, 72, 158, 216, 27, 68, 158, 228, 2, 78, 94, 75, 170, 57, 66, 2, 71, 162, 25, 83, 143, 45, 85, 7, 224, - 55, 8, 32, 79, 86, 69, 82, 32, 72, 73, 211, 145, 31, 50, 19, 48, 2, 66, - 50, 130, 161, 24, 76, 179, 166, 7, 83, 13, 37, 7, 32, 84, 73, 77, 69, 83, - 32, 10, 254, 138, 1, 75, 206, 216, 26, 76, 242, 216, 2, 72, 254, 59, 65, - 195, 9, 85, 49, 104, 3, 68, 73, 77, 94, 71, 214, 1, 76, 62, 77, 190, 193, + 55, 8, 32, 79, 86, 69, 82, 32, 72, 73, 135, 133, 31, 50, 19, 48, 2, 66, + 50, 182, 148, 24, 76, 179, 166, 7, 83, 13, 37, 7, 32, 84, 73, 77, 69, 83, + 32, 10, 254, 138, 1, 75, 130, 204, 26, 76, 242, 216, 2, 72, 254, 59, 65, + 195, 9, 85, 49, 104, 3, 68, 73, 77, 94, 71, 214, 1, 76, 62, 77, 242, 180, 31, 32, 170, 1, 83, 146, 1, 66, 2, 78, 3, 82, 7, 53, 11, 32, 79, 86, 69, - 82, 32, 73, 68, 73, 77, 32, 4, 166, 136, 24, 83, 175, 197, 6, 66, 13, 11, - 73, 11, 11, 32, 8, 162, 123, 71, 204, 244, 11, 31, 79, 86, 69, 82, 32, + 82, 32, 73, 68, 73, 77, 32, 4, 218, 251, 23, 83, 175, 197, 6, 66, 13, 11, + 73, 11, 11, 32, 8, 162, 123, 71, 204, 236, 11, 31, 79, 86, 69, 82, 32, 73, 71, 73, 32, 83, 72, 73, 82, 32, 79, 86, 69, 82, 32, 83, 72, 73, 82, - 32, 85, 68, 32, 79, 86, 69, 82, 250, 151, 17, 68, 175, 170, 1, 82, 7, 26, - 32, 151, 196, 31, 50, 2, 169, 72, 4, 84, 73, 77, 69, 13, 26, 32, 251, - 243, 30, 73, 8, 76, 4, 67, 82, 79, 83, 0, 4, 79, 80, 80, 79, 162, 111, - 84, 235, 149, 23, 83, 2, 181, 192, 30, 5, 83, 73, 78, 71, 32, 224, 1, 78, - 65, 146, 15, 73, 242, 1, 85, 158, 73, 69, 193, 188, 23, 4, 87, 85, 51, + 32, 85, 68, 32, 79, 86, 69, 82, 174, 147, 17, 68, 175, 170, 1, 82, 7, 26, + 32, 203, 183, 31, 50, 2, 169, 72, 4, 84, 73, 77, 69, 13, 26, 32, 175, + 231, 30, 73, 8, 76, 4, 67, 82, 79, 83, 0, 4, 79, 80, 80, 79, 162, 111, + 84, 159, 137, 23, 83, 2, 233, 179, 30, 5, 83, 73, 78, 71, 32, 224, 1, 78, + 65, 146, 15, 73, 242, 1, 85, 158, 73, 69, 245, 175, 23, 4, 87, 85, 51, 49, 177, 1, 164, 1, 7, 32, 84, 73, 77, 69, 83, 32, 210, 9, 50, 66, 68, - 102, 75, 50, 76, 98, 77, 28, 4, 83, 75, 65, 76, 184, 207, 15, 6, 80, 32, - 69, 76, 65, 77, 139, 229, 15, 66, 134, 1, 170, 1, 65, 94, 66, 82, 69, 30, + 102, 75, 50, 76, 98, 77, 28, 4, 83, 75, 65, 76, 184, 199, 15, 6, 80, 32, + 69, 76, 65, 77, 191, 224, 15, 66, 134, 1, 170, 1, 65, 94, 66, 82, 69, 30, 71, 182, 2, 73, 34, 75, 34, 76, 38, 77, 170, 1, 83, 118, 84, 34, 85, 214, - 8, 72, 246, 51, 78, 162, 230, 16, 80, 198, 240, 13, 82, 147, 17, 90, 13, - 46, 68, 234, 145, 31, 78, 165, 44, 2, 83, 72, 5, 229, 50, 7, 32, 80, 76, - 85, 83, 32, 75, 10, 34, 65, 178, 190, 31, 73, 3, 85, 6, 194, 210, 29, 76, + 8, 72, 246, 51, 78, 214, 217, 16, 80, 198, 240, 13, 82, 147, 17, 90, 13, + 46, 68, 158, 133, 31, 78, 165, 44, 2, 83, 72, 5, 229, 50, 7, 32, 80, 76, + 85, 83, 32, 75, 10, 34, 65, 230, 177, 31, 73, 3, 85, 6, 246, 197, 29, 76, 238, 235, 1, 68, 3, 82, 4, 138, 25, 82, 151, 61, 83, 26, 30, 65, 98, 73, - 147, 1, 85, 11, 38, 82, 206, 123, 78, 215, 193, 30, 76, 5, 249, 21, 10, - 32, 80, 76, 85, 83, 32, 83, 72, 65, 51, 11, 32, 2, 83, 72, 135, 149, 24, + 147, 1, 85, 11, 38, 82, 206, 123, 78, 139, 181, 30, 76, 5, 249, 21, 10, + 32, 80, 76, 85, 83, 32, 83, 72, 65, 51, 11, 32, 2, 83, 72, 187, 136, 24, 82, 7, 11, 32, 4, 26, 67, 255, 130, 1, 80, 2, 37, 7, 82, 79, 83, 83, 73, - 78, 71, 2, 165, 215, 27, 2, 32, 71, 7, 210, 193, 27, 82, 135, 250, 3, 68, - 4, 218, 167, 31, 71, 219, 19, 77, 8, 250, 8, 73, 135, 179, 17, 65, 6, - 202, 177, 12, 85, 171, 137, 19, 73, 12, 18, 69, 83, 73, 9, 33, 6, 32, 80, - 76, 85, 83, 32, 6, 174, 149, 31, 68, 150, 14, 84, 255, 2, 71, 5, 45, 9, - 32, 80, 76, 85, 83, 32, 78, 85, 78, 2, 147, 219, 29, 85, 18, 62, 72, 206, - 226, 27, 65, 200, 221, 2, 2, 85, 72, 131, 120, 73, 10, 186, 188, 30, 85, - 142, 54, 73, 162, 70, 65, 3, 69, 4, 214, 255, 30, 65, 223, 56, 85, 17, - 110, 32, 238, 92, 82, 200, 167, 26, 9, 77, 85, 77, 32, 84, 73, 77, 69, - 83, 226, 177, 4, 83, 146, 1, 50, 3, 68, 2, 207, 156, 21, 85, 5, 193, 129, - 12, 11, 32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 75, 10, 42, 53, 166, 182, - 31, 50, 2, 51, 3, 52, 5, 221, 140, 24, 9, 32, 79, 86, 69, 82, 32, 75, 65, - 68, 5, 189, 75, 8, 32, 84, 73, 77, 69, 83, 32, 73, 9, 26, 32, 203, 164, - 31, 65, 4, 166, 105, 84, 233, 207, 23, 9, 67, 82, 79, 83, 83, 73, 78, 71, - 32, 4, 218, 180, 31, 50, 3, 52, 7, 11, 32, 4, 70, 76, 1, 13, 79, 86, 69, + 78, 71, 2, 217, 202, 27, 2, 32, 71, 7, 134, 181, 27, 82, 135, 250, 3, 68, + 4, 142, 155, 31, 71, 219, 19, 77, 8, 250, 8, 73, 187, 166, 17, 65, 6, + 202, 169, 12, 85, 223, 132, 19, 73, 12, 18, 69, 83, 73, 9, 33, 6, 32, 80, + 76, 85, 83, 32, 6, 226, 136, 31, 68, 150, 14, 84, 255, 2, 71, 5, 45, 9, + 32, 80, 76, 85, 83, 32, 78, 85, 78, 2, 199, 206, 29, 85, 18, 62, 72, 130, + 214, 27, 65, 200, 221, 2, 2, 85, 72, 131, 120, 73, 10, 238, 175, 30, 85, + 142, 54, 73, 162, 70, 65, 3, 69, 4, 138, 243, 30, 65, 223, 56, 85, 17, + 110, 32, 238, 92, 82, 252, 154, 26, 9, 77, 85, 77, 32, 84, 73, 77, 69, + 83, 226, 177, 4, 83, 146, 1, 50, 3, 68, 2, 131, 144, 21, 85, 5, 193, 249, + 11, 11, 32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 75, 10, 42, 53, 218, 169, + 31, 50, 2, 51, 3, 52, 5, 145, 128, 24, 9, 32, 79, 86, 69, 82, 32, 75, 65, + 68, 5, 189, 75, 8, 32, 84, 73, 77, 69, 83, 32, 73, 9, 26, 32, 255, 151, + 31, 65, 4, 166, 105, 84, 157, 195, 23, 9, 67, 82, 79, 83, 83, 73, 78, 71, + 32, 4, 142, 168, 31, 50, 3, 52, 7, 11, 32, 4, 70, 76, 1, 13, 79, 86, 69, 82, 32, 75, 65, 83, 75, 65, 76, 32, 76, 2, 173, 116, 24, 65, 71, 65, 66, 32, 84, 73, 77, 69, 83, 32, 85, 32, 79, 86, 69, 82, 32, 76, 65, 71, 65, - 66, 32, 21, 68, 7, 32, 84, 73, 77, 69, 83, 32, 50, 83, 134, 178, 31, 68, - 3, 78, 6, 26, 85, 239, 235, 30, 66, 5, 151, 178, 31, 68, 8, 52, 3, 73, - 77, 53, 254, 165, 30, 65, 211, 139, 1, 72, 5, 133, 136, 24, 11, 32, 79, + 66, 32, 21, 68, 7, 32, 84, 73, 77, 69, 83, 32, 50, 83, 186, 165, 31, 68, + 3, 78, 6, 26, 85, 163, 223, 30, 66, 5, 203, 165, 31, 68, 8, 52, 3, 73, + 77, 53, 178, 153, 30, 65, 211, 139, 1, 72, 5, 185, 251, 23, 11, 32, 79, 86, 69, 82, 32, 75, 73, 83, 73, 77, 25, 200, 1, 29, 32, 79, 86, 69, 82, 32, 72, 73, 32, 84, 73, 77, 69, 83, 32, 65, 83, 72, 50, 32, 75, 85, 32, - 79, 86, 69, 82, 32, 72, 18, 52, 54, 82, 186, 98, 83, 230, 1, 76, 226, - 202, 30, 51, 2, 55, 3, 78, 2, 155, 71, 73, 5, 205, 176, 30, 8, 32, 86, + 79, 86, 69, 82, 32, 72, 18, 52, 54, 82, 186, 98, 83, 230, 1, 76, 150, + 190, 30, 51, 2, 55, 3, 78, 2, 155, 71, 73, 5, 129, 164, 30, 8, 32, 86, 65, 82, 73, 65, 78, 84, 5, 213, 115, 9, 32, 79, 80, 80, 79, 83, 73, 78, 71, 240, 2, 30, 65, 174, 26, 73, 59, 85, 141, 2, 68, 2, 71, 65, 252, 12, 2, 75, 45, 222, 11, 76, 46, 77, 135, 55, 72, 118, 22, 66, 131, 11, 82, - 109, 11, 32, 106, 48, 6, 84, 73, 77, 69, 83, 32, 131, 239, 23, 83, 104, + 109, 11, 32, 106, 48, 6, 84, 73, 77, 69, 83, 32, 183, 226, 23, 83, 104, 190, 1, 65, 186, 1, 66, 34, 71, 70, 72, 66, 73, 94, 75, 118, 76, 46, 77, - 46, 83, 138, 2, 84, 126, 85, 156, 172, 4, 8, 90, 85, 32, 79, 86, 69, 82, - 32, 226, 211, 25, 68, 222, 83, 69, 143, 57, 78, 15, 80, 6, 32, 80, 76, - 85, 83, 32, 76, 4, 83, 72, 32, 90, 162, 170, 31, 76, 3, 78, 6, 38, 68, - 138, 135, 30, 71, 227, 23, 76, 2, 201, 62, 5, 65, 32, 80, 76, 85, 2, 149, - 112, 2, 73, 68, 4, 230, 227, 30, 65, 163, 70, 73, 10, 48, 2, 85, 68, 154, - 211, 27, 65, 159, 214, 3, 73, 5, 191, 105, 32, 6, 204, 252, 17, 7, 73, + 46, 83, 138, 2, 84, 126, 85, 232, 167, 4, 8, 90, 85, 32, 79, 86, 69, 82, + 32, 202, 203, 25, 68, 222, 83, 69, 143, 57, 78, 15, 80, 6, 32, 80, 76, + 85, 83, 32, 76, 4, 83, 72, 32, 90, 214, 157, 31, 76, 3, 78, 6, 38, 68, + 190, 250, 29, 71, 227, 23, 76, 2, 201, 62, 5, 65, 32, 80, 76, 85, 2, 149, + 112, 2, 73, 68, 4, 154, 215, 30, 65, 163, 70, 73, 10, 48, 2, 85, 68, 206, + 198, 27, 65, 159, 214, 3, 73, 5, 191, 105, 32, 6, 128, 240, 17, 7, 73, 32, 84, 73, 77, 69, 83, 171, 176, 12, 65, 8, 22, 77, 175, 62, 71, 7, 33, - 6, 32, 80, 76, 85, 83, 32, 4, 190, 131, 31, 76, 179, 34, 72, 10, 26, 85, - 131, 170, 29, 73, 6, 26, 76, 211, 167, 31, 51, 5, 41, 8, 32, 80, 76, 85, - 83, 32, 72, 73, 2, 219, 65, 32, 8, 198, 100, 65, 198, 215, 28, 73, 223, - 110, 85, 6, 26, 69, 199, 187, 29, 85, 5, 175, 25, 32, 12, 26, 72, 203, - 149, 31, 85, 10, 100, 14, 73, 84, 65, 32, 80, 76, 85, 83, 32, 71, 73, 83, + 6, 32, 80, 76, 85, 83, 32, 4, 242, 246, 30, 76, 179, 34, 72, 10, 26, 85, + 183, 157, 29, 73, 6, 26, 76, 135, 155, 31, 51, 5, 41, 8, 32, 80, 76, 85, + 83, 32, 72, 73, 2, 219, 65, 32, 8, 198, 100, 65, 250, 202, 28, 73, 223, + 110, 85, 6, 26, 69, 251, 174, 29, 85, 5, 175, 25, 32, 12, 26, 72, 255, + 136, 31, 85, 10, 100, 14, 73, 84, 65, 32, 80, 76, 85, 83, 32, 71, 73, 83, 72, 32, 96, 2, 85, 50, 217, 3, 2, 69, 32, 4, 48, 6, 80, 76, 85, 83, 32, - 69, 191, 158, 26, 84, 2, 11, 82, 2, 11, 73, 2, 171, 253, 23, 78, 5, 189, + 69, 243, 145, 26, 84, 2, 11, 82, 2, 11, 73, 2, 223, 240, 23, 78, 5, 189, 73, 5, 32, 80, 76, 85, 83, 6, 86, 65, 189, 30, 16, 69, 32, 80, 76, 85, - 83, 32, 65, 32, 80, 76, 85, 83, 32, 83, 85, 4, 246, 250, 23, 75, 231, - 168, 7, 71, 13, 72, 6, 32, 80, 76, 85, 83, 32, 190, 41, 50, 162, 248, 30, - 83, 147, 1, 68, 4, 26, 85, 211, 162, 31, 65, 2, 255, 40, 32, 11, 11, 32, + 83, 32, 65, 32, 80, 76, 85, 83, 32, 83, 85, 4, 170, 238, 23, 75, 231, + 168, 7, 71, 13, 72, 6, 32, 80, 76, 85, 83, 32, 190, 41, 50, 214, 235, 30, + 83, 147, 1, 68, 4, 26, 85, 135, 150, 31, 65, 2, 255, 40, 32, 11, 11, 32, 8, 68, 4, 71, 85, 78, 85, 97, 9, 84, 73, 77, 69, 83, 32, 83, 72, 69, 5, 73, 16, 32, 79, 86, 69, 82, 32, 76, 65, 71, 65, 82, 32, 71, 85, 78, 85, - 2, 135, 244, 30, 32, 5, 11, 32, 2, 201, 210, 14, 4, 80, 76, 85, 83, 136, + 2, 187, 231, 30, 32, 5, 11, 32, 2, 201, 202, 14, 4, 80, 76, 85, 83, 136, 1, 82, 48, 146, 2, 49, 30, 50, 114, 51, 82, 52, 222, 2, 54, 154, 4, 55, 243, 24, 53, 22, 158, 1, 50, 30, 56, 180, 52, 15, 55, 57, 32, 79, 86, 69, - 82, 32, 76, 65, 75, 45, 48, 55, 57, 254, 254, 10, 53, 218, 195, 12, 54, - 2, 57, 94, 51, 139, 172, 3, 48, 4, 226, 158, 31, 49, 3, 53, 4, 228, 246, + 82, 32, 76, 65, 75, 45, 48, 55, 57, 254, 246, 10, 53, 142, 191, 12, 54, + 2, 57, 94, 51, 139, 172, 3, 48, 4, 150, 146, 31, 49, 3, 53, 4, 152, 234, 23, 12, 49, 32, 79, 86, 69, 82, 32, 76, 65, 75, 45, 48, 227, 167, 7, 48, - 4, 178, 246, 23, 52, 95, 51, 16, 46, 50, 38, 54, 186, 239, 23, 49, 159, - 2, 51, 6, 166, 157, 31, 48, 2, 53, 3, 56, 4, 130, 157, 31, 53, 3, 54, 12, - 42, 52, 250, 232, 11, 56, 227, 140, 12, 57, 6, 186, 156, 31, 51, 2, 55, - 3, 56, 30, 62, 52, 214, 1, 53, 30, 57, 134, 243, 23, 55, 139, 172, 3, 56, - 14, 26, 57, 191, 155, 31, 49, 13, 37, 7, 32, 84, 73, 77, 69, 83, 32, 10, - 116, 9, 80, 65, 80, 32, 80, 76, 85, 83, 32, 140, 166, 13, 7, 85, 50, 32, - 80, 76, 85, 83, 218, 31, 73, 211, 175, 17, 71, 4, 210, 13, 80, 51, 76, 4, - 130, 154, 31, 48, 3, 55, 8, 230, 153, 31, 48, 2, 50, 2, 51, 3, 53, 46, - 60, 2, 49, 55, 240, 1, 2, 52, 56, 222, 235, 23, 48, 23, 51, 23, 37, 7, + 4, 230, 233, 23, 52, 95, 51, 16, 46, 50, 38, 54, 238, 226, 23, 49, 159, + 2, 51, 6, 218, 144, 31, 48, 2, 53, 3, 56, 4, 182, 144, 31, 53, 3, 54, 12, + 42, 52, 250, 224, 11, 56, 151, 136, 12, 57, 6, 238, 143, 31, 51, 2, 55, + 3, 56, 30, 62, 52, 214, 1, 53, 30, 57, 186, 230, 23, 55, 139, 172, 3, 56, + 14, 26, 57, 243, 142, 31, 49, 13, 37, 7, 32, 84, 73, 77, 69, 83, 32, 10, + 116, 9, 80, 65, 80, 32, 80, 76, 85, 83, 32, 140, 158, 13, 7, 85, 50, 32, + 80, 76, 85, 83, 218, 31, 73, 135, 171, 17, 71, 4, 210, 13, 80, 51, 76, 4, + 182, 141, 31, 48, 3, 55, 8, 154, 141, 31, 48, 2, 50, 2, 51, 3, 53, 46, + 60, 2, 49, 55, 240, 1, 2, 52, 56, 146, 223, 23, 48, 23, 51, 23, 37, 7, 32, 84, 73, 77, 69, 83, 32, 20, 122, 84, 34, 85, 162, 11, 75, 132, 34, 9, - 68, 85, 78, 51, 32, 71, 85, 78, 85, 142, 255, 28, 65, 222, 164, 1, 66, - 247, 67, 76, 4, 250, 222, 30, 65, 223, 56, 69, 6, 222, 213, 14, 82, 218, - 193, 16, 50, 3, 68, 21, 37, 7, 32, 84, 73, 77, 69, 83, 32, 18, 154, 1, - 85, 220, 8, 4, 80, 65, 80, 32, 146, 45, 73, 224, 233, 12, 10, 83, 72, 69, - 83, 72, 32, 80, 76, 85, 83, 254, 132, 5, 68, 170, 221, 12, 78, 163, 17, - 71, 4, 238, 211, 14, 82, 219, 193, 16, 68, 4, 190, 236, 23, 50, 207, 174, + 68, 85, 78, 51, 32, 71, 85, 78, 85, 194, 242, 28, 65, 222, 164, 1, 66, + 247, 67, 76, 4, 174, 210, 30, 65, 223, 56, 69, 6, 222, 205, 14, 82, 142, + 189, 16, 50, 3, 68, 21, 37, 7, 32, 84, 73, 77, 69, 83, 32, 18, 154, 1, + 85, 220, 8, 4, 80, 65, 80, 32, 146, 45, 73, 224, 225, 12, 10, 83, 72, 69, + 83, 72, 32, 80, 76, 85, 83, 178, 128, 5, 68, 170, 221, 12, 78, 163, 17, + 71, 4, 238, 203, 14, 82, 143, 189, 16, 68, 4, 242, 223, 23, 50, 207, 174, 3, 52, 5, 11, 32, 2, 145, 6, 4, 84, 73, 77, 69, 7, 49, 10, 32, 84, 73, - 77, 69, 83, 32, 75, 85, 82, 5, 221, 215, 11, 5, 32, 80, 76, 85, 83, 9, - 200, 215, 11, 2, 77, 77, 158, 187, 19, 83, 147, 1, 76, 93, 90, 50, 212, - 7, 3, 71, 65, 76, 142, 1, 77, 130, 62, 32, 134, 204, 30, 51, 2, 72, 3, + 77, 69, 83, 32, 75, 85, 82, 5, 221, 207, 11, 5, 32, 80, 76, 85, 83, 9, + 200, 207, 11, 2, 77, 77, 210, 182, 19, 83, 147, 1, 76, 93, 90, 50, 212, + 7, 3, 71, 65, 76, 142, 1, 77, 130, 62, 32, 186, 191, 30, 51, 2, 72, 3, 76, 69, 11, 32, 66, 88, 4, 67, 82, 79, 83, 0, 4, 79, 80, 80, 79, 44, 4, - 71, 85, 78, 85, 38, 83, 35, 84, 2, 205, 213, 11, 6, 83, 73, 78, 71, 32, - 76, 2, 193, 24, 5, 32, 84, 73, 77, 69, 6, 250, 68, 72, 191, 142, 23, 81, - 54, 44, 5, 73, 77, 69, 83, 32, 235, 235, 30, 69, 52, 188, 1, 4, 69, 83, + 71, 85, 78, 85, 38, 83, 35, 84, 2, 205, 205, 11, 6, 83, 73, 78, 71, 32, + 76, 2, 193, 24, 5, 32, 84, 73, 77, 69, 6, 250, 68, 72, 243, 129, 23, 81, + 54, 44, 5, 73, 77, 69, 83, 32, 159, 223, 30, 69, 52, 188, 1, 4, 69, 83, 72, 50, 94, 72, 42, 75, 68, 2, 76, 65, 34, 77, 60, 3, 80, 65, 80, 118, - 83, 90, 84, 250, 56, 71, 250, 130, 8, 78, 242, 234, 18, 68, 254, 216, 2, - 65, 166, 69, 66, 215, 53, 73, 7, 11, 32, 4, 26, 80, 175, 136, 26, 84, 2, - 17, 2, 76, 85, 2, 129, 131, 30, 3, 83, 32, 76, 4, 184, 66, 2, 73, 32, - 183, 192, 29, 65, 8, 32, 2, 65, 68, 247, 141, 31, 73, 6, 226, 19, 51, - 147, 250, 30, 50, 4, 174, 20, 32, 131, 196, 17, 71, 2, 11, 69, 2, 11, 32, - 2, 249, 189, 13, 4, 80, 76, 85, 83, 5, 11, 32, 2, 33, 6, 80, 76, 85, 83, - 32, 80, 2, 45, 9, 65, 80, 32, 80, 76, 85, 83, 32, 76, 2, 187, 145, 27, - 85, 6, 26, 73, 131, 231, 30, 72, 4, 194, 18, 32, 201, 196, 26, 7, 75, 50, + 83, 90, 84, 250, 56, 71, 250, 250, 7, 78, 166, 230, 18, 68, 254, 216, 2, + 65, 166, 69, 66, 215, 53, 73, 7, 11, 32, 4, 26, 80, 227, 251, 25, 84, 2, + 17, 2, 76, 85, 2, 181, 246, 29, 3, 83, 32, 76, 4, 184, 66, 2, 73, 32, + 235, 179, 29, 65, 8, 32, 2, 65, 68, 171, 129, 31, 73, 6, 226, 19, 51, + 199, 237, 30, 50, 4, 174, 20, 32, 183, 183, 17, 71, 2, 11, 69, 2, 11, 32, + 2, 249, 181, 13, 4, 80, 76, 85, 83, 5, 11, 32, 2, 33, 6, 80, 76, 85, 83, + 32, 80, 2, 45, 9, 65, 80, 32, 80, 76, 85, 83, 32, 76, 2, 239, 132, 27, + 85, 6, 26, 73, 183, 218, 30, 72, 4, 194, 18, 32, 253, 183, 26, 7, 75, 50, 32, 80, 76, 85, 83, 4, 162, 53, 85, 139, 24, 65, 9, 11, 32, 6, 22, 79, 207, 67, 83, 4, 56, 7, 80, 80, 79, 83, 73, 78, 71, 1, 3, 86, 69, 82, 2, - 21, 3, 32, 76, 85, 2, 187, 254, 29, 71, 7, 45, 9, 32, 79, 86, 69, 82, 32, + 21, 3, 32, 76, 85, 2, 239, 241, 29, 71, 7, 45, 9, 32, 79, 86, 69, 82, 32, 76, 85, 77, 5, 187, 59, 32, 70, 34, 65, 70, 69, 22, 73, 71, 85, 17, 170, - 45, 32, 188, 1, 2, 83, 72, 186, 218, 30, 50, 2, 72, 3, 82, 7, 251, 247, - 26, 83, 7, 192, 142, 27, 8, 32, 80, 76, 85, 83, 32, 90, 65, 135, 250, 3, - 78, 43, 104, 2, 83, 72, 186, 60, 71, 140, 142, 11, 5, 32, 79, 86, 69, 82, - 40, 2, 82, 71, 173, 203, 6, 2, 78, 83, 31, 22, 32, 183, 2, 51, 16, 136, + 45, 32, 188, 1, 2, 83, 72, 238, 205, 30, 50, 2, 72, 3, 82, 7, 175, 235, + 26, 83, 7, 244, 129, 27, 8, 32, 80, 76, 85, 83, 32, 90, 65, 135, 250, 3, + 78, 43, 104, 2, 83, 72, 186, 60, 71, 140, 134, 11, 5, 32, 79, 86, 69, 82, + 40, 2, 82, 71, 225, 198, 6, 2, 78, 83, 31, 22, 32, 183, 2, 51, 16, 136, 1, 9, 79, 86, 69, 82, 32, 77, 85, 83, 72, 124, 6, 84, 73, 77, 69, 83, 32, - 237, 245, 26, 10, 67, 82, 79, 83, 83, 73, 78, 71, 32, 77, 9, 37, 7, 32, - 84, 73, 77, 69, 83, 32, 6, 42, 65, 154, 204, 28, 75, 211, 182, 2, 71, 2, - 237, 197, 11, 5, 32, 80, 76, 85, 83, 6, 162, 140, 30, 75, 158, 118, 90, + 161, 233, 26, 10, 67, 82, 79, 83, 83, 73, 78, 71, 32, 77, 9, 37, 7, 32, + 84, 73, 77, 69, 83, 32, 6, 42, 65, 206, 191, 28, 75, 211, 182, 2, 71, 2, + 237, 189, 11, 5, 32, 80, 76, 85, 83, 6, 214, 255, 29, 75, 158, 118, 90, 187, 2, 65, 13, 11, 32, 10, 44, 6, 84, 73, 77, 69, 83, 32, 203, 57, 71, - 8, 38, 65, 146, 240, 30, 68, 163, 17, 90, 5, 233, 143, 13, 5, 32, 80, 76, + 8, 38, 65, 198, 227, 30, 68, 163, 17, 90, 5, 233, 135, 13, 5, 32, 80, 76, 85, 83, 158, 1, 42, 65, 134, 2, 69, 94, 73, 199, 7, 85, 23, 52, 2, 71, - 65, 166, 1, 77, 182, 129, 31, 50, 3, 52, 11, 26, 32, 191, 130, 31, 82, 6, + 65, 166, 1, 77, 234, 244, 30, 50, 3, 52, 11, 26, 32, 243, 245, 30, 82, 6, 100, 8, 79, 80, 80, 79, 83, 73, 78, 71, 146, 59, 73, 197, 14, 9, 84, 73, - 77, 69, 83, 32, 83, 72, 85, 2, 141, 191, 30, 3, 32, 78, 65, 7, 204, 21, - 2, 32, 78, 231, 235, 30, 50, 9, 11, 32, 6, 44, 6, 84, 73, 77, 69, 83, 32, - 179, 57, 83, 4, 174, 186, 30, 85, 163, 70, 65, 73, 90, 77, 78, 78, 212, - 198, 20, 6, 32, 84, 73, 77, 69, 83, 202, 204, 8, 83, 239, 235, 1, 50, 7, + 77, 69, 83, 32, 83, 72, 85, 2, 193, 178, 30, 3, 32, 78, 65, 7, 204, 21, + 2, 32, 78, 155, 223, 30, 50, 9, 11, 32, 6, 44, 6, 84, 73, 77, 69, 83, 32, + 179, 57, 83, 4, 226, 173, 30, 85, 163, 70, 65, 73, 90, 77, 78, 78, 136, + 186, 20, 6, 32, 84, 73, 77, 69, 83, 202, 204, 8, 83, 239, 235, 1, 50, 7, 45, 9, 32, 84, 73, 77, 69, 83, 32, 71, 65, 4, 158, 3, 82, 179, 58, 78, - 59, 36, 3, 68, 65, 50, 227, 254, 30, 57, 55, 37, 7, 32, 84, 73, 77, 69, + 59, 36, 3, 68, 65, 50, 151, 242, 30, 57, 55, 37, 7, 32, 84, 73, 77, 69, 83, 32, 52, 162, 1, 65, 34, 71, 50, 75, 16, 5, 76, 65, 75, 45, 48, 22, 77, 86, 78, 34, 80, 76, 3, 83, 72, 69, 94, 85, 240, 15, 3, 68, 73, 77, - 186, 222, 29, 66, 135, 120, 72, 6, 246, 2, 83, 159, 250, 30, 78, 8, 26, - 73, 167, 250, 29, 85, 5, 199, 251, 30, 83, 2, 211, 20, 69, 2, 207, 213, - 23, 53, 4, 26, 69, 255, 144, 29, 65, 2, 25, 4, 32, 80, 76, 85, 2, 177, - 41, 3, 83, 32, 71, 4, 234, 171, 30, 85, 227, 79, 69, 2, 33, 6, 65, 80, - 32, 80, 76, 85, 2, 11, 83, 2, 241, 231, 29, 2, 32, 80, 9, 37, 7, 32, 80, - 76, 85, 83, 32, 65, 6, 26, 83, 131, 174, 29, 32, 4, 11, 72, 5, 107, 32, - 11, 50, 32, 34, 50, 218, 183, 14, 82, 203, 192, 16, 83, 2, 217, 156, 14, - 3, 80, 76, 85, 2, 11, 32, 2, 21, 3, 80, 76, 85, 2, 11, 83, 2, 235, 141, + 238, 209, 29, 66, 135, 120, 72, 6, 246, 2, 83, 211, 237, 30, 78, 8, 26, + 73, 219, 237, 29, 85, 5, 251, 238, 30, 83, 2, 211, 20, 69, 2, 131, 201, + 23, 53, 4, 26, 69, 179, 132, 29, 65, 2, 25, 4, 32, 80, 76, 85, 2, 177, + 41, 3, 83, 32, 71, 4, 158, 159, 30, 85, 227, 79, 69, 2, 33, 6, 65, 80, + 32, 80, 76, 85, 2, 11, 83, 2, 165, 219, 29, 2, 32, 80, 9, 37, 7, 32, 80, + 76, 85, 83, 32, 65, 6, 26, 83, 183, 161, 29, 32, 4, 11, 72, 5, 107, 32, + 11, 50, 32, 34, 50, 218, 175, 14, 82, 255, 187, 16, 83, 2, 217, 148, 14, + 3, 80, 76, 85, 2, 11, 32, 2, 21, 3, 80, 76, 85, 2, 11, 83, 2, 159, 129, 29, 32, 57, 24, 2, 49, 49, 99, 78, 9, 11, 32, 6, 200, 25, 9, 79, 86, 69, - 82, 32, 78, 85, 49, 49, 178, 216, 25, 84, 243, 167, 3, 82, 47, 30, 32, + 82, 32, 78, 85, 49, 49, 230, 203, 25, 84, 243, 167, 3, 82, 47, 30, 32, 169, 3, 2, 85, 90, 18, 144, 1, 12, 67, 82, 79, 83, 83, 73, 78, 71, 32, 78, 85, 78, 72, 12, 76, 65, 71, 65, 82, 32, 84, 73, 77, 69, 83, 32, 174, - 1, 79, 131, 238, 25, 84, 5, 209, 40, 14, 32, 76, 65, 71, 65, 82, 32, 79, - 86, 69, 82, 32, 76, 65, 10, 56, 3, 83, 65, 76, 166, 138, 29, 77, 14, 85, - 207, 71, 71, 5, 217, 233, 29, 23, 32, 79, 86, 69, 82, 32, 78, 85, 78, 32, - 76, 65, 71, 65, 82, 32, 84, 73, 77, 69, 83, 32, 83, 2, 241, 199, 17, 3, + 1, 79, 183, 225, 25, 84, 5, 209, 40, 14, 32, 76, 65, 71, 65, 82, 32, 79, + 86, 69, 82, 32, 76, 65, 10, 56, 3, 83, 65, 76, 218, 253, 28, 77, 14, 85, + 207, 71, 71, 5, 141, 221, 29, 23, 32, 79, 86, 69, 82, 32, 78, 85, 78, 32, + 76, 65, 71, 65, 82, 32, 84, 73, 77, 69, 83, 32, 83, 2, 165, 187, 17, 3, 86, 69, 82, 27, 11, 32, 24, 120, 10, 65, 66, 50, 32, 84, 73, 77, 69, 83, 32, 205, 37, 15, 75, 73, 83, 73, 77, 53, 32, 84, 73, 77, 69, 83, 32, 66, - 73, 20, 168, 1, 2, 75, 65, 202, 7, 73, 212, 39, 2, 65, 83, 190, 177, 2, - 68, 168, 215, 8, 3, 83, 73, 76, 182, 146, 12, 85, 210, 249, 5, 71, 158, - 151, 1, 78, 254, 2, 66, 163, 17, 76, 2, 151, 247, 26, 68, 46, 42, 65, 36, - 4, 69, 83, 72, 50, 23, 73, 9, 178, 241, 30, 68, 2, 78, 3, 80, 5, 211, - 217, 28, 32, 35, 22, 32, 151, 1, 82, 20, 80, 6, 84, 73, 77, 69, 83, 32, - 141, 146, 18, 8, 67, 82, 79, 83, 83, 73, 78, 71, 18, 214, 21, 85, 150, - 48, 65, 2, 73, 238, 233, 29, 66, 187, 64, 69, 12, 32, 2, 73, 71, 175, - 239, 30, 50, 11, 11, 32, 8, 96, 6, 84, 73, 77, 69, 83, 32, 217, 178, 26, - 12, 79, 80, 80, 79, 83, 73, 78, 71, 32, 80, 73, 82, 6, 222, 226, 29, 75, - 190, 69, 85, 235, 67, 90, 8, 234, 67, 65, 166, 170, 30, 73, 3, 85, 202, + 73, 20, 168, 1, 2, 75, 65, 202, 7, 73, 212, 39, 2, 65, 83, 138, 173, 2, + 68, 220, 211, 8, 3, 83, 73, 76, 234, 141, 12, 85, 210, 249, 5, 71, 158, + 151, 1, 78, 254, 2, 66, 163, 17, 76, 2, 203, 234, 26, 68, 46, 42, 65, 36, + 4, 69, 83, 72, 50, 23, 73, 9, 230, 228, 30, 68, 2, 78, 3, 80, 5, 135, + 205, 28, 32, 35, 22, 32, 151, 1, 82, 20, 80, 6, 84, 73, 77, 69, 83, 32, + 193, 133, 18, 8, 67, 82, 79, 83, 83, 73, 78, 71, 18, 214, 21, 85, 150, + 48, 65, 2, 73, 162, 221, 29, 66, 187, 64, 69, 12, 32, 2, 73, 71, 227, + 226, 30, 50, 11, 11, 32, 8, 96, 6, 84, 73, 77, 69, 83, 32, 141, 166, 26, + 12, 79, 80, 80, 79, 83, 73, 78, 71, 32, 80, 73, 82, 6, 146, 214, 29, 75, + 190, 69, 85, 235, 67, 90, 8, 234, 67, 65, 218, 157, 30, 73, 3, 85, 202, 1, 46, 65, 250, 5, 72, 150, 11, 73, 163, 1, 85, 63, 46, 71, 190, 4, 76, - 122, 78, 211, 231, 30, 82, 53, 11, 32, 50, 92, 4, 71, 85, 78, 85, 54, 78, + 122, 78, 135, 219, 30, 82, 53, 11, 32, 50, 92, 4, 71, 85, 78, 85, 54, 78, 32, 6, 84, 73, 77, 69, 83, 32, 241, 21, 4, 79, 86, 69, 82, 5, 29, 5, 32, - 84, 73, 77, 69, 2, 231, 244, 17, 83, 2, 185, 189, 25, 3, 85, 84, 73, 42, + 84, 73, 77, 69, 2, 155, 232, 17, 83, 2, 237, 176, 25, 3, 85, 84, 73, 42, 150, 1, 73, 42, 75, 34, 83, 64, 2, 84, 65, 38, 85, 220, 62, 2, 68, 85, - 130, 255, 28, 76, 246, 42, 78, 210, 48, 69, 138, 60, 77, 162, 17, 72, - 187, 2, 65, 2, 11, 71, 2, 11, 73, 2, 191, 31, 32, 4, 166, 177, 30, 85, - 199, 53, 65, 6, 26, 72, 251, 221, 29, 65, 4, 198, 206, 13, 69, 227, 212, - 16, 73, 4, 190, 192, 23, 75, 231, 168, 7, 66, 10, 238, 231, 30, 83, 146, + 182, 242, 28, 76, 246, 42, 78, 210, 48, 69, 138, 60, 77, 162, 17, 72, + 187, 2, 65, 2, 11, 71, 2, 11, 73, 2, 191, 31, 32, 4, 218, 164, 30, 85, + 199, 53, 65, 6, 26, 72, 175, 209, 29, 65, 4, 198, 198, 13, 69, 151, 208, + 16, 73, 4, 242, 179, 23, 75, 231, 168, 7, 66, 10, 162, 219, 30, 83, 146, 1, 50, 2, 66, 2, 77, 3, 82, 5, 33, 6, 32, 76, 65, 71, 65, 66, 2, 37, 7, - 32, 84, 73, 77, 69, 83, 32, 2, 11, 65, 2, 11, 83, 2, 163, 192, 23, 72, 2, - 131, 178, 11, 71, 106, 46, 65, 250, 1, 69, 242, 2, 73, 239, 3, 85, 29, - 50, 51, 182, 1, 54, 138, 186, 23, 66, 223, 3, 82, 19, 37, 7, 32, 84, 73, - 77, 69, 83, 32, 16, 90, 85, 146, 25, 83, 250, 231, 26, 71, 250, 235, 2, - 84, 170, 50, 66, 218, 47, 78, 215, 22, 65, 5, 11, 32, 2, 201, 156, 26, 4, - 80, 76, 85, 83, 5, 175, 45, 32, 27, 62, 32, 140, 2, 2, 83, 72, 178, 232, + 32, 84, 73, 77, 69, 83, 32, 2, 11, 65, 2, 11, 83, 2, 215, 179, 23, 72, 2, + 131, 170, 11, 71, 106, 46, 65, 250, 1, 69, 242, 2, 73, 239, 3, 85, 29, + 50, 51, 182, 1, 54, 190, 173, 23, 66, 223, 3, 82, 19, 37, 7, 32, 84, 73, + 77, 69, 83, 32, 16, 90, 85, 146, 25, 83, 174, 219, 26, 71, 250, 235, 2, + 84, 170, 50, 66, 218, 47, 78, 215, 22, 65, 5, 11, 32, 2, 253, 143, 26, 4, + 80, 76, 85, 83, 5, 175, 45, 32, 27, 62, 32, 140, 2, 2, 83, 72, 230, 219, 26, 71, 155, 250, 3, 78, 14, 84, 8, 79, 86, 69, 82, 32, 83, 72, 69, 88, - 5, 80, 76, 85, 83, 32, 191, 190, 30, 72, 7, 11, 32, 4, 190, 15, 71, 141, + 5, 80, 76, 85, 83, 32, 243, 177, 30, 72, 7, 11, 32, 4, 190, 15, 71, 141, 6, 12, 84, 65, 66, 32, 79, 86, 69, 82, 32, 84, 65, 66, 6, 48, 2, 72, 85, - 20, 2, 78, 65, 163, 191, 29, 83, 2, 175, 187, 23, 66, 2, 155, 187, 23, - 77, 7, 182, 165, 29, 76, 147, 189, 1, 50, 40, 62, 68, 74, 77, 218, 1, 82, - 226, 163, 26, 78, 175, 185, 4, 84, 7, 37, 7, 32, 84, 73, 77, 69, 83, 32, - 4, 226, 208, 30, 73, 219, 16, 65, 25, 37, 7, 32, 84, 73, 77, 69, 83, 32, - 22, 114, 66, 38, 73, 130, 19, 75, 194, 187, 2, 77, 234, 217, 2, 76, 250, - 147, 24, 71, 226, 23, 83, 138, 12, 68, 215, 127, 65, 4, 214, 206, 2, 85, - 219, 133, 27, 65, 4, 249, 20, 2, 71, 73, 7, 11, 32, 4, 60, 9, 79, 86, 69, - 82, 32, 83, 72, 73, 82, 179, 216, 25, 84, 2, 161, 230, 29, 11, 32, 66, + 20, 2, 78, 65, 215, 178, 29, 83, 2, 227, 174, 23, 66, 2, 207, 174, 23, + 77, 7, 234, 152, 29, 76, 147, 189, 1, 50, 40, 62, 68, 74, 77, 218, 1, 82, + 150, 151, 26, 78, 175, 185, 4, 84, 7, 37, 7, 32, 84, 73, 77, 69, 83, 32, + 4, 150, 196, 30, 73, 219, 16, 65, 25, 37, 7, 32, 84, 73, 77, 69, 83, 32, + 22, 114, 66, 38, 73, 130, 19, 75, 142, 183, 2, 77, 234, 217, 2, 76, 226, + 139, 24, 71, 226, 23, 83, 138, 12, 68, 215, 127, 65, 4, 162, 202, 2, 85, + 195, 253, 26, 65, 4, 249, 20, 2, 71, 73, 7, 11, 32, 4, 60, 9, 79, 86, 69, + 82, 32, 83, 72, 73, 82, 231, 203, 25, 84, 2, 213, 217, 29, 11, 32, 66, 85, 82, 32, 79, 86, 69, 82, 32, 66, 13, 88, 14, 32, 79, 86, 69, 82, 32, - 73, 78, 86, 69, 82, 84, 69, 68, 34, 50, 235, 228, 29, 66, 2, 11, 32, 2, - 135, 231, 25, 83, 7, 33, 6, 32, 80, 76, 85, 83, 32, 4, 88, 7, 69, 50, 32, - 84, 73, 77, 69, 173, 161, 11, 9, 68, 85, 71, 32, 84, 73, 77, 69, 83, 2, - 139, 146, 13, 83, 17, 50, 32, 30, 71, 230, 161, 11, 76, 183, 146, 12, 75, + 73, 78, 86, 69, 82, 84, 69, 68, 34, 50, 159, 216, 29, 66, 2, 11, 32, 2, + 187, 218, 25, 83, 7, 33, 6, 32, 80, 76, 85, 83, 32, 4, 88, 7, 69, 50, 32, + 84, 73, 77, 69, 173, 153, 11, 9, 68, 85, 71, 32, 84, 73, 77, 69, 83, 2, + 139, 138, 13, 83, 17, 50, 32, 30, 71, 230, 153, 11, 76, 235, 141, 12, 75, 4, 138, 8, 84, 163, 9, 71, 7, 11, 52, 5, 49, 10, 32, 79, 86, 69, 82, 32, - 83, 73, 71, 52, 2, 199, 14, 32, 19, 78, 68, 22, 77, 22, 82, 184, 231, 12, - 5, 32, 79, 86, 69, 82, 135, 250, 16, 72, 5, 183, 218, 30, 50, 5, 155, - 239, 28, 65, 5, 143, 218, 30, 57, 72, 46, 65, 150, 4, 73, 250, 1, 85, - 227, 8, 69, 37, 66, 32, 94, 66, 166, 1, 71, 148, 1, 2, 75, 52, 247, 213, - 30, 82, 8, 60, 6, 84, 73, 77, 69, 83, 32, 130, 14, 71, 155, 179, 28, 65, - 4, 238, 196, 30, 72, 3, 77, 7, 11, 32, 4, 252, 217, 17, 29, 79, 86, 69, + 83, 73, 71, 52, 2, 199, 14, 32, 19, 78, 68, 22, 77, 22, 82, 184, 223, 12, + 5, 32, 79, 86, 69, 82, 187, 245, 16, 72, 5, 235, 205, 30, 50, 5, 207, + 226, 28, 65, 5, 195, 205, 30, 57, 72, 46, 65, 150, 4, 73, 250, 1, 85, + 227, 8, 69, 37, 66, 32, 94, 66, 166, 1, 71, 148, 1, 2, 75, 52, 171, 201, + 30, 82, 8, 60, 6, 84, 73, 77, 69, 83, 32, 130, 14, 71, 207, 166, 28, 65, + 4, 162, 184, 30, 72, 3, 77, 7, 11, 32, 4, 176, 205, 17, 29, 79, 86, 69, 82, 32, 84, 65, 66, 32, 78, 73, 32, 79, 86, 69, 82, 32, 78, 73, 32, 68, 73, 83, 72, 32, 79, 86, 69, 82, 163, 192, 5, 83, 15, 37, 7, 32, 84, 73, - 77, 69, 83, 32, 12, 74, 84, 216, 134, 8, 2, 83, 72, 206, 161, 21, 71, - 210, 103, 85, 203, 50, 66, 2, 11, 85, 2, 199, 174, 23, 71, 5, 29, 5, 32, - 80, 76, 85, 83, 2, 229, 233, 28, 2, 32, 83, 17, 46, 82, 150, 29, 32, 246, - 183, 30, 50, 3, 76, 9, 11, 32, 6, 48, 8, 79, 86, 69, 82, 32, 84, 73, 82, + 77, 69, 83, 32, 12, 74, 84, 216, 254, 7, 2, 83, 72, 130, 157, 21, 71, + 210, 103, 85, 203, 50, 66, 2, 11, 85, 2, 251, 161, 23, 71, 5, 29, 5, 32, + 80, 76, 85, 83, 2, 153, 221, 28, 2, 32, 83, 17, 46, 82, 150, 29, 32, 170, + 171, 30, 50, 3, 76, 9, 11, 32, 6, 48, 8, 79, 86, 69, 82, 32, 84, 73, 82, 99, 84, 5, 11, 32, 2, 11, 71, 2, 21, 3, 65, 68, 32, 2, 241, 5, 8, 79, 86, 69, 82, 32, 71, 65, 68, 2, 217, 21, 6, 73, 77, 69, 83, 32, 84, 17, 50, - 77, 114, 82, 222, 170, 23, 71, 195, 167, 7, 75, 7, 37, 7, 32, 84, 73, 77, - 69, 83, 32, 4, 46, 71, 149, 212, 17, 5, 84, 72, 82, 69, 69, 2, 221, 16, - 2, 65, 78, 5, 137, 148, 11, 17, 32, 79, 86, 69, 82, 32, 84, 85, 82, 32, + 77, 114, 82, 146, 158, 23, 71, 195, 167, 7, 75, 7, 37, 7, 32, 84, 73, 77, + 69, 83, 32, 4, 46, 71, 201, 199, 17, 5, 84, 72, 82, 69, 69, 2, 221, 16, + 2, 65, 78, 5, 137, 140, 11, 17, 32, 79, 86, 69, 82, 32, 84, 85, 82, 32, 90, 65, 32, 79, 86, 69, 82, 179, 1, 138, 1, 32, 246, 2, 68, 226, 2, 78, - 46, 77, 158, 2, 82, 128, 9, 2, 83, 72, 174, 1, 90, 252, 199, 12, 2, 84, - 85, 242, 245, 17, 50, 3, 66, 12, 64, 7, 79, 86, 69, 82, 32, 85, 32, 158, - 2, 85, 231, 159, 29, 71, 6, 200, 1, 10, 80, 65, 32, 79, 86, 69, 82, 32, - 80, 65, 220, 167, 9, 19, 85, 32, 82, 69, 86, 69, 82, 83, 69, 68, 32, 79, - 86, 69, 82, 32, 85, 32, 82, 245, 173, 20, 10, 83, 85, 82, 32, 79, 86, 69, + 46, 77, 158, 2, 82, 128, 9, 2, 83, 72, 174, 1, 90, 252, 191, 12, 2, 84, + 85, 166, 241, 17, 50, 3, 66, 12, 64, 7, 79, 86, 69, 82, 32, 85, 32, 158, + 2, 85, 155, 147, 29, 71, 6, 200, 1, 10, 80, 65, 32, 79, 86, 69, 82, 32, + 80, 65, 220, 159, 9, 19, 85, 32, 82, 69, 86, 69, 82, 83, 69, 68, 32, 79, + 86, 69, 82, 32, 85, 32, 82, 169, 169, 20, 10, 83, 85, 82, 32, 79, 86, 69, 82, 32, 83, 2, 11, 32, 2, 45, 9, 71, 65, 82, 32, 79, 86, 69, 82, 32, 2, - 171, 170, 29, 71, 5, 235, 168, 30, 32, 21, 26, 32, 211, 204, 30, 85, 16, + 223, 157, 29, 71, 5, 159, 156, 30, 32, 21, 26, 32, 135, 192, 30, 85, 16, 70, 75, 44, 2, 83, 72, 100, 6, 84, 73, 77, 69, 83, 32, 135, 1, 71, 2, 11, - 85, 2, 11, 83, 2, 151, 144, 11, 72, 4, 29, 5, 69, 83, 72, 73, 71, 5, 11, - 32, 2, 11, 84, 2, 201, 133, 30, 6, 73, 77, 69, 83, 32, 66, 8, 92, 14, 85, - 32, 80, 76, 85, 83, 32, 85, 32, 80, 76, 85, 83, 32, 194, 132, 30, 66, - 215, 50, 77, 4, 11, 85, 5, 11, 32, 2, 11, 71, 2, 211, 165, 30, 85, 21, - 72, 7, 32, 84, 73, 77, 69, 83, 32, 136, 1, 2, 85, 77, 143, 201, 29, 66, - 10, 50, 76, 16, 2, 77, 69, 50, 83, 247, 200, 30, 85, 2, 231, 6, 65, 5, - 11, 32, 2, 221, 138, 26, 4, 80, 76, 85, 83, 2, 255, 142, 11, 72, 7, 37, - 7, 32, 84, 73, 77, 69, 83, 32, 4, 158, 11, 75, 227, 186, 30, 80, 93, 54, - 32, 102, 50, 194, 2, 73, 22, 85, 171, 196, 30, 52, 4, 62, 83, 205, 206, - 29, 9, 67, 82, 79, 83, 83, 73, 78, 71, 32, 2, 185, 139, 26, 4, 72, 69, - 83, 72, 23, 11, 32, 20, 42, 73, 37, 6, 84, 73, 77, 69, 83, 32, 2, 181, - 149, 24, 4, 78, 86, 69, 82, 18, 46, 65, 82, 85, 242, 196, 29, 78, 251, - 125, 72, 6, 48, 6, 32, 80, 76, 85, 83, 32, 191, 197, 30, 76, 4, 130, 195, - 30, 72, 3, 78, 8, 26, 50, 135, 197, 30, 68, 7, 33, 6, 32, 80, 76, 85, 83, - 32, 4, 214, 217, 28, 65, 179, 215, 1, 66, 5, 187, 196, 30, 51, 59, 56, 7, + 85, 2, 11, 83, 2, 151, 136, 11, 72, 4, 29, 5, 69, 83, 72, 73, 71, 5, 11, + 32, 2, 11, 84, 2, 253, 248, 29, 6, 73, 77, 69, 83, 32, 66, 8, 92, 14, 85, + 32, 80, 76, 85, 83, 32, 85, 32, 80, 76, 85, 83, 32, 246, 247, 29, 66, + 215, 50, 77, 4, 11, 85, 5, 11, 32, 2, 11, 71, 2, 135, 153, 30, 85, 21, + 72, 7, 32, 84, 73, 77, 69, 83, 32, 136, 1, 2, 85, 77, 195, 188, 29, 66, + 10, 50, 76, 16, 2, 77, 69, 50, 83, 171, 188, 30, 85, 2, 231, 6, 65, 5, + 11, 32, 2, 145, 254, 25, 4, 80, 76, 85, 83, 2, 255, 134, 11, 72, 7, 37, + 7, 32, 84, 73, 77, 69, 83, 32, 4, 158, 11, 75, 151, 174, 30, 80, 93, 54, + 32, 102, 50, 194, 2, 73, 22, 85, 223, 183, 30, 52, 4, 62, 83, 129, 194, + 29, 9, 67, 82, 79, 83, 83, 73, 78, 71, 32, 2, 237, 254, 25, 4, 72, 69, + 83, 72, 23, 11, 32, 20, 42, 73, 37, 6, 84, 73, 77, 69, 83, 32, 2, 233, + 136, 24, 4, 78, 86, 69, 82, 18, 46, 65, 82, 85, 166, 184, 29, 78, 251, + 125, 72, 6, 48, 6, 32, 80, 76, 85, 83, 32, 243, 184, 30, 76, 4, 182, 182, + 30, 72, 3, 78, 8, 26, 50, 187, 184, 30, 68, 7, 33, 6, 32, 80, 76, 85, 83, + 32, 4, 138, 205, 28, 65, 179, 215, 1, 66, 5, 239, 183, 30, 51, 59, 56, 7, 32, 84, 73, 77, 69, 83, 32, 165, 4, 2, 68, 65, 52, 134, 1, 65, 46, 68, - 38, 71, 82, 73, 46, 76, 78, 83, 46, 85, 230, 156, 29, 66, 234, 35, 77, + 38, 71, 82, 73, 46, 76, 78, 83, 46, 85, 154, 144, 29, 66, 234, 35, 77, 238, 90, 84, 146, 17, 75, 162, 17, 72, 3, 80, 5, 11, 83, 2, 11, 72, 2, - 167, 141, 17, 71, 4, 186, 135, 11, 65, 159, 235, 18, 85, 10, 26, 65, 251, - 193, 30, 85, 9, 34, 78, 214, 193, 30, 76, 3, 82, 2, 211, 9, 50, 6, 234, - 173, 30, 71, 202, 18, 83, 147, 1, 77, 6, 46, 85, 185, 149, 23, 5, 65, 75, - 45, 54, 54, 4, 230, 192, 30, 51, 3, 77, 4, 228, 151, 23, 2, 73, 71, 147, - 146, 7, 72, 6, 42, 32, 158, 254, 13, 82, 219, 193, 16, 68, 2, 129, 146, - 29, 6, 80, 76, 85, 83, 32, 71, 5, 11, 32, 2, 197, 226, 13, 4, 84, 73, 77, - 69, 17, 84, 7, 32, 84, 73, 77, 69, 83, 32, 128, 176, 29, 2, 85, 77, 194, - 142, 1, 50, 3, 88, 8, 50, 84, 240, 231, 26, 2, 75, 85, 159, 214, 3, 65, - 2, 11, 65, 2, 155, 149, 23, 75, 6, 26, 51, 211, 189, 30, 85, 5, 29, 5, - 32, 84, 73, 77, 69, 2, 21, 3, 83, 32, 75, 2, 11, 65, 2, 251, 192, 23, 83, - 42, 50, 65, 190, 1, 73, 146, 1, 85, 187, 146, 23, 69, 13, 50, 32, 210, - 173, 29, 77, 194, 142, 1, 55, 3, 71, 4, 56, 8, 83, 81, 85, 65, 82, 69, - 68, 32, 143, 181, 25, 84, 2, 11, 84, 2, 21, 3, 73, 77, 69, 2, 11, 83, 2, - 205, 194, 29, 2, 32, 75, 15, 86, 66, 184, 249, 22, 6, 32, 79, 86, 69, 82, + 219, 128, 17, 71, 4, 186, 255, 10, 65, 211, 230, 18, 85, 10, 26, 65, 175, + 181, 30, 85, 9, 34, 78, 138, 181, 30, 76, 3, 82, 2, 211, 9, 50, 6, 158, + 161, 30, 71, 202, 18, 83, 147, 1, 77, 6, 46, 85, 237, 136, 23, 5, 65, 75, + 45, 54, 54, 4, 154, 180, 30, 51, 3, 77, 4, 152, 139, 23, 2, 73, 71, 147, + 146, 7, 72, 6, 42, 32, 158, 246, 13, 82, 143, 189, 16, 68, 2, 181, 133, + 29, 6, 80, 76, 85, 83, 32, 71, 5, 11, 32, 2, 197, 218, 13, 4, 84, 73, 77, + 69, 17, 84, 7, 32, 84, 73, 77, 69, 83, 32, 180, 163, 29, 2, 85, 77, 194, + 142, 1, 50, 3, 88, 8, 50, 84, 164, 219, 26, 2, 75, 85, 159, 214, 3, 65, + 2, 11, 65, 2, 207, 136, 23, 75, 6, 26, 51, 135, 177, 30, 85, 5, 29, 5, + 32, 84, 73, 77, 69, 2, 21, 3, 83, 32, 75, 2, 11, 65, 2, 175, 180, 23, 83, + 42, 50, 65, 190, 1, 73, 146, 1, 85, 239, 133, 23, 69, 13, 50, 32, 134, + 161, 29, 77, 194, 142, 1, 55, 3, 71, 4, 56, 8, 83, 81, 85, 65, 82, 69, + 68, 32, 195, 168, 25, 84, 2, 11, 84, 2, 21, 3, 73, 77, 69, 2, 11, 83, 2, + 129, 182, 29, 2, 32, 75, 15, 86, 66, 236, 236, 22, 6, 32, 79, 86, 69, 82, 32, 186, 25, 90, 194, 167, 7, 51, 3, 71, 5, 17, 2, 32, 75, 2, 17, 2, 65, 66, 2, 135, 2, 65, 15, 84, 10, 32, 79, 86, 69, 82, 32, 90, 85, 32, 80, - 42, 53, 166, 192, 29, 66, 215, 120, 77, 2, 225, 149, 29, 5, 76, 85, 83, + 42, 53, 218, 179, 29, 66, 215, 120, 77, 2, 149, 137, 29, 5, 76, 85, 83, 32, 83, 7, 37, 7, 32, 84, 73, 77, 69, 83, 32, 4, 44, 5, 84, 72, 82, 69, - 69, 163, 184, 30, 65, 2, 29, 5, 32, 68, 73, 83, 72, 2, 11, 32, 2, 171, - 177, 25, 84, 8, 42, 32, 246, 247, 22, 73, 155, 211, 3, 67, 4, 174, 179, + 69, 215, 171, 30, 65, 2, 29, 5, 32, 68, 73, 83, 72, 2, 11, 32, 2, 223, + 164, 25, 84, 8, 42, 32, 170, 235, 22, 73, 155, 211, 3, 67, 4, 226, 166, 22, 79, 217, 133, 7, 8, 87, 73, 84, 72, 32, 83, 84, 82, 18, 134, 1, 76, - 162, 1, 82, 233, 240, 29, 23, 86, 69, 68, 32, 83, 84, 69, 77, 32, 80, 65, - 82, 65, 71, 82, 65, 80, 72, 32, 83, 73, 71, 78, 10, 48, 2, 89, 32, 185, - 164, 3, 4, 73, 78, 71, 32, 8, 68, 2, 76, 79, 221, 145, 28, 9, 66, 82, 65, - 67, 75, 69, 84, 32, 69, 6, 242, 239, 26, 71, 239, 196, 3, 79, 6, 52, 5, - 69, 78, 67, 89, 32, 53, 4, 89, 32, 65, 78, 4, 248, 144, 25, 4, 69, 88, - 67, 72, 175, 156, 4, 83, 2, 133, 252, 19, 3, 68, 32, 82, 4, 234, 132, 3, - 79, 227, 149, 26, 65, 240, 8, 128, 1, 2, 80, 82, 140, 9, 7, 82, 73, 76, - 76, 73, 67, 32, 152, 248, 25, 7, 76, 73, 78, 68, 82, 73, 67, 149, 132, 3, + 162, 1, 82, 157, 228, 29, 23, 86, 69, 68, 32, 83, 84, 69, 77, 32, 80, 65, + 82, 65, 71, 82, 65, 80, 72, 32, 83, 73, 71, 78, 10, 48, 2, 89, 32, 133, + 160, 3, 4, 73, 78, 71, 32, 8, 68, 2, 76, 79, 145, 133, 28, 9, 66, 82, 65, + 67, 75, 69, 84, 32, 69, 6, 166, 227, 26, 71, 239, 196, 3, 79, 6, 52, 5, + 69, 78, 67, 89, 32, 53, 4, 89, 32, 65, 78, 4, 172, 132, 25, 4, 69, 88, + 67, 72, 175, 156, 4, 83, 2, 185, 239, 19, 3, 68, 32, 82, 4, 182, 128, 3, + 79, 203, 141, 26, 65, 240, 8, 128, 1, 2, 80, 82, 140, 9, 7, 82, 73, 76, + 76, 73, 67, 32, 204, 235, 25, 7, 76, 73, 78, 68, 82, 73, 67, 149, 132, 3, 2, 67, 76, 180, 2, 140, 1, 13, 73, 79, 84, 32, 83, 89, 76, 76, 65, 66, 76, 69, 32, 169, 1, 16, 79, 45, 77, 73, 78, 79, 65, 78, 32, 83, 73, 71, - 78, 32, 67, 77, 110, 190, 185, 7, 75, 2, 76, 2, 77, 2, 78, 2, 80, 2, 82, - 2, 83, 2, 84, 126, 87, 150, 42, 74, 2, 90, 230, 245, 6, 88, 202, 214, 15, - 65, 2, 69, 2, 73, 2, 79, 3, 85, 198, 1, 46, 48, 146, 5, 49, 181, 164, 26, + 78, 32, 67, 77, 110, 138, 181, 7, 75, 2, 76, 2, 77, 2, 78, 2, 80, 2, 82, + 2, 83, 2, 84, 126, 87, 202, 38, 74, 2, 90, 230, 245, 6, 88, 254, 209, 15, + 65, 2, 69, 2, 73, 2, 79, 3, 85, 198, 1, 46, 48, 146, 5, 49, 233, 151, 26, 2, 51, 48, 170, 1, 102, 48, 78, 49, 74, 50, 78, 51, 78, 52, 62, 53, 86, - 55, 198, 195, 10, 57, 190, 3, 54, 219, 165, 14, 56, 16, 178, 174, 30, 49, - 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 16, 194, 3, 50, 166, - 170, 30, 48, 2, 49, 2, 51, 2, 53, 2, 55, 3, 57, 16, 158, 173, 30, 49, 2, - 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 16, 210, 172, 30, 48, 2, - 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 134, 172, 30, 48, 2, - 49, 2, 52, 2, 54, 2, 55, 3, 57, 18, 202, 171, 30, 48, 2, 49, 2, 50, 2, - 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 20, 82, 53, 166, 170, 30, 48, 2, - 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 56, 3, 57, 5, 163, 170, 30, 66, 24, - 18, 48, 87, 49, 18, 250, 169, 30, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, - 2, 55, 2, 56, 3, 57, 6, 166, 169, 30, 48, 2, 50, 3, 52, 184, 6, 140, 1, + 55, 198, 187, 10, 57, 190, 3, 54, 143, 161, 14, 56, 16, 230, 161, 30, 49, + 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 16, 194, 3, 50, 218, + 157, 30, 48, 2, 49, 2, 51, 2, 53, 2, 55, 3, 57, 16, 210, 160, 30, 49, 2, + 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 16, 134, 160, 30, 48, 2, + 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 186, 159, 30, 48, 2, + 49, 2, 52, 2, 54, 2, 55, 3, 57, 18, 254, 158, 30, 48, 2, 49, 2, 50, 2, + 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 20, 82, 53, 218, 157, 30, 48, 2, + 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 56, 3, 57, 5, 215, 157, 30, 66, 24, + 18, 48, 87, 49, 18, 174, 157, 30, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, + 2, 55, 2, 56, 3, 57, 6, 218, 156, 30, 48, 2, 50, 3, 52, 184, 6, 140, 1, 9, 67, 65, 80, 73, 84, 65, 76, 32, 76, 202, 4, 75, 32, 7, 76, 69, 84, 84, 69, 82, 32, 132, 1, 3, 80, 65, 89, 30, 83, 211, 41, 84, 242, 2, 44, 6, 69, 84, 84, 69, 82, 32, 175, 43, 73, 236, 2, 150, 2, 76, 46, 78, 34, 80, 34, 82, 58, 84, 62, 85, 190, 5, 65, 214, 1, 66, 242, 1, 67, 150, 1, 68, 254, 1, 69, 206, 2, 71, 130, 1, 72, 134, 1, 73, 230, 3, 75, 226, 3, 77, - 218, 1, 79, 226, 2, 83, 218, 7, 89, 166, 1, 90, 146, 217, 29, 70, 134, - 14, 74, 2, 86, 2, 87, 159, 20, 81, 6, 222, 25, 73, 238, 244, 29, 74, 159, - 20, 72, 4, 134, 27, 69, 155, 243, 29, 74, 8, 134, 34, 69, 247, 238, 29, - 83, 12, 220, 9, 3, 79, 85, 78, 226, 18, 69, 191, 133, 30, 72, 20, 174, - 33, 69, 106, 83, 218, 212, 29, 67, 186, 22, 74, 3, 87, 13, 198, 34, 32, - 115, 75, 2, 189, 154, 30, 3, 65, 86, 89, 6, 248, 10, 5, 77, 85, 76, 84, - 73, 244, 143, 13, 2, 80, 65, 233, 242, 11, 14, 83, 77, 65, 76, 76, 32, - 67, 65, 80, 73, 84, 65, 76, 32, 2, 161, 248, 29, 2, 69, 82, 186, 3, 136, + 218, 1, 79, 226, 2, 83, 218, 7, 89, 166, 1, 90, 198, 204, 29, 70, 134, + 14, 74, 2, 86, 2, 87, 159, 20, 81, 6, 222, 25, 73, 162, 232, 29, 74, 159, + 20, 72, 4, 134, 27, 69, 207, 230, 29, 74, 8, 134, 34, 69, 171, 226, 29, + 83, 12, 220, 9, 3, 79, 85, 78, 226, 18, 69, 243, 248, 29, 72, 20, 174, + 33, 69, 106, 83, 142, 200, 29, 67, 186, 22, 74, 3, 87, 13, 198, 34, 32, + 115, 75, 2, 241, 141, 30, 3, 65, 86, 89, 6, 248, 10, 5, 77, 85, 76, 84, + 73, 244, 135, 13, 2, 80, 65, 157, 238, 11, 14, 83, 77, 65, 76, 76, 32, + 67, 65, 80, 73, 84, 65, 76, 32, 2, 213, 235, 29, 2, 69, 82, 186, 3, 136, 1, 6, 77, 65, 76, 76, 32, 76, 201, 37, 22, 85, 66, 83, 67, 82, 73, 80, 84, 32, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 134, 3, 44, 6, 69, 84, 84, 69, 82, 32, 151, 36, 73, 128, 3, 154, 2, 65, 214, 1, 66, 242, 1, 67, 150, 1, 68, 254, 1, 69, 206, 2, 71, 130, 1, 72, 134, 1, 73, 230, 3, 75, 222, 2, 76, 134, 1, 77, 114, 78, 106, 79, 110, 80, 50, 82, - 198, 1, 83, 218, 2, 84, 218, 2, 85, 246, 1, 87, 54, 89, 166, 1, 90, 146, - 217, 29, 70, 134, 14, 74, 2, 86, 159, 20, 81, 17, 108, 6, 32, 87, 73, 84, - 72, 32, 36, 9, 66, 75, 72, 65, 83, 73, 65, 78, 32, 149, 167, 12, 4, 76, - 69, 85, 84, 4, 178, 203, 9, 68, 191, 187, 3, 66, 8, 216, 147, 13, 3, 67, - 72, 69, 158, 215, 6, 68, 195, 175, 10, 72, 18, 110, 65, 78, 73, 32, 3, - 82, 79, 65, 200, 167, 3, 6, 76, 69, 78, 68, 69, 68, 194, 232, 9, 89, 207, - 138, 17, 69, 6, 200, 21, 6, 82, 82, 69, 68, 32, 79, 153, 144, 12, 5, 83, - 72, 75, 73, 82, 4, 230, 2, 78, 131, 165, 3, 71, 2, 163, 188, 10, 68, 14, - 76, 2, 72, 69, 246, 9, 76, 136, 161, 13, 4, 82, 79, 83, 83, 235, 193, 16, - 67, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 150, 29, 68, 239, 203, 29, 86, - 26, 96, 2, 74, 69, 20, 6, 79, 85, 66, 76, 69, 32, 66, 90, 234, 234, 29, - 67, 186, 22, 87, 215, 22, 69, 5, 183, 250, 22, 82, 4, 36, 3, 77, 79, 78, - 143, 152, 30, 79, 2, 153, 13, 2, 79, 67, 12, 46, 69, 166, 151, 29, 90, - 206, 105, 72, 3, 87, 5, 207, 248, 29, 76, 41, 86, 76, 98, 78, 110, 82, - 166, 15, 32, 214, 252, 12, 83, 178, 209, 14, 77, 231, 183, 2, 70, 11, 33, - 6, 32, 87, 73, 84, 72, 32, 8, 166, 20, 77, 174, 249, 12, 68, 190, 209, + 198, 1, 83, 218, 2, 84, 218, 2, 85, 246, 1, 87, 54, 89, 166, 1, 90, 198, + 204, 29, 70, 134, 14, 74, 2, 86, 159, 20, 81, 17, 108, 6, 32, 87, 73, 84, + 72, 32, 36, 9, 66, 75, 72, 65, 83, 73, 65, 78, 32, 149, 159, 12, 4, 76, + 69, 85, 84, 4, 178, 195, 9, 68, 191, 187, 3, 66, 8, 216, 139, 13, 3, 67, + 72, 69, 210, 210, 6, 68, 195, 175, 10, 72, 18, 110, 65, 78, 73, 32, 3, + 82, 79, 65, 148, 163, 3, 6, 76, 69, 78, 68, 69, 68, 246, 228, 9, 89, 131, + 134, 17, 69, 6, 200, 21, 6, 82, 82, 69, 68, 32, 79, 153, 136, 12, 5, 83, + 72, 75, 73, 82, 4, 230, 2, 78, 207, 160, 3, 71, 2, 163, 180, 10, 68, 14, + 76, 2, 72, 69, 246, 9, 76, 136, 153, 13, 4, 82, 79, 83, 83, 159, 189, 16, + 67, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 150, 29, 68, 163, 191, 29, 86, + 26, 96, 2, 74, 69, 20, 6, 79, 85, 66, 76, 69, 32, 66, 90, 158, 222, 29, + 67, 186, 22, 87, 215, 22, 69, 5, 235, 237, 22, 82, 4, 36, 3, 77, 79, 78, + 195, 139, 30, 79, 2, 153, 13, 2, 79, 67, 12, 46, 69, 218, 138, 29, 90, + 206, 105, 72, 3, 87, 5, 131, 236, 29, 76, 41, 86, 76, 98, 78, 110, 82, + 166, 15, 32, 214, 244, 12, 83, 230, 204, 14, 77, 231, 183, 2, 70, 11, 33, + 6, 32, 87, 73, 84, 72, 32, 8, 166, 20, 77, 174, 241, 12, 68, 242, 204, 14, 84, 183, 97, 72, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 198, 19, 77, - 174, 249, 12, 68, 202, 52, 76, 246, 156, 14, 84, 183, 97, 72, 5, 225, - 226, 28, 5, 32, 87, 73, 84, 72, 14, 32, 2, 72, 69, 239, 253, 29, 74, 13, - 33, 6, 32, 87, 73, 84, 72, 32, 10, 142, 18, 77, 146, 15, 85, 158, 234, - 12, 68, 155, 31, 83, 12, 26, 65, 247, 252, 29, 87, 11, 48, 6, 32, 87, 73, - 84, 72, 32, 215, 167, 28, 82, 6, 178, 138, 13, 68, 242, 178, 15, 72, 247, + 174, 241, 12, 68, 202, 52, 76, 170, 152, 14, 84, 183, 97, 72, 5, 149, + 214, 28, 5, 32, 87, 73, 84, 72, 14, 32, 2, 72, 69, 163, 241, 29, 74, 13, + 33, 6, 32, 87, 73, 84, 72, 32, 10, 142, 18, 77, 146, 15, 85, 158, 226, + 12, 68, 155, 31, 83, 12, 26, 65, 171, 240, 29, 87, 11, 48, 6, 32, 87, 73, + 84, 72, 32, 139, 155, 28, 82, 6, 178, 130, 13, 68, 166, 174, 15, 72, 247, 165, 1, 83, 35, 84, 6, 32, 87, 73, 84, 72, 32, 50, 69, 74, 79, 201, 1, 6, - 90, 72, 73, 84, 83, 65, 6, 166, 192, 9, 68, 214, 10, 71, 167, 202, 3, 77, - 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 166, 202, 9, 71, 235, 176, 3, 66, - 17, 11, 84, 14, 48, 6, 73, 70, 73, 69, 68, 32, 211, 144, 30, 65, 12, 80, - 2, 67, 76, 38, 76, 158, 156, 3, 66, 142, 234, 25, 89, 178, 137, 1, 65, 3, - 69, 2, 33, 6, 79, 83, 69, 68, 32, 76, 2, 151, 4, 73, 5, 241, 150, 13, 14, + 90, 72, 73, 84, 83, 65, 6, 166, 184, 9, 68, 214, 10, 71, 167, 202, 3, 77, + 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 166, 194, 9, 71, 235, 176, 3, 66, + 17, 11, 84, 14, 48, 6, 73, 70, 73, 69, 68, 32, 135, 132, 30, 65, 12, 80, + 2, 67, 76, 38, 76, 234, 151, 3, 66, 246, 225, 25, 89, 178, 137, 1, 65, 3, + 69, 2, 33, 6, 79, 83, 69, 68, 32, 76, 2, 151, 4, 73, 5, 241, 142, 13, 14, 32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 69, 32, 71, 34, 102, 65, 98, - 79, 180, 219, 17, 10, 72, 65, 75, 65, 83, 83, 73, 65, 78, 32, 174, 155, - 12, 74, 255, 2, 83, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 142, 133, 13, - 68, 242, 178, 15, 72, 170, 165, 1, 86, 79, 83, 18, 36, 3, 77, 73, 32, - 231, 207, 26, 80, 16, 58, 68, 254, 174, 12, 76, 2, 78, 2, 83, 2, 84, 3, - 90, 6, 250, 174, 12, 90, 130, 199, 17, 74, 215, 22, 69, 8, 94, 73, 224, - 209, 10, 10, 79, 78, 71, 45, 76, 69, 71, 71, 69, 68, 142, 163, 19, 74, - 159, 20, 72, 2, 177, 152, 3, 4, 84, 84, 76, 69, 4, 21, 3, 79, 78, 79, 4, - 18, 67, 39, 71, 2, 165, 147, 19, 4, 85, 76, 65, 82, 2, 245, 10, 4, 82, - 65, 80, 72, 6, 62, 69, 164, 146, 19, 5, 65, 82, 82, 79, 87, 247, 224, 10, - 74, 2, 209, 131, 13, 5, 85, 84, 82, 65, 76, 11, 52, 4, 77, 69, 71, 65, - 166, 3, 32, 235, 133, 30, 84, 5, 157, 224, 29, 8, 32, 87, 73, 84, 72, 32, - 84, 73, 10, 138, 6, 69, 182, 250, 12, 65, 195, 244, 16, 83, 14, 50, 69, - 100, 4, 79, 85, 78, 68, 219, 132, 30, 72, 8, 37, 7, 86, 69, 82, 83, 69, - 68, 32, 8, 210, 213, 19, 68, 214, 166, 9, 84, 190, 102, 89, 151, 14, 90, - 4, 234, 168, 10, 32, 153, 249, 1, 2, 69, 68, 34, 108, 4, 67, 72, 87, 65, - 34, 72, 132, 1, 4, 79, 70, 84, 32, 130, 253, 12, 84, 213, 1, 5, 69, 77, - 73, 83, 79, 5, 11, 32, 2, 219, 245, 5, 87, 16, 92, 4, 79, 82, 84, 32, - 224, 251, 12, 2, 72, 65, 238, 139, 15, 67, 214, 230, 1, 87, 215, 22, 65, - 6, 142, 205, 27, 73, 231, 183, 2, 85, 8, 38, 69, 194, 253, 28, 83, 151, - 112, 68, 4, 166, 132, 30, 76, 3, 77, 28, 140, 1, 4, 65, 76, 76, 32, 50, - 69, 106, 83, 232, 149, 12, 11, 72, 82, 69, 69, 45, 76, 69, 71, 71, 69, - 68, 242, 190, 17, 67, 186, 22, 74, 3, 87, 6, 130, 246, 12, 72, 202, 131, - 16, 89, 223, 114, 84, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 26, 77, 175, - 249, 12, 68, 2, 165, 136, 22, 5, 73, 68, 68, 76, 69, 8, 142, 235, 29, 72, + 79, 232, 206, 17, 10, 72, 65, 75, 65, 83, 83, 73, 65, 78, 32, 174, 155, + 12, 74, 255, 2, 83, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 142, 253, 12, + 68, 166, 174, 15, 72, 170, 165, 1, 86, 79, 83, 18, 36, 3, 77, 73, 32, + 155, 195, 26, 80, 16, 58, 68, 254, 166, 12, 76, 2, 78, 2, 83, 2, 84, 3, + 90, 6, 250, 166, 12, 90, 182, 194, 17, 74, 215, 22, 69, 8, 94, 73, 224, + 201, 10, 10, 79, 78, 71, 45, 76, 69, 71, 71, 69, 68, 194, 158, 19, 74, + 159, 20, 72, 2, 253, 147, 3, 4, 84, 84, 76, 69, 4, 21, 3, 79, 78, 79, 4, + 18, 67, 39, 71, 2, 217, 134, 19, 4, 85, 76, 65, 82, 2, 245, 10, 4, 82, + 65, 80, 72, 6, 62, 69, 216, 133, 19, 5, 65, 82, 82, 79, 87, 247, 224, 10, + 74, 2, 209, 251, 12, 5, 85, 84, 82, 65, 76, 11, 52, 4, 77, 69, 71, 65, + 166, 3, 32, 159, 249, 29, 84, 5, 209, 211, 29, 8, 32, 87, 73, 84, 72, 32, + 84, 73, 10, 138, 6, 69, 182, 242, 12, 65, 247, 239, 16, 83, 14, 50, 69, + 100, 4, 79, 85, 78, 68, 143, 248, 29, 72, 8, 37, 7, 86, 69, 82, 83, 69, + 68, 32, 8, 134, 201, 19, 68, 214, 166, 9, 84, 190, 102, 89, 151, 14, 90, + 4, 234, 160, 10, 32, 153, 249, 1, 2, 69, 68, 34, 108, 4, 67, 72, 87, 65, + 34, 72, 132, 1, 4, 79, 70, 84, 32, 130, 245, 12, 84, 213, 1, 5, 69, 77, + 73, 83, 79, 5, 11, 32, 2, 167, 241, 5, 87, 16, 92, 4, 79, 82, 84, 32, + 224, 243, 12, 2, 72, 65, 162, 135, 15, 67, 214, 230, 1, 87, 215, 22, 65, + 6, 194, 192, 27, 73, 231, 183, 2, 85, 8, 38, 69, 246, 240, 28, 83, 151, + 112, 68, 4, 218, 247, 29, 76, 3, 77, 28, 140, 1, 4, 65, 76, 76, 32, 50, + 69, 106, 83, 232, 141, 12, 11, 72, 82, 69, 69, 45, 76, 69, 71, 71, 69, + 68, 166, 186, 17, 67, 186, 22, 74, 3, 87, 6, 130, 238, 12, 72, 254, 254, + 15, 89, 223, 114, 84, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 26, 77, 175, + 241, 12, 68, 2, 217, 251, 21, 5, 73, 68, 68, 76, 69, 8, 194, 222, 29, 72, 2, 83, 2, 87, 215, 22, 69, 15, 58, 32, 114, 75, 53, 8, 78, 66, 76, 69, - 78, 68, 69, 68, 6, 29, 5, 87, 73, 84, 72, 32, 6, 26, 68, 215, 131, 13, - 77, 4, 204, 176, 9, 5, 79, 85, 66, 76, 69, 187, 8, 73, 5, 11, 82, 2, 213, - 4, 6, 65, 73, 78, 73, 65, 78, 2, 235, 129, 25, 32, 4, 184, 233, 28, 4, - 73, 68, 69, 32, 135, 150, 1, 69, 18, 62, 65, 28, 3, 69, 82, 85, 178, 254, - 29, 73, 2, 78, 3, 85, 7, 202, 254, 29, 69, 3, 84, 7, 33, 6, 32, 87, 73, - 84, 72, 32, 4, 170, 172, 9, 68, 179, 203, 3, 66, 18, 18, 69, 71, 72, 9, - 156, 1, 7, 32, 87, 73, 84, 72, 32, 68, 217, 249, 29, 2, 77, 76, 10, 26, - 69, 163, 230, 29, 87, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 26, 68, 147, - 230, 12, 66, 4, 254, 180, 9, 73, 227, 190, 3, 69, 6, 37, 7, 71, 65, 84, - 85, 82, 69, 32, 6, 66, 65, 128, 213, 15, 2, 84, 69, 153, 249, 13, 4, 69, - 78, 32, 71, 2, 243, 223, 29, 32, 52, 198, 1, 66, 38, 68, 38, 69, 36, 3, - 71, 72, 69, 38, 72, 234, 156, 22, 89, 170, 222, 5, 83, 134, 114, 84, 134, + 78, 68, 69, 68, 6, 29, 5, 87, 73, 84, 72, 32, 6, 26, 68, 215, 251, 12, + 77, 4, 204, 168, 9, 5, 79, 85, 66, 76, 69, 187, 8, 73, 5, 11, 82, 2, 213, + 4, 6, 65, 73, 78, 73, 65, 78, 2, 159, 245, 24, 32, 4, 236, 220, 28, 4, + 73, 68, 69, 32, 135, 150, 1, 69, 18, 62, 65, 28, 3, 69, 82, 85, 230, 241, + 29, 73, 2, 78, 3, 85, 7, 254, 241, 29, 69, 3, 84, 7, 33, 6, 32, 87, 73, + 84, 72, 32, 4, 170, 164, 9, 68, 179, 203, 3, 66, 18, 18, 69, 71, 72, 9, + 156, 1, 7, 32, 87, 73, 84, 72, 32, 68, 141, 237, 29, 2, 77, 76, 10, 26, + 69, 215, 217, 29, 87, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 26, 68, 147, + 222, 12, 66, 4, 254, 172, 9, 73, 227, 190, 3, 69, 6, 37, 7, 71, 65, 84, + 85, 82, 69, 32, 6, 66, 65, 180, 200, 15, 2, 84, 69, 153, 249, 13, 4, 69, + 78, 32, 71, 2, 167, 211, 29, 32, 52, 198, 1, 66, 38, 68, 38, 69, 36, 3, + 71, 72, 69, 38, 72, 158, 144, 22, 89, 170, 222, 5, 83, 134, 114, 84, 134, 11, 90, 130, 64, 73, 150, 19, 67, 186, 22, 80, 2, 86, 158, 20, 75, 186, - 2, 65, 2, 79, 3, 85, 4, 250, 238, 12, 89, 207, 138, 17, 69, 6, 130, 249, - 28, 90, 163, 128, 1, 69, 6, 254, 248, 29, 70, 2, 76, 3, 83, 5, 201, 5, 5, - 32, 87, 73, 84, 72, 4, 11, 65, 5, 235, 140, 28, 82, 2, 221, 134, 16, 4, + 2, 65, 2, 79, 3, 85, 4, 250, 230, 12, 89, 131, 134, 17, 69, 6, 182, 236, + 28, 90, 163, 128, 1, 69, 6, 178, 236, 29, 70, 2, 76, 3, 83, 5, 201, 5, 5, + 32, 87, 73, 84, 72, 4, 11, 65, 5, 159, 128, 28, 82, 2, 145, 250, 15, 4, 72, 79, 85, 83, 214, 15, 178, 1, 65, 138, 4, 67, 54, 69, 154, 35, 73, - 166, 23, 79, 154, 45, 82, 174, 3, 85, 172, 246, 12, 13, 78, 65, 32, 68, - 79, 85, 66, 76, 69, 32, 72, 69, 76, 182, 202, 15, 86, 207, 47, 76, 30, + 166, 23, 79, 154, 45, 82, 174, 3, 85, 172, 238, 12, 13, 78, 65, 32, 68, + 79, 85, 66, 76, 69, 32, 72, 69, 76, 234, 197, 15, 86, 207, 47, 76, 30, 116, 4, 71, 71, 69, 82, 146, 1, 78, 32, 4, 82, 75, 32, 83, 36, 2, 83, 72, - 160, 145, 22, 2, 76, 69, 131, 145, 1, 84, 9, 11, 32, 6, 44, 5, 87, 73, - 84, 72, 32, 171, 218, 6, 75, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, - 2, 217, 219, 28, 4, 84, 32, 71, 85, 4, 198, 182, 29, 67, 251, 30, 71, 4, - 190, 220, 21, 85, 155, 157, 5, 72, 10, 30, 32, 105, 3, 69, 68, 32, 4, 60, - 9, 87, 73, 84, 72, 32, 76, 69, 70, 84, 231, 221, 28, 83, 2, 17, 2, 32, - 85, 2, 239, 160, 23, 80, 6, 206, 240, 4, 84, 130, 197, 12, 76, 207, 210, - 10, 79, 10, 178, 242, 29, 49, 2, 50, 2, 51, 2, 52, 3, 83, 180, 4, 222, 1, + 212, 132, 22, 2, 76, 69, 131, 145, 1, 84, 9, 11, 32, 6, 44, 5, 87, 73, + 84, 72, 32, 247, 213, 6, 75, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, + 2, 141, 207, 28, 4, 84, 32, 71, 85, 4, 250, 169, 29, 67, 251, 30, 71, 4, + 242, 207, 21, 85, 155, 157, 5, 72, 10, 30, 32, 105, 3, 69, 68, 32, 4, 60, + 9, 87, 73, 84, 72, 32, 76, 69, 70, 84, 155, 209, 28, 83, 2, 17, 2, 32, + 85, 2, 163, 148, 23, 80, 6, 154, 236, 4, 84, 234, 188, 12, 76, 207, 210, + 10, 79, 10, 230, 229, 29, 49, 2, 50, 2, 51, 2, 52, 3, 83, 180, 4, 222, 1, 67, 248, 1, 5, 71, 82, 69, 69, 32, 98, 76, 82, 78, 228, 3, 8, 80, 65, 82, 84, 77, 69, 78, 84, 32, 12, 82, 69, 76, 73, 67, 84, 32, 72, 79, 85, 83, - 69, 42, 83, 174, 6, 86, 224, 221, 25, 2, 65, 70, 227, 203, 3, 69, 8, 50, - 73, 225, 129, 6, 6, 82, 69, 65, 83, 69, 32, 6, 56, 4, 77, 65, 76, 32, - 237, 177, 9, 4, 68, 85, 79, 85, 4, 88, 9, 83, 69, 80, 65, 82, 65, 84, 79, - 82, 129, 140, 22, 7, 69, 88, 80, 79, 78, 69, 78, 2, 21, 3, 32, 75, 69, 2, - 243, 216, 28, 89, 6, 240, 213, 22, 4, 67, 69, 76, 83, 202, 145, 6, 83, - 177, 106, 8, 70, 65, 72, 82, 69, 78, 72, 69, 9, 196, 137, 17, 5, 73, 86, + 69, 42, 83, 174, 6, 86, 148, 209, 25, 2, 65, 70, 227, 203, 3, 69, 8, 50, + 73, 173, 253, 5, 6, 82, 69, 65, 83, 69, 32, 6, 56, 4, 77, 65, 76, 32, + 237, 169, 9, 4, 68, 85, 79, 85, 4, 88, 9, 83, 69, 80, 65, 82, 65, 84, 79, + 82, 181, 255, 21, 7, 69, 88, 80, 79, 78, 69, 78, 2, 21, 3, 32, 75, 69, 2, + 167, 204, 28, 89, 6, 164, 201, 22, 4, 67, 69, 76, 83, 202, 145, 6, 83, + 177, 106, 8, 70, 65, 72, 82, 69, 78, 72, 69, 9, 248, 252, 16, 5, 73, 86, 69, 82, 89, 160, 130, 6, 2, 84, 65, 203, 152, 5, 69, 34, 104, 20, 84, 73, 83, 84, 82, 89, 32, 83, 89, 77, 66, 79, 76, 32, 76, 73, 71, 72, 84, 32, - 243, 128, 22, 83, 30, 88, 4, 68, 79, 87, 78, 0, 2, 85, 80, 153, 1, 9, 86, + 167, 244, 21, 83, 30, 88, 4, 68, 79, 87, 78, 0, 2, 85, 80, 153, 1, 9, 86, 69, 82, 84, 73, 67, 65, 76, 32, 8, 69, 15, 32, 65, 78, 68, 32, 72, 79, - 82, 73, 90, 79, 78, 84, 65, 76, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 162, - 252, 27, 87, 134, 26, 67, 167, 45, 84, 14, 52, 4, 65, 78, 68, 32, 45, 5, - 87, 73, 84, 72, 32, 10, 238, 175, 22, 66, 42, 84, 171, 203, 5, 87, 4, - 150, 149, 28, 67, 167, 45, 84, 2, 253, 251, 24, 3, 32, 83, 84, 2, 185, - 162, 23, 5, 32, 66, 85, 73, 76, 170, 1, 64, 2, 67, 69, 48, 2, 69, 82, - 129, 5, 5, 75, 84, 79, 80, 32, 2, 253, 212, 27, 7, 78, 68, 73, 78, 71, + 82, 73, 90, 79, 78, 84, 65, 76, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 214, + 239, 27, 87, 134, 26, 67, 167, 45, 84, 14, 52, 4, 65, 78, 68, 32, 45, 5, + 87, 73, 84, 72, 32, 10, 162, 163, 22, 66, 42, 84, 171, 203, 5, 87, 4, + 202, 136, 28, 67, 167, 45, 84, 2, 177, 239, 24, 3, 32, 83, 84, 2, 237, + 149, 23, 5, 32, 66, 85, 73, 76, 170, 1, 64, 2, 67, 69, 48, 2, 69, 82, + 129, 5, 5, 75, 84, 79, 80, 32, 2, 177, 200, 27, 7, 78, 68, 73, 78, 71, 32, 78, 164, 1, 32, 3, 69, 84, 32, 183, 4, 84, 160, 1, 56, 6, 67, 65, 80, 73, 84, 65, 1, 4, 83, 77, 65, 76, 80, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 80, 218, 1, 69, 96, 4, 76, 79, 78, 71, 0, 5, 83, 72, 79, 82, 84, - 74, 79, 30, 84, 2, 90, 158, 245, 11, 67, 222, 251, 15, 66, 2, 68, 2, 74, + 74, 79, 30, 84, 2, 90, 158, 237, 11, 67, 146, 247, 15, 66, 2, 68, 2, 74, 2, 80, 2, 86, 2, 89, 130, 100, 71, 2, 75, 186, 105, 87, 162, 19, 65, 203, - 17, 72, 20, 250, 211, 25, 83, 226, 146, 2, 78, 242, 252, 1, 84, 146, 1, - 70, 2, 76, 2, 77, 2, 82, 3, 87, 12, 11, 32, 12, 142, 211, 25, 65, 178, - 199, 1, 79, 178, 201, 2, 69, 3, 73, 4, 178, 227, 29, 73, 3, 87, 4, 246, - 240, 27, 72, 207, 219, 1, 69, 5, 209, 210, 28, 4, 32, 73, 83, 76, 4, 154, - 228, 26, 67, 141, 226, 1, 4, 87, 73, 78, 68, 202, 2, 100, 8, 65, 78, 65, + 17, 72, 20, 174, 199, 25, 83, 226, 146, 2, 78, 242, 252, 1, 84, 146, 1, + 70, 2, 76, 2, 77, 2, 82, 3, 87, 12, 11, 32, 12, 194, 198, 25, 65, 178, + 199, 1, 79, 178, 201, 2, 69, 3, 73, 4, 230, 214, 29, 73, 3, 87, 4, 170, + 228, 27, 72, 207, 219, 1, 69, 5, 133, 198, 28, 4, 32, 73, 83, 76, 4, 206, + 215, 26, 67, 141, 226, 1, 4, 87, 73, 78, 68, 202, 2, 100, 8, 65, 78, 65, 71, 65, 82, 73, 32, 133, 18, 12, 73, 67, 69, 32, 67, 79, 78, 84, 82, 79, 76, 32, 192, 2, 222, 1, 65, 38, 67, 22, 71, 36, 4, 72, 69, 65, 68, 96, 7, 76, 69, 84, 84, 69, 82, 32, 202, 5, 83, 148, 7, 11, 86, 79, 87, 69, 76, - 32, 83, 73, 71, 78, 32, 186, 144, 19, 68, 160, 139, 6, 4, 74, 65, 73, 78, - 135, 165, 4, 79, 4, 218, 230, 12, 67, 187, 216, 12, 66, 2, 199, 153, 6, - 65, 4, 202, 230, 12, 82, 151, 238, 1, 65, 6, 44, 5, 32, 77, 65, 82, 75, - 199, 174, 29, 83, 5, 217, 158, 19, 7, 32, 87, 73, 84, 72, 32, 72, 158, 1, + 32, 83, 73, 71, 78, 32, 238, 131, 19, 68, 160, 139, 6, 4, 74, 65, 73, 78, + 135, 165, 4, 79, 4, 218, 222, 12, 67, 239, 211, 12, 66, 2, 147, 149, 6, + 65, 4, 202, 222, 12, 82, 151, 238, 1, 65, 6, 44, 5, 32, 77, 65, 82, 75, + 251, 161, 29, 83, 5, 141, 146, 19, 7, 32, 87, 73, 84, 72, 32, 72, 158, 1, 162, 2, 65, 54, 67, 62, 68, 50, 71, 62, 72, 52, 2, 77, 65, 46, 83, 170, - 165, 7, 66, 150, 131, 5, 75, 206, 202, 3, 82, 150, 173, 3, 79, 238, 192, + 157, 7, 66, 150, 131, 5, 75, 130, 198, 3, 82, 150, 173, 3, 79, 238, 192, 3, 89, 214, 118, 85, 250, 35, 78, 138, 199, 1, 74, 174, 57, 76, 70, 84, 46, 86, 242, 207, 1, 73, 134, 197, 1, 80, 2, 90, 138, 69, 70, 2, 81, 187, - 2, 69, 13, 230, 219, 29, 65, 2, 73, 2, 85, 2, 87, 3, 89, 10, 26, 65, 227, - 216, 29, 72, 9, 185, 2, 4, 78, 68, 82, 65, 12, 166, 253, 25, 68, 154, - 219, 3, 72, 187, 2, 65, 10, 134, 252, 12, 76, 130, 151, 16, 72, 138, 69, - 71, 187, 2, 65, 4, 136, 225, 16, 4, 69, 65, 86, 89, 131, 249, 12, 65, 5, - 157, 162, 7, 6, 82, 87, 65, 82, 73, 32, 12, 38, 72, 206, 214, 29, 83, - 187, 2, 65, 8, 36, 3, 79, 82, 84, 223, 216, 29, 65, 6, 167, 150, 12, 32, + 2, 69, 13, 154, 207, 29, 65, 2, 73, 2, 85, 2, 87, 3, 89, 10, 26, 65, 151, + 204, 29, 72, 9, 185, 2, 4, 78, 68, 82, 65, 12, 218, 240, 25, 68, 154, + 219, 3, 72, 187, 2, 65, 10, 134, 244, 12, 76, 182, 146, 16, 72, 138, 69, + 71, 187, 2, 65, 4, 188, 212, 16, 4, 69, 65, 86, 89, 131, 249, 12, 65, 5, + 157, 154, 7, 6, 82, 87, 65, 82, 73, 32, 12, 38, 72, 130, 202, 29, 83, + 187, 2, 65, 8, 36, 3, 79, 82, 84, 147, 204, 29, 65, 6, 167, 142, 12, 32, 68, 168, 1, 19, 69, 81, 85, 69, 78, 67, 69, 32, 70, 79, 82, 32, 76, 69, - 84, 84, 69, 82, 32, 104, 4, 73, 71, 78, 32, 137, 156, 27, 10, 84, 82, 69, - 83, 83, 32, 83, 73, 71, 78, 16, 210, 223, 3, 71, 2, 75, 160, 250, 23, 3, + 84, 84, 69, 82, 32, 104, 4, 73, 71, 78, 32, 189, 143, 27, 10, 84, 82, 69, + 83, 83, 32, 83, 73, 71, 78, 16, 158, 219, 3, 71, 2, 75, 136, 242, 23, 3, 68, 68, 68, 2, 82, 206, 250, 1, 89, 38, 70, 2, 81, 3, 90, 48, 178, 3, 66, 0, 10, 69, 88, 84, 69, 78, 68, 69, 68, 32, 66, 36, 11, 67, 65, 78, 68, 82, 65, 66, 73, 78, 68, 85, 64, 8, 87, 69, 83, 84, 69, 82, 78, 32, 32, - 10, 82, 69, 86, 69, 82, 83, 69, 68, 32, 78, 138, 208, 6, 83, 182, 198, + 10, 82, 69, 86, 69, 82, 83, 69, 68, 32, 78, 214, 203, 6, 83, 158, 190, 12, 73, 150, 158, 6, 77, 46, 78, 190, 66, 65, 72, 18, 68, 79, 85, 66, 76, 69, 32, 67, 65, 78, 68, 82, 65, 66, 73, 78, 68, 85, 62, 80, 144, 198, 2, 12, 72, 73, 71, 72, 32, 83, 80, 65, 67, 73, 78, 71, 167, 80, 86, 4, 245, - 236, 12, 4, 72, 65, 76, 69, 11, 11, 32, 8, 206, 213, 22, 65, 154, 163, 3, + 228, 12, 4, 72, 65, 76, 69, 11, 11, 32, 8, 130, 201, 22, 65, 154, 163, 3, 86, 163, 231, 1, 84, 4, 30, 78, 21, 3, 70, 73, 86, 2, 17, 2, 73, 78, 2, - 193, 240, 21, 8, 69, 45, 76, 73, 75, 69, 32, 66, 50, 150, 1, 65, 52, 7, - 67, 65, 78, 68, 82, 65, 32, 218, 150, 19, 79, 34, 80, 162, 183, 4, 85, - 194, 229, 1, 83, 170, 69, 86, 166, 202, 1, 73, 199, 140, 2, 69, 10, 154, - 208, 29, 65, 2, 73, 2, 85, 2, 87, 3, 89, 6, 176, 151, 19, 4, 76, 79, 78, - 71, 182, 184, 10, 69, 3, 79, 10, 222, 179, 24, 70, 136, 6, 2, 83, 84, + 245, 227, 21, 8, 69, 45, 76, 73, 75, 69, 32, 66, 50, 150, 1, 65, 52, 7, + 67, 65, 78, 68, 82, 65, 32, 142, 138, 19, 79, 34, 80, 162, 183, 4, 85, + 194, 229, 1, 83, 170, 69, 86, 166, 202, 1, 73, 199, 140, 2, 69, 10, 206, + 195, 29, 65, 2, 73, 2, 85, 2, 87, 3, 89, 6, 228, 138, 19, 4, 76, 79, 78, + 71, 182, 184, 10, 69, 3, 79, 10, 146, 167, 24, 70, 136, 6, 2, 83, 84, 254, 162, 3, 84, 155, 87, 79, 232, 2, 182, 2, 65, 150, 2, 69, 74, 71, 224, 4, 6, 78, 71, 66, 65, 84, 32, 248, 1, 5, 82, 69, 67, 84, 32, 98, 83, - 206, 2, 86, 200, 7, 2, 89, 65, 32, 4, 90, 90, 89, 32, 232, 179, 5, 2, 84, - 84, 228, 168, 15, 10, 70, 70, 69, 82, 69, 78, 67, 69, 32, 66, 197, 219, + 206, 2, 86, 200, 7, 2, 89, 65, 32, 4, 90, 90, 89, 32, 180, 175, 5, 2, 84, + 84, 204, 160, 15, 10, 70, 70, 69, 82, 69, 78, 67, 69, 32, 66, 197, 219, 7, 12, 77, 69, 78, 83, 73, 79, 78, 32, 79, 82, 73, 71, 20, 42, 77, 226, - 132, 9, 69, 155, 145, 13, 71, 16, 40, 4, 79, 78, 68, 32, 171, 159, 3, 69, - 14, 128, 1, 5, 87, 73, 84, 72, 32, 198, 179, 18, 84, 232, 228, 2, 12, 83, - 72, 65, 80, 69, 32, 87, 73, 84, 72, 32, 65, 251, 238, 4, 79, 8, 146, 148, - 22, 66, 182, 2, 84, 174, 148, 4, 76, 27, 82, 14, 184, 138, 5, 5, 32, 70, - 65, 67, 69, 213, 173, 17, 4, 83, 69, 76, 32, 78, 64, 3, 73, 84, 32, 149, + 252, 8, 69, 207, 140, 13, 71, 16, 40, 4, 79, 78, 68, 32, 247, 154, 3, 69, + 14, 128, 1, 5, 87, 73, 84, 72, 32, 250, 166, 18, 84, 232, 228, 2, 12, 83, + 72, 65, 80, 69, 32, 87, 73, 84, 72, 32, 65, 251, 238, 4, 79, 8, 198, 135, + 22, 66, 182, 2, 84, 174, 148, 4, 76, 27, 82, 14, 132, 134, 5, 5, 32, 70, + 65, 67, 69, 189, 165, 17, 4, 83, 69, 76, 32, 78, 64, 3, 73, 84, 32, 149, 2, 8, 82, 65, 77, 32, 70, 79, 82, 32, 60, 98, 70, 44, 2, 78, 73, 2, 79, 14, 83, 46, 84, 44, 3, 90, 69, 82, 13, 5, 69, 73, 71, 72, 84, 12, 128, 1, 2, 73, 86, 25, 3, 79, 85, 82, 6, 87, 78, 12, 96, 4, 69, 86, 69, 78, 1, 2, - 73, 88, 12, 28, 3, 72, 82, 69, 15, 87, 6, 23, 69, 6, 11, 79, 7, 219, 133, - 17, 32, 18, 88, 5, 69, 65, 82, 84, 72, 64, 5, 71, 82, 69, 65, 84, 0, 4, - 76, 69, 83, 83, 39, 72, 7, 25, 4, 76, 89, 32, 72, 4, 214, 199, 24, 85, - 239, 145, 1, 69, 4, 193, 146, 13, 4, 69, 82, 32, 89, 4, 200, 155, 5, 7, + 73, 88, 12, 28, 3, 72, 82, 69, 15, 87, 6, 23, 69, 6, 11, 79, 7, 143, 249, + 16, 32, 18, 88, 5, 69, 65, 82, 84, 72, 64, 5, 71, 82, 69, 65, 84, 0, 4, + 76, 69, 83, 83, 39, 72, 7, 25, 4, 76, 89, 32, 72, 4, 138, 187, 24, 85, + 239, 145, 1, 69, 4, 193, 138, 13, 4, 69, 82, 32, 89, 4, 148, 151, 5, 7, 69, 65, 86, 69, 78, 76, 89, 1, 4, 85, 77, 65, 78, 64, 120, 17, 78, 69, 71, 65, 84, 73, 86, 69, 32, 67, 73, 82, 67, 76, 69, 68, 32, 41, 9, 67, - 73, 82, 67, 76, 69, 68, 32, 83, 42, 38, 83, 182, 32, 78, 203, 215, 20, + 73, 82, 67, 76, 69, 68, 32, 83, 42, 38, 83, 182, 32, 78, 255, 202, 20, 68, 22, 49, 10, 65, 78, 83, 45, 83, 69, 82, 73, 70, 32, 22, 254, 31, 78, - 147, 175, 27, 68, 4, 132, 174, 27, 15, 67, 85, 82, 82, 69, 78, 84, 32, + 199, 162, 27, 68, 4, 184, 161, 27, 15, 67, 85, 82, 82, 69, 78, 84, 32, 83, 89, 77, 66, 79, 76, 32, 187, 248, 1, 72, 12, 98, 65, 144, 1, 5, 67, - 79, 78, 84, 73, 192, 240, 15, 3, 84, 79, 82, 253, 152, 10, 3, 71, 85, 73, - 6, 76, 9, 80, 80, 79, 73, 78, 84, 69, 68, 32, 245, 161, 27, 4, 66, 76, - 69, 68, 4, 144, 175, 17, 7, 66, 85, 84, 32, 82, 69, 76, 203, 212, 11, 70, - 2, 53, 11, 78, 85, 79, 85, 83, 32, 85, 78, 68, 69, 82, 2, 157, 145, 17, + 79, 78, 84, 73, 244, 227, 15, 3, 84, 79, 82, 253, 152, 10, 3, 71, 85, 73, + 6, 76, 9, 80, 80, 79, 73, 78, 84, 69, 68, 32, 169, 149, 27, 4, 66, 76, + 69, 68, 4, 196, 162, 17, 7, 66, 85, 84, 32, 82, 69, 76, 203, 212, 11, 70, + 2, 53, 11, 78, 85, 79, 85, 83, 32, 85, 78, 68, 69, 82, 2, 209, 132, 17, 3, 76, 73, 78, 156, 1, 80, 9, 69, 83, 32, 65, 75, 85, 82, 85, 32, 238, 5, - 73, 177, 138, 17, 2, 79, 82, 144, 1, 142, 2, 68, 36, 7, 76, 69, 84, 84, - 69, 82, 32, 236, 1, 5, 83, 73, 71, 78, 32, 58, 86, 240, 170, 9, 6, 77, - 69, 68, 73, 65, 76, 234, 132, 5, 71, 134, 237, 4, 69, 148, 209, 4, 12, + 73, 229, 253, 16, 2, 79, 82, 144, 1, 142, 2, 68, 36, 7, 76, 69, 84, 84, + 69, 82, 32, 236, 1, 5, 83, 73, 71, 78, 32, 58, 86, 240, 162, 9, 6, 77, + 69, 68, 73, 65, 76, 234, 132, 5, 71, 186, 232, 4, 69, 148, 209, 4, 12, 80, 82, 69, 70, 73, 88, 69, 68, 32, 78, 65, 83, 209, 129, 5, 7, 73, 78, - 73, 84, 73, 65, 76, 22, 166, 220, 25, 79, 191, 236, 1, 73, 84, 218, 208, - 10, 84, 190, 243, 11, 89, 182, 230, 2, 65, 162, 52, 68, 214, 6, 85, 186, + 73, 84, 73, 65, 76, 22, 218, 207, 25, 79, 191, 236, 1, 73, 84, 218, 200, + 10, 84, 242, 238, 11, 89, 182, 230, 2, 65, 162, 52, 68, 214, 6, 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 75, 2, 80, 138, 69, 72, 2, 74, 2, 77, 2, 82, 2, 86, 2, 90, 186, 2, 69, 3, 79, - 8, 158, 242, 24, 72, 210, 42, 67, 98, 78, 139, 216, 3, 65, 18, 64, 10, - 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 187, 253, 26, 73, 16, 166, 164, + 8, 210, 229, 24, 72, 210, 42, 67, 98, 78, 139, 216, 3, 65, 18, 64, 10, + 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 239, 240, 26, 73, 16, 218, 151, 15, 65, 178, 190, 10, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 10, - 68, 5, 83, 73, 79, 78, 32, 136, 242, 1, 2, 78, 71, 183, 176, 26, 68, 6, - 26, 83, 235, 234, 5, 84, 4, 142, 205, 27, 76, 187, 100, 73, 2, 253, 150, - 19, 3, 32, 76, 65, 4, 182, 162, 28, 83, 167, 88, 70, 212, 5, 188, 2, 6, + 68, 5, 83, 73, 79, 78, 32, 212, 237, 1, 2, 78, 71, 159, 168, 26, 68, 6, + 26, 83, 183, 230, 5, 84, 4, 194, 192, 27, 76, 187, 100, 73, 2, 177, 138, + 19, 3, 32, 76, 65, 4, 234, 149, 28, 83, 167, 88, 70, 212, 5, 188, 2, 6, 67, 85, 77, 69, 78, 84, 124, 7, 69, 83, 32, 78, 79, 84, 32, 194, 3, 71, 202, 3, 76, 36, 10, 77, 73, 78, 79, 32, 84, 73, 76, 69, 32, 226, 1, 78, - 38, 84, 246, 2, 85, 204, 17, 2, 87, 78, 212, 203, 16, 8, 32, 78, 79, 84, + 38, 84, 246, 2, 85, 204, 17, 2, 87, 78, 136, 191, 16, 8, 32, 78, 79, 84, 32, 76, 73, 84, 184, 141, 12, 8, 86, 69, 32, 79, 70, 32, 80, 69, 174, 4, 79, 235, 25, 68, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 40, 4, 84, 69, 88, - 84, 175, 143, 2, 80, 5, 169, 143, 2, 6, 32, 65, 78, 68, 32, 80, 22, 164, + 84, 251, 138, 2, 80, 5, 245, 138, 2, 6, 32, 65, 78, 68, 32, 80, 22, 164, 1, 11, 67, 79, 78, 84, 65, 73, 78, 32, 65, 83, 32, 92, 6, 68, 73, 86, 73, - 68, 69, 112, 2, 80, 82, 48, 7, 83, 85, 67, 67, 69, 69, 68, 185, 233, 22, + 68, 69, 112, 2, 80, 82, 48, 7, 83, 85, 67, 67, 69, 69, 68, 237, 220, 22, 2, 70, 79, 6, 248, 1, 15, 78, 79, 82, 77, 65, 76, 32, 83, 85, 66, 71, 82, - 79, 85, 80, 155, 137, 21, 77, 5, 145, 141, 22, 23, 32, 87, 73, 84, 72, + 79, 85, 80, 207, 252, 20, 77, 5, 197, 128, 22, 23, 32, 87, 73, 84, 72, 32, 82, 69, 86, 69, 82, 83, 69, 68, 32, 78, 69, 71, 65, 84, 73, 79, 78, - 6, 44, 5, 69, 67, 69, 68, 69, 143, 180, 28, 79, 5, 205, 167, 9, 2, 32, - 79, 125, 36, 3, 82, 65, 32, 139, 243, 28, 32, 120, 120, 7, 76, 69, 84, + 6, 44, 5, 69, 67, 69, 68, 69, 195, 167, 28, 79, 5, 205, 159, 9, 2, 32, + 79, 125, 36, 3, 82, 65, 32, 191, 230, 28, 32, 120, 120, 7, 76, 69, 84, 84, 69, 82, 32, 208, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, - 254, 185, 23, 65, 187, 2, 83, 88, 170, 209, 25, 65, 38, 68, 82, 82, 34, + 178, 173, 23, 65, 187, 2, 83, 88, 222, 196, 25, 65, 38, 68, 82, 82, 34, 84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 86, 2, 89, 186, - 2, 69, 3, 79, 22, 130, 159, 19, 86, 174, 183, 6, 65, 38, 85, 186, 202, 1, - 73, 198, 140, 2, 69, 3, 79, 4, 142, 161, 21, 80, 199, 193, 2, 76, 200, 1, + 2, 69, 3, 79, 22, 182, 146, 19, 86, 174, 183, 6, 65, 38, 85, 186, 202, 1, + 73, 198, 140, 2, 69, 3, 79, 4, 194, 148, 21, 80, 199, 193, 2, 76, 200, 1, 72, 8, 72, 79, 82, 73, 90, 79, 78, 84, 1, 6, 86, 69, 82, 84, 73, 67, 100, - 17, 2, 65, 76, 100, 32, 2, 45, 48, 155, 148, 24, 32, 98, 58, 48, 2, 49, - 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 14, 149, 186, 20, 2, 45, 48, 4, 158, - 141, 27, 75, 219, 150, 1, 71, 26, 34, 32, 57, 4, 84, 69, 68, 32, 8, 162, - 159, 25, 80, 34, 77, 194, 71, 79, 195, 198, 2, 65, 18, 214, 1, 67, 34, - 83, 128, 160, 16, 3, 76, 73, 78, 148, 134, 1, 4, 79, 66, 69, 76, 244, 9, + 17, 2, 65, 76, 100, 32, 2, 45, 48, 207, 135, 24, 32, 98, 58, 48, 2, 49, + 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 14, 201, 173, 20, 2, 45, 48, 4, 210, + 128, 27, 75, 219, 150, 1, 71, 26, 34, 32, 57, 4, 84, 69, 68, 32, 8, 214, + 146, 25, 80, 34, 77, 194, 71, 79, 195, 198, 2, 65, 18, 214, 1, 67, 34, + 83, 180, 147, 16, 3, 76, 73, 78, 148, 134, 1, 4, 79, 66, 69, 76, 244, 9, 9, 84, 82, 65, 78, 83, 80, 79, 83, 73, 202, 230, 6, 70, 161, 41, 14, 82, - 73, 71, 72, 84, 45, 80, 79, 73, 78, 84, 73, 78, 71, 4, 146, 212, 27, 73, - 239, 16, 82, 4, 246, 144, 27, 79, 183, 116, 81, 162, 1, 40, 3, 66, 76, + 73, 71, 72, 84, 45, 80, 79, 73, 78, 84, 73, 78, 71, 4, 198, 199, 27, 73, + 239, 16, 82, 4, 170, 132, 27, 79, 183, 116, 81, 162, 1, 40, 3, 66, 76, 69, 137, 17, 2, 71, 72, 160, 1, 42, 32, 190, 10, 45, 241, 5, 2, 68, 32, 106, 226, 2, 67, 174, 1, 68, 38, 72, 32, 4, 73, 78, 84, 69, 38, 76, 144, 1, 7, 78, 69, 83, 84, 69, 68, 32, 74, 80, 66, 83, 130, 2, 85, 36, 9, 86, - 69, 82, 84, 73, 67, 65, 76, 32, 188, 168, 6, 6, 79, 66, 76, 73, 81, 85, - 144, 191, 2, 9, 82, 73, 71, 72, 84, 32, 65, 82, 67, 134, 189, 3, 65, 166, - 221, 9, 69, 246, 198, 4, 81, 153, 106, 6, 87, 65, 86, 89, 32, 79, 24, - 100, 7, 73, 82, 67, 76, 69, 68, 32, 140, 215, 7, 4, 85, 82, 76, 89, 253, - 197, 1, 4, 79, 76, 79, 78, 20, 26, 78, 203, 215, 20, 68, 2, 221, 219, 2, - 5, 85, 77, 66, 69, 82, 4, 150, 255, 18, 79, 167, 210, 6, 65, 4, 250, 209, - 20, 73, 239, 63, 89, 4, 146, 160, 26, 82, 179, 246, 1, 71, 12, 54, 79, - 165, 171, 17, 7, 69, 70, 84, 32, 65, 82, 67, 10, 26, 87, 191, 220, 25, - 71, 6, 26, 45, 211, 133, 28, 32, 4, 226, 208, 20, 82, 211, 1, 57, 6, 132, - 153, 17, 9, 76, 69, 83, 83, 45, 84, 72, 65, 78, 255, 241, 9, 71, 8, 26, - 82, 179, 151, 27, 76, 6, 138, 158, 1, 69, 219, 250, 15, 73, 18, 80, 6, - 81, 85, 65, 82, 69, 32, 30, 84, 50, 85, 173, 229, 13, 4, 79, 76, 73, 68, - 4, 222, 235, 25, 73, 55, 85, 4, 212, 205, 12, 3, 65, 67, 75, 163, 202, 4, - 82, 8, 58, 83, 170, 156, 1, 67, 146, 156, 21, 80, 175, 247, 4, 66, 2, - 245, 180, 28, 4, 80, 69, 78, 83, 4, 174, 250, 18, 80, 255, 210, 9, 78, - 10, 36, 3, 66, 65, 82, 235, 129, 28, 76, 9, 11, 32, 6, 52, 7, 68, 79, 85, - 66, 76, 69, 32, 143, 243, 26, 76, 4, 138, 243, 26, 76, 51, 82, 48, 112, - 5, 76, 73, 78, 69, 32, 220, 1, 7, 83, 84, 82, 85, 67, 75, 32, 133, 235, + 69, 82, 84, 73, 67, 65, 76, 32, 136, 164, 6, 6, 79, 66, 76, 73, 81, 85, + 196, 187, 2, 9, 82, 73, 71, 72, 84, 32, 65, 82, 67, 134, 189, 3, 65, 218, + 216, 9, 69, 246, 198, 4, 81, 153, 106, 6, 87, 65, 86, 89, 32, 79, 24, + 100, 7, 73, 82, 67, 76, 69, 68, 32, 140, 207, 7, 4, 85, 82, 76, 89, 253, + 197, 1, 4, 79, 76, 79, 78, 20, 26, 78, 255, 202, 20, 68, 2, 169, 215, 2, + 5, 85, 77, 66, 69, 82, 4, 202, 242, 18, 79, 167, 210, 6, 65, 4, 174, 197, + 20, 73, 239, 63, 89, 4, 198, 147, 26, 82, 179, 246, 1, 71, 12, 54, 79, + 217, 158, 17, 7, 69, 70, 84, 32, 65, 82, 67, 10, 26, 87, 243, 207, 25, + 71, 6, 26, 45, 135, 249, 27, 32, 4, 150, 196, 20, 82, 211, 1, 57, 6, 184, + 140, 17, 9, 76, 69, 83, 83, 45, 84, 72, 65, 78, 255, 241, 9, 71, 8, 26, + 82, 231, 138, 27, 76, 6, 214, 153, 1, 69, 195, 242, 15, 73, 18, 80, 6, + 81, 85, 65, 82, 69, 32, 30, 84, 50, 85, 173, 221, 13, 4, 79, 76, 73, 68, + 4, 146, 223, 25, 73, 55, 85, 4, 212, 197, 12, 3, 65, 67, 75, 215, 197, 4, + 82, 8, 58, 83, 246, 151, 1, 67, 250, 147, 21, 80, 175, 247, 4, 66, 2, + 169, 168, 28, 4, 80, 69, 78, 83, 4, 226, 237, 18, 80, 255, 210, 9, 78, + 10, 36, 3, 66, 65, 82, 159, 245, 27, 76, 9, 11, 32, 6, 52, 7, 68, 79, 85, + 66, 76, 69, 32, 195, 230, 26, 76, 4, 190, 230, 26, 76, 51, 82, 48, 112, + 5, 76, 73, 78, 69, 32, 220, 1, 7, 83, 84, 82, 85, 67, 75, 32, 133, 227, 8, 7, 69, 78, 68, 69, 68, 32, 77, 12, 48, 8, 83, 76, 65, 78, 84, 69, 68, 32, 75, 69, 8, 70, 69, 56, 7, 71, 82, 69, 65, 84, 69, 82, 1, 4, 76, 69, - 83, 83, 4, 237, 198, 20, 9, 81, 85, 65, 76, 32, 84, 79, 32, 79, 2, 249, - 179, 14, 5, 45, 84, 72, 65, 78, 34, 160, 1, 8, 67, 65, 80, 73, 84, 65, + 83, 83, 4, 161, 186, 20, 9, 81, 85, 65, 76, 32, 84, 79, 32, 79, 2, 245, + 171, 14, 5, 45, 84, 72, 65, 78, 34, 160, 1, 8, 67, 65, 80, 73, 84, 65, 76, 32, 92, 7, 73, 84, 65, 76, 73, 67, 32, 124, 6, 83, 77, 65, 76, 76, - 32, 141, 223, 13, 8, 78, 45, 65, 82, 89, 32, 83, 85, 18, 206, 177, 12, - 71, 190, 218, 14, 80, 198, 140, 2, 67, 2, 72, 2, 78, 2, 81, 2, 82, 3, 90, - 10, 76, 6, 83, 77, 65, 76, 76, 32, 129, 250, 21, 7, 67, 65, 80, 73, 84, - 65, 76, 8, 162, 151, 29, 68, 2, 69, 2, 73, 3, 74, 4, 246, 175, 12, 71, - 171, 211, 16, 80, 6, 166, 175, 10, 70, 26, 77, 235, 209, 17, 83, 2, 215, - 156, 28, 78, 166, 1, 50, 32, 158, 1, 45, 189, 1, 4, 87, 65, 82, 68, 10, - 60, 4, 84, 65, 67, 75, 218, 236, 25, 70, 30, 82, 195, 79, 65, 5, 29, 5, - 32, 87, 73, 84, 72, 2, 11, 32, 2, 11, 67, 2, 197, 136, 21, 4, 73, 82, 67, - 76, 28, 60, 9, 80, 79, 73, 78, 84, 73, 78, 71, 32, 203, 237, 25, 70, 24, - 62, 83, 238, 239, 25, 65, 86, 69, 62, 70, 46, 82, 207, 1, 84, 4, 178, - 195, 17, 84, 161, 175, 8, 6, 77, 65, 76, 76, 32, 82, 128, 1, 56, 8, 32, + 32, 141, 215, 13, 8, 78, 45, 65, 82, 89, 32, 83, 85, 18, 206, 169, 12, + 71, 242, 213, 14, 80, 198, 140, 2, 67, 2, 72, 2, 78, 2, 81, 2, 82, 3, 90, + 10, 76, 6, 83, 77, 65, 76, 76, 32, 181, 237, 21, 7, 67, 65, 80, 73, 84, + 65, 76, 8, 214, 138, 29, 68, 2, 69, 2, 73, 3, 74, 4, 246, 167, 12, 71, + 223, 206, 16, 80, 6, 166, 167, 10, 70, 26, 77, 159, 205, 17, 83, 2, 139, + 144, 28, 78, 166, 1, 50, 32, 158, 1, 45, 189, 1, 4, 87, 65, 82, 68, 10, + 60, 4, 84, 65, 67, 75, 142, 224, 25, 70, 30, 82, 195, 79, 65, 5, 29, 5, + 32, 87, 73, 84, 72, 2, 11, 32, 2, 11, 67, 2, 249, 251, 20, 4, 73, 82, 67, + 76, 28, 60, 9, 80, 79, 73, 78, 84, 73, 78, 71, 32, 255, 224, 25, 70, 24, + 62, 83, 162, 227, 25, 65, 86, 69, 62, 70, 46, 82, 207, 1, 84, 4, 230, + 182, 17, 84, 161, 175, 8, 6, 77, 65, 76, 76, 32, 82, 128, 1, 56, 8, 32, 70, 65, 67, 73, 78, 71, 32, 89, 2, 83, 32, 8, 54, 72, 1, 9, 78, 79, 84, - 67, 72, 69, 68, 32, 72, 4, 237, 235, 27, 3, 79, 79, 75, 120, 178, 1, 65, - 200, 2, 6, 66, 76, 65, 67, 75, 32, 38, 84, 144, 246, 8, 2, 87, 72, 214, - 160, 8, 90, 178, 137, 9, 68, 50, 70, 82, 72, 150, 4, 67, 46, 81, 42, 82, - 22, 83, 247, 7, 80, 34, 40, 4, 82, 82, 79, 87, 175, 155, 26, 78, 33, 11, - 32, 30, 144, 1, 5, 87, 73, 84, 72, 32, 184, 242, 13, 14, 76, 69, 70, 84, - 87, 65, 82, 68, 83, 32, 79, 70, 32, 85, 138, 169, 12, 65, 178, 10, 70, - 179, 5, 84, 22, 192, 190, 5, 6, 67, 79, 82, 78, 69, 82, 170, 223, 20, 68, - 58, 76, 42, 77, 38, 78, 58, 83, 66, 69, 250, 12, 84, 135, 58, 72, 6, 246, - 149, 21, 65, 231, 137, 5, 67, 36, 36, 2, 82, 73, 161, 2, 2, 87, 79, 32, - 44, 5, 65, 78, 71, 76, 69, 139, 174, 26, 80, 30, 56, 8, 45, 72, 69, 65, - 68, 69, 68, 32, 199, 179, 26, 32, 28, 68, 5, 65, 82, 82, 79, 87, 138, - 149, 17, 90, 254, 150, 9, 68, 39, 80, 23, 11, 32, 20, 180, 167, 26, 15, + 67, 72, 69, 68, 32, 72, 4, 161, 223, 27, 3, 79, 79, 75, 120, 178, 1, 65, + 200, 2, 6, 66, 76, 65, 67, 75, 32, 38, 84, 144, 238, 8, 2, 87, 72, 138, + 156, 8, 90, 178, 137, 9, 68, 50, 70, 82, 72, 150, 4, 67, 46, 81, 42, 82, + 22, 83, 247, 7, 80, 34, 40, 4, 82, 82, 79, 87, 227, 142, 26, 78, 33, 11, + 32, 30, 144, 1, 5, 87, 73, 84, 72, 32, 184, 234, 13, 14, 76, 69, 70, 84, + 87, 65, 82, 68, 83, 32, 79, 70, 32, 85, 190, 164, 12, 65, 178, 10, 70, + 179, 5, 84, 22, 140, 186, 5, 6, 67, 79, 82, 78, 69, 82, 146, 215, 20, 68, + 58, 76, 42, 77, 38, 78, 58, 83, 66, 69, 250, 12, 84, 135, 58, 72, 6, 170, + 137, 21, 65, 231, 137, 5, 67, 36, 36, 2, 82, 73, 161, 2, 2, 87, 79, 32, + 44, 5, 65, 78, 71, 76, 69, 191, 161, 26, 80, 30, 56, 8, 45, 72, 69, 65, + 68, 69, 68, 32, 251, 166, 26, 32, 28, 68, 5, 65, 82, 82, 79, 87, 190, + 136, 17, 90, 254, 150, 9, 68, 39, 80, 23, 11, 32, 20, 232, 154, 26, 15, 76, 69, 70, 84, 87, 65, 82, 68, 83, 32, 79, 70, 32, 85, 80, 98, 84, 23, - 87, 4, 130, 173, 26, 32, 105, 15, 45, 72, 69, 65, 68, 69, 68, 32, 65, 82, + 87, 4, 182, 160, 26, 32, 105, 15, 45, 72, 69, 65, 68, 69, 68, 32, 65, 82, 82, 79, 87, 32, 87, 22, 138, 1, 65, 106, 79, 152, 1, 12, 85, 77, 32, 87, - 73, 84, 72, 32, 68, 82, 85, 77, 196, 129, 17, 6, 73, 86, 69, 32, 83, 76, - 139, 237, 10, 69, 8, 174, 209, 2, 67, 128, 150, 6, 10, 70, 84, 73, 78, - 71, 32, 80, 79, 73, 78, 181, 250, 15, 3, 71, 79, 78, 8, 56, 6, 77, 69, - 68, 65, 82, 89, 34, 80, 215, 208, 27, 79, 2, 157, 254, 20, 3, 32, 67, 65, - 4, 240, 196, 18, 6, 32, 79, 70, 32, 66, 76, 211, 141, 10, 76, 2, 213, - 231, 12, 3, 83, 84, 73, 162, 2, 76, 7, 80, 76, 79, 89, 65, 78, 32, 188, - 152, 20, 2, 77, 80, 219, 234, 8, 67, 158, 2, 212, 2, 6, 65, 70, 70, 73, - 88, 32, 160, 7, 7, 76, 69, 84, 84, 69, 82, 32, 232, 194, 1, 16, 84, 72, + 73, 84, 72, 32, 68, 82, 85, 77, 248, 244, 16, 6, 73, 86, 69, 32, 83, 76, + 139, 237, 10, 69, 8, 250, 204, 2, 67, 180, 146, 6, 10, 70, 84, 73, 78, + 71, 32, 80, 79, 73, 78, 233, 245, 15, 3, 71, 79, 78, 8, 56, 6, 77, 69, + 68, 65, 82, 89, 34, 80, 139, 196, 27, 79, 2, 209, 241, 20, 3, 32, 67, 65, + 4, 164, 184, 18, 6, 32, 79, 70, 32, 66, 76, 211, 141, 10, 76, 2, 213, + 223, 12, 3, 83, 84, 73, 162, 2, 76, 7, 80, 76, 79, 89, 65, 78, 32, 240, + 139, 20, 2, 77, 80, 219, 234, 8, 67, 158, 2, 212, 2, 6, 65, 70, 70, 73, + 88, 32, 160, 7, 7, 76, 69, 84, 84, 69, 82, 32, 180, 190, 1, 16, 84, 72, 73, 67, 75, 32, 76, 69, 84, 84, 69, 82, 32, 83, 69, 76, 232, 180, 3, 4, - 68, 79, 85, 66, 144, 243, 16, 19, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, + 68, 79, 85, 66, 248, 234, 16, 19, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 67, 72, 73, 78, 79, 79, 75, 145, 206, 5, 11, 83, 73, 71, 78, 32, 79, 32, 87, 73, 84, 72, 64, 140, 1, 9, 65, 84, 84, 65, 67, 72, 69, 68, 32, 184, 1, 5, 72, 73, 71, 72, 32, 106, 76, 40, 4, 82, 73, 71, 72, 173, 2, 4, 77, 73, 68, 32, 14, 112, 2, 84, 65, 232, 4, 13, 76, 69, 70, 84, 45, - 84, 79, 45, 82, 73, 71, 72, 84, 26, 83, 234, 130, 21, 69, 3, 73, 6, 44, - 5, 78, 71, 69, 78, 84, 207, 245, 27, 73, 5, 195, 135, 21, 32, 20, 174, 2, - 76, 50, 84, 38, 86, 250, 182, 8, 71, 186, 2, 65, 186, 214, 18, 87, 134, + 84, 79, 45, 82, 73, 71, 72, 84, 26, 83, 158, 246, 20, 69, 3, 73, 6, 44, + 5, 78, 71, 69, 78, 84, 131, 233, 27, 73, 5, 247, 250, 20, 32, 20, 174, 2, + 76, 50, 84, 38, 86, 250, 174, 8, 71, 186, 2, 65, 238, 209, 18, 87, 134, 26, 67, 227, 131, 1, 68, 24, 36, 2, 69, 70, 29, 3, 79, 87, 32, 2, 213, 2, - 3, 84, 32, 72, 22, 94, 65, 38, 76, 50, 84, 38, 86, 250, 182, 8, 71, 242, - 216, 18, 87, 134, 26, 67, 227, 131, 1, 68, 4, 134, 249, 21, 67, 195, 233, - 5, 82, 4, 216, 136, 8, 3, 79, 78, 71, 207, 218, 19, 73, 2, 185, 174, 8, + 3, 84, 32, 72, 22, 94, 65, 38, 76, 50, 84, 38, 86, 250, 174, 8, 71, 166, + 212, 18, 87, 134, 26, 67, 227, 131, 1, 68, 4, 186, 236, 21, 67, 195, 233, + 5, 82, 4, 216, 128, 8, 3, 79, 78, 71, 131, 214, 19, 73, 2, 185, 166, 8, 4, 73, 71, 72, 84, 4, 37, 7, 69, 82, 84, 73, 67, 65, 76, 5, 131, 1, 32, 4, 42, 72, 41, 6, 86, 69, 82, 84, 73, 67, 2, 37, 7, 79, 82, 73, 90, 79, - 78, 84, 2, 17, 2, 65, 76, 2, 11, 32, 2, 11, 83, 2, 209, 240, 27, 2, 69, + 78, 84, 2, 17, 2, 65, 76, 2, 11, 32, 2, 11, 83, 2, 133, 228, 27, 2, 69, 67, 214, 1, 222, 1, 65, 22, 68, 34, 69, 30, 70, 22, 71, 22, 74, 170, 1, 75, 66, 76, 50, 77, 62, 78, 134, 1, 79, 50, 80, 86, 82, 74, 83, 210, 2, - 84, 66, 85, 42, 86, 38, 87, 70, 88, 230, 243, 27, 72, 142, 60, 73, 206, - 41, 89, 215, 22, 66, 5, 227, 213, 28, 79, 7, 218, 188, 28, 32, 223, 61, - 72, 7, 150, 250, 28, 69, 3, 85, 5, 155, 170, 28, 32, 5, 247, 255, 24, 32, + 84, 66, 85, 42, 86, 38, 87, 70, 88, 154, 231, 27, 72, 142, 60, 73, 206, + 41, 89, 215, 22, 66, 5, 151, 201, 28, 79, 7, 142, 176, 28, 32, 223, 61, + 72, 7, 202, 237, 28, 69, 3, 85, 5, 207, 157, 28, 32, 5, 171, 243, 24, 32, 19, 11, 32, 16, 76, 8, 87, 73, 84, 72, 32, 68, 79, 84, 238, 5, 77, 2, 78, - 243, 204, 27, 83, 5, 53, 11, 83, 32, 73, 78, 83, 73, 68, 69, 32, 65, 78, - 2, 187, 251, 27, 68, 9, 26, 32, 147, 248, 28, 75, 4, 170, 254, 24, 82, - 231, 249, 3, 77, 9, 224, 223, 22, 3, 79, 78, 71, 139, 152, 6, 72, 11, 11, - 32, 8, 162, 4, 78, 138, 205, 27, 87, 135, 166, 1, 83, 19, 38, 32, 49, 5, - 65, 83, 65, 76, 32, 8, 202, 3, 77, 138, 205, 27, 87, 135, 166, 1, 83, 8, - 166, 246, 28, 65, 2, 73, 2, 79, 3, 85, 11, 234, 244, 28, 79, 146, 1, 65, - 2, 85, 3, 87, 9, 52, 7, 69, 82, 78, 73, 78, 32, 65, 183, 165, 28, 32, 4, - 146, 245, 28, 77, 3, 78, 11, 224, 220, 22, 6, 79, 77, 65, 78, 73, 65, + 167, 192, 27, 83, 5, 53, 11, 83, 32, 73, 78, 83, 73, 68, 69, 32, 65, 78, + 2, 239, 238, 27, 68, 9, 26, 32, 199, 235, 28, 75, 4, 222, 241, 24, 82, + 231, 249, 3, 77, 9, 148, 211, 22, 3, 79, 78, 71, 139, 152, 6, 72, 11, 11, + 32, 8, 162, 4, 78, 190, 192, 27, 87, 135, 166, 1, 83, 19, 38, 32, 49, 5, + 65, 83, 65, 76, 32, 8, 202, 3, 77, 190, 192, 27, 87, 135, 166, 1, 83, 8, + 218, 233, 28, 65, 2, 73, 2, 79, 3, 85, 11, 158, 232, 28, 79, 146, 1, 65, + 2, 85, 3, 87, 9, 52, 7, 69, 82, 78, 73, 78, 32, 65, 235, 152, 28, 32, 4, + 198, 232, 28, 77, 3, 78, 11, 148, 208, 22, 6, 79, 77, 65, 78, 73, 65, 186, 218, 5, 32, 223, 61, 72, 49, 58, 32, 164, 1, 5, 76, 79, 65, 78, 32, - 239, 185, 6, 72, 26, 102, 74, 22, 75, 2, 80, 2, 84, 20, 7, 87, 73, 84, - 72, 32, 68, 79, 230, 242, 28, 77, 2, 78, 3, 83, 5, 175, 181, 28, 32, 5, - 155, 186, 28, 32, 4, 167, 231, 12, 84, 18, 74, 69, 138, 203, 5, 79, 158, - 215, 22, 65, 210, 78, 68, 146, 1, 74, 3, 85, 6, 130, 242, 28, 69, 2, 72, - 3, 78, 9, 26, 32, 199, 241, 28, 72, 4, 222, 247, 24, 82, 231, 249, 3, 83, - 9, 190, 161, 28, 32, 226, 79, 72, 3, 73, 5, 137, 157, 7, 4, 79, 67, 65, - 76, 17, 66, 79, 182, 183, 28, 32, 134, 37, 69, 218, 19, 65, 2, 72, 3, 73, - 5, 143, 240, 28, 87, 194, 91, 234, 2, 65, 188, 3, 10, 68, 73, 84, 79, 82, - 73, 65, 76, 32, 67, 22, 71, 240, 79, 4, 73, 71, 72, 84, 146, 2, 76, 194, + 239, 177, 6, 72, 26, 102, 74, 22, 75, 2, 80, 2, 84, 20, 7, 87, 73, 84, + 72, 32, 68, 79, 154, 230, 28, 77, 2, 78, 3, 83, 5, 227, 168, 28, 32, 5, + 207, 173, 28, 32, 4, 167, 223, 12, 84, 18, 74, 69, 214, 198, 5, 79, 134, + 207, 22, 65, 210, 78, 68, 146, 1, 74, 3, 85, 6, 182, 229, 28, 69, 2, 72, + 3, 78, 9, 26, 32, 251, 228, 28, 72, 4, 146, 235, 24, 82, 231, 249, 3, 83, + 9, 242, 148, 28, 32, 226, 79, 72, 3, 73, 5, 137, 149, 7, 4, 79, 67, 65, + 76, 17, 66, 79, 234, 170, 28, 32, 134, 37, 69, 218, 19, 65, 2, 72, 3, 73, + 5, 195, 227, 28, 87, 140, 29, 234, 2, 65, 188, 3, 10, 68, 73, 84, 79, 82, + 73, 65, 76, 32, 67, 22, 71, 188, 75, 4, 73, 71, 72, 84, 146, 2, 76, 194, 9, 77, 214, 5, 78, 246, 3, 79, 36, 2, 81, 85, 182, 8, 82, 222, 1, 83, 118, 84, 242, 31, 85, 226, 1, 88, 128, 5, 2, 89, 69, 208, 86, 4, 45, 77, - 65, 73, 156, 153, 19, 3, 74, 69, 67, 244, 152, 2, 8, 86, 69, 82, 71, 82, - 69, 69, 78, 167, 199, 5, 80, 22, 38, 82, 166, 133, 27, 83, 135, 65, 71, - 19, 30, 32, 137, 1, 2, 84, 72, 6, 88, 3, 79, 70, 32, 233, 236, 4, 13, 87, - 73, 84, 72, 32, 72, 69, 65, 82, 73, 78, 71, 32, 4, 132, 204, 11, 2, 77, - 65, 143, 232, 6, 82, 11, 17, 2, 32, 71, 8, 44, 5, 76, 79, 66, 69, 32, - 187, 178, 25, 82, 6, 70, 65, 249, 254, 21, 11, 69, 85, 82, 79, 80, 69, - 45, 65, 70, 82, 73, 4, 244, 150, 10, 4, 77, 69, 82, 73, 193, 154, 2, 11, - 83, 73, 65, 45, 65, 85, 83, 84, 82, 65, 76, 2, 239, 182, 2, 79, 230, 79, - 108, 17, 89, 80, 84, 73, 65, 78, 32, 72, 73, 69, 82, 79, 71, 76, 89, 80, - 72, 130, 217, 2, 69, 203, 143, 26, 71, 226, 79, 30, 32, 197, 74, 2, 45, - 49, 172, 17, 146, 3, 65, 178, 4, 66, 52, 2, 67, 48, 224, 1, 2, 68, 48, - 170, 4, 69, 178, 3, 70, 164, 4, 2, 71, 48, 210, 3, 72, 214, 1, 73, 238, - 2, 76, 122, 77, 222, 8, 78, 210, 5, 79, 140, 5, 2, 80, 48, 120, 2, 82, - 48, 232, 1, 2, 83, 48, 190, 3, 84, 220, 2, 2, 85, 48, 250, 2, 86, 134, 5, - 87, 236, 2, 3, 88, 48, 48, 88, 3, 89, 48, 48, 84, 2, 90, 48, 208, 221, 3, - 3, 75, 48, 48, 153, 159, 15, 3, 81, 48, 48, 228, 1, 30, 48, 133, 3, 2, - 65, 48, 160, 1, 86, 48, 98, 49, 102, 52, 166, 55, 51, 194, 132, 21, 55, - 198, 232, 1, 50, 2, 53, 3, 54, 24, 170, 68, 54, 242, 141, 24, 53, 242, - 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 55, 2, 56, 3, 57, 24, 186, 209, 24, - 52, 2, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 53, 2, 54, 2, 56, 3, - 57, 28, 214, 208, 24, 48, 2, 50, 2, 51, 2, 53, 242, 145, 4, 49, 2, 52, 2, - 54, 2, 55, 2, 56, 3, 57, 68, 46, 48, 246, 54, 51, 162, 236, 22, 49, 3, - 50, 22, 210, 65, 55, 226, 159, 28, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, - 2, 56, 3, 57, 26, 148, 9, 4, 69, 71, 73, 78, 185, 25, 2, 48, 48, 56, 34, - 48, 90, 49, 251, 252, 8, 50, 24, 230, 39, 50, 158, 184, 28, 49, 2, 51, 2, - 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 22, 186, 205, 24, 48, 242, 145, 4, - 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 184, 1, 70, - 48, 94, 51, 102, 52, 102, 53, 106, 54, 194, 29, 50, 147, 255, 22, 49, 20, - 138, 204, 24, 56, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, - 55, 3, 57, 24, 174, 203, 24, 49, 2, 52, 242, 145, 4, 48, 2, 50, 2, 51, 2, - 53, 2, 54, 2, 55, 2, 56, 3, 57, 24, 202, 202, 24, 54, 2, 56, 242, 145, 4, - 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 3, 57, 42, 214, 60, 48, - 146, 141, 24, 50, 2, 52, 242, 145, 4, 49, 2, 51, 2, 53, 2, 54, 2, 55, 2, - 56, 3, 57, 32, 194, 60, 55, 174, 158, 28, 48, 2, 49, 2, 50, 2, 51, 2, 52, - 2, 53, 3, 54, 94, 30, 48, 189, 2, 2, 78, 68, 88, 38, 48, 94, 50, 102, 51, - 215, 7, 49, 22, 230, 199, 24, 56, 2, 57, 242, 145, 4, 49, 2, 50, 2, 51, - 2, 52, 2, 53, 2, 54, 3, 55, 24, 138, 199, 24, 48, 2, 56, 242, 145, 4, 49, - 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 18, 166, 198, 24, 52, - 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 54, 2, 55, 3, 56, 6, 11, 32, 6, - 156, 187, 5, 6, 87, 65, 76, 76, 69, 68, 210, 19, 69, 143, 234, 20, 83, - 132, 1, 42, 48, 133, 9, 5, 85, 76, 76, 32, 66, 130, 1, 54, 48, 94, 49, - 102, 51, 102, 52, 102, 53, 215, 1, 50, 20, 146, 196, 24, 49, 242, 145, 4, - 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 22, 182, 195, 24, - 51, 242, 145, 4, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, - 57, 26, 210, 194, 24, 49, 2, 55, 2, 56, 242, 145, 4, 48, 2, 50, 2, 51, 2, - 52, 2, 53, 2, 54, 3, 57, 26, 238, 193, 24, 53, 2, 54, 2, 55, 242, 145, 4, - 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 56, 3, 57, 14, 222, 26, 49, 158, 184, - 28, 48, 2, 50, 3, 51, 128, 1, 62, 48, 98, 49, 102, 51, 102, 52, 210, 27, - 50, 223, 209, 8, 53, 24, 166, 50, 55, 242, 141, 24, 54, 242, 145, 4, 49, - 2, 50, 2, 51, 2, 52, 2, 53, 2, 56, 3, 57, 22, 182, 191, 24, 49, 242, 145, - 4, 48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 24, 210, - 190, 24, 54, 2, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, - 2, 56, 3, 57, 24, 238, 189, 24, 51, 2, 53, 242, 145, 4, 48, 2, 49, 2, 50, - 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 24, 80, 2, 48, 48, 84, 4, 65, 76, 70, - 32, 161, 40, 7, 79, 82, 73, 90, 79, 78, 84, 18, 182, 188, 24, 54, 242, - 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 3, 56, 4, 22, 66, 255, 42, - 76, 2, 235, 253, 16, 76, 52, 58, 48, 181, 1, 9, 78, 83, 69, 82, 84, 32, - 65, 84, 32, 38, 18, 48, 95, 49, 22, 230, 186, 24, 53, 2, 57, 242, 145, 4, - 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 3, 56, 16, 138, 186, 24, 48, 2, - 49, 242, 145, 4, 50, 2, 51, 2, 52, 3, 53, 14, 68, 6, 66, 79, 84, 84, 79, - 77, 0, 3, 84, 79, 80, 243, 231, 19, 77, 7, 11, 32, 4, 206, 186, 27, 69, - 249, 8, 2, 83, 84, 22, 32, 2, 48, 48, 211, 235, 15, 79, 20, 166, 184, 24, - 50, 2, 54, 242, 145, 4, 49, 2, 51, 2, 52, 2, 53, 2, 55, 3, 56, 164, 1, - 118, 48, 128, 4, 15, 79, 68, 73, 70, 73, 69, 82, 32, 68, 65, 77, 65, 71, - 69, 68, 173, 130, 25, 5, 73, 82, 82, 79, 82, 132, 1, 42, 48, 98, 49, 106, - 50, 102, 51, 107, 52, 24, 182, 40, 49, 242, 141, 24, 51, 242, 145, 4, 50, - 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 44, 138, 41, 50, 190, 140, 24, - 48, 2, 53, 2, 54, 2, 55, 242, 145, 4, 49, 2, 51, 2, 52, 2, 56, 3, 57, 26, - 222, 180, 24, 50, 2, 52, 2, 56, 242, 145, 4, 48, 2, 49, 2, 51, 2, 53, 2, - 54, 2, 55, 3, 57, 26, 138, 38, 51, 242, 141, 24, 49, 242, 145, 4, 48, 2, - 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 146, 179, 24, 48, 242, - 145, 4, 49, 2, 50, 2, 51, 3, 52, 31, 25, 4, 32, 65, 84, 32, 28, 96, 6, - 66, 79, 84, 84, 79, 77, 120, 5, 83, 84, 65, 82, 84, 68, 3, 84, 79, 80, - 251, 177, 27, 69, 11, 11, 32, 8, 56, 5, 83, 84, 65, 82, 84, 186, 1, 65, - 183, 177, 27, 69, 5, 129, 2, 8, 32, 65, 78, 68, 32, 84, 79, 80, 7, 29, 5, - 32, 65, 78, 68, 32, 4, 138, 211, 24, 66, 147, 246, 2, 84, 11, 11, 32, 8, - 54, 65, 20, 5, 83, 84, 65, 82, 84, 163, 177, 27, 69, 2, 73, 2, 78, 68, 5, - 53, 11, 32, 65, 78, 68, 32, 66, 79, 84, 84, 79, 77, 2, 151, 229, 19, 32, - 194, 1, 50, 48, 128, 2, 2, 76, 48, 229, 1, 2, 85, 48, 98, 58, 49, 98, 51, - 194, 14, 50, 150, 6, 52, 163, 234, 22, 48, 24, 146, 32, 56, 226, 159, 28, - 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 28, 162, 173, - 24, 51, 2, 52, 2, 53, 2, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 54, 2, 56, - 3, 57, 44, 34, 48, 94, 49, 207, 150, 21, 50, 20, 154, 172, 24, 53, 242, - 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 22, 190, - 171, 24, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, - 2, 56, 3, 57, 52, 34, 49, 102, 50, 167, 251, 22, 48, 26, 182, 170, 24, - 48, 2, 49, 2, 56, 242, 145, 4, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, - 57, 8, 210, 169, 24, 50, 242, 145, 4, 48, 3, 49, 152, 1, 50, 48, 193, - 138, 19, 6, 86, 69, 82, 76, 65, 89, 150, 1, 66, 48, 154, 1, 49, 138, 1, - 50, 102, 51, 106, 53, 143, 248, 22, 52, 34, 90, 54, 206, 167, 24, 49, 2, - 53, 242, 145, 4, 50, 2, 51, 2, 52, 2, 55, 2, 56, 3, 57, 15, 186, 185, 28, - 65, 2, 66, 2, 67, 2, 68, 2, 69, 3, 70, 28, 98, 48, 174, 166, 24, 57, 242, - 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 9, 154, 184, - 28, 65, 2, 66, 3, 67, 28, 134, 166, 24, 48, 2, 52, 2, 53, 2, 57, 242, - 145, 4, 49, 2, 50, 2, 51, 2, 54, 2, 55, 3, 56, 32, 134, 23, 54, 158, 142, - 24, 48, 2, 51, 242, 145, 4, 49, 2, 50, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, - 8, 202, 22, 48, 227, 159, 28, 49, 26, 26, 48, 219, 202, 8, 49, 22, 254, - 163, 24, 49, 2, 51, 242, 145, 4, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, - 3, 57, 68, 34, 48, 98, 49, 243, 245, 22, 50, 24, 142, 21, 51, 242, 141, - 24, 50, 242, 145, 4, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 24, - 158, 162, 24, 48, 2, 54, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, - 55, 2, 56, 3, 57, 108, 50, 48, 94, 49, 106, 50, 98, 51, 219, 191, 19, 52, - 22, 134, 161, 24, 50, 2, 54, 242, 145, 4, 49, 2, 51, 2, 52, 2, 53, 2, 55, - 2, 56, 3, 57, 26, 186, 18, 52, 242, 141, 24, 55, 242, 145, 4, 48, 2, 49, - 2, 50, 2, 51, 2, 53, 2, 54, 2, 56, 3, 57, 24, 210, 17, 54, 226, 159, 28, - 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 22, 226, 158, - 24, 53, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, - 3, 57, 90, 34, 48, 249, 12, 3, 65, 76, 76, 88, 42, 48, 94, 49, 102, 51, - 195, 239, 22, 50, 26, 174, 157, 24, 51, 2, 55, 2, 56, 2, 57, 242, 145, 4, - 49, 2, 50, 2, 52, 2, 53, 3, 54, 24, 210, 156, 24, 49, 2, 54, 242, 145, 4, - 48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 18, 238, 155, 24, - 50, 2, 51, 242, 145, 4, 48, 2, 49, 2, 52, 2, 53, 3, 54, 94, 50, 48, 90, - 50, 102, 51, 102, 52, 163, 236, 22, 49, 22, 254, 12, 54, 226, 159, 28, - 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 24, 150, 154, 24, - 51, 2, 57, 242, 145, 4, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 3, - 56, 22, 178, 153, 24, 50, 242, 145, 4, 48, 2, 49, 2, 51, 2, 52, 2, 53, 2, - 54, 2, 55, 2, 56, 3, 57, 6, 190, 170, 28, 48, 2, 49, 3, 50, 158, 1, 42, - 48, 185, 4, 5, 69, 82, 84, 73, 67, 156, 1, 62, 48, 98, 49, 98, 50, 210, - 1, 51, 169, 148, 24, 2, 52, 48, 42, 198, 9, 55, 98, 49, 146, 141, 24, 50, - 242, 145, 4, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 32, 186, 8, 49, 46, - 50, 226, 159, 28, 48, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, - 50, 98, 48, 150, 149, 24, 51, 2, 56, 2, 57, 242, 145, 4, 49, 2, 50, 2, - 52, 2, 53, 2, 54, 3, 55, 27, 130, 167, 28, 65, 2, 66, 2, 67, 2, 68, 2, - 69, 2, 70, 2, 71, 2, 72, 2, 73, 2, 74, 2, 75, 3, 76, 28, 166, 148, 24, - 48, 2, 49, 2, 51, 2, 55, 242, 145, 4, 50, 2, 52, 2, 53, 2, 54, 2, 56, 3, - 57, 2, 181, 246, 23, 2, 65, 76, 66, 34, 48, 161, 2, 3, 73, 68, 69, 64, - 26, 48, 94, 49, 103, 50, 22, 230, 146, 24, 51, 2, 57, 242, 145, 4, 49, 2, - 50, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 28, 138, 146, 24, 48, 2, 52, 2, - 55, 2, 56, 242, 145, 4, 49, 2, 50, 2, 51, 2, 53, 2, 54, 3, 57, 14, 166, - 145, 24, 52, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 3, 53, 2, 17, 2, 32, - 76, 2, 247, 195, 15, 79, 24, 202, 2, 52, 242, 141, 24, 54, 2, 56, 242, - 145, 4, 49, 2, 50, 2, 51, 2, 53, 3, 55, 18, 226, 143, 24, 49, 242, 145, - 4, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 82, 22, 48, 167, 1, 49, - 34, 90, 50, 46, 51, 242, 141, 24, 52, 2, 53, 242, 145, 4, 49, 2, 54, 2, - 55, 2, 56, 3, 57, 11, 138, 160, 28, 65, 2, 66, 2, 67, 3, 68, 7, 222, 159, - 28, 65, 3, 66, 48, 66, 53, 86, 54, 174, 158, 28, 48, 2, 49, 2, 50, 2, 51, - 3, 52, 21, 254, 158, 28, 65, 2, 66, 2, 67, 2, 68, 2, 69, 2, 70, 2, 71, 2, - 72, 3, 73, 19, 170, 158, 28, 65, 2, 66, 2, 67, 2, 68, 2, 69, 2, 70, 2, - 71, 3, 72, 182, 62, 22, 51, 211, 1, 52, 192, 46, 106, 52, 206, 195, 5, - 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, 68, 2, 69, 3, 70, - 192, 2, 218, 193, 13, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, - 68, 2, 69, 3, 70, 246, 15, 42, 51, 190, 194, 5, 48, 2, 49, 3, 50, 246, 3, - 142, 1, 70, 190, 191, 13, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, - 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, 68, 3, 69, 22, 174, 154, 28, - 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 3, 65, - 18, 26, 32, 235, 241, 15, 72, 16, 70, 80, 124, 5, 82, 65, 89, 83, 32, - 226, 152, 3, 84, 155, 231, 22, 83, 8, 222, 152, 3, 79, 233, 198, 16, 22, - 69, 84, 65, 76, 76, 69, 68, 32, 79, 85, 84, 76, 73, 78, 69, 68, 32, 66, - 76, 65, 67, 75, 4, 148, 254, 18, 2, 73, 78, 1, 3, 79, 85, 84, 160, 1, - 132, 1, 13, 66, 65, 83, 65, 78, 32, 76, 69, 84, 84, 69, 82, 32, 166, 3, - 69, 176, 4, 7, 89, 77, 65, 73, 67, 32, 76, 223, 142, 28, 70, 80, 230, 1, - 71, 78, 76, 34, 78, 50, 82, 234, 134, 26, 69, 166, 140, 1, 67, 2, 68, 2, - 75, 2, 83, 2, 84, 2, 90, 206, 105, 66, 2, 70, 2, 72, 2, 74, 2, 77, 2, 80, - 2, 81, 2, 86, 2, 88, 214, 22, 65, 2, 73, 2, 79, 2, 85, 3, 89, 8, 38, 72, - 206, 253, 27, 74, 215, 22, 69, 4, 214, 190, 25, 65, 203, 213, 2, 69, 4, - 166, 253, 27, 76, 215, 22, 69, 8, 134, 253, 27, 68, 2, 74, 214, 22, 65, - 3, 69, 4, 214, 252, 27, 82, 215, 22, 69, 32, 96, 5, 67, 84, 82, 73, 67, - 160, 1, 7, 77, 69, 78, 84, 32, 79, 70, 134, 133, 27, 80, 135, 83, 86, 10, - 26, 32, 155, 159, 24, 65, 8, 98, 80, 128, 221, 17, 2, 84, 79, 176, 246, - 8, 9, 76, 73, 71, 72, 84, 32, 66, 85, 76, 187, 33, 65, 2, 11, 76, 2, 199, - 144, 28, 85, 19, 11, 32, 16, 72, 5, 87, 73, 84, 72, 32, 177, 222, 16, 7, - 79, 80, 69, 78, 73, 78, 71, 12, 130, 1, 76, 32, 12, 84, 87, 79, 32, 72, - 79, 82, 73, 90, 79, 78, 84, 170, 233, 19, 86, 226, 182, 4, 85, 142, 61, - 79, 175, 177, 2, 68, 2, 141, 231, 25, 3, 79, 78, 71, 2, 197, 227, 14, 7, - 65, 76, 32, 83, 84, 82, 79, 46, 238, 175, 4, 69, 189, 214, 15, 15, 73, - 71, 65, 84, 85, 82, 69, 32, 90, 65, 89, 73, 78, 45, 89, 53, 48, 4, 79, - 74, 73, 32, 218, 2, 80, 163, 3, 32, 18, 164, 1, 10, 67, 79, 77, 80, 79, - 78, 69, 78, 84, 32, 109, 26, 77, 79, 68, 73, 70, 73, 69, 82, 32, 70, 73, - 84, 90, 80, 65, 84, 82, 73, 67, 75, 32, 84, 89, 80, 69, 45, 8, 140, 141, - 15, 2, 82, 69, 12, 5, 67, 85, 82, 76, 89, 0, 5, 87, 72, 73, 84, 69, 185, - 207, 2, 2, 66, 65, 10, 240, 227, 20, 2, 49, 45, 194, 167, 7, 51, 2, 52, - 2, 53, 3, 54, 26, 44, 3, 84, 89, 32, 149, 251, 3, 2, 72, 65, 24, 82, 78, - 60, 3, 80, 65, 71, 20, 3, 83, 69, 84, 233, 197, 27, 4, 68, 79, 67, 85, 8, - 36, 3, 79, 84, 69, 211, 155, 24, 69, 7, 203, 166, 13, 32, 4, 215, 255, - 25, 69, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 138, 144, 14, 82, 24, 3, - 76, 69, 70, 224, 166, 1, 2, 83, 77, 255, 159, 9, 79, 38, 86, 32, 64, 2, - 68, 32, 214, 1, 81, 20, 6, 86, 69, 76, 79, 80, 69, 223, 235, 15, 84, 6, - 42, 81, 146, 156, 26, 68, 235, 172, 1, 83, 2, 247, 192, 27, 85, 20, 32, - 3, 79, 70, 32, 131, 1, 87, 18, 88, 3, 80, 82, 79, 150, 241, 20, 71, 56, - 2, 83, 69, 166, 71, 77, 30, 84, 203, 177, 5, 76, 4, 214, 241, 20, 84, - 151, 147, 6, 79, 2, 217, 130, 20, 7, 73, 84, 72, 32, 76, 69, 70, 5, 143, - 185, 21, 85, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 42, 76, 177, 134, 24, - 4, 68, 79, 87, 78, 2, 185, 228, 22, 4, 73, 71, 72, 84, 6, 178, 132, 28, - 76, 2, 77, 3, 84, 46, 28, 2, 65, 76, 231, 6, 73, 40, 30, 32, 133, 2, 2, - 83, 32, 12, 56, 3, 84, 79, 32, 181, 155, 13, 5, 65, 78, 68, 32, 80, 10, - 68, 3, 79, 82, 32, 145, 177, 27, 8, 66, 89, 32, 68, 69, 70, 73, 78, 8, - 64, 3, 80, 82, 69, 28, 3, 83, 85, 67, 250, 235, 25, 71, 39, 76, 2, 213, - 170, 15, 2, 67, 69, 2, 181, 159, 26, 3, 67, 69, 69, 28, 72, 4, 83, 73, - 71, 78, 184, 233, 25, 4, 87, 73, 84, 72, 199, 199, 1, 67, 25, 11, 32, 22, - 42, 65, 201, 1, 5, 87, 73, 84, 72, 32, 12, 112, 5, 66, 79, 86, 69, 32, - 65, 19, 78, 68, 32, 83, 76, 65, 78, 84, 69, 68, 32, 80, 65, 82, 65, 76, - 76, 69, 76, 8, 206, 151, 21, 80, 210, 5, 84, 146, 189, 2, 76, 171, 131, - 3, 82, 5, 187, 247, 6, 32, 10, 160, 1, 4, 66, 85, 77, 80, 20, 7, 73, 78, - 70, 73, 78, 73, 84, 20, 18, 84, 87, 79, 32, 68, 79, 84, 83, 32, 65, 66, - 79, 86, 69, 32, 65, 78, 68, 235, 170, 15, 68, 2, 215, 128, 27, 89, 4, - 179, 219, 25, 89, 2, 17, 2, 32, 84, 2, 211, 203, 25, 87, 6, 80, 7, 86, - 65, 76, 69, 78, 84, 32, 161, 155, 21, 7, 65, 78, 71, 85, 76, 65, 82, 4, - 48, 6, 87, 73, 84, 72, 32, 70, 147, 221, 27, 84, 2, 11, 79, 2, 237, 248, - 2, 2, 85, 82, 20, 152, 1, 11, 82, 79, 82, 45, 66, 65, 82, 82, 69, 68, 32, - 184, 170, 5, 7, 73, 83, 32, 70, 79, 82, 77, 161, 202, 7, 9, 65, 83, 69, - 32, 84, 79, 32, 84, 72, 12, 216, 227, 5, 4, 87, 72, 73, 84, 13, 5, 66, - 76, 65, 67, 75, 10, 58, 67, 20, 6, 84, 73, 77, 65, 84, 69, 179, 249, 27, - 65, 5, 235, 175, 26, 65, 4, 234, 227, 26, 68, 199, 149, 1, 83, 154, 8, - 60, 7, 72, 73, 79, 80, 73, 67, 32, 202, 248, 27, 66, 3, 88, 150, 8, 204, - 1, 2, 67, 79, 232, 1, 7, 78, 85, 77, 66, 69, 82, 32, 114, 80, 54, 83, - 156, 24, 11, 84, 79, 78, 65, 76, 32, 77, 65, 82, 75, 32, 254, 143, 19, - 68, 158, 246, 5, 70, 82, 81, 173, 150, 2, 4, 87, 79, 82, 68, 10, 26, 77, - 239, 166, 27, 76, 8, 52, 7, 66, 73, 78, 73, 78, 71, 32, 235, 243, 27, 77, - 6, 60, 11, 71, 69, 77, 73, 78, 65, 84, 73, 79, 78, 32, 51, 86, 4, 44, 5, - 65, 78, 68, 32, 86, 135, 180, 27, 77, 2, 169, 148, 24, 4, 79, 87, 69, 76, - 22, 66, 84, 158, 152, 22, 72, 238, 234, 3, 69, 30, 70, 42, 78, 39, 83, 8, - 154, 214, 16, 69, 158, 174, 9, 72, 27, 87, 4, 202, 119, 65, 169, 172, 26, - 5, 82, 69, 70, 65, 67, 198, 7, 50, 69, 37, 8, 89, 76, 76, 65, 66, 76, 69, - 32, 4, 170, 164, 24, 77, 223, 229, 2, 67, 194, 7, 210, 1, 66, 90, 67, - 246, 1, 68, 186, 1, 70, 90, 71, 214, 2, 72, 162, 1, 75, 102, 77, 90, 78, - 90, 80, 138, 2, 81, 174, 1, 82, 86, 83, 210, 1, 84, 122, 74, 2, 76, 138, - 1, 87, 2, 89, 66, 88, 134, 1, 90, 95, 86, 38, 194, 12, 87, 230, 8, 66, - 158, 202, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 78, 94, 67, - 254, 15, 72, 146, 206, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, - 2, 73, 3, 85, 42, 70, 72, 198, 221, 23, 65, 210, 209, 3, 69, 162, 64, 73, - 2, 79, 3, 85, 28, 166, 19, 72, 158, 202, 23, 65, 210, 209, 3, 69, 162, - 64, 73, 2, 79, 3, 85, 60, 94, 68, 214, 14, 90, 198, 205, 23, 65, 2, 79, - 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 30, 210, 14, 72, 198, - 205, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 24, - 190, 8, 87, 130, 211, 23, 65, 210, 209, 3, 69, 234, 61, 89, 186, 2, 73, - 2, 79, 3, 85, 118, 142, 1, 85, 226, 7, 71, 232, 3, 7, 76, 79, 84, 84, 65, - 76, 32, 158, 2, 87, 218, 1, 89, 158, 202, 23, 65, 2, 79, 210, 209, 3, 69, - 163, 64, 73, 39, 29, 5, 82, 65, 71, 69, 32, 36, 74, 66, 2, 70, 2, 77, 2, - 80, 46, 71, 2, 75, 2, 81, 195, 144, 12, 72, 4, 11, 87, 4, 250, 211, 27, - 69, 215, 22, 73, 6, 11, 87, 6, 130, 170, 27, 69, 163, 64, 73, 52, 70, 72, - 206, 215, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 36, 202, 4, - 87, 230, 8, 89, 158, 202, 23, 65, 210, 209, 3, 69, 162, 64, 73, 2, 79, 3, - 85, 64, 250, 4, 88, 134, 6, 87, 218, 1, 89, 158, 202, 23, 65, 2, 79, 210, - 209, 3, 69, 162, 64, 73, 3, 85, 26, 142, 3, 87, 130, 211, 23, 65, 2, 79, - 210, 209, 3, 69, 234, 61, 89, 186, 2, 73, 3, 85, 36, 166, 7, 89, 146, - 206, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 56, - 82, 72, 142, 1, 87, 130, 211, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, - 73, 3, 85, 32, 74, 65, 194, 211, 23, 79, 210, 209, 3, 69, 234, 61, 87, - 186, 2, 73, 3, 85, 19, 160, 9, 8, 82, 89, 78, 71, 69, 65, 76, 32, 143, - 220, 27, 65, 8, 206, 164, 27, 69, 162, 64, 65, 3, 73, 64, 94, 72, 134, 6, - 87, 218, 1, 89, 158, 202, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, - 85, 24, 130, 6, 87, 246, 203, 23, 65, 210, 209, 3, 69, 162, 64, 73, 2, - 79, 3, 85, 20, 170, 209, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 2, - 89, 186, 2, 73, 3, 85, 74, 102, 69, 226, 1, 72, 170, 3, 90, 78, 83, 158, - 202, 23, 65, 2, 79, 186, 143, 4, 87, 186, 2, 73, 3, 85, 13, 56, 8, 66, - 65, 84, 66, 69, 73, 84, 32, 167, 225, 27, 69, 8, 198, 231, 22, 66, 2, 70, - 2, 77, 3, 80, 80, 118, 72, 76, 2, 84, 72, 62, 90, 162, 2, 83, 234, 202, - 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 18, 142, - 206, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 12, - 146, 159, 27, 69, 234, 61, 65, 186, 2, 73, 2, 79, 3, 85, 16, 134, 205, - 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 40, 82, 87, 218, 1, - 89, 158, 202, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 10, - 242, 203, 23, 65, 210, 209, 3, 69, 163, 64, 73, 48, 90, 72, 78, 90, 158, - 202, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 16, - 230, 202, 23, 65, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 2, 79, 3, 85, - 14, 154, 202, 23, 65, 210, 209, 3, 69, 162, 64, 73, 2, 79, 3, 85, 20, - 130, 1, 68, 74, 72, 30, 75, 42, 82, 0, 7, 83, 72, 79, 82, 84, 32, 82, - 220, 147, 4, 3, 67, 72, 73, 201, 144, 23, 3, 89, 73, 90, 6, 48, 4, 69, - 82, 69, 84, 229, 208, 26, 2, 73, 70, 5, 17, 2, 45, 72, 2, 229, 164, 27, - 2, 73, 68, 4, 176, 208, 26, 2, 69, 78, 163, 2, 85, 2, 137, 162, 4, 3, 73, - 75, 82, 12, 96, 2, 82, 79, 192, 159, 11, 3, 78, 79, 77, 129, 173, 15, 9, - 76, 69, 82, 32, 67, 79, 78, 83, 84, 8, 92, 5, 80, 69, 65, 78, 32, 144, - 161, 24, 8, 45, 67, 85, 82, 82, 69, 78, 67, 215, 175, 2, 32, 4, 202, 142, - 4, 67, 19, 80, 50, 30, 67, 102, 80, 187, 1, 84, 6, 60, 9, 76, 65, 77, 65, - 84, 73, 79, 78, 32, 139, 190, 26, 69, 4, 246, 129, 25, 81, 187, 147, 2, - 77, 10, 96, 7, 76, 79, 83, 73, 79, 78, 32, 181, 152, 27, 11, 82, 69, 83, - 83, 73, 79, 78, 76, 69, 83, 83, 8, 212, 223, 11, 4, 70, 82, 65, 77, 145, - 166, 15, 8, 65, 84, 32, 72, 79, 82, 73, 90, 34, 98, 82, 233, 197, 21, 18, - 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67, - 14, 140, 1, 12, 69, 77, 69, 76, 89, 32, 72, 69, 65, 86, 89, 32, 137, 253, - 25, 16, 65, 84, 69, 82, 82, 69, 83, 84, 82, 73, 65, 76, 32, 65, 76, 73, - 12, 50, 83, 134, 185, 25, 70, 234, 2, 87, 203, 11, 71, 4, 150, 186, 25, - 65, 43, 73, 7, 250, 186, 19, 71, 195, 151, 8, 83, 152, 4, 142, 1, 65, - 130, 19, 69, 190, 1, 73, 134, 8, 76, 138, 6, 79, 142, 7, 82, 130, 5, 85, - 252, 201, 20, 2, 86, 83, 242, 203, 4, 83, 199, 140, 2, 70, 92, 122, 67, - 178, 15, 76, 176, 2, 2, 88, 32, 170, 148, 3, 77, 252, 253, 5, 2, 82, 83, - 140, 251, 1, 2, 84, 72, 151, 235, 9, 73, 70, 72, 2, 69, 32, 180, 187, 16, - 4, 83, 73, 77, 73, 165, 206, 4, 2, 84, 79, 66, 226, 1, 83, 160, 1, 4, 87, - 73, 84, 72, 196, 136, 13, 2, 80, 65, 252, 136, 2, 2, 77, 65, 164, 162, - 11, 13, 84, 72, 82, 79, 87, 73, 78, 71, 32, 65, 32, 75, 73, 201, 1, 14, - 72, 79, 76, 68, 73, 78, 71, 32, 66, 65, 67, 75, 32, 84, 4, 216, 138, 17, - 18, 65, 86, 79, 85, 82, 73, 78, 71, 32, 68, 69, 76, 73, 67, 73, 79, 85, - 83, 141, 138, 5, 13, 67, 82, 69, 65, 77, 73, 78, 71, 32, 73, 78, 32, 70, - 54, 38, 32, 141, 167, 24, 3, 79, 85, 84, 52, 196, 4, 2, 67, 79, 44, 5, - 72, 69, 65, 68, 45, 38, 77, 98, 79, 92, 7, 78, 79, 32, 71, 79, 79, 68, - 238, 1, 80, 164, 1, 16, 83, 84, 85, 67, 75, 45, 79, 85, 84, 32, 84, 79, - 78, 71, 85, 69, 110, 84, 204, 183, 1, 9, 66, 65, 71, 83, 32, 85, 78, 68, - 69, 212, 171, 17, 22, 70, 73, 78, 71, 69, 82, 32, 67, 79, 86, 69, 82, 73, - 78, 71, 32, 67, 76, 79, 83, 69, 68, 244, 67, 3, 82, 79, 76, 180, 231, 1, - 13, 76, 79, 79, 75, 32, 79, 70, 32, 84, 82, 73, 85, 77, 244, 141, 3, 8, - 68, 73, 65, 71, 79, 78, 65, 76, 1, 20, 85, 78, 69, 86, 69, 78, 32, 69, - 89, 69, 83, 32, 65, 78, 68, 32, 87, 65, 86, 89, 4, 252, 4, 3, 87, 66, 79, - 227, 167, 19, 76, 2, 249, 183, 22, 4, 66, 65, 78, 68, 4, 60, 6, 69, 68, - 73, 67, 65, 76, 185, 242, 25, 3, 79, 78, 79, 2, 181, 255, 25, 3, 32, 77, - 65, 12, 90, 75, 36, 4, 80, 69, 78, 32, 213, 180, 20, 10, 78, 69, 32, 69, - 89, 69, 66, 82, 79, 87, 2, 241, 166, 22, 4, 32, 71, 69, 83, 8, 116, 5, - 77, 79, 85, 84, 72, 157, 159, 24, 18, 69, 89, 69, 83, 32, 65, 78, 68, 32, - 72, 65, 78, 68, 32, 79, 86, 69, 82, 7, 11, 32, 4, 184, 137, 10, 3, 86, - 79, 77, 221, 159, 9, 5, 65, 78, 68, 32, 67, 6, 132, 1, 18, 65, 82, 84, - 89, 32, 72, 79, 82, 78, 32, 65, 78, 68, 32, 80, 65, 82, 84, 100, 2, 69, - 69, 197, 167, 19, 4, 76, 69, 65, 68, 2, 229, 208, 22, 2, 89, 32, 7, 29, - 5, 32, 65, 78, 68, 32, 4, 36, 3, 87, 73, 78, 231, 167, 19, 84, 2, 169, - 183, 1, 4, 75, 73, 78, 71, 4, 50, 69, 193, 212, 22, 6, 72, 69, 82, 77, - 79, 77, 2, 181, 175, 27, 8, 65, 82, 83, 32, 79, 70, 32, 74, 10, 34, 76, - 133, 171, 22, 2, 65, 70, 8, 84, 13, 73, 78, 71, 32, 68, 73, 65, 71, 79, - 78, 65, 76, 32, 129, 242, 23, 2, 69, 78, 6, 128, 1, 9, 67, 82, 79, 83, - 83, 73, 78, 71, 32, 201, 186, 19, 16, 73, 78, 32, 87, 72, 73, 84, 69, 32, - 67, 73, 82, 67, 76, 69, 32, 4, 164, 148, 16, 3, 82, 73, 83, 227, 173, 3, - 78, 4, 218, 130, 15, 73, 131, 143, 4, 77, 14, 50, 65, 50, 77, 44, 2, 82, - 82, 147, 236, 18, 78, 4, 232, 174, 8, 3, 82, 70, 85, 147, 237, 9, 84, 4, - 228, 246, 8, 2, 73, 78, 179, 178, 7, 65, 4, 220, 246, 7, 2, 73, 83, 151, - 198, 19, 89, 58, 138, 1, 71, 90, 76, 178, 1, 78, 98, 82, 182, 2, 83, 164, - 14, 4, 86, 69, 32, 68, 217, 255, 4, 10, 69, 76, 68, 32, 72, 79, 67, 75, - 69, 89, 6, 48, 4, 85, 82, 69, 32, 245, 140, 26, 2, 72, 84, 4, 242, 207, - 25, 68, 235, 172, 1, 83, 10, 32, 2, 69, 32, 65, 2, 77, 32, 6, 242, 200, - 13, 70, 140, 155, 2, 3, 67, 65, 66, 147, 165, 8, 83, 4, 52, 4, 80, 82, - 79, 74, 173, 161, 20, 3, 70, 82, 65, 2, 251, 217, 15, 69, 4, 72, 4, 71, - 69, 82, 80, 221, 174, 25, 8, 73, 84, 69, 32, 80, 65, 82, 84, 2, 195, 141, - 16, 82, 22, 34, 69, 189, 1, 3, 83, 84, 32, 13, 56, 2, 32, 69, 68, 4, 87, - 79, 82, 75, 251, 184, 15, 67, 4, 222, 192, 13, 78, 193, 213, 4, 8, 88, - 84, 73, 78, 71, 85, 73, 83, 4, 216, 201, 23, 6, 32, 83, 80, 65, 82, 75, - 215, 237, 3, 83, 10, 186, 177, 5, 81, 172, 184, 10, 8, 83, 84, 82, 79, - 78, 71, 32, 73, 223, 225, 6, 80, 10, 38, 72, 165, 229, 23, 3, 84, 69, 68, - 9, 128, 255, 3, 13, 73, 78, 71, 32, 80, 79, 76, 69, 32, 65, 78, 68, 32, - 174, 209, 5, 69, 213, 222, 16, 19, 32, 67, 65, 75, 69, 32, 87, 73, 84, - 72, 32, 83, 87, 73, 82, 76, 32, 68, 69, 46, 50, 65, 170, 1, 69, 98, 79, - 194, 1, 85, 39, 89, 12, 114, 84, 236, 163, 4, 5, 80, 80, 73, 78, 71, 192, - 159, 3, 6, 71, 32, 73, 78, 32, 72, 161, 224, 17, 3, 77, 73, 78, 6, 190, - 221, 8, 32, 250, 203, 11, 66, 135, 241, 5, 78, 4, 196, 250, 23, 8, 88, - 69, 68, 32, 66, 73, 67, 69, 153, 145, 1, 7, 85, 82, 45, 68, 69, 45, 76, - 12, 52, 2, 82, 65, 20, 3, 87, 69, 82, 139, 234, 25, 80, 5, 147, 170, 26, - 76, 7, 17, 2, 32, 80, 4, 58, 85, 209, 207, 24, 8, 76, 65, 89, 73, 78, 71, - 32, 67, 2, 181, 199, 26, 4, 78, 67, 84, 85, 4, 190, 158, 3, 83, 183, 251, - 23, 84, 15, 25, 4, 73, 78, 71, 32, 12, 64, 6, 83, 65, 85, 67, 69, 82, - 210, 143, 10, 68, 155, 136, 10, 69, 9, 11, 32, 6, 40, 4, 87, 73, 84, 72, - 227, 153, 26, 83, 4, 34, 32, 1, 4, 79, 85, 84, 32, 2, 21, 3, 66, 69, 65, - 2, 243, 240, 26, 77, 56, 102, 71, 20, 2, 76, 68, 68, 2, 79, 84, 22, 82, - 142, 2, 85, 128, 155, 23, 2, 78, 68, 191, 210, 3, 88, 5, 139, 156, 27, - 71, 4, 156, 205, 9, 8, 73, 78, 71, 32, 72, 65, 78, 68, 199, 167, 17, 69, - 5, 195, 161, 14, 80, 18, 78, 75, 132, 1, 3, 84, 85, 78, 134, 224, 20, 77, - 222, 192, 4, 32, 179, 116, 67, 8, 80, 10, 32, 65, 78, 68, 32, 75, 78, 73, - 70, 69, 242, 164, 15, 69, 223, 181, 11, 73, 5, 201, 222, 15, 7, 32, 87, - 73, 84, 72, 32, 80, 4, 224, 143, 27, 6, 69, 32, 67, 79, 79, 75, 179, 27, - 65, 22, 26, 82, 199, 190, 23, 78, 20, 38, 32, 218, 2, 84, 223, 239, 18, - 45, 16, 110, 67, 174, 1, 68, 182, 170, 2, 66, 216, 155, 10, 7, 76, 69, - 65, 70, 32, 67, 76, 186, 111, 84, 235, 215, 11, 80, 4, 148, 183, 13, 3, - 76, 85, 66, 181, 86, 32, 79, 82, 78, 69, 82, 32, 65, 82, 82, 79, 87, 83, - 32, 67, 73, 82, 67, 76, 73, 78, 71, 32, 65, 78, 84, 73, 67, 76, 79, 67, - 75, 87, 4, 21, 3, 79, 84, 32, 4, 246, 225, 23, 80, 195, 132, 3, 77, 2, - 231, 43, 72, 30, 78, 65, 250, 1, 69, 98, 79, 133, 131, 17, 8, 73, 69, 68, - 32, 83, 72, 82, 73, 12, 96, 6, 67, 84, 73, 79, 78, 32, 68, 8, 77, 69, 32, - 87, 73, 84, 72, 32, 193, 242, 10, 2, 71, 73, 4, 166, 129, 20, 83, 177, 6, - 9, 78, 85, 77, 69, 82, 65, 84, 79, 82, 6, 50, 80, 218, 170, 2, 65, 149, - 185, 21, 2, 84, 73, 2, 185, 134, 22, 2, 73, 67, 6, 48, 6, 78, 67, 72, 32, - 70, 82, 139, 142, 19, 69, 4, 174, 142, 26, 73, 133, 15, 3, 65, 78, 67, - 10, 52, 3, 78, 84, 45, 116, 2, 87, 78, 191, 229, 26, 71, 4, 70, 84, 217, - 143, 2, 11, 70, 65, 67, 73, 78, 71, 32, 66, 65, 66, 89, 2, 189, 191, 12, - 6, 73, 76, 84, 69, 68, 32, 5, 185, 147, 8, 6, 73, 78, 71, 32, 70, 65, - 226, 1, 80, 2, 76, 76, 134, 6, 78, 208, 250, 16, 5, 69, 76, 32, 80, 85, - 179, 138, 10, 83, 216, 1, 42, 32, 73, 6, 87, 73, 68, 84, 72, 32, 10, 234, - 140, 12, 77, 136, 171, 3, 2, 79, 85, 170, 247, 8, 66, 151, 29, 83, 206, - 1, 242, 1, 67, 42, 76, 78, 78, 30, 80, 66, 82, 142, 1, 83, 38, 89, 130, - 159, 10, 77, 174, 213, 10, 65, 158, 2, 68, 58, 69, 98, 71, 118, 72, 202, - 4, 81, 198, 153, 2, 87, 182, 29, 84, 162, 146, 1, 70, 224, 177, 1, 6, 66, - 82, 79, 75, 69, 78, 211, 7, 86, 10, 162, 248, 20, 73, 62, 79, 131, 81, - 69, 116, 42, 69, 214, 251, 20, 65, 231, 183, 4, 79, 10, 162, 1, 70, 199, - 253, 20, 83, 4, 166, 210, 21, 79, 35, 85, 6, 42, 79, 198, 254, 20, 69, - 211, 236, 2, 76, 2, 223, 177, 25, 85, 10, 36, 3, 73, 71, 72, 207, 131, - 25, 69, 8, 17, 2, 84, 32, 8, 140, 181, 20, 5, 87, 72, 73, 84, 69, 246, - 220, 2, 67, 210, 3, 80, 239, 7, 83, 4, 250, 204, 23, 69, 139, 184, 1, 79, - 2, 223, 159, 25, 69, 6, 128, 205, 11, 8, 67, 84, 73, 79, 78, 32, 65, 80, - 208, 252, 8, 5, 69, 82, 65, 76, 32, 211, 188, 1, 78, 130, 21, 114, 65, - 250, 6, 69, 222, 22, 73, 162, 1, 76, 134, 15, 79, 198, 6, 82, 178, 92, - 85, 138, 155, 22, 72, 131, 238, 3, 83, 142, 1, 42, 82, 149, 254, 26, 4, - 77, 69, 32, 68, 140, 1, 36, 3, 65, 89, 32, 255, 238, 25, 76, 138, 1, 166, - 1, 67, 210, 1, 83, 192, 2, 6, 86, 79, 87, 69, 76, 32, 172, 178, 8, 6, 82, - 69, 68, 85, 80, 76, 194, 208, 10, 72, 238, 168, 1, 80, 214, 181, 3, 77, - 171, 190, 1, 68, 52, 42, 79, 205, 1, 5, 65, 80, 73, 84, 65, 8, 88, 10, - 77, 66, 73, 78, 73, 78, 71, 32, 68, 79, 37, 8, 78, 83, 79, 78, 65, 78, - 84, 32, 4, 234, 148, 12, 85, 247, 132, 14, 84, 4, 178, 149, 12, 78, 171, - 161, 11, 71, 46, 36, 3, 77, 65, 76, 171, 146, 22, 85, 44, 45, 9, 76, 32, - 76, 69, 84, 84, 69, 82, 32, 44, 200, 1, 4, 79, 76, 68, 32, 214, 155, 20, - 78, 238, 245, 6, 66, 2, 67, 2, 68, 2, 70, 2, 71, 2, 72, 2, 74, 2, 75, 2, - 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 84, 2, 87, 2, 88, 2, 89, 187, 2, 65, - 4, 190, 145, 27, 75, 3, 78, 12, 44, 5, 83, 73, 71, 78, 32, 179, 209, 26, - 76, 10, 138, 211, 26, 69, 162, 64, 65, 2, 73, 3, 79, 146, 3, 112, 2, 65, - 82, 110, 77, 50, 79, 160, 218, 23, 9, 82, 77, 65, 78, 32, 80, 69, 78, 78, - 174, 177, 2, 84, 239, 105, 78, 7, 29, 5, 32, 87, 73, 84, 72, 4, 224, 160, - 14, 5, 79, 85, 84, 32, 72, 233, 175, 9, 5, 32, 72, 65, 78, 68, 4, 26, 32, - 167, 140, 22, 73, 2, 207, 155, 23, 83, 130, 3, 46, 77, 245, 5, 6, 82, 71, - 73, 65, 78, 32, 38, 92, 13, 65, 78, 84, 73, 67, 32, 70, 73, 71, 85, 82, - 69, 32, 205, 4, 5, 69, 84, 82, 73, 67, 32, 158, 1, 65, 82, 67, 172, 1, 9, - 70, 79, 82, 84, 85, 78, 65, 32, 77, 44, 3, 76, 65, 69, 0, 4, 84, 82, 73, - 83, 34, 80, 80, 3, 82, 85, 66, 167, 210, 10, 86, 6, 216, 1, 6, 67, 81, - 85, 73, 83, 73, 12, 4, 77, 73, 83, 83, 235, 166, 23, 76, 8, 42, 65, 97, - 6, 79, 78, 74, 85, 78, 67, 6, 56, 3, 80, 85, 84, 0, 3, 85, 68, 65, 155, - 188, 18, 82, 2, 165, 90, 5, 32, 68, 82, 65, 67, 2, 11, 84, 2, 215, 237, - 26, 73, 4, 206, 167, 2, 73, 129, 172, 24, 2, 65, 74, 2, 145, 211, 10, 3, - 84, 73, 84, 6, 44, 2, 85, 69, 177, 128, 23, 3, 79, 80, 85, 4, 162, 233, - 26, 76, 155, 34, 82, 2, 183, 130, 25, 69, 6, 252, 135, 20, 4, 65, 76, 76, - 89, 137, 228, 1, 5, 32, 80, 82, 79, 80, 220, 2, 228, 1, 6, 67, 65, 80, - 73, 84, 65, 0, 4, 83, 77, 65, 76, 172, 3, 7, 76, 69, 84, 84, 69, 82, 32, - 180, 2, 24, 77, 84, 65, 86, 82, 85, 76, 73, 32, 67, 65, 80, 73, 84, 65, - 76, 32, 76, 69, 84, 84, 69, 82, 32, 165, 6, 2, 80, 65, 80, 45, 9, 76, 32, - 76, 69, 84, 84, 69, 82, 32, 80, 142, 2, 65, 34, 72, 166, 5, 67, 118, 71, - 130, 1, 74, 34, 75, 82, 80, 34, 83, 94, 90, 252, 181, 5, 2, 84, 65, 162, - 149, 8, 76, 226, 180, 2, 82, 218, 176, 9, 66, 2, 77, 2, 88, 226, 40, 78, - 2, 81, 234, 35, 86, 234, 47, 68, 14, 69, 2, 73, 2, 79, 2, 85, 2, 89, 143, - 57, 87, 4, 178, 182, 26, 69, 227, 79, 78, 10, 46, 65, 242, 238, 26, 73, - 2, 79, 215, 22, 69, 4, 194, 133, 27, 69, 3, 82, 94, 254, 1, 85, 178, 2, - 65, 42, 67, 74, 69, 46, 71, 34, 72, 98, 74, 34, 75, 34, 76, 50, 80, 34, - 83, 34, 84, 62, 90, 254, 255, 15, 82, 218, 176, 9, 66, 2, 77, 2, 88, 226, - 40, 78, 2, 81, 234, 35, 86, 234, 47, 68, 14, 73, 2, 79, 2, 89, 142, 57, - 87, 255, 2, 70, 4, 136, 139, 22, 4, 45, 66, 82, 74, 159, 248, 4, 78, 92, - 250, 1, 65, 42, 67, 74, 69, 46, 71, 34, 72, 98, 74, 34, 75, 34, 76, 50, - 80, 34, 83, 34, 84, 62, 90, 254, 255, 15, 82, 218, 176, 9, 66, 2, 77, 2, - 88, 226, 40, 78, 2, 81, 234, 35, 86, 234, 47, 68, 14, 73, 2, 79, 2, 85, - 2, 89, 142, 57, 87, 255, 2, 70, 6, 150, 177, 26, 69, 2, 73, 227, 79, 78, - 8, 38, 72, 218, 244, 25, 73, 243, 59, 65, 4, 198, 176, 26, 73, 135, 23, - 65, 4, 156, 144, 9, 2, 76, 73, 235, 239, 17, 78, 4, 190, 179, 25, 72, - 191, 124, 65, 12, 46, 65, 186, 232, 26, 73, 2, 79, 215, 22, 69, 6, 26, - 82, 243, 254, 26, 69, 5, 239, 247, 25, 68, 4, 190, 178, 25, 72, 207, 64, - 73, 4, 254, 218, 25, 72, 223, 83, 65, 4, 11, 65, 4, 198, 218, 15, 66, - 203, 163, 11, 83, 4, 174, 218, 25, 72, 227, 106, 65, 4, 246, 253, 25, 72, - 247, 47, 65, 6, 176, 184, 3, 6, 85, 82, 78, 69, 68, 32, 135, 254, 1, 65, - 4, 178, 217, 25, 72, 223, 83, 69, 2, 181, 179, 20, 7, 82, 65, 71, 82, 65, - 80, 72, 10, 48, 2, 77, 69, 20, 4, 78, 71, 69, 82, 31, 82, 2, 167, 230, - 25, 76, 2, 133, 197, 18, 2, 32, 82, 6, 38, 76, 149, 243, 13, 3, 65, 70, - 70, 5, 207, 229, 25, 83, 202, 1, 66, 65, 214, 13, 79, 185, 171, 26, 7, - 69, 73, 67, 72, 32, 83, 84, 194, 1, 84, 8, 71, 79, 76, 73, 84, 73, 67, - 32, 229, 12, 8, 83, 83, 32, 79, 70, 32, 77, 73, 192, 1, 56, 6, 67, 65, - 80, 73, 84, 65, 1, 4, 83, 77, 65, 76, 96, 45, 9, 76, 32, 76, 69, 84, 84, - 69, 82, 32, 96, 206, 1, 65, 22, 66, 42, 67, 94, 68, 94, 70, 38, 71, 46, - 73, 138, 2, 76, 58, 77, 66, 78, 34, 79, 30, 80, 58, 82, 30, 83, 186, 1, - 84, 110, 86, 22, 89, 90, 90, 234, 145, 19, 72, 190, 133, 2, 85, 139, 183, - 5, 75, 2, 179, 210, 26, 90, 4, 214, 3, 73, 233, 225, 26, 2, 85, 75, 4, - 48, 8, 65, 85, 68, 65, 84, 69, 32, 67, 15, 72, 2, 11, 72, 2, 233, 135, - 20, 2, 82, 73, 6, 42, 74, 30, 79, 237, 210, 26, 2, 90, 69, 2, 161, 135, - 20, 2, 69, 82, 2, 187, 131, 25, 66, 4, 210, 156, 21, 82, 139, 180, 5, 73, - 2, 21, 3, 76, 65, 71, 2, 139, 241, 21, 79, 13, 38, 78, 54, 79, 141, 1, 2, - 90, 72, 2, 161, 199, 26, 8, 73, 84, 73, 65, 76, 32, 73, 90, 4, 33, 6, 84, - 65, 84, 69, 68, 32, 4, 26, 66, 25, 2, 83, 77, 2, 11, 73, 2, 35, 71, 2, - 21, 3, 65, 76, 76, 2, 165, 234, 24, 2, 32, 89, 4, 158, 240, 26, 73, 211, - 2, 69, 4, 52, 9, 65, 84, 73, 78, 65, 84, 69, 32, 77, 35, 74, 2, 141, 141, - 11, 3, 89, 83, 76, 2, 161, 148, 9, 3, 85, 68, 73, 2, 11, 65, 2, 211, 153, - 21, 83, 4, 206, 204, 26, 78, 3, 84, 4, 26, 79, 131, 241, 26, 69, 2, 245, - 208, 22, 2, 75, 79, 2, 237, 253, 21, 2, 73, 84, 14, 106, 72, 58, 76, 148, - 248, 13, 6, 80, 73, 68, 69, 82, 89, 173, 191, 10, 8, 77, 65, 76, 76, 32, - 89, 85, 83, 6, 32, 2, 84, 65, 187, 239, 26, 65, 5, 155, 197, 25, 80, 2, - 255, 131, 20, 79, 6, 78, 86, 196, 165, 22, 9, 82, 79, 75, 85, 84, 65, 83, - 84, 73, 167, 181, 4, 83, 2, 253, 174, 19, 2, 82, 73, 2, 175, 219, 24, 69, - 12, 50, 69, 222, 129, 19, 65, 130, 236, 7, 79, 3, 85, 6, 146, 149, 21, - 83, 147, 152, 5, 82, 4, 196, 152, 9, 3, 69, 77, 76, 221, 139, 16, 4, 72, - 73, 86, 69, 2, 223, 233, 26, 76, 6, 196, 246, 11, 13, 66, 69, 32, 87, 73, - 84, 72, 32, 77, 69, 82, 73, 68, 230, 200, 4, 87, 183, 151, 9, 86, 68, - 162, 1, 65, 44, 12, 84, 72, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 222, - 174, 18, 82, 222, 102, 71, 228, 141, 5, 3, 78, 71, 71, 238, 187, 1, 79, - 185, 77, 2, 76, 70, 4, 196, 191, 15, 2, 76, 32, 147, 171, 11, 84, 54, - 210, 2, 65, 50, 72, 46, 73, 46, 78, 46, 80, 2, 81, 40, 2, 82, 65, 22, 84, - 236, 144, 9, 2, 87, 73, 194, 152, 12, 85, 244, 69, 3, 70, 65, 73, 204, 7, - 4, 66, 65, 73, 82, 248, 21, 2, 79, 84, 150, 30, 68, 166, 128, 1, 77, 198, - 147, 1, 69, 164, 30, 3, 76, 65, 71, 148, 41, 3, 83, 65, 85, 230, 161, 1, - 74, 196, 16, 2, 71, 73, 141, 12, 2, 75, 85, 4, 240, 222, 24, 3, 73, 72, - 86, 163, 134, 2, 72, 4, 186, 232, 13, 87, 157, 243, 11, 2, 65, 71, 4, - 138, 146, 9, 85, 241, 245, 14, 2, 71, 71, 6, 202, 214, 15, 73, 241, 140, - 9, 2, 65, 85, 2, 225, 161, 26, 5, 65, 73, 82, 84, 72, 2, 247, 192, 26, - 73, 4, 248, 192, 23, 2, 72, 73, 237, 69, 2, 69, 73, 234, 9, 46, 65, 198, - 5, 69, 206, 82, 73, 151, 3, 79, 152, 1, 96, 7, 68, 85, 65, 84, 73, 79, - 78, 32, 5, 78, 84, 72, 65, 32, 162, 192, 20, 86, 219, 141, 5, 80, 2, 11, - 32, 2, 135, 209, 25, 67, 146, 1, 120, 7, 76, 69, 84, 84, 69, 82, 32, 212, - 2, 5, 83, 73, 71, 78, 32, 154, 255, 22, 65, 248, 8, 2, 86, 79, 195, 199, - 3, 79, 100, 214, 1, 86, 178, 131, 23, 65, 38, 68, 114, 84, 230, 5, 85, - 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, - 2, 74, 2, 75, 2, 80, 206, 40, 79, 162, 8, 69, 158, 20, 72, 2, 77, 2, 82, - 3, 89, 14, 60, 5, 69, 68, 73, 67, 32, 138, 138, 23, 79, 223, 214, 3, 65, - 4, 188, 167, 24, 6, 68, 79, 85, 66, 76, 69, 175, 244, 1, 65, 16, 66, 67, - 230, 194, 22, 78, 190, 66, 65, 182, 1, 80, 135, 150, 3, 86, 4, 238, 245, - 7, 79, 163, 204, 14, 65, 192, 8, 76, 10, 65, 84, 69, 82, 45, 84, 72, 65, - 78, 32, 206, 7, 69, 231, 207, 25, 89, 56, 134, 1, 65, 150, 3, 66, 62, 79, - 216, 2, 11, 69, 81, 85, 65, 76, 32, 84, 79, 32, 79, 82, 130, 208, 6, 67, - 138, 4, 87, 207, 252, 18, 83, 16, 44, 5, 66, 79, 86, 69, 32, 223, 212, 6, - 78, 12, 150, 1, 83, 180, 1, 19, 68, 79, 85, 66, 76, 69, 45, 76, 73, 78, - 69, 32, 69, 81, 85, 65, 76, 32, 65, 132, 207, 6, 4, 76, 69, 83, 83, 235, - 233, 18, 82, 6, 148, 1, 7, 73, 77, 73, 76, 65, 82, 32, 133, 210, 6, 23, - 76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76, 32, 65, 66, 79, 86, 69, - 32, 76, 69, 83, 83, 4, 26, 65, 219, 209, 6, 79, 2, 65, 3, 66, 79, 86, 6, - 40, 4, 69, 83, 73, 68, 195, 210, 6, 85, 2, 231, 2, 69, 20, 40, 2, 82, 32, - 245, 1, 3, 86, 69, 82, 16, 120, 16, 83, 76, 65, 78, 84, 69, 68, 32, 69, - 81, 85, 65, 76, 32, 84, 79, 138, 212, 6, 65, 242, 129, 13, 69, 167, 237, - 4, 76, 9, 49, 10, 32, 87, 73, 84, 72, 32, 68, 79, 84, 32, 6, 44, 5, 65, - 66, 79, 86, 69, 151, 166, 18, 73, 5, 207, 165, 26, 32, 4, 52, 7, 76, 65, - 80, 80, 73, 78, 71, 239, 245, 19, 32, 2, 233, 193, 24, 2, 32, 76, 134, 8, - 36, 2, 75, 32, 185, 73, 2, 78, 32, 254, 7, 130, 3, 65, 216, 15, 8, 67, - 65, 80, 73, 84, 65, 76, 32, 182, 11, 68, 134, 1, 70, 68, 2, 73, 78, 222, - 3, 75, 138, 1, 76, 174, 3, 78, 66, 77, 84, 3, 88, 69, 83, 22, 79, 202, 1, - 80, 90, 82, 182, 1, 83, 130, 22, 84, 200, 2, 13, 85, 80, 83, 73, 76, 79, - 78, 32, 87, 73, 84, 72, 32, 150, 1, 86, 142, 2, 89, 178, 232, 7, 66, 212, - 176, 3, 4, 71, 82, 65, 77, 204, 23, 2, 90, 69, 243, 136, 12, 81, 112, 92, - 10, 67, 82, 79, 80, 72, 79, 78, 73, 67, 32, 172, 14, 6, 78, 79, 32, 84, - 69, 76, 23, 82, 106, 188, 2, 6, 65, 84, 84, 73, 67, 32, 222, 5, 67, 92, - 3, 78, 65, 88, 32, 12, 68, 69, 76, 80, 72, 73, 67, 32, 70, 73, 86, 69, 0, - 14, 83, 84, 82, 65, 84, 73, 65, 78, 32, 70, 73, 70, 84, 89, 40, 11, 69, - 80, 73, 68, 65, 85, 82, 69, 65, 78, 32, 112, 3, 72, 69, 82, 164, 1, 9, - 77, 69, 83, 83, 69, 78, 73, 65, 78, 35, 84, 48, 72, 2, 70, 73, 180, 2, 4, - 79, 78, 69, 32, 205, 1, 4, 84, 69, 78, 32, 26, 36, 3, 70, 84, 89, 105, 2, - 86, 69, 11, 11, 32, 8, 22, 84, 171, 4, 83, 6, 48, 7, 72, 79, 85, 83, 65, - 78, 68, 215, 3, 65, 5, 231, 3, 32, 17, 11, 32, 14, 56, 7, 72, 85, 78, 68, - 82, 69, 68, 18, 84, 143, 3, 83, 7, 131, 2, 32, 6, 48, 7, 72, 79, 85, 83, - 65, 78, 68, 187, 2, 65, 5, 213, 1, 2, 32, 84, 14, 98, 72, 48, 7, 84, 72, - 79, 85, 83, 65, 78, 210, 198, 24, 81, 217, 228, 1, 5, 68, 82, 65, 67, 72, - 6, 44, 5, 85, 78, 68, 82, 69, 179, 198, 24, 65, 4, 17, 2, 68, 32, 4, 22, - 84, 131, 1, 83, 2, 95, 65, 8, 30, 84, 86, 83, 175, 1, 77, 4, 50, 65, 21, - 8, 72, 79, 85, 83, 65, 78, 68, 32, 2, 187, 186, 16, 76, 2, 11, 83, 2, - 181, 199, 24, 2, 84, 65, 4, 88, 5, 65, 82, 89, 83, 84, 145, 1, 12, 89, - 82, 69, 78, 65, 73, 67, 32, 84, 87, 79, 32, 2, 101, 5, 73, 65, 78, 32, - 70, 2, 17, 2, 32, 77, 2, 139, 152, 13, 78, 6, 30, 70, 29, 3, 84, 87, 79, - 2, 225, 186, 15, 2, 73, 86, 5, 11, 32, 2, 185, 152, 10, 5, 68, 82, 65, - 67, 72, 8, 112, 8, 77, 73, 79, 78, 73, 65, 78, 32, 181, 160, 25, 14, 65, - 69, 85, 77, 32, 79, 78, 69, 32, 80, 76, 69, 84, 72, 6, 206, 193, 12, 70, - 150, 176, 12, 84, 215, 58, 79, 2, 11, 32, 2, 167, 241, 24, 84, 32, 92, 8, - 72, 69, 83, 80, 73, 65, 78, 32, 129, 1, 10, 82, 79, 69, 90, 69, 78, 73, - 65, 78, 32, 20, 40, 2, 70, 73, 38, 84, 251, 163, 18, 79, 6, 182, 233, 20, - 86, 247, 236, 3, 70, 8, 250, 182, 15, 72, 142, 191, 10, 69, 239, 48, 87, - 12, 36, 2, 70, 73, 209, 24, 2, 84, 69, 8, 146, 189, 18, 86, 213, 136, 7, - 3, 70, 84, 89, 2, 231, 139, 10, 69, 4, 168, 239, 22, 2, 79, 85, 153, 181, - 1, 3, 84, 65, 66, 154, 2, 66, 76, 174, 45, 82, 66, 68, 220, 233, 7, 2, - 75, 65, 135, 6, 84, 144, 2, 44, 6, 69, 84, 84, 69, 82, 32, 239, 45, 85, - 142, 2, 198, 2, 65, 190, 1, 69, 28, 4, 73, 79, 84, 65, 128, 1, 2, 79, 77, - 156, 3, 3, 82, 72, 79, 46, 83, 48, 7, 85, 80, 83, 73, 76, 79, 78, 146, - 33, 80, 170, 2, 84, 222, 185, 5, 68, 252, 180, 2, 2, 75, 65, 238, 192, 1, - 71, 138, 143, 11, 67, 230, 154, 2, 66, 2, 72, 2, 90, 166, 1, 76, 186, - 235, 2, 89, 210, 43, 77, 2, 78, 147, 17, 88, 48, 68, 4, 76, 80, 72, 65, - 213, 28, 8, 82, 67, 72, 65, 73, 67, 32, 83, 47, 33, 6, 32, 87, 73, 84, - 72, 32, 44, 242, 2, 68, 30, 80, 226, 29, 86, 226, 5, 79, 238, 237, 3, 84, - 191, 174, 5, 77, 62, 186, 1, 84, 131, 27, 80, 31, 33, 6, 32, 87, 73, 84, - 72, 32, 28, 186, 5, 68, 136, 25, 2, 80, 83, 158, 1, 86, 226, 5, 79, 238, - 237, 3, 84, 191, 174, 5, 77, 62, 28, 2, 69, 71, 235, 34, 73, 42, 11, 65, - 43, 33, 6, 32, 87, 73, 84, 72, 32, 40, 54, 68, 30, 80, 194, 35, 79, 22, - 86, 219, 237, 3, 84, 16, 65, 4, 65, 83, 73, 65, 18, 36, 4, 83, 73, 76, - 73, 211, 16, 82, 17, 29, 5, 32, 65, 78, 68, 32, 14, 44, 2, 79, 88, 0, 3, - 86, 65, 82, 23, 80, 4, 81, 2, 73, 65, 6, 60, 10, 69, 82, 73, 83, 80, 79, - 77, 69, 78, 73, 175, 15, 82, 5, 169, 15, 7, 32, 65, 78, 68, 32, 80, 82, - 5, 161, 35, 7, 32, 87, 73, 84, 72, 32, 68, 6, 222, 147, 8, 73, 238, 214, - 17, 65, 239, 48, 72, 23, 33, 6, 32, 87, 73, 84, 72, 32, 20, 66, 68, 166, - 26, 86, 226, 5, 79, 238, 237, 3, 84, 191, 174, 5, 77, 10, 130, 24, 65, - 237, 199, 22, 5, 73, 65, 76, 89, 84, 18, 76, 9, 73, 65, 76, 89, 84, 73, - 75, 65, 32, 32, 3, 82, 65, 67, 227, 22, 65, 8, 174, 24, 65, 191, 244, 3, - 84, 2, 207, 194, 11, 72, 4, 40, 3, 73, 86, 69, 1, 3, 79, 85, 82, 2, 205, - 37, 2, 32, 79, 76, 144, 1, 27, 83, 84, 82, 85, 77, 69, 78, 84, 65, 76, - 32, 78, 79, 84, 65, 84, 73, 79, 78, 32, 83, 89, 77, 66, 79, 76, 45, 217, - 176, 22, 2, 68, 73, 74, 70, 49, 70, 50, 62, 51, 62, 52, 170, 37, 53, 218, - 142, 26, 55, 3, 56, 17, 186, 181, 26, 49, 2, 50, 2, 51, 2, 52, 2, 55, 2, - 56, 3, 57, 15, 246, 180, 26, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 12, - 186, 180, 26, 48, 2, 50, 2, 54, 2, 55, 2, 56, 3, 57, 17, 254, 179, 26, - 48, 2, 50, 2, 51, 2, 53, 2, 55, 2, 56, 3, 57, 8, 54, 65, 38, 79, 169, 32, - 6, 89, 65, 84, 72, 79, 83, 4, 134, 134, 8, 80, 187, 151, 17, 73, 2, 11, - 82, 2, 11, 79, 2, 191, 139, 24, 78, 32, 128, 1, 6, 69, 84, 84, 69, 82, - 32, 168, 2, 6, 79, 87, 69, 82, 32, 78, 32, 6, 85, 78, 65, 84, 69, 32, - 201, 217, 22, 2, 73, 84, 24, 94, 83, 140, 13, 9, 65, 82, 67, 72, 65, 73, - 67, 32, 75, 2, 75, 182, 11, 68, 219, 199, 25, 89, 16, 88, 13, 77, 65, 76, - 76, 32, 67, 65, 80, 73, 84, 65, 76, 32, 210, 12, 65, 247, 250, 7, 84, 12, - 74, 80, 170, 200, 9, 71, 242, 161, 9, 79, 154, 212, 2, 82, 139, 181, 1, - 76, 4, 206, 155, 26, 83, 219, 19, 73, 2, 161, 142, 10, 3, 85, 77, 69, 4, - 222, 25, 83, 215, 231, 7, 69, 4, 80, 4, 69, 84, 82, 69, 173, 216, 23, 10, - 85, 83, 73, 67, 65, 76, 32, 76, 69, 73, 2, 235, 212, 2, 84, 12, 88, 3, - 78, 69, 32, 142, 244, 9, 88, 252, 155, 5, 3, 85, 78, 75, 225, 208, 5, 2, - 66, 79, 6, 64, 8, 72, 65, 76, 70, 32, 83, 73, 71, 21, 4, 81, 85, 65, 82, - 4, 151, 173, 25, 78, 2, 147, 225, 20, 84, 16, 62, 82, 206, 11, 83, 114, - 69, 154, 243, 7, 72, 195, 150, 17, 73, 2, 217, 29, 2, 79, 83, 6, 100, 3, - 72, 79, 32, 165, 253, 7, 16, 69, 86, 69, 82, 83, 69, 68, 32, 76, 85, 78, - 65, 84, 69, 32, 69, 4, 136, 252, 13, 10, 87, 73, 84, 72, 32, 83, 84, 82, - 79, 75, 163, 153, 11, 83, 226, 2, 220, 1, 5, 77, 65, 76, 76, 32, 192, 19, - 22, 85, 66, 83, 67, 82, 73, 80, 84, 32, 83, 77, 65, 76, 76, 32, 76, 69, - 84, 84, 69, 82, 32, 72, 10, 89, 77, 66, 79, 76, 32, 84, 65, 85, 32, 225, - 168, 24, 6, 73, 78, 85, 83, 79, 73, 212, 2, 56, 7, 76, 69, 84, 84, 69, - 82, 32, 202, 17, 82, 67, 68, 206, 2, 178, 2, 65, 162, 2, 68, 38, 69, 52, - 4, 73, 79, 84, 65, 0, 7, 85, 80, 83, 73, 76, 79, 78, 254, 3, 75, 28, 2, - 79, 77, 182, 5, 80, 112, 3, 82, 72, 79, 94, 83, 94, 84, 244, 237, 7, 2, - 70, 73, 210, 193, 1, 71, 138, 143, 11, 67, 230, 154, 2, 66, 2, 72, 2, 90, - 166, 1, 76, 138, 151, 3, 77, 2, 78, 147, 17, 88, 58, 64, 4, 76, 80, 72, - 65, 149, 1, 7, 82, 67, 72, 65, 73, 67, 32, 55, 33, 6, 32, 87, 73, 84, 72, - 32, 52, 82, 86, 226, 6, 68, 30, 80, 114, 79, 142, 1, 89, 218, 239, 3, 84, - 191, 174, 5, 77, 6, 154, 5, 82, 155, 3, 65, 4, 18, 75, 23, 83, 2, 215, - 251, 7, 79, 2, 11, 65, 2, 171, 197, 13, 77, 4, 150, 230, 7, 73, 151, 128, - 15, 69, 70, 22, 80, 215, 4, 84, 20, 249, 7, 3, 83, 73, 76, 41, 33, 6, 32, - 87, 73, 84, 72, 32, 38, 78, 68, 166, 1, 80, 178, 1, 86, 226, 5, 79, 238, - 237, 3, 84, 191, 174, 5, 77, 18, 50, 65, 29, 8, 73, 65, 76, 89, 84, 73, - 75, 65, 8, 153, 1, 3, 83, 73, 65, 11, 29, 5, 32, 65, 78, 68, 32, 8, 170, - 1, 80, 154, 6, 79, 22, 86, 219, 237, 3, 84, 10, 18, 83, 115, 69, 8, 21, - 3, 73, 76, 73, 9, 17, 2, 32, 65, 6, 21, 3, 78, 68, 32, 6, 30, 80, 154, 6, - 79, 23, 86, 2, 11, 69, 2, 11, 82, 2, 181, 17, 4, 73, 83, 80, 79, 4, 22, - 82, 147, 15, 65, 2, 145, 253, 25, 2, 65, 67, 4, 206, 246, 7, 65, 3, 79, - 70, 28, 2, 69, 71, 151, 3, 73, 50, 11, 65, 51, 33, 6, 32, 87, 73, 84, 72, - 32, 48, 58, 68, 30, 80, 114, 79, 62, 86, 82, 89, 219, 239, 3, 84, 16, 61, - 4, 65, 83, 73, 65, 20, 32, 4, 83, 73, 76, 73, 91, 69, 17, 29, 5, 32, 65, - 78, 68, 32, 14, 42, 79, 12, 2, 80, 69, 50, 86, 83, 89, 4, 83, 88, 4, 89, - 9, 82, 73, 83, 80, 79, 77, 69, 78, 73, 4, 11, 65, 4, 11, 82, 4, 17, 2, - 73, 65, 5, 33, 6, 32, 65, 78, 68, 32, 89, 2, 243, 12, 80, 20, 17, 2, 67, - 82, 20, 17, 2, 79, 78, 21, 33, 6, 32, 87, 73, 84, 72, 32, 18, 88, 5, 68, - 65, 83, 73, 65, 0, 5, 80, 83, 73, 76, 73, 54, 79, 22, 86, 219, 237, 3, - 84, 7, 29, 5, 32, 65, 78, 68, 32, 4, 18, 79, 23, 86, 2, 151, 224, 9, 88, - 2, 179, 9, 65, 8, 88, 11, 65, 77, 80, 72, 89, 76, 73, 65, 78, 32, 68, - 186, 132, 26, 72, 2, 83, 219, 19, 73, 2, 151, 219, 7, 73, 7, 33, 6, 32, - 87, 73, 84, 72, 32, 4, 34, 68, 201, 147, 21, 2, 80, 83, 2, 151, 205, 8, - 65, 10, 54, 65, 186, 238, 7, 84, 230, 1, 73, 219, 135, 18, 72, 4, 238, - 184, 13, 77, 251, 221, 12, 78, 4, 174, 217, 22, 72, 175, 152, 3, 65, 4, - 41, 8, 69, 86, 69, 82, 83, 69, 68, 32, 4, 18, 68, 43, 76, 2, 37, 7, 79, - 84, 84, 69, 68, 32, 76, 2, 11, 85, 2, 33, 6, 78, 65, 84, 69, 32, 83, 2, - 169, 239, 7, 3, 73, 71, 77, 10, 230, 173, 9, 71, 138, 143, 11, 67, 2, 80, - 130, 103, 82, 231, 179, 1, 66, 2, 167, 163, 21, 82, 16, 106, 72, 104, 7, - 82, 89, 66, 76, 73, 79, 78, 44, 3, 87, 79, 32, 246, 230, 3, 79, 133, 214, - 16, 2, 65, 76, 6, 40, 4, 82, 69, 69, 32, 143, 237, 7, 69, 4, 146, 1, 79, - 213, 223, 22, 7, 81, 85, 65, 82, 84, 69, 82, 2, 21, 3, 32, 66, 65, 2, - 151, 242, 23, 83, 4, 42, 79, 189, 160, 12, 4, 84, 72, 73, 82, 2, 157, - 237, 19, 2, 66, 79, 6, 80, 5, 65, 67, 85, 84, 69, 0, 9, 68, 73, 65, 69, - 82, 69, 83, 73, 83, 39, 72, 2, 33, 6, 32, 65, 78, 68, 32, 72, 2, 209, - 202, 7, 2, 79, 79, 60, 102, 65, 21, 21, 79, 67, 65, 76, 32, 78, 79, 84, - 65, 84, 73, 79, 78, 32, 83, 89, 77, 66, 79, 76, 45, 2, 207, 214, 9, 82, - 58, 90, 50, 2, 53, 214, 202, 23, 49, 134, 196, 2, 51, 2, 52, 2, 54, 2, - 55, 2, 56, 3, 57, 13, 214, 142, 26, 48, 2, 49, 2, 50, 2, 51, 3, 52, 4, - 26, 80, 227, 195, 20, 69, 2, 11, 79, 2, 33, 6, 71, 69, 71, 82, 65, 77, 2, - 253, 136, 21, 2, 77, 69, 8, 254, 245, 13, 65, 206, 193, 10, 66, 202, 78, - 72, 253, 64, 3, 83, 65, 76, 12, 60, 6, 78, 78, 73, 78, 71, 32, 149, 132, - 25, 3, 77, 65, 67, 10, 100, 4, 70, 65, 67, 69, 137, 241, 17, 15, 67, 65, - 84, 32, 70, 65, 67, 69, 32, 87, 73, 84, 72, 32, 83, 9, 33, 6, 32, 87, 73, - 84, 72, 32, 6, 108, 23, 79, 78, 69, 32, 76, 65, 82, 71, 69, 32, 65, 78, - 68, 32, 79, 78, 69, 32, 83, 77, 65, 76, 76, 35, 83, 2, 11, 32, 2, 227, - 164, 8, 69, 4, 32, 2, 84, 65, 191, 239, 17, 77, 2, 247, 138, 23, 82, 6, - 28, 3, 85, 80, 32, 39, 87, 4, 142, 216, 22, 83, 135, 240, 2, 77, 2, 231, - 157, 18, 73, 220, 4, 136, 1, 2, 65, 82, 70, 73, 52, 7, 74, 65, 82, 65, - 84, 73, 32, 184, 6, 12, 78, 74, 65, 76, 65, 32, 71, 79, 78, 68, 73, 32, - 143, 3, 82, 4, 34, 65, 173, 137, 21, 2, 68, 83, 2, 11, 78, 2, 199, 128, - 25, 73, 4, 246, 227, 24, 84, 221, 162, 1, 4, 68, 69, 32, 68, 182, 1, 168, - 1, 7, 76, 69, 84, 84, 69, 82, 32, 220, 1, 5, 83, 73, 71, 78, 32, 160, 2, - 6, 86, 79, 87, 69, 76, 32, 130, 142, 20, 65, 154, 24, 82, 182, 231, 3, - 68, 179, 227, 1, 79, 98, 218, 167, 22, 65, 38, 68, 114, 84, 46, 86, 186, - 5, 85, 186, 202, 1, 73, 42, 76, 246, 14, 90, 238, 180, 1, 78, 46, 83, 82, - 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 89, - 186, 2, 69, 3, 79, 24, 98, 67, 28, 3, 77, 65, 68, 22, 84, 130, 203, 3, - 83, 226, 154, 18, 78, 190, 66, 65, 187, 151, 3, 86, 4, 118, 73, 199, 228, - 21, 65, 2, 243, 148, 19, 68, 4, 68, 5, 87, 79, 45, 67, 73, 29, 8, 72, 82, - 69, 69, 45, 68, 79, 84, 2, 25, 4, 82, 67, 76, 69, 2, 189, 214, 20, 5, 32, - 78, 85, 75, 84, 34, 44, 5, 83, 73, 71, 78, 32, 239, 199, 15, 67, 30, 234, - 199, 15, 67, 154, 226, 6, 65, 38, 85, 22, 86, 166, 202, 1, 73, 198, 140, - 2, 69, 3, 79, 126, 108, 7, 76, 69, 84, 84, 69, 82, 32, 216, 1, 5, 83, 73, - 71, 78, 32, 38, 86, 214, 137, 24, 68, 179, 227, 1, 79, 80, 210, 137, 22, - 78, 146, 24, 65, 38, 68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76, - 222, 196, 1, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 206, 40, 79, 162, 8, - 69, 158, 20, 72, 2, 77, 2, 82, 2, 83, 2, 86, 3, 89, 4, 146, 196, 23, 86, - 247, 244, 1, 65, 20, 190, 7, 79, 131, 186, 23, 73, 160, 2, 84, 6, 77, 85, - 75, 72, 73, 32, 189, 7, 10, 85, 78, 71, 32, 75, 72, 69, 77, 65, 32, 172, - 1, 194, 1, 65, 44, 7, 76, 69, 84, 84, 69, 82, 32, 238, 1, 83, 228, 2, 2, - 86, 79, 164, 152, 13, 3, 84, 73, 80, 174, 242, 5, 73, 252, 175, 2, 5, 69, - 75, 32, 79, 78, 202, 199, 2, 68, 203, 175, 1, 85, 4, 222, 218, 21, 66, - 177, 231, 1, 2, 68, 68, 96, 250, 201, 8, 71, 2, 75, 254, 210, 13, 65, 38, - 68, 82, 82, 34, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, - 126, 66, 2, 67, 2, 74, 2, 80, 2, 83, 206, 40, 79, 162, 8, 69, 158, 20, - 70, 2, 72, 2, 77, 2, 86, 2, 89, 3, 90, 26, 108, 19, 69, 81, 85, 69, 78, - 67, 69, 32, 70, 79, 82, 32, 76, 69, 84, 84, 69, 82, 32, 93, 4, 73, 71, - 78, 32, 12, 70, 71, 2, 75, 162, 250, 23, 83, 146, 219, 1, 76, 226, 31, - 70, 3, 90, 2, 159, 250, 23, 72, 14, 128, 1, 6, 65, 68, 65, 75, 32, 66, 2, - 66, 244, 148, 15, 2, 85, 68, 190, 196, 6, 78, 236, 177, 2, 3, 89, 65, 75, - 139, 168, 1, 86, 2, 187, 155, 8, 73, 18, 45, 9, 87, 69, 76, 32, 83, 73, - 71, 78, 32, 18, 202, 158, 22, 65, 38, 85, 186, 202, 1, 73, 210, 237, 1, - 79, 163, 8, 69, 116, 216, 1, 22, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, - 83, 73, 71, 78, 32, 77, 69, 68, 73, 65, 76, 32, 44, 7, 76, 69, 84, 84, - 69, 82, 32, 168, 1, 5, 83, 73, 71, 78, 32, 56, 6, 86, 79, 87, 69, 76, 32, - 183, 253, 23, 68, 8, 142, 241, 25, 72, 2, 82, 2, 86, 3, 89, 60, 150, 253, - 21, 78, 182, 24, 68, 114, 84, 162, 149, 3, 66, 2, 67, 2, 71, 2, 74, 2, - 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 83, 2, 86, 2, 89, 187, 2, - 65, 4, 250, 172, 25, 65, 233, 35, 6, 84, 72, 79, 76, 72, 79, 24, 174, - 166, 20, 83, 147, 137, 5, 76, 168, 23, 110, 65, 214, 95, 69, 150, 104, - 73, 146, 9, 79, 158, 12, 84, 30, 85, 130, 1, 89, 249, 244, 12, 4, 82, 89, - 86, 78, 140, 11, 236, 1, 2, 73, 82, 100, 8, 76, 70, 87, 73, 68, 84, 72, - 32, 242, 10, 77, 210, 1, 78, 236, 76, 21, 80, 80, 89, 32, 80, 69, 82, 83, - 79, 78, 32, 82, 65, 73, 83, 73, 78, 71, 32, 79, 78, 22, 82, 38, 84, 232, - 255, 17, 2, 85, 77, 255, 253, 5, 68, 8, 66, 32, 164, 207, 20, 6, 89, 32, - 67, 82, 69, 65, 251, 164, 4, 67, 4, 218, 187, 24, 80, 231, 115, 83, 244, - 1, 140, 2, 7, 72, 65, 78, 71, 85, 76, 32, 216, 4, 8, 75, 65, 84, 65, 75, - 65, 78, 65, 204, 3, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 152, 192, 6, 11, - 70, 79, 82, 77, 83, 32, 76, 73, 71, 72, 84, 202, 134, 4, 85, 198, 218, 2, - 73, 142, 190, 4, 66, 166, 238, 4, 87, 215, 35, 68, 104, 52, 7, 76, 69, - 84, 84, 69, 82, 32, 239, 224, 10, 70, 102, 206, 1, 75, 28, 5, 78, 73, 69, - 85, 78, 42, 80, 24, 5, 82, 73, 69, 85, 76, 86, 83, 98, 89, 202, 61, 67, - 54, 69, 30, 73, 242, 4, 77, 138, 1, 84, 206, 3, 87, 198, 1, 72, 226, 221, - 24, 65, 2, 79, 163, 64, 85, 6, 222, 65, 72, 155, 3, 73, 7, 11, 45, 4, - 134, 72, 67, 131, 3, 72, 6, 146, 69, 72, 35, 73, 17, 11, 45, 14, 206, 49, - 84, 226, 14, 80, 130, 4, 77, 194, 3, 75, 218, 2, 72, 99, 83, 12, 40, 4, - 83, 65, 78, 71, 235, 229, 13, 73, 10, 210, 70, 67, 42, 75, 74, 80, 34, - 84, 211, 2, 83, 14, 238, 157, 23, 69, 146, 137, 2, 65, 162, 64, 73, 2, - 79, 3, 85, 118, 70, 32, 157, 241, 2, 11, 45, 72, 73, 82, 65, 71, 65, 78, - 65, 32, 80, 116, 76, 7, 76, 69, 84, 84, 69, 82, 32, 242, 240, 2, 83, 34, - 86, 219, 224, 21, 77, 110, 146, 1, 83, 230, 234, 2, 78, 150, 2, 72, 2, - 75, 2, 77, 2, 82, 2, 84, 170, 1, 89, 234, 41, 87, 174, 204, 22, 65, 2, - 69, 2, 73, 2, 79, 3, 85, 28, 76, 5, 77, 65, 76, 76, 32, 230, 227, 25, 65, - 2, 69, 2, 73, 2, 79, 3, 85, 18, 206, 237, 2, 89, 174, 209, 22, 84, 234, - 36, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 11, 84, 4, 180, 165, 13, 2, 32, - 67, 135, 156, 11, 87, 14, 56, 3, 77, 69, 82, 106, 83, 145, 144, 22, 3, - 66, 85, 82, 9, 29, 5, 32, 65, 78, 68, 32, 6, 220, 177, 12, 3, 87, 82, 69, - 212, 233, 3, 2, 83, 73, 191, 148, 8, 80, 4, 148, 164, 25, 3, 84, 69, 82, - 163, 61, 65, 194, 8, 118, 68, 202, 2, 71, 128, 66, 13, 73, 70, 73, 32, - 82, 79, 72, 73, 78, 71, 89, 65, 32, 165, 5, 5, 85, 78, 79, 79, 32, 10, - 100, 12, 32, 87, 73, 84, 72, 32, 73, 78, 68, 69, 88, 32, 188, 1, 2, 66, - 65, 197, 241, 21, 2, 83, 72, 4, 156, 1, 18, 65, 78, 68, 32, 77, 73, 68, - 68, 76, 69, 32, 70, 73, 78, 71, 69, 82, 83, 1, 16, 70, 73, 78, 71, 69, - 82, 32, 65, 78, 68, 32, 84, 72, 85, 77, 66, 2, 225, 147, 16, 2, 32, 67, - 4, 154, 210, 24, 76, 211, 139, 1, 71, 170, 7, 84, 3, 85, 76, 32, 217, 64, - 13, 90, 72, 79, 85, 32, 78, 85, 77, 69, 82, 65, 76, 32, 146, 7, 164, 1, - 9, 67, 72, 79, 83, 69, 79, 78, 71, 32, 244, 15, 4, 68, 79, 85, 66, 0, 4, - 83, 73, 78, 71, 46, 74, 180, 31, 7, 76, 69, 84, 84, 69, 82, 32, 219, 161, - 10, 70, 250, 1, 246, 1, 67, 172, 2, 5, 73, 69, 85, 78, 71, 146, 1, 75, - 132, 1, 5, 77, 73, 69, 85, 77, 56, 5, 78, 73, 69, 85, 78, 74, 80, 172, 2, - 5, 82, 73, 69, 85, 76, 210, 1, 83, 166, 3, 84, 124, 2, 89, 69, 200, 40, - 5, 72, 73, 69, 85, 72, 143, 153, 10, 70, 30, 76, 2, 72, 73, 84, 7, 69, - 79, 78, 71, 67, 72, 73, 121, 4, 73, 69, 85, 67, 16, 40, 4, 69, 85, 67, - 72, 41, 2, 84, 85, 7, 11, 45, 4, 202, 31, 75, 243, 26, 72, 10, 21, 3, 69, - 85, 77, 10, 22, 83, 155, 46, 67, 6, 40, 4, 83, 65, 78, 71, 219, 213, 13, - 73, 4, 194, 54, 67, 227, 3, 83, 5, 215, 30, 45, 27, 11, 45, 24, 90, 80, - 234, 30, 82, 242, 13, 67, 194, 5, 77, 138, 1, 84, 186, 2, 75, 218, 2, 72, - 99, 83, 6, 214, 50, 72, 214, 3, 73, 207, 2, 65, 16, 80, 7, 65, 80, 89, - 69, 79, 85, 78, 228, 20, 5, 73, 89, 69, 79, 75, 131, 25, 72, 10, 234, 29, - 82, 178, 15, 80, 30, 83, 231, 3, 77, 11, 11, 45, 8, 158, 52, 75, 74, 80, - 34, 84, 211, 2, 83, 15, 11, 45, 12, 190, 51, 67, 42, 75, 74, 80, 34, 84, - 242, 1, 72, 99, 83, 42, 68, 6, 72, 73, 69, 85, 80, 72, 40, 4, 73, 69, 85, - 80, 223, 53, 65, 7, 11, 45, 4, 158, 51, 80, 147, 2, 72, 35, 11, 45, 32, - 82, 83, 234, 20, 80, 214, 7, 75, 162, 12, 67, 202, 6, 84, 226, 2, 78, - 179, 2, 72, 14, 32, 3, 73, 79, 83, 251, 3, 83, 13, 11, 45, 10, 242, 46, - 84, 146, 2, 67, 42, 75, 75, 80, 29, 11, 45, 26, 78, 75, 42, 83, 190, 44, - 77, 154, 3, 67, 82, 78, 34, 80, 34, 84, 243, 1, 72, 6, 170, 22, 65, 130, - 19, 72, 135, 7, 73, 8, 40, 4, 83, 65, 78, 71, 191, 206, 13, 73, 6, 206, - 47, 75, 74, 80, 35, 84, 58, 48, 3, 73, 79, 83, 217, 1, 4, 83, 65, 78, 71, - 33, 11, 45, 30, 130, 1, 80, 44, 2, 83, 83, 210, 22, 82, 210, 1, 75, 162, - 12, 67, 194, 5, 77, 138, 1, 84, 226, 2, 78, 178, 2, 72, 187, 170, 18, 73, - 6, 184, 23, 4, 73, 69, 85, 80, 179, 19, 72, 2, 233, 48, 3, 65, 78, 71, - 26, 236, 17, 5, 67, 73, 69, 85, 67, 172, 3, 4, 83, 73, 79, 83, 154, 1, - 82, 186, 20, 84, 54, 89, 134, 2, 75, 42, 78, 34, 80, 146, 2, 72, 187, - 170, 18, 73, 16, 40, 5, 73, 75, 69, 85, 84, 195, 41, 72, 15, 11, 45, 12, - 226, 20, 82, 178, 19, 77, 154, 3, 67, 42, 75, 74, 80, 243, 2, 83, 4, 150, - 19, 83, 139, 22, 79, 2, 225, 252, 8, 6, 76, 69, 32, 68, 79, 84, 216, 3, - 92, 9, 79, 78, 71, 83, 69, 79, 78, 71, 32, 165, 21, 9, 85, 78, 71, 83, - 69, 79, 78, 71, 32, 154, 2, 226, 1, 67, 80, 5, 72, 73, 69, 85, 72, 60, 5, - 73, 69, 85, 78, 71, 46, 75, 220, 1, 5, 77, 73, 69, 85, 77, 188, 1, 5, 78, - 73, 69, 85, 78, 94, 80, 240, 2, 5, 82, 73, 69, 85, 76, 190, 4, 83, 194, - 3, 84, 213, 1, 2, 89, 69, 8, 36, 4, 73, 69, 85, 67, 239, 30, 72, 7, 11, - 45, 4, 162, 32, 83, 239, 7, 80, 11, 11, 45, 8, 174, 16, 82, 178, 19, 77, - 234, 3, 78, 35, 80, 9, 11, 45, 6, 194, 17, 75, 57, 2, 83, 83, 28, 76, 7, - 65, 80, 89, 69, 79, 85, 78, 40, 5, 73, 89, 69, 79, 75, 215, 30, 72, 8, - 130, 15, 82, 178, 15, 80, 131, 4, 77, 19, 11, 45, 16, 166, 13, 75, 170, - 1, 82, 42, 83, 224, 13, 2, 67, 72, 146, 9, 78, 34, 80, 147, 2, 72, 27, - 11, 45, 24, 74, 80, 30, 83, 134, 13, 82, 242, 13, 67, 130, 9, 75, 42, 78, - 179, 2, 72, 6, 174, 33, 73, 131, 6, 65, 6, 40, 4, 83, 65, 78, 71, 183, - 194, 13, 73, 4, 238, 35, 78, 147, 3, 83, 21, 11, 45, 18, 174, 12, 82, - 242, 13, 67, 202, 6, 84, 186, 2, 75, 218, 2, 72, 62, 80, 39, 83, 36, 88, - 6, 65, 78, 83, 73, 79, 83, 48, 6, 72, 73, 69, 85, 80, 72, 53, 4, 73, 69, - 85, 80, 7, 11, 45, 4, 236, 7, 2, 75, 65, 195, 26, 80, 9, 11, 45, 6, 150, - 11, 84, 234, 22, 80, 243, 2, 83, 23, 11, 45, 20, 112, 5, 82, 73, 69, 85, - 76, 24, 4, 83, 73, 79, 83, 134, 3, 80, 246, 19, 67, 194, 5, 77, 170, 4, - 84, 243, 1, 72, 5, 153, 3, 2, 45, 80, 5, 221, 32, 2, 45, 84, 57, 11, 45, - 54, 102, 75, 92, 5, 77, 73, 69, 85, 77, 50, 80, 126, 83, 74, 84, 44, 2, - 89, 69, 154, 28, 78, 179, 2, 72, 10, 52, 5, 73, 89, 69, 79, 75, 190, 4, - 65, 131, 19, 72, 7, 11, 45, 4, 254, 32, 72, 99, 83, 9, 11, 45, 6, 130, - 30, 75, 218, 2, 72, 99, 83, 14, 48, 4, 73, 69, 85, 80, 174, 26, 72, 163, - 6, 65, 11, 11, 45, 8, 42, 80, 222, 29, 84, 242, 1, 72, 99, 83, 2, 243, - 25, 72, 6, 40, 4, 83, 65, 78, 71, 167, 187, 13, 73, 4, 182, 28, 75, 187, - 3, 83, 6, 100, 5, 73, 75, 69, 85, 84, 151, 25, 72, 6, 56, 9, 79, 82, 73, - 78, 72, 73, 69, 85, 72, 191, 3, 83, 5, 255, 29, 45, 52, 48, 3, 73, 79, - 83, 161, 1, 4, 83, 65, 78, 71, 25, 11, 45, 22, 82, 75, 162, 3, 82, 242, - 13, 67, 198, 2, 80, 254, 2, 77, 138, 1, 84, 147, 5, 72, 4, 22, 65, 135, - 26, 73, 2, 237, 18, 6, 80, 89, 69, 79, 85, 78, 28, 160, 1, 5, 82, 73, 69, - 85, 76, 36, 6, 84, 73, 75, 69, 85, 84, 16, 3, 89, 69, 83, 138, 19, 83, - 178, 1, 77, 154, 3, 67, 42, 75, 42, 78, 34, 80, 203, 172, 18, 73, 5, 17, - 2, 45, 75, 2, 159, 17, 72, 5, 255, 16, 45, 2, 135, 197, 18, 73, 20, 40, - 5, 73, 75, 69, 85, 84, 155, 21, 72, 19, 11, 45, 16, 58, 82, 42, 83, 42, - 84, 162, 13, 67, 130, 9, 75, 75, 80, 2, 17, 2, 73, 69, 2, 227, 171, 24, - 85, 4, 21, 3, 73, 79, 83, 5, 223, 1, 45, 2, 255, 19, 72, 18, 44, 6, 83, - 73, 69, 85, 78, 71, 243, 19, 79, 17, 11, 45, 14, 50, 75, 30, 83, 198, 17, - 77, 154, 6, 72, 63, 80, 4, 166, 14, 72, 135, 7, 73, 4, 26, 83, 215, 179, - 13, 73, 2, 21, 3, 65, 78, 71, 2, 207, 20, 75, 190, 1, 122, 65, 118, 69, - 134, 1, 73, 92, 7, 83, 83, 65, 78, 71, 65, 82, 106, 79, 138, 1, 85, 102, - 89, 174, 15, 87, 179, 149, 10, 70, 23, 48, 4, 82, 65, 69, 65, 98, 45, - 135, 179, 25, 69, 13, 11, 45, 10, 166, 234, 22, 69, 178, 201, 2, 65, 2, - 73, 3, 85, 25, 18, 79, 55, 85, 9, 11, 45, 6, 154, 142, 25, 69, 234, 36, - 79, 3, 85, 15, 11, 45, 12, 170, 9, 69, 166, 169, 25, 65, 2, 79, 3, 85, - 31, 11, 45, 28, 66, 65, 34, 89, 166, 1, 79, 166, 139, 25, 69, 234, 36, - 73, 3, 85, 5, 11, 82, 2, 195, 157, 18, 65, 14, 50, 65, 206, 231, 22, 69, - 178, 201, 2, 79, 3, 85, 7, 134, 146, 25, 45, 247, 30, 69, 23, 26, 45, - 195, 176, 25, 69, 18, 50, 79, 22, 89, 202, 230, 22, 69, 179, 201, 2, 85, - 5, 179, 156, 25, 45, 8, 198, 230, 22, 69, 147, 137, 2, 65, 17, 11, 45, - 14, 158, 19, 89, 206, 166, 5, 73, 128, 137, 13, 3, 69, 79, 45, 190, 172, - 6, 65, 163, 64, 85, 62, 42, 65, 70, 69, 66, 73, 22, 79, 107, 85, 11, 26, - 45, 171, 174, 25, 69, 6, 178, 143, 25, 89, 246, 30, 79, 3, 85, 11, 11, - 79, 9, 11, 45, 6, 174, 171, 25, 89, 186, 2, 79, 3, 85, 5, 215, 136, 25, - 45, 19, 11, 45, 16, 58, 89, 198, 236, 24, 65, 174, 33, 69, 246, 30, 73, - 3, 79, 6, 194, 236, 24, 65, 175, 33, 69, 21, 11, 45, 18, 142, 16, 89, - 250, 210, 22, 69, 146, 137, 2, 65, 162, 64, 73, 2, 79, 3, 85, 186, 1, - 226, 1, 65, 46, 67, 54, 69, 30, 73, 22, 75, 188, 1, 5, 77, 73, 69, 85, - 77, 64, 5, 78, 73, 69, 85, 78, 70, 80, 168, 1, 5, 82, 73, 69, 85, 76, - 254, 1, 84, 90, 83, 246, 2, 87, 50, 89, 150, 1, 72, 226, 221, 24, 79, - 163, 64, 85, 9, 156, 13, 3, 82, 65, 69, 231, 156, 25, 69, 4, 22, 72, 207, - 8, 73, 2, 137, 135, 25, 2, 73, 69, 7, 162, 169, 25, 79, 3, 85, 5, 203, - 181, 18, 69, 14, 56, 7, 65, 80, 89, 69, 79, 85, 78, 106, 72, 155, 3, 73, - 8, 30, 80, 30, 83, 231, 3, 77, 4, 190, 4, 72, 215, 3, 73, 2, 25, 4, 83, - 65, 78, 71, 2, 207, 7, 80, 2, 241, 60, 2, 73, 69, 9, 11, 45, 6, 22, 80, - 247, 9, 83, 4, 142, 7, 73, 207, 2, 65, 13, 11, 45, 10, 234, 5, 67, 146, - 1, 84, 242, 1, 72, 62, 80, 39, 83, 20, 48, 4, 73, 69, 85, 80, 170, 2, 72, - 163, 6, 65, 17, 11, 45, 14, 42, 83, 186, 2, 84, 146, 2, 67, 43, 75, 6, - 21, 3, 73, 79, 83, 7, 11, 45, 4, 202, 4, 75, 107, 84, 27, 11, 45, 24, 68, - 2, 75, 73, 34, 77, 34, 80, 106, 84, 54, 89, 222, 4, 72, 99, 83, 4, 149, - 1, 4, 89, 69, 79, 75, 2, 11, 73, 2, 231, 248, 23, 69, 8, 30, 72, 34, 73, - 131, 6, 65, 2, 221, 240, 18, 3, 73, 69, 85, 4, 21, 3, 69, 85, 80, 5, 243, - 5, 45, 4, 22, 72, 151, 3, 73, 2, 137, 254, 21, 2, 73, 69, 2, 17, 2, 69, - 79, 2, 167, 4, 82, 28, 44, 3, 73, 79, 83, 57, 4, 83, 65, 78, 71, 13, 11, - 45, 10, 122, 67, 42, 75, 42, 78, 34, 80, 35, 84, 16, 78, 67, 42, 75, 42, - 78, 34, 80, 34, 84, 242, 1, 72, 98, 83, 219, 169, 18, 73, 2, 11, 73, 2, - 225, 246, 23, 2, 69, 85, 2, 11, 73, 2, 233, 246, 24, 2, 89, 69, 2, 11, - 73, 2, 243, 159, 24, 69, 2, 11, 73, 2, 143, 170, 24, 69, 2, 11, 73, 2, - 11, 75, 2, 135, 166, 24, 69, 10, 146, 214, 22, 69, 146, 137, 2, 65, 163, - 64, 73, 34, 58, 69, 206, 1, 79, 62, 85, 178, 220, 24, 65, 163, 64, 73, - 13, 42, 79, 73, 6, 83, 73, 69, 85, 78, 71, 5, 11, 82, 2, 17, 2, 73, 78, - 2, 11, 72, 2, 233, 242, 9, 2, 73, 69, 7, 11, 45, 4, 18, 80, 39, 83, 2, - 11, 65, 2, 11, 78, 2, 11, 83, 2, 179, 155, 13, 73, 9, 11, 45, 6, 26, 89, - 231, 156, 25, 73, 4, 195, 220, 24, 65, 9, 11, 45, 6, 26, 89, 171, 156, - 25, 73, 4, 247, 210, 22, 69, 24, 162, 144, 11, 84, 230, 152, 12, 70, 30, - 83, 182, 87, 78, 14, 79, 227, 112, 69, 100, 156, 1, 7, 76, 69, 84, 84, - 69, 82, 32, 196, 2, 5, 77, 65, 82, 75, 32, 72, 5, 83, 73, 71, 78, 32, - 224, 159, 2, 6, 86, 79, 87, 69, 76, 32, 183, 131, 21, 68, 58, 202, 1, 68, - 34, 75, 142, 132, 21, 84, 178, 55, 82, 238, 223, 1, 78, 214, 181, 1, 83, - 138, 69, 66, 2, 67, 2, 70, 2, 71, 2, 72, 2, 74, 2, 76, 2, 77, 2, 80, 2, - 86, 2, 87, 2, 89, 2, 90, 187, 2, 65, 4, 162, 150, 25, 68, 187, 2, 65, 8, - 56, 5, 73, 78, 78, 65, 32, 202, 149, 25, 72, 187, 2, 65, 4, 198, 149, 25, - 87, 3, 89, 4, 160, 221, 21, 6, 78, 65, 32, 75, 72, 79, 237, 186, 2, 3, - 83, 65, 75, 8, 52, 2, 84, 65, 237, 134, 23, 5, 72, 65, 82, 66, 65, 6, 42, - 72, 198, 163, 20, 83, 191, 240, 4, 78, 2, 159, 244, 24, 65, 42, 62, 76, - 176, 251, 18, 6, 83, 73, 71, 78, 32, 80, 247, 1, 86, 36, 33, 6, 69, 84, - 84, 69, 82, 32, 36, 186, 159, 21, 78, 206, 243, 3, 66, 2, 68, 2, 71, 2, - 72, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 84, 2, 87, 2, 89, 186, - 2, 65, 2, 73, 3, 85, 2, 235, 131, 24, 69, 4, 234, 204, 23, 68, 163, 199, - 1, 80, 54, 52, 5, 67, 72, 73, 78, 71, 41, 4, 82, 65, 78, 32, 2, 17, 2, - 32, 67, 2, 139, 225, 23, 72, 52, 52, 7, 76, 69, 84, 84, 69, 82, 32, 171, - 186, 6, 78, 42, 218, 1, 65, 210, 181, 11, 90, 238, 46, 84, 146, 120, 76, - 50, 81, 60, 6, 68, 65, 76, 69, 84, 72, 214, 169, 4, 71, 122, 83, 66, 89, - 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 87, - 218, 103, 80, 171, 4, 77, 4, 246, 134, 17, 76, 159, 186, 7, 89, 174, 9, - 210, 1, 65, 242, 32, 66, 130, 33, 76, 200, 1, 16, 78, 84, 65, 73, 71, 65, - 78, 65, 32, 76, 69, 84, 84, 69, 82, 32, 174, 12, 82, 120, 11, 88, 65, 71, - 82, 65, 77, 32, 70, 79, 82, 32, 189, 189, 24, 4, 68, 71, 69, 72, 214, 1, - 42, 68, 98, 82, 201, 1, 3, 86, 89, 32, 6, 44, 5, 83, 84, 79, 78, 69, 183, - 225, 23, 80, 5, 213, 226, 2, 7, 32, 71, 82, 65, 86, 69, 89, 12, 32, 2, - 84, 32, 147, 164, 17, 45, 10, 60, 5, 87, 73, 84, 72, 32, 222, 171, 12, - 68, 239, 158, 9, 72, 6, 76, 9, 84, 73, 80, 32, 79, 78, 32, 84, 72, 134, - 251, 12, 82, 243, 244, 10, 65, 2, 239, 217, 24, 69, 196, 1, 134, 2, 65, - 202, 1, 66, 230, 2, 67, 154, 3, 68, 162, 1, 69, 186, 3, 70, 94, 72, 62, - 76, 222, 1, 77, 110, 79, 162, 1, 82, 142, 2, 83, 228, 1, 3, 78, 79, 82, - 198, 1, 84, 128, 2, 2, 85, 80, 174, 1, 87, 186, 148, 14, 73, 222, 243, 3, - 80, 130, 142, 4, 86, 227, 78, 71, 12, 108, 17, 82, 82, 79, 87, 32, 83, - 72, 65, 70, 84, 32, 87, 73, 68, 84, 72, 32, 182, 171, 18, 77, 207, 198, - 4, 83, 8, 36, 3, 79, 78, 69, 135, 166, 23, 84, 7, 11, 32, 4, 226, 246, - 13, 84, 251, 139, 9, 72, 14, 48, 4, 65, 76, 76, 79, 21, 4, 76, 65, 67, - 75, 2, 139, 235, 5, 84, 12, 30, 32, 153, 1, 2, 45, 70, 6, 52, 7, 67, 85, - 82, 86, 69, 68, 32, 135, 128, 24, 72, 4, 40, 4, 68, 79, 87, 78, 1, 2, 85, - 80, 2, 225, 228, 23, 8, 87, 65, 82, 68, 83, 32, 65, 78, 6, 45, 9, 69, 65, - 84, 72, 69, 82, 69, 68, 32, 6, 158, 220, 13, 83, 174, 173, 3, 78, 215, - 218, 6, 82, 14, 116, 2, 72, 69, 52, 5, 73, 82, 67, 76, 69, 149, 233, 17, - 14, 79, 78, 67, 65, 86, 69, 45, 80, 79, 73, 78, 84, 69, 68, 4, 196, 221, - 20, 4, 86, 82, 79, 78, 255, 225, 2, 67, 9, 64, 6, 32, 87, 73, 84, 72, 32, - 185, 235, 22, 4, 68, 32, 83, 65, 4, 52, 7, 83, 84, 82, 79, 75, 69, 32, - 239, 128, 5, 67, 2, 29, 5, 65, 78, 68, 32, 84, 2, 11, 87, 2, 11, 79, 2, - 21, 3, 32, 68, 79, 2, 11, 84, 2, 223, 133, 24, 83, 14, 52, 7, 65, 83, 72, - 69, 68, 32, 84, 18, 73, 31, 79, 2, 175, 16, 82, 2, 161, 162, 19, 2, 86, - 73, 10, 192, 16, 3, 87, 78, 87, 246, 147, 14, 85, 191, 184, 4, 76, 16, - 120, 5, 73, 71, 72, 84, 32, 156, 2, 16, 88, 67, 76, 65, 77, 65, 84, 73, - 79, 78, 32, 77, 65, 82, 75, 32, 199, 217, 18, 81, 10, 40, 2, 80, 79, 126, - 84, 155, 231, 22, 83, 6, 33, 6, 73, 78, 84, 69, 68, 32, 6, 194, 199, 16, - 80, 128, 158, 6, 11, 82, 69, 67, 84, 73, 76, 73, 78, 69, 65, 82, 23, 66, - 2, 193, 231, 22, 24, 69, 65, 82, 68, 82, 79, 80, 45, 83, 80, 79, 75, 69, - 68, 32, 80, 82, 79, 80, 69, 76, 76, 69, 82, 4, 234, 232, 23, 83, 227, 81, - 79, 6, 44, 5, 79, 85, 82, 32, 66, 179, 128, 5, 73, 2, 181, 139, 11, 6, - 65, 76, 76, 79, 79, 78, 4, 238, 199, 17, 79, 161, 233, 5, 6, 69, 65, 82, - 84, 32, 69, 20, 74, 65, 44, 3, 69, 70, 84, 28, 2, 79, 87, 189, 251, 4, 3, - 73, 71, 65, 4, 232, 230, 21, 2, 82, 71, 211, 209, 1, 84, 8, 254, 3, 45, - 195, 6, 87, 6, 26, 32, 191, 151, 10, 69, 4, 202, 158, 14, 68, 25, 4, 83, - 73, 78, 71, 4, 56, 8, 85, 76, 84, 73, 80, 76, 73, 67, 167, 200, 21, 73, - 2, 25, 4, 65, 84, 73, 79, 2, 159, 221, 5, 78, 6, 148, 147, 6, 9, 80, 69, - 78, 32, 67, 69, 78, 84, 82, 248, 180, 10, 13, 86, 65, 76, 32, 87, 73, 84, - 72, 32, 79, 86, 65, 76, 213, 151, 6, 5, 85, 84, 76, 73, 78, 12, 76, 4, - 73, 71, 72, 84, 129, 214, 23, 9, 79, 85, 78, 68, 45, 84, 73, 80, 80, 10, - 62, 45, 109, 11, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, 4, 69, 15, - 80, 79, 73, 78, 84, 73, 78, 71, 32, 65, 78, 71, 76, 69, 32, 4, 214, 236, - 6, 66, 203, 174, 7, 81, 7, 139, 6, 32, 26, 106, 65, 78, 73, 44, 2, 79, - 85, 136, 163, 14, 7, 67, 82, 73, 80, 84, 32, 76, 193, 139, 1, 3, 80, 65, - 82, 4, 156, 154, 14, 10, 78, 83, 45, 83, 69, 82, 73, 70, 32, 73, 175, - 195, 8, 76, 8, 136, 152, 14, 2, 78, 71, 183, 194, 8, 88, 10, 21, 3, 84, - 72, 32, 10, 60, 5, 69, 65, 83, 84, 32, 29, 6, 87, 69, 83, 84, 32, 80, 6, - 26, 80, 215, 215, 23, 65, 4, 41, 8, 79, 73, 78, 84, 73, 78, 71, 32, 4, - 250, 250, 16, 86, 255, 202, 6, 66, 12, 88, 9, 69, 65, 82, 68, 82, 79, 80, - 45, 83, 130, 1, 82, 145, 233, 6, 4, 87, 69, 76, 86, 6, 64, 6, 80, 79, 75, - 69, 68, 32, 253, 207, 23, 4, 72, 65, 78, 75, 4, 216, 218, 22, 8, 80, 73, - 78, 87, 72, 69, 69, 76, 27, 65, 2, 193, 3, 5, 73, 65, 78, 71, 76, 6, 26, - 87, 171, 141, 10, 80, 4, 53, 11, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, - 32, 4, 29, 5, 87, 73, 84, 72, 32, 4, 152, 142, 20, 5, 76, 65, 82, 71, 69, - 179, 243, 1, 69, 12, 76, 5, 72, 73, 84, 69, 32, 164, 1, 2, 73, 68, 149, - 133, 23, 3, 69, 68, 71, 8, 64, 6, 83, 81, 85, 65, 82, 69, 182, 227, 17, - 68, 187, 183, 5, 67, 5, 169, 186, 23, 19, 32, 67, 79, 78, 84, 65, 73, 78, - 73, 78, 71, 32, 66, 76, 65, 67, 75, 32, 86, 2, 181, 255, 20, 2, 69, 45, - 142, 2, 40, 4, 82, 69, 87, 32, 219, 237, 24, 69, 140, 2, 112, 7, 65, 67, - 67, 69, 78, 84, 32, 142, 8, 76, 164, 14, 5, 77, 65, 82, 75, 32, 114, 80, - 225, 180, 21, 2, 89, 79, 60, 128, 2, 9, 65, 84, 78, 65, 72, 32, 72, 65, - 70, 22, 68, 36, 3, 71, 69, 82, 74, 77, 124, 2, 80, 65, 28, 4, 69, 84, 78, - 65, 20, 2, 81, 65, 58, 83, 58, 84, 156, 1, 2, 89, 69, 78, 90, 224, 172, - 8, 3, 82, 69, 86, 190, 146, 15, 79, 245, 148, 1, 3, 73, 76, 85, 2, 243, - 169, 18, 85, 4, 206, 146, 19, 69, 171, 149, 5, 65, 6, 32, 3, 69, 83, 72, - 179, 28, 83, 5, 241, 227, 6, 4, 32, 77, 85, 81, 8, 84, 5, 69, 82, 75, 72, - 65, 132, 251, 17, 2, 85, 78, 153, 45, 5, 65, 72, 65, 80, 65, 5, 221, 237, - 19, 4, 32, 75, 69, 70, 4, 26, 83, 219, 170, 24, 90, 2, 247, 195, 24, 72, - 4, 224, 163, 24, 6, 82, 78, 69, 89, 32, 80, 191, 35, 68, 4, 182, 24, 69, - 185, 237, 22, 6, 72, 65, 76, 83, 72, 69, 8, 38, 69, 241, 233, 22, 3, 73, - 80, 69, 6, 48, 6, 76, 73, 83, 72, 65, 32, 135, 232, 11, 86, 4, 252, 178, - 22, 3, 81, 69, 84, 205, 145, 2, 4, 71, 69, 68, 79, 4, 176, 212, 8, 10, - 82, 65, 72, 32, 66, 69, 78, 32, 89, 79, 231, 221, 2, 84, 8, 18, 65, 95, - 73, 6, 40, 4, 81, 69, 70, 32, 167, 134, 6, 82, 4, 246, 142, 11, 81, 149, - 193, 12, 3, 71, 65, 68, 2, 255, 171, 24, 78, 150, 1, 76, 6, 69, 84, 84, - 69, 82, 32, 201, 11, 8, 73, 71, 65, 84, 85, 82, 69, 32, 140, 1, 134, 3, - 65, 204, 1, 3, 66, 69, 84, 0, 3, 75, 65, 70, 0, 2, 80, 69, 68, 6, 70, 73, - 78, 65, 76, 32, 92, 2, 81, 79, 16, 2, 72, 69, 52, 2, 78, 85, 0, 4, 90, - 65, 89, 73, 18, 83, 48, 3, 82, 69, 83, 170, 1, 84, 52, 4, 68, 65, 76, 69, - 12, 5, 71, 73, 77, 69, 76, 0, 5, 76, 65, 77, 69, 68, 0, 3, 77, 69, 77, - 48, 3, 86, 65, 86, 80, 5, 87, 73, 68, 69, 32, 153, 1, 3, 89, 79, 68, 14, - 26, 76, 135, 225, 23, 89, 12, 64, 2, 69, 70, 73, 10, 84, 69, 82, 78, 65, - 84, 73, 86, 69, 32, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 130, 13, 77, - 130, 1, 80, 35, 81, 4, 198, 214, 16, 65, 131, 161, 1, 80, 7, 33, 6, 32, - 87, 73, 84, 72, 32, 4, 138, 15, 82, 195, 233, 13, 68, 14, 88, 2, 75, 65, - 236, 2, 2, 80, 69, 148, 154, 1, 2, 84, 83, 218, 192, 22, 78, 135, 110, - 77, 4, 235, 2, 70, 7, 244, 10, 5, 32, 87, 73, 84, 72, 131, 211, 24, 84, - 4, 167, 2, 78, 16, 44, 4, 65, 77, 69, 75, 17, 3, 72, 73, 78, 4, 231, 1, - 72, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 40, 6, 68, 65, 71, 69, 83, 72, - 39, 83, 7, 33, 6, 32, 65, 78, 68, 32, 83, 4, 218, 133, 6, 72, 155, 193, - 2, 73, 12, 50, 69, 12, 2, 65, 86, 1, 4, 83, 65, 68, 73, 4, 11, 84, 5, - 225, 244, 13, 7, 32, 87, 73, 84, 72, 32, 68, 7, 33, 6, 32, 87, 73, 84, - 72, 32, 4, 208, 253, 1, 2, 72, 79, 191, 246, 11, 68, 16, 174, 2, 76, 254, - 210, 8, 65, 178, 196, 2, 84, 158, 218, 2, 82, 156, 132, 9, 2, 68, 65, - 218, 96, 75, 222, 106, 72, 169, 4, 7, 70, 73, 78, 65, 76, 32, 77, 7, 33, - 6, 32, 87, 73, 84, 72, 32, 4, 172, 7, 2, 72, 73, 251, 234, 13, 68, 10, - 72, 6, 65, 76, 69, 70, 32, 76, 29, 8, 89, 73, 68, 68, 73, 83, 72, 32, 2, - 209, 195, 19, 2, 65, 77, 8, 120, 7, 68, 79, 85, 66, 76, 69, 32, 232, 4, - 9, 89, 79, 68, 32, 89, 79, 68, 32, 80, 193, 151, 21, 5, 86, 65, 86, 32, - 89, 4, 146, 150, 11, 86, 151, 134, 10, 89, 6, 80, 3, 76, 79, 87, 0, 3, - 85, 80, 80, 173, 129, 23, 6, 77, 65, 83, 79, 82, 65, 2, 169, 194, 23, 2, - 69, 82, 50, 84, 5, 79, 73, 78, 84, 32, 225, 5, 11, 85, 78, 67, 84, 85, - 65, 84, 73, 79, 78, 32, 38, 228, 1, 9, 68, 65, 71, 69, 83, 72, 32, 79, - 82, 46, 72, 106, 80, 162, 1, 81, 86, 82, 22, 83, 224, 216, 9, 2, 84, 83, - 224, 157, 11, 17, 74, 85, 68, 69, 79, 45, 83, 80, 65, 78, 73, 83, 72, 32, - 86, 65, 82, 189, 147, 3, 3, 77, 69, 84, 2, 17, 2, 32, 77, 2, 197, 1, 2, - 65, 80, 12, 60, 5, 65, 84, 65, 70, 32, 102, 73, 33, 4, 79, 76, 65, 77, 6, - 38, 80, 34, 81, 141, 2, 2, 83, 69, 2, 11, 65, 2, 223, 227, 17, 84, 2, - 129, 201, 23, 2, 65, 77, 2, 11, 82, 2, 139, 238, 13, 73, 5, 205, 144, 11, - 12, 32, 72, 65, 83, 69, 82, 32, 70, 79, 82, 32, 86, 6, 52, 5, 65, 77, 65, - 84, 83, 245, 198, 11, 2, 85, 66, 5, 241, 249, 10, 2, 32, 81, 2, 159, 232, - 6, 65, 8, 34, 69, 22, 72, 163, 186, 8, 73, 2, 179, 186, 23, 71, 4, 158, - 186, 8, 73, 223, 214, 7, 69, 12, 152, 1, 3, 71, 69, 82, 60, 3, 80, 65, - 83, 20, 7, 83, 79, 70, 32, 80, 65, 83, 240, 144, 22, 7, 78, 85, 78, 32, - 72, 65, 70, 253, 186, 1, 3, 77, 65, 81, 4, 26, 83, 203, 226, 22, 69, 2, - 253, 202, 23, 3, 72, 65, 89, 2, 151, 234, 13, 69, 2, 131, 234, 13, 85, 8, - 114, 77, 200, 157, 12, 15, 76, 83, 67, 72, 82, 69, 73, 66, 69, 82, 32, - 80, 65, 85, 83, 229, 227, 5, 3, 73, 67, 79, 4, 144, 229, 5, 12, 69, 84, - 32, 87, 73, 84, 72, 32, 87, 72, 73, 84, 203, 209, 17, 32, 188, 4, 164, 1, - 2, 65, 45, 50, 72, 70, 75, 230, 1, 77, 114, 78, 146, 2, 82, 66, 83, 154, - 1, 84, 226, 1, 87, 62, 89, 110, 69, 182, 248, 8, 85, 226, 174, 5, 79, - 139, 192, 3, 73, 8, 158, 171, 24, 87, 246, 30, 49, 2, 50, 3, 51, 72, 166, - 6, 79, 198, 198, 8, 65, 178, 228, 5, 85, 166, 116, 69, 3, 73, 74, 72, 2, - 65, 45, 104, 2, 79, 45, 178, 4, 73, 226, 3, 69, 187, 155, 15, 85, 24, - 146, 242, 11, 49, 238, 191, 12, 75, 214, 22, 50, 2, 51, 2, 52, 2, 53, 2, - 54, 2, 55, 2, 56, 3, 57, 8, 146, 180, 24, 75, 218, 19, 49, 2, 50, 3, 51, - 54, 68, 2, 69, 45, 154, 7, 79, 186, 155, 15, 65, 2, 73, 231, 203, 2, 85, - 6, 186, 196, 24, 77, 186, 2, 49, 3, 50, 68, 116, 2, 69, 45, 72, 2, 73, - 45, 246, 2, 65, 242, 250, 8, 79, 226, 174, 5, 85, 225, 146, 6, 6, 45, 77, - 85, 45, 77, 79, 14, 222, 166, 24, 75, 246, 30, 49, 2, 50, 2, 51, 2, 52, - 2, 53, 3, 54, 16, 182, 174, 24, 84, 214, 22, 49, 2, 50, 2, 51, 2, 52, 2, - 53, 2, 54, 3, 55, 54, 222, 4, 79, 2, 85, 186, 155, 15, 73, 230, 203, 2, - 65, 3, 69, 68, 62, 65, 2, 85, 226, 3, 73, 182, 248, 8, 69, 135, 163, 6, - 79, 16, 11, 45, 16, 174, 195, 24, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, - 2, 55, 3, 56, 64, 74, 69, 20, 2, 79, 45, 72, 2, 85, 45, 154, 157, 15, 73, - 231, 203, 2, 65, 18, 247, 129, 19, 45, 14, 202, 191, 24, 82, 186, 2, 49, - 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 10, 198, 162, 24, 84, 246, 30, 49, 2, - 50, 2, 51, 3, 52, 42, 218, 249, 8, 65, 2, 73, 134, 163, 6, 79, 231, 203, - 2, 69, 32, 40, 2, 65, 45, 66, 79, 159, 231, 17, 85, 12, 166, 161, 24, 89, - 246, 30, 49, 2, 50, 2, 51, 2, 52, 3, 53, 12, 11, 45, 12, 206, 191, 24, - 49, 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 4, 188, 174, 8, 21, 77, 73, 84, - 73, 65, 78, 32, 67, 79, 78, 74, 85, 71, 65, 84, 69, 32, 77, 65, 84, 82, - 215, 144, 16, 66, 128, 1, 210, 2, 65, 110, 66, 144, 1, 2, 67, 79, 94, 68, - 198, 2, 70, 66, 71, 40, 4, 72, 79, 76, 68, 164, 1, 2, 73, 78, 116, 2, 77, - 79, 58, 79, 122, 80, 100, 2, 82, 69, 66, 83, 238, 1, 84, 210, 5, 87, 172, - 168, 15, 4, 76, 73, 77, 73, 140, 191, 5, 11, 89, 79, 85, 84, 72, 70, 85, - 76, 32, 70, 79, 137, 177, 3, 9, 69, 78, 84, 72, 85, 83, 73, 65, 83, 6, - 76, 3, 80, 80, 82, 124, 4, 70, 84, 69, 82, 209, 169, 19, 4, 66, 85, 78, - 68, 2, 201, 152, 24, 2, 79, 65, 6, 92, 5, 69, 70, 79, 82, 69, 232, 216, - 3, 6, 73, 84, 73, 78, 71, 32, 1, 4, 82, 69, 65, 75, 2, 165, 233, 23, 7, - 32, 67, 79, 77, 80, 76, 69, 6, 26, 78, 203, 160, 19, 77, 4, 204, 210, 20, - 4, 84, 69, 77, 80, 209, 213, 2, 3, 70, 76, 73, 14, 110, 69, 78, 73, 226, - 164, 19, 85, 241, 245, 2, 15, 65, 82, 75, 69, 78, 73, 78, 71, 32, 79, 70, - 32, 84, 72, 69, 6, 242, 160, 19, 67, 192, 6, 2, 76, 73, 149, 205, 4, 5, - 86, 69, 76, 79, 80, 4, 144, 151, 19, 21, 70, 70, 73, 67, 85, 76, 84, 89, - 32, 65, 84, 32, 84, 72, 69, 32, 66, 69, 71, 73, 78, 169, 253, 2, 4, 83, - 80, 69, 82, 4, 240, 155, 19, 2, 79, 76, 165, 197, 4, 5, 69, 76, 76, 79, - 87, 12, 36, 5, 65, 84, 72, 69, 82, 35, 82, 2, 189, 147, 15, 3, 73, 78, - 71, 10, 40, 4, 69, 65, 84, 32, 251, 247, 23, 65, 8, 22, 80, 215, 5, 84, - 6, 22, 79, 151, 5, 82, 4, 172, 2, 2, 83, 83, 171, 244, 23, 87, 8, 50, 78, - 226, 156, 19, 67, 217, 5, 3, 70, 76, 85, 4, 180, 162, 19, 2, 79, 67, 197, - 236, 1, 5, 69, 82, 32, 84, 82, 4, 196, 195, 22, 3, 68, 69, 83, 145, 62, - 3, 85, 84, 72, 6, 26, 66, 37, 2, 80, 80, 2, 245, 225, 23, 4, 83, 84, 82, - 85, 4, 26, 82, 207, 224, 23, 79, 2, 157, 143, 22, 2, 69, 83, 6, 160, 152, - 15, 9, 85, 83, 72, 73, 78, 71, 32, 85, 80, 192, 137, 2, 3, 82, 79, 71, - 143, 211, 6, 69, 6, 26, 84, 227, 140, 19, 86, 4, 146, 158, 19, 85, 171, - 137, 4, 82, 8, 132, 1, 5, 77, 65, 76, 76, 32, 248, 179, 21, 6, 84, 65, - 78, 68, 83, 84, 185, 244, 1, 11, 80, 76, 73, 84, 84, 73, 78, 71, 32, 65, - 80, 4, 24, 2, 80, 82, 43, 84, 2, 241, 158, 19, 5, 69, 80, 79, 78, 68, 2, - 11, 65, 2, 247, 221, 23, 77, 30, 36, 3, 72, 69, 32, 251, 231, 17, 82, 28, - 186, 2, 65, 130, 1, 67, 132, 1, 3, 70, 65, 77, 20, 9, 82, 69, 67, 69, 80, - 84, 73, 86, 69, 30, 87, 172, 22, 12, 77, 65, 82, 82, 89, 73, 78, 71, 32, - 77, 65, 73, 132, 154, 5, 6, 71, 69, 78, 84, 76, 69, 240, 227, 10, 13, 75, - 69, 69, 80, 73, 78, 71, 32, 83, 84, 73, 76, 76, 173, 238, 3, 7, 74, 79, - 89, 79, 85, 83, 32, 6, 58, 82, 185, 188, 11, 8, 66, 89, 83, 77, 65, 76, - 32, 87, 4, 220, 191, 20, 8, 79, 85, 83, 73, 78, 71, 32, 84, 163, 218, 3, - 77, 6, 188, 131, 1, 2, 65, 85, 252, 186, 19, 9, 82, 69, 65, 84, 73, 86, - 69, 32, 72, 161, 212, 1, 9, 76, 73, 78, 71, 73, 78, 71, 32, 70, 2, 207, - 134, 24, 73, 2, 129, 189, 20, 2, 32, 69, 4, 166, 159, 22, 69, 189, 204, - 1, 5, 65, 78, 68, 69, 82, 4, 190, 238, 6, 65, 153, 167, 6, 14, 79, 82, - 75, 32, 79, 78, 32, 84, 72, 69, 32, 68, 69, 67, 222, 1, 236, 1, 2, 71, - 72, 180, 2, 7, 82, 65, 71, 65, 78, 65, 32, 212, 4, 7, 83, 84, 79, 82, 73, - 67, 32, 236, 198, 15, 7, 78, 68, 85, 32, 84, 69, 77, 240, 33, 4, 75, 73, - 78, 71, 218, 249, 1, 66, 169, 180, 4, 8, 80, 80, 79, 80, 79, 84, 65, 77, - 12, 18, 32, 119, 45, 6, 164, 142, 5, 2, 66, 82, 132, 248, 16, 6, 86, 79, - 76, 84, 65, 71, 217, 49, 9, 79, 67, 84, 69, 84, 32, 80, 82, 69, 6, 92, - 11, 83, 80, 69, 69, 68, 32, 84, 82, 65, 73, 78, 249, 206, 5, 6, 72, 69, - 69, 76, 69, 68, 5, 181, 193, 11, 14, 32, 87, 73, 84, 72, 32, 66, 85, 76, - 76, 69, 84, 32, 78, 200, 1, 112, 9, 68, 73, 71, 82, 65, 80, 72, 32, 89, - 20, 7, 76, 69, 84, 84, 69, 82, 32, 154, 173, 1, 86, 215, 207, 20, 73, 2, - 207, 183, 17, 79, 194, 1, 194, 1, 65, 74, 83, 138, 164, 1, 66, 162, 3, - 78, 150, 2, 68, 2, 71, 2, 72, 2, 75, 2, 77, 2, 80, 2, 82, 2, 84, 2, 90, - 126, 87, 46, 89, 174, 209, 22, 86, 234, 36, 69, 2, 73, 2, 79, 3, 85, 7, - 37, 7, 82, 67, 72, 65, 73, 67, 32, 4, 174, 252, 23, 87, 151, 14, 89, 42, - 76, 5, 77, 65, 76, 76, 32, 170, 160, 24, 65, 2, 69, 2, 73, 2, 79, 3, 85, - 32, 230, 169, 1, 87, 46, 89, 226, 179, 5, 75, 206, 157, 17, 84, 234, 36, - 65, 2, 69, 2, 73, 2, 79, 3, 85, 2, 183, 186, 8, 83, 108, 166, 1, 76, 52, - 3, 78, 69, 89, 46, 82, 146, 7, 84, 138, 1, 85, 230, 200, 16, 83, 178, - 219, 2, 67, 220, 198, 3, 6, 77, 79, 84, 72, 69, 84, 134, 167, 1, 79, 155, - 3, 80, 6, 132, 153, 16, 4, 76, 79, 87, 32, 255, 132, 8, 69, 4, 174, 171, - 22, 66, 233, 161, 1, 2, 32, 80, 66, 60, 8, 73, 90, 79, 78, 84, 65, 76, - 32, 153, 6, 2, 83, 69, 60, 218, 1, 66, 110, 76, 152, 1, 17, 79, 78, 69, - 32, 69, 73, 71, 72, 84, 72, 32, 66, 76, 79, 67, 75, 45, 88, 10, 83, 67, - 65, 78, 32, 76, 73, 78, 69, 45, 46, 84, 170, 240, 21, 67, 42, 69, 230, 6, - 77, 150, 1, 82, 247, 2, 90, 6, 44, 5, 76, 65, 67, 75, 32, 255, 225, 23, - 65, 4, 38, 79, 241, 223, 22, 3, 72, 69, 88, 2, 227, 223, 22, 67, 10, 40, - 4, 73, 78, 69, 32, 143, 246, 21, 65, 8, 44, 5, 87, 73, 84, 72, 32, 179, - 246, 21, 69, 6, 26, 84, 219, 247, 21, 70, 4, 250, 247, 21, 72, 243, 91, - 73, 14, 208, 237, 16, 3, 49, 51, 53, 178, 171, 7, 50, 2, 51, 2, 52, 2, - 53, 2, 54, 3, 55, 8, 170, 152, 24, 49, 2, 51, 2, 55, 3, 57, 10, 32, 2, - 65, 66, 223, 250, 21, 82, 8, 26, 85, 223, 249, 21, 32, 6, 33, 6, 76, 65, - 84, 73, 79, 78, 7, 11, 32, 4, 152, 205, 9, 8, 87, 73, 84, 72, 32, 74, 85, - 83, 223, 148, 14, 83, 7, 11, 32, 4, 204, 198, 7, 2, 82, 65, 235, 146, 16, - 70, 10, 26, 32, 171, 138, 23, 69, 8, 86, 80, 128, 134, 19, 5, 66, 69, 86, - 69, 82, 144, 80, 3, 83, 80, 82, 179, 190, 4, 68, 2, 255, 242, 14, 69, 12, - 48, 6, 82, 71, 76, 65, 83, 83, 77, 2, 83, 69, 5, 129, 194, 20, 14, 32, - 87, 73, 84, 72, 32, 70, 76, 79, 87, 73, 78, 71, 32, 9, 11, 32, 6, 88, 8, - 87, 73, 84, 72, 32, 71, 65, 82, 205, 137, 22, 8, 66, 85, 73, 76, 68, 73, - 78, 71, 2, 159, 189, 22, 68, 7, 142, 147, 24, 74, 3, 83, 8, 106, 83, 184, - 252, 22, 11, 78, 68, 82, 69, 68, 32, 80, 79, 73, 78, 84, 176, 13, 2, 71, - 71, 163, 136, 1, 84, 2, 147, 255, 22, 72, 20, 80, 2, 71, 73, 22, 80, 224, - 1, 5, 83, 84, 69, 82, 69, 185, 137, 22, 2, 65, 67, 4, 151, 252, 21, 69, - 12, 60, 3, 72, 69, 78, 221, 160, 4, 6, 79, 68, 73, 65, 83, 84, 11, 34, - 32, 82, 65, 227, 132, 20, 45, 4, 26, 87, 239, 173, 22, 66, 2, 21, 3, 73, - 84, 72, 2, 145, 190, 3, 2, 32, 68, 2, 165, 228, 12, 6, 84, 73, 79, 78, - 32, 80, 2, 217, 249, 22, 2, 83, 73, 210, 5, 172, 1, 3, 67, 69, 32, 152, - 1, 2, 68, 69, 222, 24, 77, 222, 2, 78, 230, 35, 82, 132, 2, 7, 90, 65, - 75, 65, 89, 65, 32, 209, 250, 19, 9, 32, 76, 79, 86, 69, 32, 89, 79, 85, - 8, 114, 67, 132, 169, 11, 18, 72, 79, 67, 75, 69, 89, 32, 83, 84, 73, 67, - 75, 32, 65, 78, 68, 32, 80, 235, 190, 1, 83, 4, 162, 252, 15, 82, 223, - 231, 2, 85, 246, 1, 68, 3, 78, 84, 73, 201, 1, 9, 79, 71, 82, 65, 80, 72, - 73, 67, 32, 8, 64, 4, 67, 65, 76, 32, 105, 8, 70, 73, 67, 65, 84, 73, 79, - 78, 6, 32, 2, 84, 79, 155, 138, 23, 87, 5, 173, 255, 14, 12, 32, 65, 78, - 68, 32, 83, 76, 65, 78, 84, 69, 68, 2, 205, 241, 22, 2, 32, 67, 238, 1, - 208, 2, 11, 65, 78, 78, 79, 84, 65, 84, 73, 79, 78, 32, 242, 3, 67, 72, - 2, 68, 69, 248, 5, 5, 78, 85, 77, 66, 69, 22, 84, 172, 243, 5, 8, 72, 65, - 76, 70, 32, 70, 73, 76, 232, 186, 1, 5, 69, 78, 84, 69, 82, 0, 3, 82, 73, - 83, 24, 5, 76, 69, 86, 69, 76, 188, 143, 9, 5, 86, 65, 82, 73, 65, 250, - 233, 4, 70, 154, 47, 73, 243, 231, 1, 83, 32, 232, 1, 5, 66, 79, 84, 84, - 79, 22, 70, 82, 77, 62, 84, 140, 1, 4, 76, 73, 78, 75, 196, 143, 1, 4, - 83, 69, 67, 79, 182, 165, 6, 79, 172, 135, 6, 6, 82, 69, 86, 69, 82, 83, - 152, 222, 9, 5, 72, 69, 65, 86, 69, 169, 39, 3, 69, 65, 82, 2, 167, 196, - 23, 77, 6, 48, 3, 79, 85, 82, 221, 186, 23, 3, 73, 82, 83, 4, 210, 195, - 23, 84, 27, 32, 4, 36, 3, 73, 68, 68, 223, 155, 23, 65, 2, 195, 189, 13, - 76, 8, 34, 72, 46, 87, 227, 137, 8, 79, 4, 214, 149, 9, 82, 181, 162, 14, - 2, 73, 82, 2, 183, 194, 23, 79, 4, 36, 3, 76, 79, 83, 251, 173, 21, 79, - 2, 249, 193, 23, 3, 73, 78, 71, 36, 104, 20, 83, 67, 82, 73, 80, 84, 73, - 79, 78, 32, 67, 72, 65, 82, 65, 67, 84, 69, 82, 32, 159, 179, 7, 80, 34, - 144, 2, 9, 65, 66, 79, 86, 69, 32, 84, 79, 32, 84, 8, 76, 69, 70, 84, 32, - 84, 79, 32, 76, 5, 79, 86, 69, 82, 76, 20, 2, 83, 85, 246, 253, 14, 82, - 172, 200, 5, 8, 70, 85, 76, 76, 32, 83, 85, 82, 229, 231, 2, 15, 72, 79, - 82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 69, 70, 76, 4, 60, 9, 77, 73, 68, - 68, 76, 69, 32, 65, 78, 247, 221, 21, 66, 2, 199, 206, 21, 68, 4, 168, - 172, 22, 10, 77, 73, 68, 68, 76, 69, 32, 65, 78, 68, 211, 168, 1, 82, 2, - 171, 233, 16, 65, 18, 72, 12, 82, 82, 79, 85, 78, 68, 32, 70, 82, 79, 77, - 32, 247, 189, 17, 66, 16, 82, 76, 232, 211, 11, 3, 85, 80, 80, 250, 135, - 10, 66, 130, 165, 1, 65, 159, 82, 82, 6, 218, 211, 11, 79, 147, 255, 11, - 69, 2, 251, 220, 8, 82, 148, 1, 92, 10, 65, 76, 76, 89, 32, 77, 65, 82, - 75, 32, 41, 9, 69, 76, 69, 71, 82, 65, 80, 72, 32, 10, 162, 137, 22, 70, - 70, 84, 155, 87, 79, 138, 1, 140, 1, 11, 83, 89, 77, 66, 79, 76, 32, 70, - 79, 82, 32, 245, 238, 12, 17, 76, 73, 78, 69, 32, 70, 69, 69, 68, 32, 83, - 69, 80, 65, 82, 65, 84, 136, 1, 182, 1, 65, 58, 68, 200, 2, 5, 72, 79, - 85, 82, 32, 214, 1, 74, 28, 4, 70, 69, 66, 82, 64, 2, 77, 65, 192, 204, - 15, 3, 78, 79, 86, 0, 4, 83, 69, 80, 84, 25, 4, 79, 67, 84, 79, 4, 192, - 139, 20, 3, 85, 71, 85, 165, 142, 2, 2, 80, 82, 64, 44, 3, 65, 89, 32, - 137, 209, 15, 2, 69, 67, 62, 66, 84, 218, 215, 5, 69, 66, 70, 70, 78, 26, - 83, 235, 131, 17, 79, 34, 34, 72, 90, 87, 179, 167, 23, 69, 8, 36, 3, 73, - 82, 84, 163, 133, 22, 82, 6, 26, 89, 163, 161, 22, 69, 5, 203, 202, 22, - 45, 24, 26, 69, 247, 246, 23, 79, 22, 36, 3, 78, 84, 89, 251, 249, 22, - 76, 21, 163, 171, 15, 45, 50, 78, 84, 182, 213, 5, 69, 66, 70, 70, 78, - 26, 83, 142, 173, 16, 90, 223, 86, 79, 20, 42, 87, 146, 215, 5, 72, 207, - 206, 17, 69, 14, 26, 69, 163, 245, 23, 79, 12, 36, 3, 78, 84, 89, 167, - 248, 22, 76, 11, 199, 166, 17, 45, 6, 24, 2, 65, 78, 35, 85, 2, 11, 85, - 2, 215, 174, 17, 65, 4, 210, 221, 23, 78, 143, 5, 76, 4, 222, 209, 23, - 82, 171, 34, 89, 68, 40, 6, 65, 71, 69, 32, 79, 70, 83, 80, 5, 241, 138, - 9, 15, 32, 79, 82, 32, 65, 80, 80, 82, 79, 88, 73, 77, 65, 84, 69, 65, - 65, 14, 69, 82, 73, 65, 76, 32, 65, 82, 65, 77, 65, 73, 67, 32, 62, 72, - 7, 78, 85, 77, 66, 69, 82, 32, 230, 18, 76, 205, 217, 19, 2, 83, 69, 16, - 26, 84, 211, 207, 15, 79, 10, 154, 191, 11, 87, 250, 147, 1, 69, 131, - 172, 9, 72, 136, 3, 202, 1, 67, 234, 1, 68, 214, 6, 70, 132, 2, 5, 72, - 73, 66, 73, 84, 156, 1, 15, 80, 85, 84, 32, 83, 89, 77, 66, 79, 76, 32, - 70, 79, 82, 32, 206, 1, 83, 236, 5, 2, 84, 69, 206, 8, 86, 171, 130, 10, - 66, 10, 32, 2, 79, 77, 69, 2, 82, 69, 4, 164, 215, 16, 3, 73, 78, 71, - 209, 230, 2, 5, 80, 76, 69, 84, 69, 6, 36, 3, 65, 83, 69, 135, 171, 23, - 77, 4, 34, 32, 181, 188, 10, 2, 83, 32, 2, 185, 191, 11, 8, 70, 79, 78, - 84, 32, 83, 73, 90, 145, 1, 24, 2, 69, 88, 103, 73, 5, 173, 210, 22, 20, - 32, 80, 79, 73, 78, 84, 73, 78, 71, 32, 65, 84, 32, 84, 72, 69, 32, 86, - 73, 69, 138, 1, 72, 8, 67, 32, 83, 73, 89, 65, 81, 32, 197, 144, 18, 4, - 65, 78, 32, 82, 136, 1, 196, 1, 11, 65, 76, 84, 69, 82, 78, 65, 84, 69, - 32, 76, 2, 76, 28, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, 100, 7, 78, 85, - 77, 66, 69, 82, 32, 210, 250, 8, 82, 153, 125, 6, 80, 76, 65, 67, 69, 72, - 2, 225, 168, 23, 2, 65, 75, 6, 68, 4, 79, 78, 69, 32, 229, 229, 21, 7, - 84, 72, 82, 69, 69, 32, 81, 4, 186, 227, 21, 72, 47, 81, 122, 212, 1, 10, - 65, 76, 84, 69, 82, 78, 65, 84, 69, 32, 72, 5, 75, 65, 82, 79, 82, 0, 4, - 76, 65, 75, 72, 246, 145, 10, 69, 66, 70, 94, 78, 26, 83, 78, 84, 236, - 135, 5, 8, 80, 82, 69, 70, 73, 88, 69, 68, 199, 41, 79, 6, 26, 84, 147, - 204, 22, 79, 4, 208, 167, 6, 2, 69, 78, 251, 160, 17, 87, 5, 179, 151, - 23, 65, 16, 72, 5, 73, 78, 73, 84, 89, 85, 9, 79, 82, 77, 65, 84, 73, 79, - 78, 32, 5, 45, 9, 32, 78, 69, 71, 65, 84, 69, 68, 32, 2, 173, 175, 8, 4, - 87, 73, 84, 72, 12, 42, 83, 249, 224, 19, 4, 68, 69, 83, 75, 10, 192, - 156, 7, 5, 69, 80, 65, 82, 65, 191, 129, 10, 79, 4, 11, 32, 4, 220, 147, - 23, 15, 65, 82, 65, 66, 73, 67, 32, 70, 79, 82, 77, 32, 83, 72, 65, 1, - 14, 83, 89, 77, 77, 69, 84, 82, 73, 67, 32, 83, 87, 65, 80, 10, 80, 6, - 76, 65, 84, 73, 78, 32, 242, 252, 14, 83, 161, 213, 7, 4, 78, 85, 77, 66, - 6, 64, 6, 67, 65, 80, 73, 84, 65, 0, 4, 83, 77, 65, 76, 27, 76, 2, 21, 3, - 76, 32, 76, 2, 217, 222, 21, 2, 69, 84, 116, 84, 13, 67, 82, 73, 80, 84, - 73, 79, 78, 65, 76, 32, 80, 65, 141, 209, 15, 2, 69, 82, 114, 72, 6, 72, - 76, 65, 86, 73, 32, 225, 1, 7, 82, 84, 72, 73, 65, 78, 32, 54, 48, 7, 76, - 69, 84, 84, 69, 82, 32, 191, 3, 78, 38, 130, 180, 10, 84, 222, 119, 65, - 22, 68, 34, 76, 22, 77, 50, 87, 254, 169, 4, 71, 90, 90, 34, 83, 66, 89, - 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 223, 105, 80, - 60, 22, 76, 251, 1, 78, 44, 11, 69, 44, 29, 5, 84, 84, 69, 82, 32, 44, - 146, 178, 10, 84, 242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82, 142, - 220, 2, 65, 50, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, - 174, 81, 66, 170, 225, 4, 78, 134, 2, 87, 218, 103, 80, 171, 4, 77, 16, - 33, 6, 85, 77, 66, 69, 82, 32, 16, 138, 170, 11, 84, 226, 144, 4, 79, - 167, 134, 3, 70, 50, 36, 4, 71, 82, 65, 76, 179, 3, 82, 23, 11, 32, 20, - 58, 65, 140, 1, 5, 87, 73, 84, 72, 32, 159, 183, 21, 69, 4, 96, 6, 86, - 69, 82, 65, 71, 69, 193, 180, 16, 12, 82, 79, 85, 78, 68, 32, 65, 32, 80, - 79, 73, 78, 2, 229, 181, 16, 5, 32, 87, 73, 84, 72, 14, 160, 1, 3, 84, - 73, 77, 20, 2, 85, 78, 248, 242, 6, 16, 76, 69, 70, 84, 87, 65, 82, 68, - 83, 32, 65, 82, 82, 79, 87, 32, 194, 178, 13, 73, 198, 1, 79, 251, 64, - 68, 2, 251, 166, 20, 69, 4, 134, 167, 20, 68, 131, 226, 2, 73, 28, 94, - 76, 232, 1, 7, 83, 69, 67, 84, 73, 79, 78, 146, 7, 82, 128, 130, 12, 2, - 67, 65, 43, 73, 8, 164, 1, 17, 73, 78, 69, 65, 82, 32, 65, 78, 78, 79, - 84, 65, 84, 73, 79, 78, 32, 169, 239, 4, 17, 79, 67, 75, 69, 68, 32, 70, - 69, 77, 65, 76, 69, 32, 65, 78, 68, 32, 6, 156, 171, 8, 3, 65, 78, 67, - 222, 158, 8, 84, 159, 219, 3, 83, 15, 11, 32, 12, 168, 1, 6, 65, 66, 79, - 86, 69, 32, 64, 5, 87, 73, 84, 72, 32, 193, 160, 20, 22, 66, 69, 83, 73, - 68, 69, 32, 65, 78, 68, 32, 74, 79, 73, 78, 69, 68, 32, 87, 73, 84, 72, - 4, 176, 161, 20, 9, 66, 65, 82, 32, 65, 66, 79, 86, 69, 23, 85, 6, 154, - 173, 4, 76, 254, 244, 15, 79, 195, 225, 2, 68, 40, 56, 2, 69, 82, 189, 5, - 7, 73, 83, 73, 66, 76, 69, 32, 34, 48, 3, 83, 69, 32, 225, 2, 4, 84, 69, - 68, 32, 16, 174, 1, 66, 80, 5, 67, 72, 69, 67, 75, 68, 24, 68, 79, 87, - 78, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, 32, 87, 73, 84, 72, 32, - 84, 73, 80, 234, 186, 20, 87, 219, 26, 77, 6, 44, 5, 76, 65, 67, 75, 32, - 251, 238, 21, 85, 4, 146, 146, 22, 68, 227, 27, 83, 4, 252, 212, 20, 8, - 69, 82, 32, 66, 79, 65, 82, 68, 183, 186, 2, 32, 2, 221, 238, 20, 2, 32, - 76, 18, 144, 1, 6, 73, 78, 84, 69, 82, 82, 22, 76, 170, 250, 11, 80, 230, - 184, 4, 69, 244, 198, 1, 2, 79, 72, 204, 158, 2, 4, 85, 78, 68, 69, 183, - 97, 81, 2, 207, 217, 4, 79, 6, 60, 9, 79, 87, 32, 75, 65, 86, 89, 75, 65, - 163, 235, 6, 65, 5, 229, 162, 18, 11, 32, 87, 73, 84, 72, 32, 75, 65, 86, - 89, 75, 6, 38, 84, 178, 194, 19, 80, 223, 89, 83, 2, 159, 181, 16, 73, 4, - 246, 177, 22, 69, 215, 93, 73, 218, 1, 94, 65, 138, 21, 69, 62, 79, 42, - 85, 157, 195, 11, 10, 73, 71, 83, 65, 87, 32, 80, 85, 90, 90, 202, 1, - 120, 5, 67, 75, 45, 79, 45, 32, 7, 80, 65, 78, 69, 83, 69, 32, 184, 2, 7, - 86, 65, 78, 69, 83, 69, 32, 207, 200, 23, 82, 2, 169, 184, 18, 3, 76, 65, - 78, 16, 246, 1, 67, 18, 80, 152, 157, 1, 10, 73, 78, 68, 85, 83, 84, 82, - 73, 65, 76, 236, 229, 3, 3, 66, 65, 78, 134, 174, 3, 68, 220, 143, 11, - 15, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 66, 69, 71, 73, 180, 248, - 1, 3, 71, 79, 66, 169, 109, 2, 79, 71, 2, 207, 32, 65, 2, 165, 145, 13, - 7, 79, 83, 84, 32, 79, 70, 70, 182, 1, 172, 2, 15, 67, 79, 78, 83, 79, - 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 76, 2, 76, 69, 40, 4, 82, 73, 71, - 72, 224, 6, 2, 80, 65, 176, 3, 14, 84, 85, 82, 78, 69, 68, 32, 80, 65, - 68, 65, 32, 80, 73, 88, 5, 83, 73, 71, 78, 32, 144, 1, 11, 86, 79, 87, - 69, 76, 32, 83, 73, 71, 78, 32, 167, 197, 21, 68, 6, 52, 2, 75, 69, 188, - 201, 16, 2, 80, 69, 175, 5, 67, 2, 199, 144, 23, 82, 96, 38, 70, 65, 5, - 84, 84, 69, 82, 32, 2, 41, 8, 84, 32, 82, 69, 82, 69, 78, 71, 2, 219, - 248, 21, 71, 94, 230, 1, 68, 26, 73, 48, 2, 75, 65, 66, 78, 130, 1, 66, - 2, 67, 2, 71, 16, 2, 80, 65, 56, 2, 82, 65, 32, 2, 83, 65, 42, 84, 74, - 74, 218, 178, 21, 65, 142, 138, 2, 72, 2, 76, 2, 77, 2, 87, 2, 89, 186, - 2, 69, 2, 79, 3, 85, 8, 222, 3, 68, 15, 65, 7, 184, 205, 5, 3, 32, 75, - 65, 171, 245, 17, 73, 7, 11, 32, 4, 22, 83, 215, 2, 77, 2, 133, 137, 21, - 2, 65, 83, 14, 36, 2, 71, 65, 90, 89, 167, 1, 65, 7, 33, 6, 32, 76, 69, - 76, 69, 84, 5, 29, 5, 32, 82, 65, 83, 87, 2, 159, 230, 5, 65, 4, 163, 1, - 65, 7, 11, 32, 4, 154, 1, 77, 153, 188, 23, 3, 67, 69, 82, 5, 237, 204, - 16, 3, 32, 65, 71, 7, 17, 2, 32, 77, 4, 70, 85, 71, 65, 8, 18, 65, 55, - 84, 5, 17, 2, 32, 77, 2, 11, 85, 2, 171, 154, 23, 82, 4, 11, 65, 5, 11, - 32, 2, 11, 77, 2, 11, 65, 2, 11, 72, 2, 237, 185, 17, 2, 65, 80, 28, 40, - 3, 68, 65, 32, 165, 3, 2, 78, 71, 24, 174, 1, 65, 90, 76, 86, 80, 244, - 150, 7, 10, 84, 73, 82, 84, 65, 32, 84, 85, 77, 69, 158, 135, 12, 87, - 168, 199, 2, 7, 73, 83, 69, 78, 45, 73, 83, 169, 211, 1, 3, 77, 65, 68, - 6, 44, 3, 68, 69, 71, 177, 169, 22, 2, 78, 68, 5, 11, 32, 2, 193, 246, - 22, 2, 65, 68, 6, 38, 85, 165, 185, 23, 3, 73, 78, 71, 4, 240, 200, 18, - 2, 78, 71, 163, 250, 3, 72, 4, 38, 73, 205, 193, 18, 3, 65, 78, 71, 2, - 181, 197, 16, 3, 83, 69, 76, 4, 140, 153, 13, 5, 82, 65, 78, 71, 75, 251, - 209, 9, 75, 10, 108, 5, 67, 69, 67, 65, 75, 248, 205, 5, 3, 87, 73, 71, - 202, 246, 10, 76, 249, 228, 2, 5, 80, 65, 78, 89, 65, 5, 157, 176, 18, 3, - 32, 84, 69, 18, 116, 4, 83, 85, 75, 85, 42, 84, 64, 4, 87, 85, 76, 85, - 142, 195, 16, 80, 137, 224, 1, 7, 68, 73, 82, 71, 65, 32, 77, 5, 225, - 190, 22, 5, 32, 77, 69, 78, 68, 6, 26, 65, 203, 196, 16, 79, 4, 178, 196, - 16, 82, 187, 162, 6, 76, 5, 25, 4, 32, 77, 69, 76, 2, 151, 180, 23, 73, - 4, 36, 3, 76, 76, 89, 203, 239, 19, 65, 2, 167, 210, 19, 70, 4, 192, 132, - 22, 2, 89, 83, 191, 98, 73, 6, 196, 200, 14, 2, 71, 71, 194, 135, 5, 80, - 191, 199, 3, 78, 188, 25, 74, 65, 178, 78, 69, 218, 1, 72, 162, 50, 73, + 65, 73, 132, 145, 19, 3, 74, 69, 67, 244, 152, 2, 8, 86, 69, 82, 71, 82, + 69, 69, 78, 167, 199, 5, 80, 22, 38, 82, 218, 248, 26, 83, 135, 65, 71, + 19, 30, 32, 137, 1, 2, 84, 72, 6, 88, 3, 79, 70, 32, 181, 232, 4, 13, 87, + 73, 84, 72, 32, 72, 69, 65, 82, 73, 78, 71, 32, 4, 132, 196, 11, 2, 77, + 65, 195, 227, 6, 82, 11, 17, 2, 32, 71, 8, 44, 5, 76, 79, 66, 69, 32, + 239, 165, 25, 82, 6, 70, 65, 173, 242, 21, 11, 69, 85, 82, 79, 80, 69, + 45, 65, 70, 82, 73, 4, 244, 142, 10, 4, 77, 69, 82, 73, 193, 154, 2, 11, + 83, 73, 65, 45, 65, 85, 83, 84, 82, 65, 76, 2, 187, 178, 2, 79, 176, 17, + 112, 18, 89, 80, 84, 73, 65, 78, 32, 72, 73, 69, 82, 79, 71, 76, 89, 80, + 72, 32, 202, 212, 2, 69, 179, 135, 26, 71, 172, 17, 146, 3, 65, 178, 4, + 66, 52, 2, 67, 48, 224, 1, 2, 68, 48, 170, 4, 69, 178, 3, 70, 164, 4, 2, + 71, 48, 210, 3, 72, 214, 1, 73, 238, 2, 76, 122, 77, 222, 8, 78, 210, 5, + 79, 140, 5, 2, 80, 48, 120, 2, 82, 48, 232, 1, 2, 83, 48, 190, 3, 84, + 220, 2, 2, 85, 48, 250, 2, 86, 134, 5, 87, 236, 2, 3, 88, 48, 48, 88, 3, + 89, 48, 48, 84, 2, 90, 48, 188, 217, 3, 3, 75, 48, 48, 129, 151, 15, 3, + 81, 48, 48, 228, 1, 30, 48, 133, 3, 2, 65, 48, 160, 1, 86, 48, 98, 49, + 102, 52, 166, 55, 51, 150, 248, 20, 55, 198, 232, 1, 50, 2, 53, 3, 54, + 24, 170, 68, 54, 198, 129, 24, 53, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, + 2, 55, 2, 56, 3, 57, 24, 142, 197, 24, 52, 2, 55, 242, 145, 4, 48, 2, 49, + 2, 50, 2, 51, 2, 53, 2, 54, 2, 56, 3, 57, 28, 170, 196, 24, 48, 2, 50, 2, + 51, 2, 53, 242, 145, 4, 49, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 68, 46, + 48, 246, 54, 51, 246, 223, 22, 49, 3, 50, 22, 210, 65, 55, 182, 147, 28, + 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 26, 148, 9, 4, 69, + 71, 73, 78, 185, 25, 2, 48, 48, 56, 34, 48, 90, 49, 155, 245, 8, 50, 24, + 230, 39, 50, 242, 171, 28, 49, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, + 3, 57, 22, 142, 193, 24, 48, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, + 2, 54, 2, 55, 2, 56, 3, 57, 184, 1, 70, 48, 94, 51, 102, 52, 102, 53, + 106, 54, 194, 29, 50, 231, 242, 22, 49, 20, 222, 191, 24, 56, 242, 145, + 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 24, 130, 191, 24, + 49, 2, 52, 242, 145, 4, 48, 2, 50, 2, 51, 2, 53, 2, 54, 2, 55, 2, 56, 3, + 57, 24, 158, 190, 24, 54, 2, 56, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, + 52, 2, 53, 2, 55, 3, 57, 42, 214, 60, 48, 230, 128, 24, 50, 2, 52, 242, + 145, 4, 49, 2, 51, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 32, 194, 60, 55, + 130, 146, 28, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 94, 30, 48, + 189, 2, 2, 78, 68, 88, 38, 48, 94, 50, 102, 51, 215, 7, 49, 22, 186, 187, + 24, 56, 2, 57, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3, 55, + 24, 222, 186, 24, 48, 2, 56, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, + 2, 54, 2, 55, 3, 57, 18, 250, 185, 24, 52, 242, 145, 4, 48, 2, 49, 2, 50, + 2, 51, 2, 54, 2, 55, 3, 56, 6, 11, 32, 6, 136, 183, 5, 6, 87, 65, 76, 76, + 69, 68, 210, 19, 69, 247, 225, 20, 83, 132, 1, 42, 48, 133, 9, 5, 85, 76, + 76, 32, 66, 130, 1, 54, 48, 94, 49, 102, 51, 102, 52, 102, 53, 215, 1, + 50, 20, 230, 183, 24, 49, 242, 145, 4, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, + 55, 2, 56, 3, 57, 22, 138, 183, 24, 51, 242, 145, 4, 48, 2, 49, 2, 50, 2, + 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 26, 166, 182, 24, 49, 2, 55, 2, + 56, 242, 145, 4, 48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3, 57, 26, 194, + 181, 24, 53, 2, 54, 2, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, + 2, 56, 3, 57, 14, 222, 26, 49, 242, 171, 28, 48, 2, 50, 3, 51, 128, 1, + 62, 48, 98, 49, 102, 51, 102, 52, 210, 27, 50, 255, 201, 8, 53, 24, 166, + 50, 55, 198, 129, 24, 54, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, + 56, 3, 57, 22, 138, 179, 24, 49, 242, 145, 4, 48, 2, 50, 2, 51, 2, 52, 2, + 53, 2, 54, 2, 55, 2, 56, 3, 57, 24, 166, 178, 24, 54, 2, 55, 242, 145, 4, + 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 56, 3, 57, 24, 194, 177, 24, + 51, 2, 53, 242, 145, 4, 48, 2, 49, 2, 50, 2, 52, 2, 54, 2, 55, 2, 56, 3, + 57, 24, 80, 2, 48, 48, 84, 4, 65, 76, 70, 32, 161, 40, 7, 79, 82, 73, 90, + 79, 78, 84, 18, 138, 176, 24, 54, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, + 2, 53, 2, 55, 3, 56, 4, 22, 66, 255, 42, 76, 2, 191, 241, 16, 76, 52, 58, + 48, 181, 1, 9, 78, 83, 69, 82, 84, 32, 65, 84, 32, 38, 18, 48, 95, 49, + 22, 186, 174, 24, 53, 2, 57, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 54, + 2, 55, 3, 56, 16, 222, 173, 24, 48, 2, 49, 242, 145, 4, 50, 2, 51, 2, 52, + 3, 53, 14, 68, 6, 66, 79, 84, 84, 79, 77, 0, 3, 84, 79, 80, 199, 219, 19, + 77, 7, 11, 32, 4, 162, 174, 27, 69, 249, 8, 2, 83, 84, 22, 32, 2, 48, 48, + 167, 223, 15, 79, 20, 250, 171, 24, 50, 2, 54, 242, 145, 4, 49, 2, 51, 2, + 52, 2, 53, 2, 55, 3, 56, 164, 1, 118, 48, 128, 4, 15, 79, 68, 73, 70, 73, + 69, 82, 32, 68, 65, 77, 65, 71, 69, 68, 129, 246, 24, 5, 73, 82, 82, 79, + 82, 132, 1, 42, 48, 98, 49, 106, 50, 102, 51, 107, 52, 24, 182, 40, 49, + 198, 129, 24, 51, 242, 145, 4, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, + 57, 44, 138, 41, 50, 146, 128, 24, 48, 2, 53, 2, 54, 2, 55, 242, 145, 4, + 49, 2, 51, 2, 52, 2, 56, 3, 57, 26, 178, 168, 24, 50, 2, 52, 2, 56, 242, + 145, 4, 48, 2, 49, 2, 51, 2, 53, 2, 54, 2, 55, 3, 57, 26, 138, 38, 51, + 198, 129, 24, 49, 242, 145, 4, 48, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, + 56, 3, 57, 12, 230, 166, 24, 48, 242, 145, 4, 49, 2, 50, 2, 51, 3, 52, + 31, 25, 4, 32, 65, 84, 32, 28, 96, 6, 66, 79, 84, 84, 79, 77, 120, 5, 83, + 84, 65, 82, 84, 68, 3, 84, 79, 80, 207, 165, 27, 69, 11, 11, 32, 8, 56, + 5, 83, 84, 65, 82, 84, 186, 1, 65, 139, 165, 27, 69, 5, 129, 2, 8, 32, + 65, 78, 68, 32, 84, 79, 80, 7, 29, 5, 32, 65, 78, 68, 32, 4, 222, 198, + 24, 66, 147, 246, 2, 84, 11, 11, 32, 8, 54, 65, 20, 5, 83, 84, 65, 82, + 84, 247, 164, 27, 69, 2, 73, 2, 78, 68, 5, 53, 11, 32, 65, 78, 68, 32, + 66, 79, 84, 84, 79, 77, 2, 235, 216, 19, 32, 194, 1, 50, 48, 128, 2, 2, + 76, 48, 229, 1, 2, 85, 48, 98, 58, 49, 98, 51, 194, 14, 50, 150, 6, 52, + 247, 221, 22, 48, 24, 146, 32, 56, 182, 147, 28, 48, 2, 49, 2, 50, 2, 51, + 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 28, 246, 160, 24, 51, 2, 52, 2, 53, 2, + 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 54, 2, 56, 3, 57, 44, 34, 48, 94, + 49, 163, 138, 21, 50, 20, 238, 159, 24, 53, 242, 145, 4, 49, 2, 50, 2, + 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 22, 146, 159, 24, 55, 242, 145, 4, + 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 52, 34, 49, + 102, 50, 251, 238, 22, 48, 26, 138, 158, 24, 48, 2, 49, 2, 56, 242, 145, + 4, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 8, 166, 157, 24, 50, + 242, 145, 4, 48, 3, 49, 152, 1, 50, 48, 149, 254, 18, 6, 86, 69, 82, 76, + 65, 89, 150, 1, 66, 48, 154, 1, 49, 138, 1, 50, 102, 51, 106, 53, 227, + 235, 22, 52, 34, 90, 54, 162, 155, 24, 49, 2, 53, 242, 145, 4, 50, 2, 51, + 2, 52, 2, 55, 2, 56, 3, 57, 15, 142, 173, 28, 65, 2, 66, 2, 67, 2, 68, 2, + 69, 3, 70, 28, 98, 48, 130, 154, 24, 57, 242, 145, 4, 49, 2, 50, 2, 51, + 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 9, 238, 171, 28, 65, 2, 66, 3, 67, 28, + 218, 153, 24, 48, 2, 52, 2, 53, 2, 57, 242, 145, 4, 49, 2, 50, 2, 51, 2, + 54, 2, 55, 3, 56, 32, 134, 23, 54, 242, 129, 24, 48, 2, 51, 242, 145, 4, + 49, 2, 50, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 8, 202, 22, 48, 183, 147, + 28, 49, 26, 26, 48, 251, 194, 8, 49, 22, 210, 151, 24, 49, 2, 51, 242, + 145, 4, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 68, 34, 48, 98, 49, + 199, 233, 22, 50, 24, 142, 21, 51, 198, 129, 24, 50, 242, 145, 4, 49, 2, + 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 24, 242, 149, 24, 48, 2, 54, 242, + 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 108, 50, 48, + 94, 49, 106, 50, 98, 51, 175, 179, 19, 52, 22, 218, 148, 24, 50, 2, 54, + 242, 145, 4, 49, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 26, 186, 18, + 52, 198, 129, 24, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 53, 2, 54, + 2, 56, 3, 57, 24, 210, 17, 54, 182, 147, 28, 48, 2, 49, 2, 50, 2, 51, 2, + 52, 2, 53, 2, 55, 2, 56, 3, 57, 22, 182, 146, 24, 53, 242, 145, 4, 48, 2, + 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 90, 34, 48, 249, 12, + 3, 65, 76, 76, 88, 42, 48, 94, 49, 102, 51, 151, 227, 22, 50, 26, 130, + 145, 24, 51, 2, 55, 2, 56, 2, 57, 242, 145, 4, 49, 2, 50, 2, 52, 2, 53, + 3, 54, 24, 166, 144, 24, 49, 2, 54, 242, 145, 4, 48, 2, 50, 2, 51, 2, 52, + 2, 53, 2, 55, 2, 56, 3, 57, 18, 194, 143, 24, 50, 2, 51, 242, 145, 4, 48, + 2, 49, 2, 52, 2, 53, 3, 54, 94, 50, 48, 90, 50, 102, 51, 102, 52, 247, + 223, 22, 49, 22, 254, 12, 54, 182, 147, 28, 49, 2, 50, 2, 51, 2, 52, 2, + 53, 2, 55, 2, 56, 3, 57, 24, 234, 141, 24, 51, 2, 57, 242, 145, 4, 48, 2, + 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 22, 134, 141, 24, 50, 242, + 145, 4, 48, 2, 49, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 6, + 146, 158, 28, 48, 2, 49, 3, 50, 158, 1, 42, 48, 185, 4, 5, 69, 82, 84, + 73, 67, 156, 1, 62, 48, 98, 49, 98, 50, 210, 1, 51, 253, 135, 24, 2, 52, + 48, 42, 198, 9, 55, 98, 49, 230, 128, 24, 50, 242, 145, 4, 51, 2, 52, 2, + 53, 2, 54, 2, 56, 3, 57, 32, 186, 8, 49, 46, 50, 182, 147, 28, 48, 2, 51, + 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 50, 98, 48, 234, 136, 24, 51, + 2, 56, 2, 57, 242, 145, 4, 49, 2, 50, 2, 52, 2, 53, 2, 54, 3, 55, 27, + 214, 154, 28, 65, 2, 66, 2, 67, 2, 68, 2, 69, 2, 70, 2, 71, 2, 72, 2, 73, + 2, 74, 2, 75, 3, 76, 28, 250, 135, 24, 48, 2, 49, 2, 51, 2, 55, 242, 145, + 4, 50, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 2, 137, 234, 23, 2, 65, 76, 66, + 34, 48, 161, 2, 3, 73, 68, 69, 64, 26, 48, 94, 49, 103, 50, 22, 186, 134, + 24, 51, 2, 57, 242, 145, 4, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, + 28, 222, 133, 24, 48, 2, 52, 2, 55, 2, 56, 242, 145, 4, 49, 2, 50, 2, 51, + 2, 53, 2, 54, 3, 57, 14, 250, 132, 24, 52, 242, 145, 4, 48, 2, 49, 2, 50, + 2, 51, 3, 53, 2, 17, 2, 32, 76, 2, 203, 183, 15, 79, 24, 202, 2, 52, 198, + 129, 24, 54, 2, 56, 242, 145, 4, 49, 2, 50, 2, 51, 2, 53, 3, 55, 18, 182, + 131, 24, 49, 242, 145, 4, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, + 82, 22, 48, 167, 1, 49, 34, 90, 50, 46, 51, 198, 129, 24, 52, 2, 53, 242, + 145, 4, 49, 2, 54, 2, 55, 2, 56, 3, 57, 11, 222, 147, 28, 65, 2, 66, 2, + 67, 3, 68, 7, 178, 147, 28, 65, 3, 66, 48, 66, 53, 86, 54, 130, 146, 28, + 48, 2, 49, 2, 50, 2, 51, 3, 52, 21, 210, 146, 28, 65, 2, 66, 2, 67, 2, + 68, 2, 69, 2, 70, 2, 71, 2, 72, 3, 73, 19, 254, 145, 28, 65, 2, 66, 2, + 67, 2, 68, 2, 69, 2, 70, 2, 71, 3, 72, 18, 26, 32, 211, 233, 15, 72, 16, + 70, 80, 124, 5, 82, 65, 89, 83, 32, 226, 152, 3, 84, 131, 223, 22, 83, 8, + 222, 152, 3, 79, 209, 190, 16, 22, 69, 84, 65, 76, 76, 69, 68, 32, 79, + 85, 84, 76, 73, 78, 69, 68, 32, 66, 76, 65, 67, 75, 4, 252, 245, 18, 2, + 73, 78, 1, 3, 79, 85, 84, 160, 1, 132, 1, 13, 66, 65, 83, 65, 78, 32, 76, + 69, 84, 84, 69, 82, 32, 166, 3, 69, 176, 4, 7, 89, 77, 65, 73, 67, 32, + 76, 199, 134, 28, 70, 80, 230, 1, 71, 78, 76, 34, 78, 50, 82, 210, 254, + 25, 69, 166, 140, 1, 67, 2, 68, 2, 75, 2, 83, 2, 84, 2, 90, 206, 105, 66, + 2, 70, 2, 72, 2, 74, 2, 77, 2, 80, 2, 81, 2, 86, 2, 88, 214, 22, 65, 2, + 73, 2, 79, 2, 85, 3, 89, 8, 38, 72, 182, 245, 27, 74, 215, 22, 69, 4, + 190, 182, 25, 65, 203, 213, 2, 69, 4, 142, 245, 27, 76, 215, 22, 69, 8, + 238, 244, 27, 68, 2, 74, 214, 22, 65, 3, 69, 4, 190, 244, 27, 82, 215, + 22, 69, 32, 96, 5, 67, 84, 82, 73, 67, 160, 1, 7, 77, 69, 78, 84, 32, 79, + 70, 238, 252, 26, 80, 135, 83, 86, 10, 26, 32, 131, 151, 24, 65, 8, 98, + 80, 232, 212, 17, 2, 84, 79, 176, 246, 8, 9, 76, 73, 71, 72, 84, 32, 66, + 85, 76, 187, 33, 65, 2, 11, 76, 2, 175, 136, 28, 85, 19, 11, 32, 16, 72, + 5, 87, 73, 84, 72, 32, 153, 214, 16, 7, 79, 80, 69, 78, 73, 78, 71, 12, + 130, 1, 76, 32, 12, 84, 87, 79, 32, 72, 79, 82, 73, 90, 79, 78, 84, 146, + 225, 19, 86, 226, 182, 4, 85, 142, 61, 79, 175, 177, 2, 68, 2, 245, 222, + 25, 3, 79, 78, 71, 2, 173, 219, 14, 7, 65, 76, 32, 83, 84, 82, 79, 46, + 238, 175, 4, 69, 165, 206, 15, 15, 73, 71, 65, 84, 85, 82, 69, 32, 90, + 65, 89, 73, 78, 45, 89, 53, 48, 4, 79, 74, 73, 32, 218, 2, 80, 163, 3, + 32, 18, 164, 1, 10, 67, 79, 77, 80, 79, 78, 69, 78, 84, 32, 109, 26, 77, + 79, 68, 73, 70, 73, 69, 82, 32, 70, 73, 84, 90, 80, 65, 84, 82, 73, 67, + 75, 32, 84, 89, 80, 69, 45, 8, 244, 132, 15, 2, 82, 69, 12, 5, 67, 85, + 82, 76, 89, 0, 5, 87, 72, 73, 84, 69, 185, 207, 2, 2, 66, 65, 10, 216, + 219, 20, 2, 49, 45, 194, 167, 7, 51, 2, 52, 2, 53, 3, 54, 26, 44, 3, 84, + 89, 32, 149, 251, 3, 2, 72, 65, 24, 82, 78, 60, 3, 80, 65, 71, 20, 3, 83, + 69, 84, 209, 189, 27, 4, 68, 79, 67, 85, 8, 36, 3, 79, 84, 69, 187, 147, + 24, 69, 7, 251, 162, 13, 32, 4, 191, 247, 25, 69, 11, 33, 6, 32, 87, 73, + 84, 72, 32, 8, 242, 135, 14, 82, 24, 3, 76, 69, 70, 224, 166, 1, 2, 83, + 77, 255, 159, 9, 79, 38, 86, 32, 64, 2, 68, 32, 214, 1, 81, 20, 6, 86, + 69, 76, 79, 80, 69, 199, 227, 15, 84, 6, 42, 81, 250, 147, 26, 68, 235, + 172, 1, 83, 2, 223, 184, 27, 85, 20, 32, 3, 79, 70, 32, 131, 1, 87, 18, + 88, 3, 80, 82, 79, 254, 232, 20, 71, 56, 2, 83, 69, 166, 71, 77, 30, 84, + 203, 177, 5, 76, 4, 190, 233, 20, 84, 151, 147, 6, 79, 2, 193, 250, 19, + 7, 73, 84, 72, 32, 76, 69, 70, 5, 247, 176, 21, 85, 7, 33, 6, 32, 87, 73, + 84, 72, 32, 4, 42, 76, 153, 254, 23, 4, 68, 79, 87, 78, 2, 161, 220, 22, + 4, 73, 71, 72, 84, 6, 154, 252, 27, 76, 2, 77, 3, 84, 46, 28, 2, 65, 76, + 231, 6, 73, 40, 30, 32, 133, 2, 2, 83, 32, 12, 56, 3, 84, 79, 32, 229, + 151, 13, 5, 65, 78, 68, 32, 80, 10, 68, 3, 79, 82, 32, 249, 168, 27, 8, + 66, 89, 32, 68, 69, 70, 73, 78, 8, 64, 3, 80, 82, 69, 28, 3, 83, 85, 67, + 226, 227, 25, 71, 39, 76, 2, 189, 162, 15, 2, 67, 69, 2, 157, 151, 26, 3, + 67, 69, 69, 28, 72, 4, 83, 73, 71, 78, 160, 225, 25, 4, 87, 73, 84, 72, + 199, 199, 1, 67, 25, 11, 32, 22, 42, 65, 201, 1, 5, 87, 73, 84, 72, 32, + 12, 112, 5, 66, 79, 86, 69, 32, 65, 19, 78, 68, 32, 83, 76, 65, 78, 84, + 69, 68, 32, 80, 65, 82, 65, 76, 76, 69, 76, 8, 182, 143, 21, 80, 210, 5, + 84, 146, 189, 2, 76, 171, 131, 3, 82, 5, 239, 243, 6, 32, 10, 160, 1, 4, + 66, 85, 77, 80, 20, 7, 73, 78, 70, 73, 78, 73, 84, 20, 18, 84, 87, 79, + 32, 68, 79, 84, 83, 32, 65, 66, 79, 86, 69, 32, 65, 78, 68, 211, 162, 15, + 68, 2, 191, 248, 26, 89, 4, 155, 211, 25, 89, 2, 17, 2, 32, 84, 2, 187, + 195, 25, 87, 6, 80, 7, 86, 65, 76, 69, 78, 84, 32, 137, 147, 21, 7, 65, + 78, 71, 85, 76, 65, 82, 4, 48, 6, 87, 73, 84, 72, 32, 70, 251, 212, 27, + 84, 2, 11, 79, 2, 237, 248, 2, 2, 85, 82, 20, 152, 1, 11, 82, 79, 82, 45, + 66, 65, 82, 82, 69, 68, 32, 236, 166, 5, 7, 73, 83, 32, 70, 79, 82, 77, + 161, 202, 7, 9, 65, 83, 69, 32, 84, 79, 32, 84, 72, 12, 140, 224, 5, 4, + 87, 72, 73, 84, 13, 5, 66, 76, 65, 67, 75, 10, 58, 67, 20, 6, 84, 73, 77, + 65, 84, 69, 155, 241, 27, 65, 5, 211, 167, 26, 65, 4, 210, 219, 26, 68, + 199, 149, 1, 83, 154, 8, 60, 7, 72, 73, 79, 80, 73, 67, 32, 178, 240, 27, + 66, 3, 88, 150, 8, 204, 1, 2, 67, 79, 232, 1, 7, 78, 85, 77, 66, 69, 82, + 32, 114, 80, 54, 83, 156, 24, 11, 84, 79, 78, 65, 76, 32, 77, 65, 82, 75, + 32, 230, 135, 19, 68, 158, 246, 5, 70, 82, 81, 173, 150, 2, 4, 87, 79, + 82, 68, 10, 26, 77, 215, 158, 27, 76, 8, 52, 7, 66, 73, 78, 73, 78, 71, + 32, 211, 235, 27, 77, 6, 60, 11, 71, 69, 77, 73, 78, 65, 84, 73, 79, 78, + 32, 51, 86, 4, 44, 5, 65, 78, 68, 32, 86, 239, 171, 27, 77, 2, 145, 140, + 24, 4, 79, 87, 69, 76, 22, 66, 84, 134, 144, 22, 72, 238, 234, 3, 69, 30, + 70, 42, 78, 39, 83, 8, 130, 206, 16, 69, 158, 174, 9, 72, 27, 87, 4, 202, + 119, 65, 145, 164, 26, 5, 82, 69, 70, 65, 67, 198, 7, 50, 69, 37, 8, 89, + 76, 76, 65, 66, 76, 69, 32, 4, 146, 156, 24, 77, 223, 229, 2, 67, 194, 7, + 210, 1, 66, 90, 67, 246, 1, 68, 186, 1, 70, 90, 71, 214, 2, 72, 162, 1, + 75, 102, 77, 90, 78, 90, 80, 138, 2, 81, 174, 1, 82, 86, 83, 210, 1, 84, + 122, 74, 2, 76, 138, 1, 87, 2, 89, 66, 88, 134, 1, 90, 95, 86, 38, 194, + 12, 87, 230, 8, 66, 134, 194, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, + 73, 3, 85, 78, 94, 67, 254, 15, 72, 250, 197, 23, 65, 2, 79, 210, 209, 3, + 69, 234, 61, 87, 186, 2, 73, 3, 85, 42, 70, 72, 174, 213, 23, 65, 210, + 209, 3, 69, 162, 64, 73, 2, 79, 3, 85, 28, 166, 19, 72, 134, 194, 23, 65, + 210, 209, 3, 69, 162, 64, 73, 2, 79, 3, 85, 60, 94, 68, 214, 14, 90, 174, + 197, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 30, + 210, 14, 72, 174, 197, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, + 2, 73, 3, 85, 24, 190, 8, 87, 234, 202, 23, 65, 210, 209, 3, 69, 234, 61, + 89, 186, 2, 73, 2, 79, 3, 85, 118, 142, 1, 85, 226, 7, 71, 232, 3, 7, 76, + 79, 84, 84, 65, 76, 32, 158, 2, 87, 218, 1, 89, 134, 194, 23, 65, 2, 79, + 210, 209, 3, 69, 163, 64, 73, 39, 29, 5, 82, 65, 71, 69, 32, 36, 74, 66, + 2, 70, 2, 77, 2, 80, 46, 71, 2, 75, 2, 81, 247, 140, 12, 72, 4, 11, 87, + 4, 226, 203, 27, 69, 215, 22, 73, 6, 11, 87, 6, 234, 161, 27, 69, 163, + 64, 73, 52, 70, 72, 182, 207, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, + 73, 3, 85, 36, 202, 4, 87, 230, 8, 89, 134, 194, 23, 65, 210, 209, 3, 69, + 162, 64, 73, 2, 79, 3, 85, 64, 250, 4, 88, 134, 6, 87, 218, 1, 89, 134, + 194, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 26, 142, 3, 87, + 234, 202, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 89, 186, 2, 73, 3, 85, + 36, 166, 7, 89, 250, 197, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, + 186, 2, 73, 3, 85, 56, 82, 72, 142, 1, 87, 234, 202, 23, 65, 2, 79, 210, + 209, 3, 69, 162, 64, 73, 3, 85, 32, 74, 65, 170, 203, 23, 79, 210, 209, + 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 19, 160, 9, 8, 82, 89, 78, 71, 69, + 65, 76, 32, 247, 211, 27, 65, 8, 182, 156, 27, 69, 162, 64, 65, 3, 73, + 64, 94, 72, 134, 6, 87, 218, 1, 89, 134, 194, 23, 65, 2, 79, 210, 209, 3, + 69, 162, 64, 73, 3, 85, 24, 130, 6, 87, 222, 195, 23, 65, 210, 209, 3, + 69, 162, 64, 73, 2, 79, 3, 85, 20, 146, 201, 23, 65, 2, 79, 210, 209, 3, + 69, 234, 61, 87, 2, 89, 186, 2, 73, 3, 85, 74, 102, 69, 226, 1, 72, 170, + 3, 90, 78, 83, 134, 194, 23, 65, 2, 79, 186, 143, 4, 87, 186, 2, 73, 3, + 85, 13, 56, 8, 66, 65, 84, 66, 69, 73, 84, 32, 143, 217, 27, 69, 8, 174, + 223, 22, 66, 2, 70, 2, 77, 3, 80, 80, 118, 72, 76, 2, 84, 72, 62, 90, + 162, 2, 83, 210, 194, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, + 2, 73, 3, 85, 18, 246, 197, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, + 186, 2, 73, 3, 85, 12, 250, 150, 27, 69, 234, 61, 65, 186, 2, 73, 2, 79, + 3, 85, 16, 238, 196, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, + 40, 82, 87, 218, 1, 89, 134, 194, 23, 65, 2, 79, 210, 209, 3, 69, 162, + 64, 73, 3, 85, 10, 218, 195, 23, 65, 210, 209, 3, 69, 163, 64, 73, 48, + 90, 72, 78, 90, 134, 194, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, + 186, 2, 73, 3, 85, 16, 206, 194, 23, 65, 210, 209, 3, 69, 234, 61, 87, + 186, 2, 73, 2, 79, 3, 85, 14, 130, 194, 23, 65, 210, 209, 3, 69, 162, 64, + 73, 2, 79, 3, 85, 20, 130, 1, 68, 74, 72, 30, 75, 42, 82, 0, 7, 83, 72, + 79, 82, 84, 32, 82, 220, 147, 4, 3, 67, 72, 73, 177, 136, 23, 3, 89, 73, + 90, 6, 48, 4, 69, 82, 69, 84, 205, 200, 26, 2, 73, 70, 5, 17, 2, 45, 72, + 2, 205, 156, 27, 2, 73, 68, 4, 152, 200, 26, 2, 69, 78, 163, 2, 85, 2, + 137, 162, 4, 3, 73, 75, 82, 12, 96, 2, 82, 79, 244, 155, 11, 3, 78, 79, + 77, 181, 168, 15, 9, 76, 69, 82, 32, 67, 79, 78, 83, 84, 8, 92, 5, 80, + 69, 65, 78, 32, 248, 152, 24, 8, 45, 67, 85, 82, 82, 69, 78, 67, 215, + 175, 2, 32, 4, 202, 142, 4, 67, 19, 80, 50, 30, 67, 102, 80, 187, 1, 84, + 6, 60, 9, 76, 65, 77, 65, 84, 73, 79, 78, 32, 243, 181, 26, 69, 4, 222, + 249, 24, 81, 187, 147, 2, 77, 10, 96, 7, 76, 79, 83, 73, 79, 78, 32, 157, + 144, 27, 11, 82, 69, 83, 83, 73, 79, 78, 76, 69, 83, 83, 8, 136, 220, 11, + 4, 70, 82, 65, 77, 197, 161, 15, 8, 65, 84, 32, 72, 79, 82, 73, 90, 34, + 98, 82, 209, 189, 21, 18, 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73, 67, + 45, 73, 78, 68, 73, 67, 14, 140, 1, 12, 69, 77, 69, 76, 89, 32, 72, 69, + 65, 86, 89, 32, 241, 244, 25, 16, 65, 84, 69, 82, 82, 69, 83, 84, 82, 73, + 65, 76, 32, 65, 76, 73, 12, 50, 83, 238, 176, 25, 70, 234, 2, 87, 203, + 11, 71, 4, 254, 177, 25, 65, 43, 73, 7, 226, 178, 19, 71, 195, 151, 8, + 83, 152, 4, 142, 1, 65, 130, 19, 69, 190, 1, 73, 134, 8, 76, 138, 6, 79, + 142, 7, 82, 130, 5, 85, 228, 193, 20, 2, 86, 83, 242, 203, 4, 83, 199, + 140, 2, 70, 92, 122, 67, 178, 15, 76, 176, 2, 2, 88, 32, 170, 148, 3, 77, + 176, 250, 5, 2, 82, 83, 140, 251, 1, 2, 84, 72, 203, 230, 9, 73, 70, 72, + 2, 69, 32, 156, 179, 16, 4, 83, 73, 77, 73, 165, 206, 4, 2, 84, 79, 66, + 226, 1, 83, 160, 1, 4, 87, 73, 84, 72, 172, 128, 13, 2, 80, 65, 252, 136, + 2, 2, 77, 65, 164, 162, 11, 13, 84, 72, 82, 79, 87, 73, 78, 71, 32, 65, + 32, 75, 73, 201, 1, 14, 72, 79, 76, 68, 73, 78, 71, 32, 66, 65, 67, 75, + 32, 84, 4, 192, 130, 17, 18, 65, 86, 79, 85, 82, 73, 78, 71, 32, 68, 69, + 76, 73, 67, 73, 79, 85, 83, 141, 138, 5, 13, 67, 82, 69, 65, 77, 73, 78, + 71, 32, 73, 78, 32, 70, 54, 38, 32, 245, 158, 24, 3, 79, 85, 84, 52, 196, + 4, 2, 67, 79, 44, 5, 72, 69, 65, 68, 45, 38, 77, 98, 79, 92, 7, 78, 79, + 32, 71, 79, 79, 68, 238, 1, 80, 164, 1, 16, 83, 84, 85, 67, 75, 45, 79, + 85, 84, 32, 84, 79, 78, 71, 85, 69, 110, 84, 204, 183, 1, 9, 66, 65, 71, + 83, 32, 85, 78, 68, 69, 188, 163, 17, 22, 70, 73, 78, 71, 69, 82, 32, 67, + 79, 86, 69, 82, 73, 78, 71, 32, 67, 76, 79, 83, 69, 68, 244, 67, 3, 82, + 79, 76, 180, 231, 1, 13, 76, 79, 79, 75, 32, 79, 70, 32, 84, 82, 73, 85, + 77, 244, 141, 3, 8, 68, 73, 65, 71, 79, 78, 65, 76, 1, 20, 85, 78, 69, + 86, 69, 78, 32, 69, 89, 69, 83, 32, 65, 78, 68, 32, 87, 65, 86, 89, 4, + 252, 4, 3, 87, 66, 79, 203, 159, 19, 76, 2, 225, 175, 22, 4, 66, 65, 78, + 68, 4, 60, 6, 69, 68, 73, 67, 65, 76, 161, 234, 25, 3, 79, 78, 79, 2, + 157, 247, 25, 3, 32, 77, 65, 12, 90, 75, 36, 4, 80, 69, 78, 32, 189, 172, + 20, 10, 78, 69, 32, 69, 89, 69, 66, 82, 79, 87, 2, 217, 158, 22, 4, 32, + 71, 69, 83, 8, 116, 5, 77, 79, 85, 84, 72, 133, 151, 24, 18, 69, 89, 69, + 83, 32, 65, 78, 68, 32, 72, 65, 78, 68, 32, 79, 86, 69, 82, 7, 11, 32, 4, + 236, 133, 10, 3, 86, 79, 77, 145, 155, 9, 5, 65, 78, 68, 32, 67, 6, 132, + 1, 18, 65, 82, 84, 89, 32, 72, 79, 82, 78, 32, 65, 78, 68, 32, 80, 65, + 82, 84, 100, 2, 69, 69, 173, 159, 19, 4, 76, 69, 65, 68, 2, 205, 200, 22, + 2, 89, 32, 7, 29, 5, 32, 65, 78, 68, 32, 4, 36, 3, 87, 73, 78, 207, 159, + 19, 84, 2, 169, 183, 1, 4, 75, 73, 78, 71, 4, 50, 69, 169, 204, 22, 6, + 72, 69, 82, 77, 79, 77, 2, 157, 167, 27, 8, 65, 82, 83, 32, 79, 70, 32, + 74, 10, 34, 76, 237, 162, 22, 2, 65, 70, 8, 84, 13, 73, 78, 71, 32, 68, + 73, 65, 71, 79, 78, 65, 76, 32, 233, 233, 23, 2, 69, 78, 6, 128, 1, 9, + 67, 82, 79, 83, 83, 73, 78, 71, 32, 177, 178, 19, 16, 73, 78, 32, 87, 72, + 73, 84, 69, 32, 67, 73, 82, 67, 76, 69, 32, 4, 140, 140, 16, 3, 82, 73, + 83, 227, 173, 3, 78, 4, 194, 250, 14, 73, 131, 143, 4, 77, 14, 50, 65, + 50, 77, 44, 2, 82, 82, 251, 227, 18, 78, 4, 156, 171, 8, 3, 82, 70, 85, + 199, 232, 9, 84, 4, 152, 243, 8, 2, 73, 78, 231, 173, 7, 65, 4, 144, 243, + 7, 2, 73, 83, 203, 193, 19, 89, 58, 138, 1, 71, 90, 76, 178, 1, 78, 98, + 82, 182, 2, 83, 164, 14, 4, 86, 69, 32, 68, 141, 252, 4, 10, 69, 76, 68, + 32, 72, 79, 67, 75, 69, 89, 6, 48, 4, 85, 82, 69, 32, 221, 132, 26, 2, + 72, 84, 4, 218, 199, 25, 68, 235, 172, 1, 83, 10, 32, 2, 69, 32, 65, 2, + 77, 32, 6, 218, 192, 13, 70, 140, 155, 2, 3, 67, 65, 66, 147, 165, 8, 83, + 4, 52, 4, 80, 82, 79, 74, 149, 153, 20, 3, 70, 82, 65, 2, 227, 209, 15, + 69, 4, 72, 4, 71, 69, 82, 80, 197, 166, 25, 8, 73, 84, 69, 32, 80, 65, + 82, 84, 2, 171, 133, 16, 82, 22, 34, 69, 189, 1, 3, 83, 84, 32, 13, 56, + 2, 32, 69, 68, 4, 87, 79, 82, 75, 227, 176, 15, 67, 4, 198, 184, 13, 78, + 193, 213, 4, 8, 88, 84, 73, 78, 71, 85, 73, 83, 4, 192, 193, 23, 6, 32, + 83, 80, 65, 82, 75, 215, 237, 3, 83, 10, 238, 173, 5, 81, 224, 179, 10, + 8, 83, 84, 82, 79, 78, 71, 32, 73, 223, 225, 6, 80, 10, 38, 72, 141, 221, + 23, 3, 84, 69, 68, 9, 128, 255, 3, 13, 73, 78, 71, 32, 80, 79, 76, 69, + 32, 65, 78, 68, 32, 226, 205, 5, 69, 137, 218, 16, 19, 32, 67, 65, 75, + 69, 32, 87, 73, 84, 72, 32, 83, 87, 73, 82, 76, 32, 68, 69, 46, 50, 65, + 170, 1, 69, 98, 79, 194, 1, 85, 39, 89, 12, 114, 84, 236, 163, 4, 5, 80, + 80, 73, 78, 71, 244, 155, 3, 6, 71, 32, 73, 78, 32, 72, 213, 219, 17, 3, + 77, 73, 78, 6, 242, 217, 8, 32, 174, 199, 11, 66, 135, 241, 5, 78, 4, + 172, 242, 23, 8, 88, 69, 68, 32, 66, 73, 67, 69, 153, 145, 1, 7, 85, 82, + 45, 68, 69, 45, 76, 12, 52, 2, 82, 65, 20, 3, 87, 69, 82, 243, 225, 25, + 80, 5, 251, 161, 26, 76, 7, 17, 2, 32, 80, 4, 58, 85, 185, 199, 24, 8, + 76, 65, 89, 73, 78, 71, 32, 67, 2, 157, 191, 26, 4, 78, 67, 84, 85, 4, + 190, 158, 3, 83, 159, 243, 23, 84, 15, 25, 4, 73, 78, 71, 32, 12, 64, 6, + 83, 65, 85, 67, 69, 82, 134, 140, 10, 68, 207, 131, 10, 69, 9, 11, 32, 6, + 40, 4, 87, 73, 84, 72, 203, 145, 26, 83, 4, 34, 32, 1, 4, 79, 85, 84, 32, + 2, 21, 3, 66, 69, 65, 2, 219, 232, 26, 77, 56, 102, 71, 20, 2, 76, 68, + 68, 2, 79, 84, 22, 82, 142, 2, 85, 232, 146, 23, 2, 78, 68, 191, 210, 3, + 88, 5, 243, 147, 27, 71, 4, 208, 201, 9, 8, 73, 78, 71, 32, 72, 65, 78, + 68, 251, 162, 17, 69, 5, 171, 153, 14, 80, 18, 78, 75, 132, 1, 3, 84, 85, + 78, 238, 215, 20, 77, 222, 192, 4, 32, 179, 116, 67, 8, 80, 10, 32, 65, + 78, 68, 32, 75, 78, 73, 70, 69, 218, 156, 15, 69, 223, 181, 11, 73, 5, + 177, 214, 15, 7, 32, 87, 73, 84, 72, 32, 80, 4, 200, 135, 27, 6, 69, 32, + 67, 79, 79, 75, 179, 27, 65, 22, 26, 82, 175, 182, 23, 78, 20, 38, 32, + 218, 2, 84, 199, 231, 18, 45, 16, 110, 67, 174, 1, 68, 182, 170, 2, 66, + 136, 152, 10, 7, 76, 69, 65, 70, 32, 67, 76, 242, 106, 84, 235, 215, 11, + 80, 4, 252, 174, 13, 3, 76, 85, 66, 181, 86, 32, 79, 82, 78, 69, 82, 32, + 65, 82, 82, 79, 87, 83, 32, 67, 73, 82, 67, 76, 73, 78, 71, 32, 65, 78, + 84, 73, 67, 76, 79, 67, 75, 87, 4, 21, 3, 79, 84, 32, 4, 222, 217, 23, + 80, 195, 132, 3, 77, 2, 231, 43, 72, 30, 78, 65, 250, 1, 69, 98, 79, 237, + 250, 16, 8, 73, 69, 68, 32, 83, 72, 82, 73, 12, 96, 6, 67, 84, 73, 79, + 78, 32, 68, 8, 77, 69, 32, 87, 73, 84, 72, 32, 245, 238, 10, 2, 71, 73, + 4, 142, 249, 19, 83, 177, 6, 9, 78, 85, 77, 69, 82, 65, 84, 79, 82, 6, + 50, 80, 218, 170, 2, 65, 253, 176, 21, 2, 84, 73, 2, 161, 254, 21, 2, 73, + 67, 6, 48, 6, 78, 67, 72, 32, 70, 82, 243, 133, 19, 69, 4, 150, 134, 26, + 73, 133, 15, 3, 65, 78, 67, 10, 52, 3, 78, 84, 45, 116, 2, 87, 78, 167, + 221, 26, 71, 4, 70, 84, 217, 143, 2, 11, 70, 65, 67, 73, 78, 71, 32, 66, + 65, 66, 89, 2, 237, 187, 12, 6, 73, 76, 84, 69, 68, 32, 5, 237, 143, 8, + 6, 73, 78, 71, 32, 70, 65, 226, 1, 80, 2, 76, 76, 134, 6, 78, 184, 242, + 16, 5, 69, 76, 32, 80, 85, 179, 138, 10, 83, 216, 1, 42, 32, 73, 6, 87, + 73, 68, 84, 72, 32, 10, 158, 137, 12, 77, 188, 166, 3, 2, 79, 85, 170, + 247, 8, 66, 151, 29, 83, 206, 1, 242, 1, 67, 42, 76, 78, 78, 30, 80, 66, + 82, 142, 1, 83, 38, 89, 182, 155, 10, 77, 226, 208, 10, 65, 158, 2, 68, + 58, 69, 98, 71, 118, 72, 202, 4, 81, 198, 153, 2, 87, 182, 29, 84, 162, + 146, 1, 70, 224, 177, 1, 6, 66, 82, 79, 75, 69, 78, 211, 7, 86, 10, 138, + 240, 20, 73, 62, 79, 131, 81, 69, 116, 42, 69, 190, 243, 20, 65, 231, + 183, 4, 79, 10, 162, 1, 70, 175, 245, 20, 83, 4, 142, 202, 21, 79, 35, + 85, 6, 42, 79, 174, 246, 20, 69, 211, 236, 2, 76, 2, 199, 169, 25, 85, + 10, 36, 3, 73, 71, 72, 183, 251, 24, 69, 8, 17, 2, 84, 32, 8, 244, 172, + 20, 5, 87, 72, 73, 84, 69, 246, 220, 2, 67, 210, 3, 80, 239, 7, 83, 4, + 226, 196, 23, 69, 139, 184, 1, 79, 2, 199, 151, 25, 69, 6, 180, 201, 11, + 8, 67, 84, 73, 79, 78, 32, 65, 80, 132, 248, 8, 5, 69, 82, 65, 76, 32, + 211, 188, 1, 78, 130, 21, 114, 65, 250, 6, 69, 222, 22, 73, 162, 1, 76, + 134, 15, 79, 198, 6, 82, 178, 92, 85, 242, 146, 22, 72, 131, 238, 3, 83, + 142, 1, 42, 82, 253, 245, 26, 4, 77, 69, 32, 68, 140, 1, 36, 3, 65, 89, + 32, 231, 230, 25, 76, 138, 1, 166, 1, 67, 210, 1, 83, 192, 2, 6, 86, 79, + 87, 69, 76, 32, 224, 174, 8, 6, 82, 69, 68, 85, 80, 76, 246, 203, 10, 72, + 238, 168, 1, 80, 214, 181, 3, 77, 171, 190, 1, 68, 52, 42, 79, 205, 1, 5, + 65, 80, 73, 84, 65, 8, 88, 10, 77, 66, 73, 78, 73, 78, 71, 32, 68, 79, + 37, 8, 78, 83, 79, 78, 65, 78, 84, 32, 4, 158, 145, 12, 85, 171, 128, 14, + 84, 4, 230, 145, 12, 78, 223, 156, 11, 71, 46, 36, 3, 77, 65, 76, 147, + 138, 22, 85, 44, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 44, 200, 1, + 4, 79, 76, 68, 32, 190, 147, 20, 78, 238, 245, 6, 66, 2, 67, 2, 68, 2, + 70, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 84, + 2, 87, 2, 88, 2, 89, 187, 2, 65, 4, 166, 137, 27, 75, 3, 78, 12, 44, 5, + 83, 73, 71, 78, 32, 155, 201, 26, 76, 10, 242, 202, 26, 69, 162, 64, 65, + 2, 73, 3, 79, 146, 3, 112, 2, 65, 82, 110, 77, 50, 79, 136, 210, 23, 9, + 82, 77, 65, 78, 32, 80, 69, 78, 78, 174, 177, 2, 84, 239, 105, 78, 7, 29, + 5, 32, 87, 73, 84, 72, 4, 200, 152, 14, 5, 79, 85, 84, 32, 72, 233, 175, + 9, 5, 32, 72, 65, 78, 68, 4, 26, 32, 143, 132, 22, 73, 2, 183, 147, 23, + 83, 130, 3, 46, 77, 245, 5, 6, 82, 71, 73, 65, 78, 32, 38, 92, 13, 65, + 78, 84, 73, 67, 32, 70, 73, 71, 85, 82, 69, 32, 205, 4, 5, 69, 84, 82, + 73, 67, 32, 158, 1, 65, 82, 67, 172, 1, 9, 70, 79, 82, 84, 85, 78, 65, + 32, 77, 44, 3, 76, 65, 69, 0, 4, 84, 82, 73, 83, 34, 80, 80, 3, 82, 85, + 66, 219, 206, 10, 86, 6, 216, 1, 6, 67, 81, 85, 73, 83, 73, 12, 4, 77, + 73, 83, 83, 211, 158, 23, 76, 8, 42, 65, 97, 6, 79, 78, 74, 85, 78, 67, + 6, 56, 3, 80, 85, 84, 0, 3, 85, 68, 65, 131, 180, 18, 82, 2, 165, 90, 5, + 32, 68, 82, 65, 67, 2, 11, 84, 2, 191, 229, 26, 73, 4, 206, 167, 2, 73, + 233, 163, 24, 2, 65, 74, 2, 197, 207, 10, 3, 84, 73, 84, 6, 44, 2, 85, + 69, 153, 248, 22, 3, 79, 80, 85, 4, 138, 225, 26, 76, 155, 34, 82, 2, + 159, 250, 24, 69, 6, 228, 255, 19, 4, 65, 76, 76, 89, 137, 228, 1, 5, 32, + 80, 82, 79, 80, 220, 2, 228, 1, 6, 67, 65, 80, 73, 84, 65, 0, 4, 83, 77, + 65, 76, 172, 3, 7, 76, 69, 84, 84, 69, 82, 32, 180, 2, 24, 77, 84, 65, + 86, 82, 85, 76, 73, 32, 67, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, + 69, 82, 32, 165, 6, 2, 80, 65, 80, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, + 32, 80, 142, 2, 65, 34, 72, 166, 5, 67, 118, 71, 130, 1, 74, 34, 75, 82, + 80, 34, 83, 94, 90, 176, 178, 5, 2, 84, 65, 214, 144, 8, 76, 226, 180, 2, + 82, 218, 176, 9, 66, 2, 77, 2, 88, 226, 40, 78, 2, 81, 234, 35, 86, 234, + 47, 68, 14, 69, 2, 73, 2, 79, 2, 85, 2, 89, 143, 57, 87, 4, 154, 174, 26, + 69, 227, 79, 78, 10, 46, 65, 218, 230, 26, 73, 2, 79, 215, 22, 69, 4, + 170, 253, 26, 69, 3, 82, 94, 254, 1, 85, 178, 2, 65, 42, 67, 74, 69, 46, + 71, 34, 72, 98, 74, 34, 75, 34, 76, 50, 80, 34, 83, 34, 84, 62, 90, 230, + 247, 15, 82, 218, 176, 9, 66, 2, 77, 2, 88, 226, 40, 78, 2, 81, 234, 35, + 86, 234, 47, 68, 14, 73, 2, 79, 2, 89, 142, 57, 87, 255, 2, 70, 4, 240, + 130, 22, 4, 45, 66, 82, 74, 159, 248, 4, 78, 92, 250, 1, 65, 42, 67, 74, + 69, 46, 71, 34, 72, 98, 74, 34, 75, 34, 76, 50, 80, 34, 83, 34, 84, 62, + 90, 230, 247, 15, 82, 218, 176, 9, 66, 2, 77, 2, 88, 226, 40, 78, 2, 81, + 234, 35, 86, 234, 47, 68, 14, 73, 2, 79, 2, 85, 2, 89, 142, 57, 87, 255, + 2, 70, 6, 254, 168, 26, 69, 2, 73, 227, 79, 78, 8, 38, 72, 194, 236, 25, + 73, 243, 59, 65, 4, 174, 168, 26, 73, 135, 23, 65, 4, 208, 140, 9, 2, 76, + 73, 159, 235, 17, 78, 4, 166, 171, 25, 72, 191, 124, 65, 12, 46, 65, 162, + 224, 26, 73, 2, 79, 215, 22, 69, 6, 26, 82, 219, 246, 26, 69, 5, 215, + 239, 25, 68, 4, 166, 170, 25, 72, 207, 64, 73, 4, 230, 210, 25, 72, 223, + 83, 65, 4, 11, 65, 4, 174, 210, 15, 66, 203, 163, 11, 83, 4, 150, 210, + 25, 72, 227, 106, 65, 4, 222, 245, 25, 72, 247, 47, 65, 6, 176, 184, 3, + 6, 85, 82, 78, 69, 68, 32, 187, 250, 1, 65, 4, 154, 209, 25, 72, 223, 83, + 69, 2, 157, 171, 20, 7, 82, 65, 71, 82, 65, 80, 72, 10, 48, 2, 77, 69, + 20, 4, 78, 71, 69, 82, 31, 82, 2, 143, 222, 25, 76, 2, 237, 188, 18, 2, + 32, 82, 6, 38, 76, 253, 234, 13, 3, 65, 70, 70, 5, 183, 221, 25, 83, 202, + 1, 66, 65, 214, 13, 79, 161, 163, 26, 7, 69, 73, 67, 72, 32, 83, 84, 194, + 1, 84, 8, 71, 79, 76, 73, 84, 73, 67, 32, 229, 12, 8, 83, 83, 32, 79, 70, + 32, 77, 73, 192, 1, 56, 6, 67, 65, 80, 73, 84, 65, 1, 4, 83, 77, 65, 76, + 96, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 96, 206, 1, 65, 22, 66, + 42, 67, 94, 68, 94, 70, 38, 71, 46, 73, 138, 2, 76, 58, 77, 66, 78, 34, + 79, 30, 80, 58, 82, 30, 83, 186, 1, 84, 110, 86, 22, 89, 90, 90, 210, + 137, 19, 72, 190, 133, 2, 85, 139, 183, 5, 75, 2, 155, 202, 26, 90, 4, + 214, 3, 73, 209, 217, 26, 2, 85, 75, 4, 48, 8, 65, 85, 68, 65, 84, 69, + 32, 67, 15, 72, 2, 11, 72, 2, 209, 255, 19, 2, 82, 73, 6, 42, 74, 30, 79, + 213, 202, 26, 2, 90, 69, 2, 137, 255, 19, 2, 69, 82, 2, 163, 251, 24, 66, + 4, 186, 148, 21, 82, 139, 180, 5, 73, 2, 21, 3, 76, 65, 71, 2, 243, 232, + 21, 79, 13, 38, 78, 54, 79, 141, 1, 2, 90, 72, 2, 137, 191, 26, 8, 73, + 84, 73, 65, 76, 32, 73, 90, 4, 33, 6, 84, 65, 84, 69, 68, 32, 4, 26, 66, + 25, 2, 83, 77, 2, 11, 73, 2, 35, 71, 2, 21, 3, 65, 76, 76, 2, 141, 226, + 24, 2, 32, 89, 4, 134, 232, 26, 73, 211, 2, 69, 4, 52, 9, 65, 84, 73, 78, + 65, 84, 69, 32, 77, 35, 74, 2, 193, 137, 11, 3, 89, 83, 76, 2, 213, 144, + 9, 3, 85, 68, 73, 2, 11, 65, 2, 187, 145, 21, 83, 4, 182, 196, 26, 78, 3, + 84, 4, 26, 79, 235, 232, 26, 69, 2, 221, 200, 22, 2, 75, 79, 2, 213, 245, + 21, 2, 73, 84, 14, 106, 72, 58, 76, 252, 239, 13, 6, 80, 73, 68, 69, 82, + 89, 173, 191, 10, 8, 77, 65, 76, 76, 32, 89, 85, 83, 6, 32, 2, 84, 65, + 163, 231, 26, 65, 5, 131, 189, 25, 80, 2, 231, 251, 19, 79, 6, 78, 86, + 172, 157, 22, 9, 82, 79, 75, 85, 84, 65, 83, 84, 73, 167, 181, 4, 83, 2, + 229, 166, 19, 2, 82, 73, 2, 151, 211, 24, 69, 12, 50, 69, 198, 249, 18, + 65, 130, 236, 7, 79, 3, 85, 6, 250, 140, 21, 83, 147, 152, 5, 82, 4, 248, + 148, 9, 3, 69, 77, 76, 145, 135, 16, 4, 72, 73, 86, 69, 2, 199, 225, 26, + 76, 6, 248, 242, 11, 13, 66, 69, 32, 87, 73, 84, 72, 32, 77, 69, 82, 73, + 68, 154, 196, 4, 87, 183, 151, 9, 86, 68, 162, 1, 65, 44, 12, 84, 72, 73, + 67, 32, 76, 69, 84, 84, 69, 82, 32, 198, 166, 18, 82, 222, 102, 71, 228, + 141, 5, 3, 78, 71, 71, 238, 187, 1, 79, 185, 77, 2, 76, 70, 4, 172, 183, + 15, 2, 76, 32, 147, 171, 11, 84, 54, 210, 2, 65, 50, 72, 46, 73, 46, 78, + 46, 80, 2, 81, 40, 2, 82, 65, 22, 84, 160, 141, 9, 2, 87, 73, 246, 147, + 12, 85, 244, 69, 3, 70, 65, 73, 204, 7, 4, 66, 65, 73, 82, 248, 21, 2, + 79, 84, 150, 30, 68, 166, 128, 1, 77, 198, 147, 1, 69, 164, 30, 3, 76, + 65, 71, 148, 41, 3, 83, 65, 85, 230, 161, 1, 74, 196, 16, 2, 71, 73, 141, + 12, 2, 75, 85, 4, 216, 214, 24, 3, 73, 72, 86, 163, 134, 2, 72, 4, 162, + 224, 13, 87, 157, 243, 11, 2, 65, 71, 4, 190, 142, 9, 85, 165, 241, 14, + 2, 71, 71, 6, 178, 206, 15, 73, 241, 140, 9, 2, 65, 85, 2, 201, 153, 26, + 5, 65, 73, 82, 84, 72, 2, 223, 184, 26, 73, 4, 224, 184, 23, 2, 72, 73, + 237, 69, 2, 69, 73, 234, 9, 46, 65, 198, 5, 69, 206, 82, 73, 151, 3, 79, + 152, 1, 96, 7, 68, 85, 65, 84, 73, 79, 78, 32, 5, 78, 84, 72, 65, 32, + 138, 184, 20, 86, 219, 141, 5, 80, 2, 11, 32, 2, 239, 200, 25, 67, 146, + 1, 120, 7, 76, 69, 84, 84, 69, 82, 32, 212, 2, 5, 83, 73, 71, 78, 32, + 130, 247, 22, 65, 248, 8, 2, 86, 79, 195, 199, 3, 79, 100, 214, 1, 86, + 154, 251, 22, 65, 38, 68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76, + 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 206, + 40, 79, 162, 8, 69, 158, 20, 72, 2, 77, 2, 82, 3, 89, 14, 60, 5, 69, 68, + 73, 67, 32, 242, 129, 23, 79, 223, 214, 3, 65, 4, 164, 159, 24, 6, 68, + 79, 85, 66, 76, 69, 175, 244, 1, 65, 16, 66, 67, 206, 186, 22, 78, 190, + 66, 65, 182, 1, 80, 135, 150, 3, 86, 4, 162, 242, 7, 79, 215, 199, 14, + 65, 192, 8, 76, 10, 65, 84, 69, 82, 45, 84, 72, 65, 78, 32, 206, 7, 69, + 207, 199, 25, 89, 56, 134, 1, 65, 150, 3, 66, 62, 79, 216, 2, 11, 69, 81, + 85, 65, 76, 32, 84, 79, 32, 79, 82, 182, 204, 6, 67, 138, 4, 87, 131, + 248, 18, 83, 16, 44, 5, 66, 79, 86, 69, 32, 147, 209, 6, 78, 12, 150, 1, + 83, 180, 1, 19, 68, 79, 85, 66, 76, 69, 45, 76, 73, 78, 69, 32, 69, 81, + 85, 65, 76, 32, 65, 184, 203, 6, 4, 76, 69, 83, 83, 159, 229, 18, 82, 6, + 148, 1, 7, 73, 77, 73, 76, 65, 82, 32, 185, 206, 6, 23, 76, 65, 78, 84, + 69, 68, 32, 69, 81, 85, 65, 76, 32, 65, 66, 79, 86, 69, 32, 76, 69, 83, + 83, 4, 26, 65, 143, 206, 6, 79, 2, 65, 3, 66, 79, 86, 6, 40, 4, 69, 83, + 73, 68, 247, 206, 6, 85, 2, 231, 2, 69, 20, 40, 2, 82, 32, 245, 1, 3, 86, + 69, 82, 16, 120, 16, 83, 76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76, + 32, 84, 79, 190, 208, 6, 65, 166, 253, 12, 69, 167, 237, 4, 76, 9, 49, + 10, 32, 87, 73, 84, 72, 32, 68, 79, 84, 32, 6, 44, 5, 65, 66, 79, 86, 69, + 255, 157, 18, 73, 5, 183, 157, 26, 32, 4, 52, 7, 76, 65, 80, 80, 73, 78, + 71, 215, 237, 19, 32, 2, 209, 185, 24, 2, 32, 76, 134, 8, 36, 2, 75, 32, + 185, 73, 2, 78, 32, 254, 7, 130, 3, 65, 216, 15, 8, 67, 65, 80, 73, 84, + 65, 76, 32, 182, 11, 68, 134, 1, 70, 68, 2, 73, 78, 222, 3, 75, 138, 1, + 76, 174, 3, 78, 66, 77, 84, 3, 88, 69, 83, 22, 79, 202, 1, 80, 90, 82, + 182, 1, 83, 130, 22, 84, 200, 2, 13, 85, 80, 83, 73, 76, 79, 78, 32, 87, + 73, 84, 72, 32, 150, 1, 86, 142, 2, 89, 230, 228, 7, 66, 212, 176, 3, 4, + 71, 82, 65, 77, 196, 23, 2, 90, 69, 175, 132, 12, 81, 112, 92, 10, 67, + 82, 79, 80, 72, 79, 78, 73, 67, 32, 172, 14, 6, 78, 79, 32, 84, 69, 76, + 23, 82, 106, 188, 2, 6, 65, 84, 84, 73, 67, 32, 222, 5, 67, 92, 3, 78, + 65, 88, 32, 12, 68, 69, 76, 80, 72, 73, 67, 32, 70, 73, 86, 69, 0, 14, + 83, 84, 82, 65, 84, 73, 65, 78, 32, 70, 73, 70, 84, 89, 40, 11, 69, 80, + 73, 68, 65, 85, 82, 69, 65, 78, 32, 112, 3, 72, 69, 82, 164, 1, 9, 77, + 69, 83, 83, 69, 78, 73, 65, 78, 35, 84, 48, 72, 2, 70, 73, 180, 2, 4, 79, + 78, 69, 32, 205, 1, 4, 84, 69, 78, 32, 26, 36, 3, 70, 84, 89, 105, 2, 86, + 69, 11, 11, 32, 8, 22, 84, 171, 4, 83, 6, 48, 7, 72, 79, 85, 83, 65, 78, + 68, 215, 3, 65, 5, 231, 3, 32, 17, 11, 32, 14, 56, 7, 72, 85, 78, 68, 82, + 69, 68, 18, 84, 143, 3, 83, 7, 131, 2, 32, 6, 48, 7, 72, 79, 85, 83, 65, + 78, 68, 187, 2, 65, 5, 213, 1, 2, 32, 84, 14, 98, 72, 48, 7, 84, 72, 79, + 85, 83, 65, 78, 186, 190, 24, 81, 217, 228, 1, 5, 68, 82, 65, 67, 72, 6, + 44, 5, 85, 78, 68, 82, 69, 155, 190, 24, 65, 4, 17, 2, 68, 32, 4, 22, 84, + 131, 1, 83, 2, 95, 65, 8, 30, 84, 86, 83, 175, 1, 77, 4, 50, 65, 21, 8, + 72, 79, 85, 83, 65, 78, 68, 32, 2, 163, 178, 16, 76, 2, 11, 83, 2, 157, + 191, 24, 2, 84, 65, 4, 88, 5, 65, 82, 89, 83, 84, 145, 1, 12, 89, 82, 69, + 78, 65, 73, 67, 32, 84, 87, 79, 32, 2, 101, 5, 73, 65, 78, 32, 70, 2, 17, + 2, 32, 77, 2, 243, 143, 13, 78, 6, 30, 70, 29, 3, 84, 87, 79, 2, 201, + 178, 15, 2, 73, 86, 5, 11, 32, 2, 237, 148, 10, 5, 68, 82, 65, 67, 72, 8, + 112, 8, 77, 73, 79, 78, 73, 65, 78, 32, 157, 152, 25, 14, 65, 69, 85, 77, + 32, 79, 78, 69, 32, 80, 76, 69, 84, 72, 6, 182, 185, 12, 70, 150, 176, + 12, 84, 215, 58, 79, 2, 11, 32, 2, 143, 233, 24, 84, 32, 92, 8, 72, 69, + 83, 80, 73, 65, 78, 32, 129, 1, 10, 82, 79, 69, 90, 69, 78, 73, 65, 78, + 32, 20, 40, 2, 70, 73, 38, 84, 227, 155, 18, 79, 6, 158, 225, 20, 86, + 247, 236, 3, 70, 8, 226, 174, 15, 72, 142, 191, 10, 69, 239, 48, 87, 12, + 36, 2, 70, 73, 209, 24, 2, 84, 69, 8, 250, 180, 18, 86, 213, 136, 7, 3, + 70, 84, 89, 2, 155, 136, 10, 69, 4, 144, 231, 22, 2, 79, 85, 153, 181, 1, + 3, 84, 65, 66, 154, 2, 66, 76, 174, 45, 82, 66, 68, 144, 230, 7, 2, 75, + 65, 135, 6, 84, 144, 2, 44, 6, 69, 84, 84, 69, 82, 32, 239, 45, 85, 142, + 2, 198, 2, 65, 190, 1, 69, 28, 4, 73, 79, 84, 65, 128, 1, 2, 79, 77, 156, + 3, 3, 82, 72, 79, 46, 83, 48, 7, 85, 80, 83, 73, 76, 79, 78, 146, 33, 80, + 170, 2, 84, 146, 182, 5, 68, 252, 180, 2, 2, 75, 65, 238, 192, 1, 71, + 190, 138, 11, 67, 230, 154, 2, 66, 2, 72, 2, 90, 166, 1, 76, 186, 235, 2, + 89, 210, 43, 77, 2, 78, 147, 17, 88, 48, 68, 4, 76, 80, 72, 65, 213, 28, + 8, 82, 67, 72, 65, 73, 67, 32, 83, 47, 33, 6, 32, 87, 73, 84, 72, 32, 44, + 242, 2, 68, 30, 80, 226, 29, 86, 226, 5, 79, 162, 234, 3, 84, 191, 174, + 5, 77, 62, 186, 1, 84, 131, 27, 80, 31, 33, 6, 32, 87, 73, 84, 72, 32, + 28, 186, 5, 68, 136, 25, 2, 80, 83, 158, 1, 86, 226, 5, 79, 162, 234, 3, + 84, 191, 174, 5, 77, 62, 28, 2, 69, 71, 235, 34, 73, 42, 11, 65, 43, 33, + 6, 32, 87, 73, 84, 72, 32, 40, 54, 68, 30, 80, 194, 35, 79, 22, 86, 143, + 234, 3, 84, 16, 65, 4, 65, 83, 73, 65, 18, 36, 4, 83, 73, 76, 73, 211, + 16, 82, 17, 29, 5, 32, 65, 78, 68, 32, 14, 44, 2, 79, 88, 0, 3, 86, 65, + 82, 23, 80, 4, 81, 2, 73, 65, 6, 60, 10, 69, 82, 73, 83, 80, 79, 77, 69, + 78, 73, 175, 15, 82, 5, 169, 15, 7, 32, 65, 78, 68, 32, 80, 82, 5, 161, + 35, 7, 32, 87, 73, 84, 72, 32, 68, 6, 146, 144, 8, 73, 162, 210, 17, 65, + 239, 48, 72, 23, 33, 6, 32, 87, 73, 84, 72, 32, 20, 66, 68, 166, 26, 86, + 226, 5, 79, 162, 234, 3, 84, 191, 174, 5, 77, 10, 130, 24, 65, 213, 191, + 22, 5, 73, 65, 76, 89, 84, 18, 76, 9, 73, 65, 76, 89, 84, 73, 75, 65, 32, + 32, 3, 82, 65, 67, 227, 22, 65, 8, 174, 24, 65, 243, 240, 3, 84, 2, 131, + 191, 11, 72, 4, 40, 3, 73, 86, 69, 1, 3, 79, 85, 82, 2, 205, 37, 2, 32, + 79, 76, 144, 1, 27, 83, 84, 82, 85, 77, 69, 78, 84, 65, 76, 32, 78, 79, + 84, 65, 84, 73, 79, 78, 32, 83, 89, 77, 66, 79, 76, 45, 193, 168, 22, 2, + 68, 73, 74, 70, 49, 70, 50, 62, 51, 62, 52, 170, 37, 53, 194, 134, 26, + 55, 3, 56, 17, 162, 173, 26, 49, 2, 50, 2, 51, 2, 52, 2, 55, 2, 56, 3, + 57, 15, 222, 172, 26, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 12, 162, + 172, 26, 48, 2, 50, 2, 54, 2, 55, 2, 56, 3, 57, 17, 230, 171, 26, 48, 2, + 50, 2, 51, 2, 53, 2, 55, 2, 56, 3, 57, 8, 54, 65, 38, 79, 169, 32, 6, 89, + 65, 84, 72, 79, 83, 4, 186, 130, 8, 80, 239, 146, 17, 73, 2, 11, 82, 2, + 11, 79, 2, 167, 131, 24, 78, 32, 128, 1, 6, 69, 84, 84, 69, 82, 32, 168, + 2, 6, 79, 87, 69, 82, 32, 78, 32, 6, 85, 78, 65, 84, 69, 32, 177, 209, + 22, 2, 73, 84, 24, 94, 83, 140, 13, 9, 65, 82, 67, 72, 65, 73, 67, 32, + 75, 2, 75, 182, 11, 68, 195, 191, 25, 89, 16, 88, 13, 77, 65, 76, 76, 32, + 67, 65, 80, 73, 84, 65, 76, 32, 210, 12, 65, 171, 247, 7, 84, 12, 74, 80, + 222, 196, 9, 71, 166, 157, 9, 79, 154, 212, 2, 82, 139, 181, 1, 76, 4, + 182, 147, 26, 83, 219, 19, 73, 2, 213, 138, 10, 3, 85, 77, 69, 4, 222, + 25, 83, 139, 228, 7, 69, 4, 80, 4, 69, 84, 82, 69, 149, 208, 23, 10, 85, + 83, 73, 67, 65, 76, 32, 76, 69, 73, 2, 235, 212, 2, 84, 12, 88, 3, 78, + 69, 32, 194, 240, 9, 88, 176, 151, 5, 3, 85, 78, 75, 225, 208, 5, 2, 66, + 79, 6, 64, 8, 72, 65, 76, 70, 32, 83, 73, 71, 21, 4, 81, 85, 65, 82, 4, + 255, 164, 25, 78, 2, 251, 216, 20, 84, 16, 62, 82, 206, 11, 83, 114, 69, + 206, 239, 7, 72, 247, 145, 17, 73, 2, 217, 29, 2, 79, 83, 6, 100, 3, 72, + 79, 32, 217, 249, 7, 16, 69, 86, 69, 82, 83, 69, 68, 32, 76, 85, 78, 65, + 84, 69, 32, 69, 4, 240, 243, 13, 10, 87, 73, 84, 72, 32, 83, 84, 82, 79, + 75, 163, 153, 11, 83, 226, 2, 220, 1, 5, 77, 65, 76, 76, 32, 192, 19, 22, + 85, 66, 83, 67, 82, 73, 80, 84, 32, 83, 77, 65, 76, 76, 32, 76, 69, 84, + 84, 69, 82, 32, 72, 10, 89, 77, 66, 79, 76, 32, 84, 65, 85, 32, 201, 160, + 24, 6, 73, 78, 85, 83, 79, 73, 212, 2, 56, 7, 76, 69, 84, 84, 69, 82, 32, + 202, 17, 82, 67, 68, 206, 2, 178, 2, 65, 162, 2, 68, 38, 69, 52, 4, 73, + 79, 84, 65, 0, 7, 85, 80, 83, 73, 76, 79, 78, 254, 3, 75, 28, 2, 79, 77, + 182, 5, 80, 112, 3, 82, 72, 79, 94, 83, 94, 84, 168, 234, 7, 2, 70, 73, + 210, 193, 1, 71, 190, 138, 11, 67, 230, 154, 2, 66, 2, 72, 2, 90, 166, 1, + 76, 138, 151, 3, 77, 2, 78, 147, 17, 88, 58, 64, 4, 76, 80, 72, 65, 149, + 1, 7, 82, 67, 72, 65, 73, 67, 32, 55, 33, 6, 32, 87, 73, 84, 72, 32, 52, + 82, 86, 226, 6, 68, 30, 80, 114, 79, 142, 1, 89, 142, 236, 3, 84, 191, + 174, 5, 77, 6, 154, 5, 82, 155, 3, 65, 4, 18, 75, 23, 83, 2, 139, 248, 7, + 79, 2, 11, 65, 2, 147, 189, 13, 77, 4, 202, 226, 7, 73, 203, 251, 14, 69, + 70, 22, 80, 215, 4, 84, 20, 249, 7, 3, 83, 73, 76, 41, 33, 6, 32, 87, 73, + 84, 72, 32, 38, 78, 68, 166, 1, 80, 178, 1, 86, 226, 5, 79, 162, 234, 3, + 84, 191, 174, 5, 77, 18, 50, 65, 29, 8, 73, 65, 76, 89, 84, 73, 75, 65, + 8, 153, 1, 3, 83, 73, 65, 11, 29, 5, 32, 65, 78, 68, 32, 8, 170, 1, 80, + 154, 6, 79, 22, 86, 143, 234, 3, 84, 10, 18, 83, 115, 69, 8, 21, 3, 73, + 76, 73, 9, 17, 2, 32, 65, 6, 21, 3, 78, 68, 32, 6, 30, 80, 154, 6, 79, + 23, 86, 2, 11, 69, 2, 11, 82, 2, 181, 17, 4, 73, 83, 80, 79, 4, 22, 82, + 147, 15, 65, 2, 249, 244, 25, 2, 65, 67, 4, 130, 243, 7, 65, 3, 79, 70, + 28, 2, 69, 71, 151, 3, 73, 50, 11, 65, 51, 33, 6, 32, 87, 73, 84, 72, 32, + 48, 58, 68, 30, 80, 114, 79, 62, 86, 82, 89, 143, 236, 3, 84, 16, 61, 4, + 65, 83, 73, 65, 20, 32, 4, 83, 73, 76, 73, 91, 69, 17, 29, 5, 32, 65, 78, + 68, 32, 14, 42, 79, 12, 2, 80, 69, 50, 86, 83, 89, 4, 83, 88, 4, 89, 9, + 82, 73, 83, 80, 79, 77, 69, 78, 73, 4, 11, 65, 4, 11, 82, 4, 17, 2, 73, + 65, 5, 33, 6, 32, 65, 78, 68, 32, 89, 2, 243, 12, 80, 20, 17, 2, 67, 82, + 20, 17, 2, 79, 78, 21, 33, 6, 32, 87, 73, 84, 72, 32, 18, 88, 5, 68, 65, + 83, 73, 65, 0, 5, 80, 83, 73, 76, 73, 54, 79, 22, 86, 143, 234, 3, 84, 7, + 29, 5, 32, 65, 78, 68, 32, 4, 18, 79, 23, 86, 2, 203, 220, 9, 88, 2, 179, + 9, 65, 8, 88, 11, 65, 77, 80, 72, 89, 76, 73, 65, 78, 32, 68, 162, 252, + 25, 72, 2, 83, 219, 19, 73, 2, 203, 215, 7, 73, 7, 33, 6, 32, 87, 73, 84, + 72, 32, 4, 34, 68, 177, 139, 21, 2, 80, 83, 2, 203, 201, 8, 65, 10, 54, + 65, 238, 234, 7, 84, 230, 1, 73, 143, 131, 18, 72, 4, 214, 176, 13, 77, + 251, 221, 12, 78, 4, 150, 209, 22, 72, 175, 152, 3, 65, 4, 41, 8, 69, 86, + 69, 82, 83, 69, 68, 32, 4, 18, 68, 43, 76, 2, 37, 7, 79, 84, 84, 69, 68, + 32, 76, 2, 11, 85, 2, 33, 6, 78, 65, 84, 69, 32, 83, 2, 221, 235, 7, 3, + 73, 71, 77, 10, 154, 170, 9, 71, 190, 138, 11, 67, 2, 80, 130, 103, 82, + 231, 179, 1, 66, 2, 143, 155, 21, 82, 16, 106, 72, 104, 7, 82, 89, 66, + 76, 73, 79, 78, 44, 3, 87, 79, 32, 170, 227, 3, 79, 185, 209, 16, 2, 65, + 76, 6, 40, 4, 82, 69, 69, 32, 195, 233, 7, 69, 4, 146, 1, 79, 189, 215, + 22, 7, 81, 85, 65, 82, 84, 69, 82, 2, 21, 3, 32, 66, 65, 2, 255, 233, 23, + 83, 4, 42, 79, 165, 152, 12, 4, 84, 72, 73, 82, 2, 133, 229, 19, 2, 66, + 79, 6, 80, 5, 65, 67, 85, 84, 69, 0, 9, 68, 73, 65, 69, 82, 69, 83, 73, + 83, 39, 72, 2, 33, 6, 32, 65, 78, 68, 32, 72, 2, 133, 199, 7, 2, 79, 79, + 60, 102, 65, 21, 21, 79, 67, 65, 76, 32, 78, 79, 84, 65, 84, 73, 79, 78, + 32, 83, 89, 77, 66, 79, 76, 45, 2, 131, 211, 9, 82, 58, 90, 50, 2, 53, + 190, 194, 23, 49, 134, 196, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 13, + 190, 134, 26, 48, 2, 49, 2, 50, 2, 51, 3, 52, 4, 26, 80, 203, 187, 20, + 69, 2, 11, 79, 2, 33, 6, 71, 69, 71, 82, 65, 77, 2, 229, 128, 21, 2, 77, + 69, 8, 230, 237, 13, 65, 206, 193, 10, 66, 202, 78, 72, 253, 64, 3, 83, + 65, 76, 12, 60, 6, 78, 78, 73, 78, 71, 32, 253, 251, 24, 3, 77, 65, 67, + 10, 100, 4, 70, 65, 67, 69, 241, 232, 17, 15, 67, 65, 84, 32, 70, 65, 67, + 69, 32, 87, 73, 84, 72, 32, 83, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 108, + 23, 79, 78, 69, 32, 76, 65, 82, 71, 69, 32, 65, 78, 68, 32, 79, 78, 69, + 32, 83, 77, 65, 76, 76, 35, 83, 2, 11, 32, 2, 151, 161, 8, 69, 4, 32, 2, + 84, 65, 167, 231, 17, 77, 2, 223, 130, 23, 82, 6, 28, 3, 85, 80, 32, 39, + 87, 4, 246, 207, 22, 83, 135, 240, 2, 77, 2, 207, 149, 18, 73, 220, 4, + 136, 1, 2, 65, 82, 70, 73, 52, 7, 74, 65, 82, 65, 84, 73, 32, 184, 6, 12, + 78, 74, 65, 76, 65, 32, 71, 79, 78, 68, 73, 32, 143, 3, 82, 4, 34, 65, + 149, 129, 21, 2, 68, 83, 2, 11, 78, 2, 175, 248, 24, 73, 4, 222, 219, 24, + 84, 221, 162, 1, 4, 68, 69, 32, 68, 182, 1, 168, 1, 7, 76, 69, 84, 84, + 69, 82, 32, 220, 1, 5, 83, 73, 71, 78, 32, 160, 2, 6, 86, 79, 87, 69, 76, + 32, 234, 133, 20, 65, 154, 24, 82, 182, 231, 3, 68, 179, 227, 1, 79, 98, + 194, 159, 22, 65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 186, 202, 1, 73, + 42, 76, 246, 14, 90, 238, 180, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, + 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 89, 186, 2, 69, 3, 79, + 24, 98, 67, 28, 3, 77, 65, 68, 22, 84, 182, 199, 3, 83, 150, 150, 18, 78, + 190, 66, 65, 187, 151, 3, 86, 4, 118, 73, 175, 220, 21, 65, 2, 219, 140, + 19, 68, 4, 68, 5, 87, 79, 45, 67, 73, 29, 8, 72, 82, 69, 69, 45, 68, 79, + 84, 2, 25, 4, 82, 67, 76, 69, 2, 165, 206, 20, 5, 32, 78, 85, 75, 84, 34, + 44, 5, 83, 73, 71, 78, 32, 215, 191, 15, 67, 30, 210, 191, 15, 67, 154, + 226, 6, 65, 38, 85, 22, 86, 166, 202, 1, 73, 198, 140, 2, 69, 3, 79, 126, + 108, 7, 76, 69, 84, 84, 69, 82, 32, 216, 1, 5, 83, 73, 71, 78, 32, 38, + 86, 190, 129, 24, 68, 179, 227, 1, 79, 80, 186, 129, 22, 78, 146, 24, 65, + 38, 68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76, 222, 196, 1, 66, 2, + 67, 2, 71, 2, 74, 2, 75, 2, 80, 206, 40, 79, 162, 8, 69, 158, 20, 72, 2, + 77, 2, 82, 2, 83, 2, 86, 3, 89, 4, 250, 187, 23, 86, 247, 244, 1, 65, 20, + 190, 7, 79, 235, 177, 23, 73, 160, 2, 84, 6, 77, 85, 75, 72, 73, 32, 189, + 7, 10, 85, 78, 71, 32, 75, 72, 69, 77, 65, 32, 172, 1, 194, 1, 65, 44, 7, + 76, 69, 84, 84, 69, 82, 32, 238, 1, 83, 228, 2, 2, 86, 79, 140, 144, 13, + 3, 84, 73, 80, 174, 242, 5, 73, 252, 175, 2, 5, 69, 75, 32, 79, 78, 202, + 199, 2, 68, 203, 175, 1, 85, 4, 198, 210, 21, 66, 177, 231, 1, 2, 68, 68, + 96, 174, 198, 8, 71, 2, 75, 178, 206, 13, 65, 38, 68, 82, 82, 34, 84, + 230, 5, 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 126, 66, 2, 67, 2, + 74, 2, 80, 2, 83, 206, 40, 79, 162, 8, 69, 158, 20, 70, 2, 72, 2, 77, 2, + 86, 2, 89, 3, 90, 26, 108, 19, 69, 81, 85, 69, 78, 67, 69, 32, 70, 79, + 82, 32, 76, 69, 84, 84, 69, 82, 32, 93, 4, 73, 71, 78, 32, 12, 70, 71, 2, + 75, 138, 242, 23, 83, 146, 219, 1, 76, 226, 31, 70, 3, 90, 2, 135, 242, + 23, 72, 14, 128, 1, 6, 65, 68, 65, 75, 32, 66, 2, 66, 220, 140, 15, 2, + 85, 68, 190, 196, 6, 78, 236, 177, 2, 3, 89, 65, 75, 139, 168, 1, 86, 2, + 239, 151, 8, 73, 18, 45, 9, 87, 69, 76, 32, 83, 73, 71, 78, 32, 18, 178, + 150, 22, 65, 38, 85, 186, 202, 1, 73, 210, 237, 1, 79, 163, 8, 69, 116, + 216, 1, 22, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, + 77, 69, 68, 73, 65, 76, 32, 44, 7, 76, 69, 84, 84, 69, 82, 32, 168, 1, 5, + 83, 73, 71, 78, 32, 56, 6, 86, 79, 87, 69, 76, 32, 159, 245, 23, 68, 8, + 246, 232, 25, 72, 2, 82, 2, 86, 3, 89, 60, 254, 244, 21, 78, 182, 24, 68, + 114, 84, 162, 149, 3, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, + 2, 76, 2, 77, 2, 82, 2, 83, 2, 86, 2, 89, 187, 2, 65, 4, 226, 164, 25, + 65, 233, 35, 6, 84, 72, 79, 76, 72, 79, 24, 150, 158, 20, 83, 147, 137, + 5, 76, 168, 23, 110, 65, 214, 95, 69, 150, 104, 73, 146, 9, 79, 158, 12, + 84, 30, 85, 130, 1, 89, 225, 236, 12, 4, 82, 89, 86, 78, 140, 11, 236, 1, + 2, 73, 82, 100, 8, 76, 70, 87, 73, 68, 84, 72, 32, 242, 10, 77, 210, 1, + 78, 236, 76, 21, 80, 80, 89, 32, 80, 69, 82, 83, 79, 78, 32, 82, 65, 73, + 83, 73, 78, 71, 32, 79, 78, 22, 82, 38, 84, 208, 247, 17, 2, 85, 77, 255, + 253, 5, 68, 8, 66, 32, 140, 199, 20, 6, 89, 32, 67, 82, 69, 65, 251, 164, + 4, 67, 4, 194, 179, 24, 80, 231, 115, 83, 244, 1, 140, 2, 7, 72, 65, 78, + 71, 85, 76, 32, 216, 4, 8, 75, 65, 84, 65, 75, 65, 78, 65, 204, 3, 3, 76, + 69, 70, 0, 4, 82, 73, 71, 72, 204, 188, 6, 11, 70, 79, 82, 77, 83, 32, + 76, 73, 71, 72, 84, 202, 134, 4, 85, 250, 213, 2, 73, 142, 190, 4, 66, + 166, 238, 4, 87, 215, 35, 68, 104, 52, 7, 76, 69, 84, 84, 69, 82, 32, + 163, 221, 10, 70, 102, 206, 1, 75, 28, 5, 78, 73, 69, 85, 78, 42, 80, 24, + 5, 82, 73, 69, 85, 76, 86, 83, 98, 89, 202, 61, 67, 54, 69, 30, 73, 242, + 4, 77, 138, 1, 84, 206, 3, 87, 198, 1, 72, 202, 213, 24, 65, 2, 79, 163, + 64, 85, 6, 222, 65, 72, 155, 3, 73, 7, 11, 45, 4, 134, 72, 67, 131, 3, + 72, 6, 146, 69, 72, 35, 73, 17, 11, 45, 14, 206, 49, 84, 226, 14, 80, + 130, 4, 77, 194, 3, 75, 218, 2, 72, 99, 83, 12, 40, 4, 83, 65, 78, 71, + 211, 221, 13, 73, 10, 210, 70, 67, 42, 75, 74, 80, 34, 84, 211, 2, 83, + 14, 214, 149, 23, 69, 146, 137, 2, 65, 162, 64, 73, 2, 79, 3, 85, 118, + 70, 32, 157, 241, 2, 11, 45, 72, 73, 82, 65, 71, 65, 78, 65, 32, 80, 116, + 76, 7, 76, 69, 84, 84, 69, 82, 32, 242, 240, 2, 83, 34, 86, 195, 216, 21, + 77, 110, 146, 1, 83, 230, 234, 2, 78, 150, 2, 72, 2, 75, 2, 77, 2, 82, 2, + 84, 170, 1, 89, 158, 38, 87, 226, 199, 22, 65, 2, 69, 2, 73, 2, 79, 3, + 85, 28, 76, 5, 77, 65, 76, 76, 32, 206, 219, 25, 65, 2, 69, 2, 73, 2, 79, + 3, 85, 18, 206, 237, 2, 89, 150, 201, 22, 84, 234, 36, 65, 2, 69, 2, 73, + 2, 79, 3, 85, 4, 11, 84, 4, 156, 157, 13, 2, 32, 67, 135, 156, 11, 87, + 14, 56, 3, 77, 69, 82, 106, 83, 249, 135, 22, 3, 66, 85, 82, 9, 29, 5, + 32, 65, 78, 68, 32, 6, 196, 169, 12, 3, 87, 82, 69, 212, 233, 3, 2, 83, + 73, 191, 148, 8, 80, 4, 252, 155, 25, 3, 84, 69, 82, 163, 61, 65, 194, 8, + 118, 68, 202, 2, 71, 128, 66, 13, 73, 70, 73, 32, 82, 79, 72, 73, 78, 71, + 89, 65, 32, 165, 5, 5, 85, 78, 79, 79, 32, 10, 100, 12, 32, 87, 73, 84, + 72, 32, 73, 78, 68, 69, 88, 32, 188, 1, 2, 66, 65, 173, 233, 21, 2, 83, + 72, 4, 156, 1, 18, 65, 78, 68, 32, 77, 73, 68, 68, 76, 69, 32, 70, 73, + 78, 71, 69, 82, 83, 1, 16, 70, 73, 78, 71, 69, 82, 32, 65, 78, 68, 32, + 84, 72, 85, 77, 66, 2, 201, 139, 16, 2, 32, 67, 4, 130, 202, 24, 76, 211, + 139, 1, 71, 170, 7, 84, 3, 85, 76, 32, 217, 64, 13, 90, 72, 79, 85, 32, + 78, 85, 77, 69, 82, 65, 76, 32, 146, 7, 164, 1, 9, 67, 72, 79, 83, 69, + 79, 78, 71, 32, 244, 15, 4, 68, 79, 85, 66, 0, 4, 83, 73, 78, 71, 46, 74, + 180, 31, 7, 76, 69, 84, 84, 69, 82, 32, 143, 158, 10, 70, 250, 1, 246, 1, + 67, 172, 2, 5, 73, 69, 85, 78, 71, 146, 1, 75, 132, 1, 5, 77, 73, 69, 85, + 77, 56, 5, 78, 73, 69, 85, 78, 74, 80, 172, 2, 5, 82, 73, 69, 85, 76, + 210, 1, 83, 166, 3, 84, 124, 2, 89, 69, 200, 40, 5, 72, 73, 69, 85, 72, + 195, 149, 10, 70, 30, 76, 2, 72, 73, 84, 7, 69, 79, 78, 71, 67, 72, 73, + 121, 4, 73, 69, 85, 67, 16, 40, 4, 69, 85, 67, 72, 41, 2, 84, 85, 7, 11, + 45, 4, 202, 31, 75, 243, 26, 72, 10, 21, 3, 69, 85, 77, 10, 22, 83, 155, + 46, 67, 6, 40, 4, 83, 65, 78, 71, 195, 205, 13, 73, 4, 194, 54, 67, 227, + 3, 83, 5, 215, 30, 45, 27, 11, 45, 24, 90, 80, 234, 30, 82, 242, 13, 67, + 194, 5, 77, 138, 1, 84, 186, 2, 75, 218, 2, 72, 99, 83, 6, 214, 50, 72, + 214, 3, 73, 207, 2, 65, 16, 80, 7, 65, 80, 89, 69, 79, 85, 78, 228, 20, + 5, 73, 89, 69, 79, 75, 131, 25, 72, 10, 234, 29, 82, 178, 15, 80, 30, 83, + 231, 3, 77, 11, 11, 45, 8, 158, 52, 75, 74, 80, 34, 84, 211, 2, 83, 15, + 11, 45, 12, 190, 51, 67, 42, 75, 74, 80, 34, 84, 242, 1, 72, 99, 83, 42, + 68, 6, 72, 73, 69, 85, 80, 72, 40, 4, 73, 69, 85, 80, 223, 53, 65, 7, 11, + 45, 4, 158, 51, 80, 147, 2, 72, 35, 11, 45, 32, 82, 83, 234, 20, 80, 214, + 7, 75, 162, 12, 67, 202, 6, 84, 226, 2, 78, 179, 2, 72, 14, 32, 3, 73, + 79, 83, 251, 3, 83, 13, 11, 45, 10, 242, 46, 84, 146, 2, 67, 42, 75, 75, + 80, 29, 11, 45, 26, 78, 75, 42, 83, 190, 44, 77, 154, 3, 67, 82, 78, 34, + 80, 34, 84, 243, 1, 72, 6, 170, 22, 65, 130, 19, 72, 135, 7, 73, 8, 40, + 4, 83, 65, 78, 71, 167, 198, 13, 73, 6, 206, 47, 75, 74, 80, 35, 84, 58, + 48, 3, 73, 79, 83, 217, 1, 4, 83, 65, 78, 71, 33, 11, 45, 30, 130, 1, 80, + 44, 2, 83, 83, 210, 22, 82, 210, 1, 75, 162, 12, 67, 194, 5, 77, 138, 1, + 84, 226, 2, 78, 178, 2, 72, 163, 162, 18, 73, 6, 184, 23, 4, 73, 69, 85, + 80, 179, 19, 72, 2, 233, 48, 3, 65, 78, 71, 26, 236, 17, 5, 67, 73, 69, + 85, 67, 172, 3, 4, 83, 73, 79, 83, 154, 1, 82, 186, 20, 84, 54, 89, 134, + 2, 75, 42, 78, 34, 80, 146, 2, 72, 163, 162, 18, 73, 16, 40, 5, 73, 75, + 69, 85, 84, 195, 41, 72, 15, 11, 45, 12, 226, 20, 82, 178, 19, 77, 154, + 3, 67, 42, 75, 74, 80, 243, 2, 83, 4, 150, 19, 83, 139, 22, 79, 2, 149, + 249, 8, 6, 76, 69, 32, 68, 79, 84, 216, 3, 92, 9, 79, 78, 71, 83, 69, 79, + 78, 71, 32, 165, 21, 9, 85, 78, 71, 83, 69, 79, 78, 71, 32, 154, 2, 226, + 1, 67, 80, 5, 72, 73, 69, 85, 72, 60, 5, 73, 69, 85, 78, 71, 46, 75, 220, + 1, 5, 77, 73, 69, 85, 77, 188, 1, 5, 78, 73, 69, 85, 78, 94, 80, 240, 2, + 5, 82, 73, 69, 85, 76, 190, 4, 83, 194, 3, 84, 213, 1, 2, 89, 69, 8, 36, + 4, 73, 69, 85, 67, 239, 30, 72, 7, 11, 45, 4, 162, 32, 83, 239, 7, 80, + 11, 11, 45, 8, 174, 16, 82, 178, 19, 77, 234, 3, 78, 35, 80, 9, 11, 45, + 6, 194, 17, 75, 57, 2, 83, 83, 28, 76, 7, 65, 80, 89, 69, 79, 85, 78, 40, + 5, 73, 89, 69, 79, 75, 215, 30, 72, 8, 130, 15, 82, 178, 15, 80, 131, 4, + 77, 19, 11, 45, 16, 166, 13, 75, 170, 1, 82, 42, 83, 224, 13, 2, 67, 72, + 146, 9, 78, 34, 80, 147, 2, 72, 27, 11, 45, 24, 74, 80, 30, 83, 134, 13, + 82, 242, 13, 67, 130, 9, 75, 42, 78, 179, 2, 72, 6, 174, 33, 73, 131, 6, + 65, 6, 40, 4, 83, 65, 78, 71, 159, 186, 13, 73, 4, 238, 35, 78, 147, 3, + 83, 21, 11, 45, 18, 174, 12, 82, 242, 13, 67, 202, 6, 84, 186, 2, 75, + 218, 2, 72, 62, 80, 39, 83, 36, 88, 6, 65, 78, 83, 73, 79, 83, 48, 6, 72, + 73, 69, 85, 80, 72, 53, 4, 73, 69, 85, 80, 7, 11, 45, 4, 236, 7, 2, 75, + 65, 195, 26, 80, 9, 11, 45, 6, 150, 11, 84, 234, 22, 80, 243, 2, 83, 23, + 11, 45, 20, 112, 5, 82, 73, 69, 85, 76, 24, 4, 83, 73, 79, 83, 134, 3, + 80, 246, 19, 67, 194, 5, 77, 170, 4, 84, 243, 1, 72, 5, 153, 3, 2, 45, + 80, 5, 221, 32, 2, 45, 84, 57, 11, 45, 54, 102, 75, 92, 5, 77, 73, 69, + 85, 77, 50, 80, 126, 83, 74, 84, 44, 2, 89, 69, 154, 28, 78, 179, 2, 72, + 10, 52, 5, 73, 89, 69, 79, 75, 190, 4, 65, 131, 19, 72, 7, 11, 45, 4, + 254, 32, 72, 99, 83, 9, 11, 45, 6, 130, 30, 75, 218, 2, 72, 99, 83, 14, + 48, 4, 73, 69, 85, 80, 174, 26, 72, 163, 6, 65, 11, 11, 45, 8, 42, 80, + 222, 29, 84, 242, 1, 72, 99, 83, 2, 243, 25, 72, 6, 40, 4, 83, 65, 78, + 71, 143, 179, 13, 73, 4, 182, 28, 75, 187, 3, 83, 6, 100, 5, 73, 75, 69, + 85, 84, 151, 25, 72, 6, 56, 9, 79, 82, 73, 78, 72, 73, 69, 85, 72, 191, + 3, 83, 5, 255, 29, 45, 52, 48, 3, 73, 79, 83, 161, 1, 4, 83, 65, 78, 71, + 25, 11, 45, 22, 82, 75, 162, 3, 82, 242, 13, 67, 198, 2, 80, 254, 2, 77, + 138, 1, 84, 147, 5, 72, 4, 22, 65, 135, 26, 73, 2, 237, 18, 6, 80, 89, + 69, 79, 85, 78, 28, 160, 1, 5, 82, 73, 69, 85, 76, 36, 6, 84, 73, 75, 69, + 85, 84, 16, 3, 89, 69, 83, 138, 19, 83, 178, 1, 77, 154, 3, 67, 42, 75, + 42, 78, 34, 80, 179, 164, 18, 73, 5, 17, 2, 45, 75, 2, 159, 17, 72, 5, + 255, 16, 45, 2, 239, 188, 18, 73, 20, 40, 5, 73, 75, 69, 85, 84, 155, 21, + 72, 19, 11, 45, 16, 58, 82, 42, 83, 42, 84, 162, 13, 67, 130, 9, 75, 75, + 80, 2, 17, 2, 73, 69, 2, 203, 163, 24, 85, 4, 21, 3, 73, 79, 83, 5, 223, + 1, 45, 2, 255, 19, 72, 18, 44, 6, 83, 73, 69, 85, 78, 71, 243, 19, 79, + 17, 11, 45, 14, 50, 75, 30, 83, 198, 17, 77, 154, 6, 72, 63, 80, 4, 166, + 14, 72, 135, 7, 73, 4, 26, 83, 191, 171, 13, 73, 2, 21, 3, 65, 78, 71, 2, + 207, 20, 75, 190, 1, 122, 65, 118, 69, 134, 1, 73, 92, 7, 83, 83, 65, 78, + 71, 65, 82, 106, 79, 138, 1, 85, 102, 89, 174, 15, 87, 231, 145, 10, 70, + 23, 48, 4, 82, 65, 69, 65, 98, 45, 239, 170, 25, 69, 13, 11, 45, 10, 142, + 226, 22, 69, 178, 201, 2, 65, 2, 73, 3, 85, 25, 18, 79, 55, 85, 9, 11, + 45, 6, 130, 134, 25, 69, 234, 36, 79, 3, 85, 15, 11, 45, 12, 170, 9, 69, + 142, 161, 25, 65, 2, 79, 3, 85, 31, 11, 45, 28, 66, 65, 34, 89, 166, 1, + 79, 142, 131, 25, 69, 234, 36, 73, 3, 85, 5, 11, 82, 2, 171, 149, 18, 65, + 14, 50, 65, 182, 223, 22, 69, 178, 201, 2, 79, 3, 85, 7, 238, 137, 25, + 45, 247, 30, 69, 23, 26, 45, 171, 168, 25, 69, 18, 50, 79, 22, 89, 178, + 222, 22, 69, 179, 201, 2, 85, 5, 155, 148, 25, 45, 8, 174, 222, 22, 69, + 147, 137, 2, 65, 17, 11, 45, 14, 158, 19, 89, 130, 163, 5, 73, 180, 132, + 13, 3, 69, 79, 45, 190, 172, 6, 65, 163, 64, 85, 62, 42, 65, 70, 69, 66, + 73, 22, 79, 107, 85, 11, 26, 45, 147, 166, 25, 69, 6, 154, 135, 25, 89, + 246, 30, 79, 3, 85, 11, 11, 79, 9, 11, 45, 6, 150, 163, 25, 89, 186, 2, + 79, 3, 85, 5, 191, 128, 25, 45, 19, 11, 45, 16, 58, 89, 174, 228, 24, 65, + 174, 33, 69, 246, 30, 73, 3, 79, 6, 170, 228, 24, 65, 175, 33, 69, 21, + 11, 45, 18, 142, 16, 89, 226, 202, 22, 69, 146, 137, 2, 65, 162, 64, 73, + 2, 79, 3, 85, 186, 1, 226, 1, 65, 46, 67, 54, 69, 30, 73, 22, 75, 188, 1, + 5, 77, 73, 69, 85, 77, 64, 5, 78, 73, 69, 85, 78, 70, 80, 168, 1, 5, 82, + 73, 69, 85, 76, 254, 1, 84, 90, 83, 246, 2, 87, 50, 89, 150, 1, 72, 202, + 213, 24, 79, 163, 64, 85, 9, 156, 13, 3, 82, 65, 69, 207, 148, 25, 69, 4, + 22, 72, 207, 8, 73, 2, 241, 254, 24, 2, 73, 69, 7, 138, 161, 25, 79, 3, + 85, 5, 179, 173, 18, 69, 14, 56, 7, 65, 80, 89, 69, 79, 85, 78, 106, 72, + 155, 3, 73, 8, 30, 80, 30, 83, 231, 3, 77, 4, 190, 4, 72, 215, 3, 73, 2, + 25, 4, 83, 65, 78, 71, 2, 207, 7, 80, 2, 241, 60, 2, 73, 69, 9, 11, 45, + 6, 22, 80, 247, 9, 83, 4, 142, 7, 73, 207, 2, 65, 13, 11, 45, 10, 234, 5, + 67, 146, 1, 84, 242, 1, 72, 62, 80, 39, 83, 20, 48, 4, 73, 69, 85, 80, + 170, 2, 72, 163, 6, 65, 17, 11, 45, 14, 42, 83, 186, 2, 84, 146, 2, 67, + 43, 75, 6, 21, 3, 73, 79, 83, 7, 11, 45, 4, 202, 4, 75, 107, 84, 27, 11, + 45, 24, 68, 2, 75, 73, 34, 77, 34, 80, 106, 84, 54, 89, 222, 4, 72, 99, + 83, 4, 149, 1, 4, 89, 69, 79, 75, 2, 11, 73, 2, 207, 240, 23, 69, 8, 30, + 72, 34, 73, 131, 6, 65, 2, 197, 232, 18, 3, 73, 69, 85, 4, 21, 3, 69, 85, + 80, 5, 243, 5, 45, 4, 22, 72, 151, 3, 73, 2, 241, 245, 21, 2, 73, 69, 2, + 17, 2, 69, 79, 2, 167, 4, 82, 28, 44, 3, 73, 79, 83, 57, 4, 83, 65, 78, + 71, 13, 11, 45, 10, 122, 67, 42, 75, 42, 78, 34, 80, 35, 84, 16, 78, 67, + 42, 75, 42, 78, 34, 80, 34, 84, 242, 1, 72, 98, 83, 195, 161, 18, 73, 2, + 11, 73, 2, 201, 238, 23, 2, 69, 85, 2, 11, 73, 2, 209, 238, 24, 2, 89, + 69, 2, 11, 73, 2, 219, 151, 24, 69, 2, 11, 73, 2, 247, 161, 24, 69, 2, + 11, 73, 2, 11, 75, 2, 239, 157, 24, 69, 10, 250, 205, 22, 69, 146, 137, + 2, 65, 163, 64, 73, 34, 58, 69, 206, 1, 79, 62, 85, 154, 212, 24, 65, + 163, 64, 73, 13, 42, 79, 73, 6, 83, 73, 69, 85, 78, 71, 5, 11, 82, 2, 17, + 2, 73, 78, 2, 11, 72, 2, 157, 239, 9, 2, 73, 69, 7, 11, 45, 4, 18, 80, + 39, 83, 2, 11, 65, 2, 11, 78, 2, 11, 83, 2, 155, 147, 13, 73, 9, 11, 45, + 6, 26, 89, 207, 148, 25, 73, 4, 171, 212, 24, 65, 9, 11, 45, 6, 26, 89, + 147, 148, 25, 73, 4, 223, 202, 22, 69, 24, 138, 136, 11, 84, 230, 152, + 12, 70, 30, 83, 182, 87, 78, 14, 79, 227, 112, 69, 100, 156, 1, 7, 76, + 69, 84, 84, 69, 82, 32, 196, 2, 5, 77, 65, 82, 75, 32, 72, 5, 83, 73, 71, + 78, 32, 224, 159, 2, 6, 86, 79, 87, 69, 76, 32, 159, 251, 20, 68, 58, + 202, 1, 68, 34, 75, 246, 251, 20, 84, 178, 55, 82, 238, 223, 1, 78, 214, + 181, 1, 83, 138, 69, 66, 2, 67, 2, 70, 2, 71, 2, 72, 2, 74, 2, 76, 2, 77, + 2, 80, 2, 86, 2, 87, 2, 89, 2, 90, 187, 2, 65, 4, 138, 142, 25, 68, 187, + 2, 65, 8, 56, 5, 73, 78, 78, 65, 32, 178, 141, 25, 72, 187, 2, 65, 4, + 174, 141, 25, 87, 3, 89, 4, 136, 213, 21, 6, 78, 65, 32, 75, 72, 79, 237, + 186, 2, 3, 83, 65, 75, 8, 52, 2, 84, 65, 213, 254, 22, 5, 72, 65, 82, 66, + 65, 6, 42, 72, 174, 155, 20, 83, 191, 240, 4, 78, 2, 135, 236, 24, 65, + 42, 62, 76, 152, 243, 18, 6, 83, 73, 71, 78, 32, 80, 247, 1, 86, 36, 33, + 6, 69, 84, 84, 69, 82, 32, 36, 162, 151, 21, 78, 206, 243, 3, 66, 2, 68, + 2, 71, 2, 72, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 84, 2, 87, 2, + 89, 186, 2, 65, 2, 73, 3, 85, 2, 211, 251, 23, 69, 4, 210, 196, 23, 68, + 163, 199, 1, 80, 54, 52, 5, 67, 72, 73, 78, 71, 41, 4, 82, 65, 78, 32, 2, + 17, 2, 32, 67, 2, 243, 216, 23, 72, 52, 52, 7, 76, 69, 84, 84, 69, 82, + 32, 223, 182, 6, 78, 42, 218, 1, 65, 186, 173, 11, 90, 238, 46, 84, 146, + 120, 76, 50, 81, 60, 6, 68, 65, 76, 69, 84, 72, 214, 169, 4, 71, 122, 83, + 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 134, + 2, 87, 218, 103, 80, 171, 4, 77, 4, 222, 254, 16, 76, 159, 186, 7, 89, + 174, 9, 210, 1, 65, 242, 32, 66, 130, 33, 76, 200, 1, 16, 78, 84, 65, 73, + 71, 65, 78, 65, 32, 76, 69, 84, 84, 69, 82, 32, 174, 12, 82, 120, 11, 88, + 65, 71, 82, 65, 77, 32, 70, 79, 82, 32, 165, 181, 24, 4, 68, 71, 69, 72, + 214, 1, 42, 68, 98, 82, 201, 1, 3, 86, 89, 32, 6, 44, 5, 83, 84, 79, 78, + 69, 159, 217, 23, 80, 5, 137, 223, 2, 7, 32, 71, 82, 65, 86, 69, 89, 12, + 32, 2, 84, 32, 251, 155, 17, 45, 10, 60, 5, 87, 73, 84, 72, 32, 198, 163, + 12, 68, 239, 158, 9, 72, 6, 76, 9, 84, 73, 80, 32, 79, 78, 32, 84, 72, + 238, 242, 12, 82, 243, 244, 10, 65, 2, 215, 209, 24, 69, 196, 1, 134, 2, + 65, 202, 1, 66, 230, 2, 67, 154, 3, 68, 162, 1, 69, 186, 3, 70, 94, 72, + 62, 76, 222, 1, 77, 110, 79, 162, 1, 82, 142, 2, 83, 228, 1, 3, 78, 79, + 82, 198, 1, 84, 128, 2, 2, 85, 80, 174, 1, 87, 162, 140, 14, 73, 222, + 243, 3, 80, 130, 142, 4, 86, 227, 78, 71, 12, 108, 17, 82, 82, 79, 87, + 32, 83, 72, 65, 70, 84, 32, 87, 73, 68, 84, 72, 32, 158, 163, 18, 77, + 207, 198, 4, 83, 8, 36, 3, 79, 78, 69, 239, 157, 23, 84, 7, 11, 32, 4, + 202, 238, 13, 84, 251, 139, 9, 72, 14, 48, 4, 65, 76, 76, 79, 21, 4, 76, + 65, 67, 75, 2, 191, 231, 5, 84, 12, 30, 32, 153, 1, 2, 45, 70, 6, 52, 7, + 67, 85, 82, 86, 69, 68, 32, 239, 247, 23, 72, 4, 40, 4, 68, 79, 87, 78, + 1, 2, 85, 80, 2, 201, 220, 23, 8, 87, 65, 82, 68, 83, 32, 65, 78, 6, 45, + 9, 69, 65, 84, 72, 69, 82, 69, 68, 32, 6, 134, 212, 13, 83, 174, 173, 3, + 78, 215, 218, 6, 82, 14, 116, 2, 72, 69, 52, 5, 73, 82, 67, 76, 69, 253, + 224, 17, 14, 79, 78, 67, 65, 86, 69, 45, 80, 79, 73, 78, 84, 69, 68, 4, + 172, 213, 20, 4, 86, 82, 79, 78, 255, 225, 2, 67, 9, 64, 6, 32, 87, 73, + 84, 72, 32, 161, 227, 22, 4, 68, 32, 83, 65, 4, 52, 7, 83, 84, 82, 79, + 75, 69, 32, 163, 253, 4, 67, 2, 29, 5, 65, 78, 68, 32, 84, 2, 11, 87, 2, + 11, 79, 2, 21, 3, 32, 68, 79, 2, 11, 84, 2, 199, 253, 23, 83, 14, 52, 7, + 65, 83, 72, 69, 68, 32, 84, 18, 73, 31, 79, 2, 175, 16, 82, 2, 137, 154, + 19, 2, 86, 73, 10, 192, 16, 3, 87, 78, 87, 222, 139, 14, 85, 191, 184, 4, + 76, 16, 120, 5, 73, 71, 72, 84, 32, 156, 2, 16, 88, 67, 76, 65, 77, 65, + 84, 73, 79, 78, 32, 77, 65, 82, 75, 32, 175, 209, 18, 81, 10, 40, 2, 80, + 79, 126, 84, 131, 223, 22, 83, 6, 33, 6, 73, 78, 84, 69, 68, 32, 6, 170, + 191, 16, 80, 128, 158, 6, 11, 82, 69, 67, 84, 73, 76, 73, 78, 69, 65, 82, + 23, 66, 2, 169, 223, 22, 24, 69, 65, 82, 68, 82, 79, 80, 45, 83, 80, 79, + 75, 69, 68, 32, 80, 82, 79, 80, 69, 76, 76, 69, 82, 4, 210, 224, 23, 83, + 227, 81, 79, 6, 44, 5, 79, 85, 82, 32, 66, 231, 252, 4, 73, 2, 157, 131, + 11, 6, 65, 76, 76, 79, 79, 78, 4, 214, 191, 17, 79, 161, 233, 5, 6, 69, + 65, 82, 84, 32, 69, 20, 74, 65, 44, 3, 69, 70, 84, 28, 2, 79, 87, 241, + 247, 4, 3, 73, 71, 65, 4, 208, 222, 21, 2, 82, 71, 211, 209, 1, 84, 8, + 254, 3, 45, 195, 6, 87, 6, 26, 32, 239, 147, 10, 69, 4, 178, 150, 14, 68, + 25, 4, 83, 73, 78, 71, 4, 56, 8, 85, 76, 84, 73, 80, 76, 73, 67, 143, + 192, 21, 73, 2, 25, 4, 65, 84, 73, 79, 2, 211, 217, 5, 78, 6, 200, 143, + 6, 9, 80, 69, 78, 32, 67, 69, 78, 84, 82, 172, 176, 10, 13, 86, 65, 76, + 32, 87, 73, 84, 72, 32, 79, 86, 65, 76, 213, 151, 6, 5, 85, 84, 76, 73, + 78, 12, 76, 4, 73, 71, 72, 84, 233, 205, 23, 9, 79, 85, 78, 68, 45, 84, + 73, 80, 80, 10, 62, 45, 109, 11, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, + 87, 4, 69, 15, 80, 79, 73, 78, 84, 73, 78, 71, 32, 65, 78, 71, 76, 69, + 32, 4, 138, 233, 6, 66, 255, 169, 7, 81, 7, 139, 6, 32, 26, 106, 65, 78, + 73, 44, 2, 79, 85, 240, 154, 14, 7, 67, 82, 73, 80, 84, 32, 76, 193, 139, + 1, 3, 80, 65, 82, 4, 132, 146, 14, 10, 78, 83, 45, 83, 69, 82, 73, 70, + 32, 73, 175, 195, 8, 76, 8, 240, 143, 14, 2, 78, 71, 183, 194, 8, 88, 10, + 21, 3, 84, 72, 32, 10, 60, 5, 69, 65, 83, 84, 32, 29, 6, 87, 69, 83, 84, + 32, 80, 6, 26, 80, 191, 207, 23, 65, 4, 41, 8, 79, 73, 78, 84, 73, 78, + 71, 32, 4, 226, 242, 16, 86, 255, 202, 6, 66, 12, 88, 9, 69, 65, 82, 68, + 82, 79, 80, 45, 83, 130, 1, 82, 197, 229, 6, 4, 87, 69, 76, 86, 6, 64, 6, + 80, 79, 75, 69, 68, 32, 229, 199, 23, 4, 72, 65, 78, 75, 4, 192, 210, 22, + 8, 80, 73, 78, 87, 72, 69, 69, 76, 27, 65, 2, 193, 3, 5, 73, 65, 78, 71, + 76, 6, 26, 87, 219, 137, 10, 80, 4, 53, 11, 65, 82, 68, 83, 32, 65, 82, + 82, 79, 87, 32, 4, 29, 5, 87, 73, 84, 72, 32, 4, 128, 134, 20, 5, 76, 65, + 82, 71, 69, 179, 243, 1, 69, 12, 76, 5, 72, 73, 84, 69, 32, 164, 1, 2, + 73, 68, 253, 252, 22, 3, 69, 68, 71, 8, 64, 6, 83, 81, 85, 65, 82, 69, + 158, 219, 17, 68, 187, 183, 5, 67, 5, 145, 178, 23, 19, 32, 67, 79, 78, + 84, 65, 73, 78, 73, 78, 71, 32, 66, 76, 65, 67, 75, 32, 86, 2, 157, 247, + 20, 2, 69, 45, 142, 2, 40, 4, 82, 69, 87, 32, 195, 229, 24, 69, 140, 2, + 112, 7, 65, 67, 67, 69, 78, 84, 32, 142, 8, 76, 164, 14, 5, 77, 65, 82, + 75, 32, 114, 80, 201, 172, 21, 2, 89, 79, 60, 128, 2, 9, 65, 84, 78, 65, + 72, 32, 72, 65, 70, 22, 68, 36, 3, 71, 69, 82, 74, 77, 124, 2, 80, 65, + 28, 4, 69, 84, 78, 65, 20, 2, 81, 65, 58, 83, 58, 84, 156, 1, 2, 89, 69, + 78, 90, 148, 169, 8, 3, 82, 69, 86, 242, 141, 15, 79, 245, 148, 1, 3, 73, + 76, 85, 2, 219, 161, 18, 85, 4, 182, 138, 19, 69, 171, 149, 5, 65, 6, 32, + 3, 69, 83, 72, 179, 28, 83, 5, 165, 224, 6, 4, 32, 77, 85, 81, 8, 84, 5, + 69, 82, 75, 72, 65, 236, 242, 17, 2, 85, 78, 153, 45, 5, 65, 72, 65, 80, + 65, 5, 197, 229, 19, 4, 32, 75, 69, 70, 4, 26, 83, 195, 162, 24, 90, 2, + 223, 187, 24, 72, 4, 200, 155, 24, 6, 82, 78, 69, 89, 32, 80, 191, 35, + 68, 4, 182, 24, 69, 161, 229, 22, 6, 72, 65, 76, 83, 72, 69, 8, 38, 69, + 217, 225, 22, 3, 73, 80, 69, 6, 48, 6, 76, 73, 83, 72, 65, 32, 239, 223, + 11, 86, 4, 228, 170, 22, 3, 81, 69, 84, 205, 145, 2, 4, 71, 69, 68, 79, + 4, 228, 208, 8, 10, 82, 65, 72, 32, 66, 69, 78, 32, 89, 79, 155, 217, 2, + 84, 8, 18, 65, 95, 73, 6, 40, 4, 81, 69, 70, 32, 219, 130, 6, 82, 4, 222, + 134, 11, 81, 149, 193, 12, 3, 71, 65, 68, 2, 231, 163, 24, 78, 150, 1, + 76, 6, 69, 84, 84, 69, 82, 32, 201, 11, 8, 73, 71, 65, 84, 85, 82, 69, + 32, 140, 1, 134, 3, 65, 204, 1, 3, 66, 69, 84, 0, 3, 75, 65, 70, 0, 2, + 80, 69, 68, 6, 70, 73, 78, 65, 76, 32, 92, 2, 81, 79, 16, 2, 72, 69, 52, + 2, 78, 85, 0, 4, 90, 65, 89, 73, 18, 83, 48, 3, 82, 69, 83, 170, 1, 84, + 52, 4, 68, 65, 76, 69, 12, 5, 71, 73, 77, 69, 76, 0, 5, 76, 65, 77, 69, + 68, 0, 3, 77, 69, 77, 48, 3, 86, 65, 86, 80, 5, 87, 73, 68, 69, 32, 153, + 1, 3, 89, 79, 68, 14, 26, 76, 239, 216, 23, 89, 12, 64, 2, 69, 70, 73, + 10, 84, 69, 82, 78, 65, 84, 73, 86, 69, 32, 9, 33, 6, 32, 87, 73, 84, 72, + 32, 6, 130, 13, 77, 130, 1, 80, 35, 81, 4, 174, 206, 16, 65, 131, 161, 1, + 80, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 138, 15, 82, 171, 225, 13, 68, + 14, 88, 2, 75, 65, 236, 2, 2, 80, 69, 148, 154, 1, 2, 84, 83, 194, 184, + 22, 78, 135, 110, 77, 4, 235, 2, 70, 7, 244, 10, 5, 32, 87, 73, 84, 72, + 235, 202, 24, 84, 4, 167, 2, 78, 16, 44, 4, 65, 77, 69, 75, 17, 3, 72, + 73, 78, 4, 231, 1, 72, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 40, 6, 68, + 65, 71, 69, 83, 72, 39, 83, 7, 33, 6, 32, 65, 78, 68, 32, 83, 4, 142, + 130, 6, 72, 155, 193, 2, 73, 12, 50, 69, 12, 2, 65, 86, 1, 4, 83, 65, 68, + 73, 4, 11, 84, 5, 201, 236, 13, 7, 32, 87, 73, 84, 72, 32, 68, 7, 33, 6, + 32, 87, 73, 84, 72, 32, 4, 208, 253, 1, 2, 72, 79, 167, 238, 11, 68, 16, + 174, 2, 76, 178, 207, 8, 65, 230, 191, 2, 84, 158, 218, 2, 82, 156, 132, + 9, 2, 68, 65, 218, 96, 75, 222, 106, 72, 169, 4, 7, 70, 73, 78, 65, 76, + 32, 77, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 172, 7, 2, 72, 73, 227, 226, + 13, 68, 10, 72, 6, 65, 76, 69, 70, 32, 76, 29, 8, 89, 73, 68, 68, 73, 83, + 72, 32, 2, 185, 187, 19, 2, 65, 77, 8, 120, 7, 68, 79, 85, 66, 76, 69, + 32, 232, 4, 9, 89, 79, 68, 32, 89, 79, 68, 32, 80, 169, 143, 21, 5, 86, + 65, 86, 32, 89, 4, 250, 141, 11, 86, 151, 134, 10, 89, 6, 80, 3, 76, 79, + 87, 0, 3, 85, 80, 80, 149, 249, 22, 6, 77, 65, 83, 79, 82, 65, 2, 145, + 186, 23, 2, 69, 82, 50, 84, 5, 79, 73, 78, 84, 32, 225, 5, 11, 85, 78, + 67, 84, 85, 65, 84, 73, 79, 78, 32, 38, 228, 1, 9, 68, 65, 71, 69, 83, + 72, 32, 79, 82, 46, 72, 106, 80, 162, 1, 81, 86, 82, 22, 83, 148, 213, 9, + 2, 84, 83, 148, 153, 11, 17, 74, 85, 68, 69, 79, 45, 83, 80, 65, 78, 73, + 83, 72, 32, 86, 65, 82, 189, 147, 3, 3, 77, 69, 84, 2, 17, 2, 32, 77, 2, + 197, 1, 2, 65, 80, 12, 60, 5, 65, 84, 65, 70, 32, 102, 73, 33, 4, 79, 76, + 65, 77, 6, 38, 80, 34, 81, 141, 2, 2, 83, 69, 2, 11, 65, 2, 199, 219, 17, + 84, 2, 233, 192, 23, 2, 65, 77, 2, 11, 82, 2, 243, 229, 13, 73, 5, 181, + 136, 11, 12, 32, 72, 65, 83, 69, 82, 32, 70, 79, 82, 32, 86, 6, 52, 5, + 65, 77, 65, 84, 83, 221, 190, 11, 2, 85, 66, 5, 217, 241, 10, 2, 32, 81, + 2, 211, 228, 6, 65, 8, 34, 69, 22, 72, 215, 182, 8, 73, 2, 155, 178, 23, + 71, 4, 210, 182, 8, 73, 147, 210, 7, 69, 12, 152, 1, 3, 71, 69, 82, 60, + 3, 80, 65, 83, 20, 7, 83, 79, 70, 32, 80, 65, 83, 216, 136, 22, 7, 78, + 85, 78, 32, 72, 65, 70, 253, 186, 1, 3, 77, 65, 81, 4, 26, 83, 179, 218, + 22, 69, 2, 229, 194, 23, 3, 72, 65, 89, 2, 255, 225, 13, 69, 2, 235, 225, + 13, 85, 8, 114, 77, 176, 149, 12, 15, 76, 83, 67, 72, 82, 69, 73, 66, 69, + 82, 32, 80, 65, 85, 83, 229, 227, 5, 3, 73, 67, 79, 4, 196, 225, 5, 12, + 69, 84, 32, 87, 73, 84, 72, 32, 87, 72, 73, 84, 255, 204, 17, 32, 188, 4, + 164, 1, 2, 65, 45, 50, 72, 70, 75, 230, 1, 77, 114, 78, 146, 2, 82, 66, + 83, 154, 1, 84, 226, 1, 87, 62, 89, 110, 69, 234, 244, 8, 85, 150, 170, + 5, 79, 139, 192, 3, 73, 8, 134, 163, 24, 87, 246, 30, 49, 2, 50, 3, 51, + 72, 166, 6, 79, 250, 194, 8, 65, 230, 223, 5, 85, 166, 116, 69, 3, 73, + 74, 72, 2, 65, 45, 104, 2, 79, 45, 178, 4, 73, 226, 3, 69, 163, 147, 15, + 85, 24, 250, 233, 11, 49, 238, 191, 12, 75, 214, 22, 50, 2, 51, 2, 52, 2, + 53, 2, 54, 2, 55, 2, 56, 3, 57, 8, 250, 171, 24, 75, 218, 19, 49, 2, 50, + 3, 51, 54, 68, 2, 69, 45, 154, 7, 79, 162, 147, 15, 65, 2, 73, 231, 203, + 2, 85, 6, 162, 188, 24, 77, 186, 2, 49, 3, 50, 68, 116, 2, 69, 45, 72, 2, + 73, 45, 246, 2, 65, 166, 247, 8, 79, 150, 170, 5, 85, 225, 146, 6, 6, 45, + 77, 85, 45, 77, 79, 14, 198, 158, 24, 75, 246, 30, 49, 2, 50, 2, 51, 2, + 52, 2, 53, 3, 54, 16, 158, 166, 24, 84, 214, 22, 49, 2, 50, 2, 51, 2, 52, + 2, 53, 2, 54, 3, 55, 54, 222, 4, 79, 2, 85, 162, 147, 15, 73, 230, 203, + 2, 65, 3, 69, 68, 62, 65, 2, 85, 226, 3, 73, 234, 244, 8, 69, 187, 158, + 6, 79, 16, 11, 45, 16, 150, 187, 24, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, + 54, 2, 55, 3, 56, 64, 74, 69, 20, 2, 79, 45, 72, 2, 85, 45, 130, 149, 15, + 73, 231, 203, 2, 65, 18, 223, 249, 18, 45, 14, 178, 183, 24, 82, 186, 2, + 49, 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 10, 174, 154, 24, 84, 246, 30, 49, + 2, 50, 2, 51, 3, 52, 42, 142, 246, 8, 65, 2, 73, 186, 158, 6, 79, 231, + 203, 2, 69, 32, 40, 2, 65, 45, 66, 79, 135, 223, 17, 85, 12, 142, 153, + 24, 89, 246, 30, 49, 2, 50, 2, 51, 2, 52, 3, 53, 12, 11, 45, 12, 182, + 183, 24, 49, 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 4, 240, 170, 8, 21, 77, + 73, 84, 73, 65, 78, 32, 67, 79, 78, 74, 85, 71, 65, 84, 69, 32, 77, 65, + 84, 82, 139, 140, 16, 66, 128, 1, 210, 2, 65, 110, 66, 144, 1, 2, 67, 79, + 94, 68, 198, 2, 70, 66, 71, 40, 4, 72, 79, 76, 68, 164, 1, 2, 73, 78, + 116, 2, 77, 79, 58, 79, 122, 80, 100, 2, 82, 69, 66, 83, 238, 1, 84, 210, + 5, 87, 148, 160, 15, 4, 76, 73, 77, 73, 140, 191, 5, 11, 89, 79, 85, 84, + 72, 70, 85, 76, 32, 70, 79, 137, 177, 3, 9, 69, 78, 84, 72, 85, 83, 73, + 65, 83, 6, 76, 3, 80, 80, 82, 124, 4, 70, 84, 69, 82, 185, 161, 19, 4, + 66, 85, 78, 68, 2, 177, 144, 24, 2, 79, 65, 6, 92, 5, 69, 70, 79, 82, 69, + 156, 213, 3, 6, 73, 84, 73, 78, 71, 32, 1, 4, 82, 69, 65, 75, 2, 141, + 225, 23, 7, 32, 67, 79, 77, 80, 76, 69, 6, 26, 78, 179, 152, 19, 77, 4, + 180, 202, 20, 4, 84, 69, 77, 80, 209, 213, 2, 3, 70, 76, 73, 14, 110, 69, + 78, 73, 202, 156, 19, 85, 241, 245, 2, 15, 65, 82, 75, 69, 78, 73, 78, + 71, 32, 79, 70, 32, 84, 72, 69, 6, 218, 152, 19, 67, 192, 6, 2, 76, 73, + 149, 205, 4, 5, 86, 69, 76, 79, 80, 4, 248, 142, 19, 21, 70, 70, 73, 67, + 85, 76, 84, 89, 32, 65, 84, 32, 84, 72, 69, 32, 66, 69, 71, 73, 78, 169, + 253, 2, 4, 83, 80, 69, 82, 4, 216, 147, 19, 2, 79, 76, 165, 197, 4, 5, + 69, 76, 76, 79, 87, 12, 36, 5, 65, 84, 72, 69, 82, 35, 82, 2, 165, 139, + 15, 3, 73, 78, 71, 10, 40, 4, 69, 65, 84, 32, 227, 239, 23, 65, 8, 22, + 80, 215, 5, 84, 6, 22, 79, 151, 5, 82, 4, 172, 2, 2, 83, 83, 147, 236, + 23, 87, 8, 50, 78, 202, 148, 19, 67, 217, 5, 3, 70, 76, 85, 4, 156, 154, + 19, 2, 79, 67, 197, 236, 1, 5, 69, 82, 32, 84, 82, 4, 172, 187, 22, 3, + 68, 69, 83, 145, 62, 3, 85, 84, 72, 6, 26, 66, 37, 2, 80, 80, 2, 221, + 217, 23, 4, 83, 84, 82, 85, 4, 26, 82, 183, 216, 23, 79, 2, 133, 135, 22, + 2, 69, 83, 6, 136, 144, 15, 9, 85, 83, 72, 73, 78, 71, 32, 85, 80, 192, + 137, 2, 3, 82, 79, 71, 143, 211, 6, 69, 6, 26, 84, 203, 132, 19, 86, 4, + 250, 149, 19, 85, 171, 137, 4, 82, 8, 132, 1, 5, 77, 65, 76, 76, 32, 224, + 171, 21, 6, 84, 65, 78, 68, 83, 84, 185, 244, 1, 11, 80, 76, 73, 84, 84, + 73, 78, 71, 32, 65, 80, 4, 24, 2, 80, 82, 43, 84, 2, 217, 150, 19, 5, 69, + 80, 79, 78, 68, 2, 11, 65, 2, 223, 213, 23, 77, 30, 36, 3, 72, 69, 32, + 227, 223, 17, 82, 28, 186, 2, 65, 130, 1, 67, 132, 1, 3, 70, 65, 77, 20, + 9, 82, 69, 67, 69, 80, 84, 73, 86, 69, 30, 87, 172, 22, 12, 77, 65, 82, + 82, 89, 73, 78, 71, 32, 77, 65, 73, 184, 150, 5, 6, 71, 69, 78, 84, 76, + 69, 164, 223, 10, 13, 75, 69, 69, 80, 73, 78, 71, 32, 83, 84, 73, 76, 76, + 173, 238, 3, 7, 74, 79, 89, 79, 85, 83, 32, 6, 58, 82, 161, 180, 11, 8, + 66, 89, 83, 77, 65, 76, 32, 87, 4, 196, 183, 20, 8, 79, 85, 83, 73, 78, + 71, 32, 84, 163, 218, 3, 77, 6, 188, 131, 1, 2, 65, 85, 228, 178, 19, 9, + 82, 69, 65, 84, 73, 86, 69, 32, 72, 161, 212, 1, 9, 76, 73, 78, 71, 73, + 78, 71, 32, 70, 2, 183, 254, 23, 73, 2, 233, 180, 20, 2, 32, 69, 4, 142, + 151, 22, 69, 189, 204, 1, 5, 65, 78, 68, 69, 82, 4, 242, 234, 6, 65, 205, + 162, 6, 14, 79, 82, 75, 32, 79, 78, 32, 84, 72, 69, 32, 68, 69, 67, 222, + 1, 236, 1, 2, 71, 72, 180, 2, 7, 82, 65, 71, 65, 78, 65, 32, 212, 4, 7, + 83, 84, 79, 82, 73, 67, 32, 212, 190, 15, 7, 78, 68, 85, 32, 84, 69, 77, + 240, 33, 4, 75, 73, 78, 71, 218, 249, 1, 66, 169, 180, 4, 8, 80, 80, 79, + 80, 79, 84, 65, 77, 12, 18, 32, 119, 45, 6, 216, 138, 5, 2, 66, 82, 184, + 243, 16, 6, 86, 79, 76, 84, 65, 71, 217, 49, 9, 79, 67, 84, 69, 84, 32, + 80, 82, 69, 6, 92, 11, 83, 80, 69, 69, 68, 32, 84, 82, 65, 73, 78, 173, + 203, 5, 6, 72, 69, 69, 76, 69, 68, 5, 157, 185, 11, 14, 32, 87, 73, 84, + 72, 32, 66, 85, 76, 76, 69, 84, 32, 78, 200, 1, 112, 9, 68, 73, 71, 82, + 65, 80, 72, 32, 89, 20, 7, 76, 69, 84, 84, 69, 82, 32, 154, 173, 1, 86, + 191, 199, 20, 73, 2, 183, 175, 17, 79, 194, 1, 194, 1, 65, 74, 83, 138, + 164, 1, 66, 162, 3, 78, 150, 2, 68, 2, 71, 2, 72, 2, 75, 2, 77, 2, 80, 2, + 82, 2, 84, 2, 90, 126, 87, 46, 89, 150, 201, 22, 86, 234, 36, 69, 2, 73, + 2, 79, 3, 85, 7, 37, 7, 82, 67, 72, 65, 73, 67, 32, 4, 150, 244, 23, 87, + 151, 14, 89, 42, 76, 5, 77, 65, 76, 76, 32, 146, 152, 24, 65, 2, 69, 2, + 73, 2, 79, 3, 85, 32, 230, 169, 1, 87, 46, 89, 150, 176, 5, 75, 130, 153, + 17, 84, 234, 36, 65, 2, 69, 2, 73, 2, 79, 3, 85, 2, 235, 182, 8, 83, 108, + 166, 1, 76, 52, 3, 78, 69, 89, 46, 82, 146, 7, 84, 138, 1, 85, 206, 192, + 16, 83, 178, 219, 2, 67, 220, 198, 3, 6, 77, 79, 84, 72, 69, 84, 134, + 167, 1, 79, 155, 3, 80, 6, 236, 144, 16, 4, 76, 79, 87, 32, 255, 132, 8, + 69, 4, 150, 163, 22, 66, 233, 161, 1, 2, 32, 80, 66, 60, 8, 73, 90, 79, + 78, 84, 65, 76, 32, 153, 6, 2, 83, 69, 60, 218, 1, 66, 110, 76, 152, 1, + 17, 79, 78, 69, 32, 69, 73, 71, 72, 84, 72, 32, 66, 76, 79, 67, 75, 45, + 88, 10, 83, 67, 65, 78, 32, 76, 73, 78, 69, 45, 46, 84, 146, 232, 21, 67, + 42, 69, 230, 6, 77, 150, 1, 82, 247, 2, 90, 6, 44, 5, 76, 65, 67, 75, 32, + 231, 217, 23, 65, 4, 38, 79, 217, 215, 22, 3, 72, 69, 88, 2, 203, 215, + 22, 67, 10, 40, 4, 73, 78, 69, 32, 247, 237, 21, 65, 8, 44, 5, 87, 73, + 84, 72, 32, 155, 238, 21, 69, 6, 26, 84, 195, 239, 21, 70, 4, 226, 239, + 21, 72, 243, 91, 73, 14, 184, 229, 16, 3, 49, 51, 53, 178, 171, 7, 50, 2, + 51, 2, 52, 2, 53, 2, 54, 3, 55, 8, 146, 144, 24, 49, 2, 51, 2, 55, 3, 57, + 10, 32, 2, 65, 66, 199, 242, 21, 82, 8, 26, 85, 199, 241, 21, 32, 6, 33, + 6, 76, 65, 84, 73, 79, 78, 7, 11, 32, 4, 128, 197, 9, 8, 87, 73, 84, 72, + 32, 74, 85, 83, 223, 148, 14, 83, 7, 11, 32, 4, 128, 195, 7, 2, 82, 65, + 159, 142, 16, 70, 10, 26, 32, 147, 130, 23, 69, 8, 86, 80, 232, 253, 18, + 5, 66, 69, 86, 69, 82, 144, 80, 3, 83, 80, 82, 179, 190, 4, 68, 2, 231, + 234, 14, 69, 12, 48, 6, 82, 71, 76, 65, 83, 83, 77, 2, 83, 69, 5, 233, + 185, 20, 14, 32, 87, 73, 84, 72, 32, 70, 76, 79, 87, 73, 78, 71, 32, 9, + 11, 32, 6, 88, 8, 87, 73, 84, 72, 32, 71, 65, 82, 181, 129, 22, 8, 66, + 85, 73, 76, 68, 73, 78, 71, 2, 135, 181, 22, 68, 7, 246, 138, 24, 74, 3, + 83, 8, 106, 83, 160, 244, 22, 11, 78, 68, 82, 69, 68, 32, 80, 79, 73, 78, + 84, 176, 13, 2, 71, 71, 163, 136, 1, 84, 2, 251, 246, 22, 72, 20, 80, 2, + 71, 73, 22, 80, 224, 1, 5, 83, 84, 69, 82, 69, 161, 129, 22, 2, 65, 67, + 4, 255, 243, 21, 69, 12, 60, 3, 72, 69, 78, 145, 157, 4, 6, 79, 68, 73, + 65, 83, 84, 11, 34, 32, 82, 65, 203, 252, 19, 45, 4, 26, 87, 215, 165, + 22, 66, 2, 21, 3, 73, 84, 72, 2, 197, 186, 3, 2, 32, 68, 2, 141, 220, 12, + 6, 84, 73, 79, 78, 32, 80, 2, 193, 241, 22, 2, 83, 73, 210, 5, 172, 1, 3, + 67, 69, 32, 152, 1, 2, 68, 69, 222, 24, 77, 222, 2, 78, 230, 35, 82, 132, + 2, 7, 90, 65, 75, 65, 89, 65, 32, 185, 242, 19, 9, 32, 76, 79, 86, 69, + 32, 89, 79, 85, 8, 114, 67, 236, 160, 11, 18, 72, 79, 67, 75, 69, 89, 32, + 83, 84, 73, 67, 75, 32, 65, 78, 68, 32, 80, 235, 190, 1, 83, 4, 138, 244, + 15, 82, 223, 231, 2, 85, 246, 1, 68, 3, 78, 84, 73, 201, 1, 9, 79, 71, + 82, 65, 80, 72, 73, 67, 32, 8, 64, 4, 67, 65, 76, 32, 105, 8, 70, 73, 67, + 65, 84, 73, 79, 78, 6, 32, 2, 84, 79, 131, 130, 23, 87, 5, 149, 247, 14, + 12, 32, 65, 78, 68, 32, 83, 76, 65, 78, 84, 69, 68, 2, 181, 233, 22, 2, + 32, 67, 238, 1, 208, 2, 11, 65, 78, 78, 79, 84, 65, 84, 73, 79, 78, 32, + 242, 3, 67, 72, 2, 68, 69, 248, 5, 5, 78, 85, 77, 66, 69, 22, 84, 224, + 239, 5, 8, 72, 65, 76, 70, 32, 70, 73, 76, 232, 186, 1, 5, 69, 78, 84, + 69, 82, 0, 3, 82, 73, 83, 24, 5, 76, 69, 86, 69, 76, 240, 138, 9, 5, 86, + 65, 82, 73, 65, 250, 233, 4, 70, 154, 47, 73, 243, 231, 1, 83, 32, 232, + 1, 5, 66, 79, 84, 84, 79, 22, 70, 82, 77, 62, 84, 140, 1, 4, 76, 73, 78, + 75, 196, 143, 1, 4, 83, 69, 67, 79, 234, 161, 6, 79, 224, 130, 6, 6, 82, + 69, 86, 69, 82, 83, 152, 222, 9, 5, 72, 69, 65, 86, 69, 169, 39, 3, 69, + 65, 82, 2, 143, 188, 23, 77, 6, 48, 3, 79, 85, 82, 197, 178, 23, 3, 73, + 82, 83, 4, 186, 187, 23, 84, 27, 32, 4, 36, 3, 73, 68, 68, 199, 147, 23, + 65, 2, 171, 181, 13, 76, 8, 34, 72, 46, 87, 151, 134, 8, 79, 4, 134, 146, + 9, 82, 237, 157, 14, 2, 73, 82, 2, 159, 186, 23, 79, 4, 36, 3, 76, 79, + 83, 227, 165, 21, 79, 2, 225, 185, 23, 3, 73, 78, 71, 36, 104, 20, 83, + 67, 82, 73, 80, 84, 73, 79, 78, 32, 67, 72, 65, 82, 65, 67, 84, 69, 82, + 32, 211, 175, 7, 80, 34, 144, 2, 9, 65, 66, 79, 86, 69, 32, 84, 79, 32, + 84, 8, 76, 69, 70, 84, 32, 84, 79, 32, 76, 5, 79, 86, 69, 82, 76, 20, 2, + 83, 85, 222, 245, 14, 82, 172, 200, 5, 8, 70, 85, 76, 76, 32, 83, 85, 82, + 229, 231, 2, 15, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 69, 70, + 76, 4, 60, 9, 77, 73, 68, 68, 76, 69, 32, 65, 78, 223, 213, 21, 66, 2, + 175, 198, 21, 68, 4, 144, 164, 22, 10, 77, 73, 68, 68, 76, 69, 32, 65, + 78, 68, 211, 168, 1, 82, 2, 147, 225, 16, 65, 18, 72, 12, 82, 82, 79, 85, + 78, 68, 32, 70, 82, 79, 77, 32, 223, 181, 17, 66, 16, 82, 76, 208, 203, + 11, 3, 85, 80, 80, 250, 135, 10, 66, 130, 165, 1, 65, 159, 82, 82, 6, + 194, 203, 11, 79, 147, 255, 11, 69, 2, 175, 217, 8, 82, 148, 1, 92, 10, + 65, 76, 76, 89, 32, 77, 65, 82, 75, 32, 41, 9, 69, 76, 69, 71, 82, 65, + 80, 72, 32, 10, 138, 129, 22, 70, 70, 84, 155, 87, 79, 138, 1, 140, 1, + 11, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 221, 230, 12, 17, 76, 73, + 78, 69, 32, 70, 69, 69, 68, 32, 83, 69, 80, 65, 82, 65, 84, 136, 1, 182, + 1, 65, 58, 68, 200, 2, 5, 72, 79, 85, 82, 32, 214, 1, 74, 28, 4, 70, 69, + 66, 82, 64, 2, 77, 65, 168, 196, 15, 3, 78, 79, 86, 0, 4, 83, 69, 80, 84, + 25, 4, 79, 67, 84, 79, 4, 168, 131, 20, 3, 85, 71, 85, 165, 142, 2, 2, + 80, 82, 64, 44, 3, 65, 89, 32, 241, 200, 15, 2, 69, 67, 62, 66, 84, 142, + 212, 5, 69, 66, 70, 70, 78, 26, 83, 159, 255, 16, 79, 34, 34, 72, 90, 87, + 155, 159, 23, 69, 8, 36, 3, 73, 82, 84, 139, 253, 21, 82, 6, 26, 89, 139, + 153, 22, 69, 5, 179, 194, 22, 45, 24, 26, 69, 223, 238, 23, 79, 22, 36, + 3, 78, 84, 89, 227, 241, 22, 76, 21, 139, 163, 15, 45, 50, 78, 84, 234, + 209, 5, 69, 66, 70, 70, 78, 26, 83, 194, 168, 16, 90, 223, 86, 79, 20, + 42, 87, 198, 211, 5, 72, 131, 202, 17, 69, 14, 26, 69, 139, 237, 23, 79, + 12, 36, 3, 78, 84, 89, 143, 240, 22, 76, 11, 175, 158, 17, 45, 6, 24, 2, + 65, 78, 35, 85, 2, 11, 85, 2, 191, 166, 17, 65, 4, 186, 213, 23, 78, 143, + 5, 76, 4, 198, 201, 23, 82, 171, 34, 89, 68, 40, 6, 65, 71, 69, 32, 79, + 70, 83, 80, 5, 161, 135, 9, 15, 32, 79, 82, 32, 65, 80, 80, 82, 79, 88, + 73, 77, 65, 84, 69, 65, 65, 14, 69, 82, 73, 65, 76, 32, 65, 82, 65, 77, + 65, 73, 67, 32, 62, 72, 7, 78, 85, 77, 66, 69, 82, 32, 230, 18, 76, 181, + 209, 19, 2, 83, 69, 16, 26, 84, 187, 199, 15, 79, 10, 130, 183, 11, 87, + 250, 147, 1, 69, 131, 172, 9, 72, 136, 3, 202, 1, 67, 234, 1, 68, 214, 6, + 70, 132, 2, 5, 72, 73, 66, 73, 84, 156, 1, 15, 80, 85, 84, 32, 83, 89, + 77, 66, 79, 76, 32, 70, 79, 82, 32, 206, 1, 83, 236, 5, 2, 84, 69, 206, + 8, 86, 147, 250, 9, 66, 10, 32, 2, 79, 77, 69, 2, 82, 69, 4, 140, 207, + 16, 3, 73, 78, 71, 209, 230, 2, 5, 80, 76, 69, 84, 69, 6, 36, 3, 65, 83, + 69, 239, 162, 23, 77, 4, 34, 32, 157, 180, 10, 2, 83, 32, 2, 161, 183, + 11, 8, 70, 79, 78, 84, 32, 83, 73, 90, 145, 1, 24, 2, 69, 88, 103, 73, 5, + 149, 202, 22, 20, 32, 80, 79, 73, 78, 84, 73, 78, 71, 32, 65, 84, 32, 84, + 72, 69, 32, 86, 73, 69, 138, 1, 72, 8, 67, 32, 83, 73, 89, 65, 81, 32, + 173, 136, 18, 4, 65, 78, 32, 82, 136, 1, 196, 1, 11, 65, 76, 84, 69, 82, + 78, 65, 84, 69, 32, 76, 2, 76, 28, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, + 100, 7, 78, 85, 77, 66, 69, 82, 32, 130, 247, 8, 82, 209, 120, 6, 80, 76, + 65, 67, 69, 72, 2, 201, 160, 23, 2, 65, 75, 6, 68, 4, 79, 78, 69, 32, + 205, 221, 21, 7, 84, 72, 82, 69, 69, 32, 81, 4, 162, 219, 21, 72, 47, 81, + 122, 212, 1, 10, 65, 76, 84, 69, 82, 78, 65, 84, 69, 32, 72, 5, 75, 65, + 82, 79, 82, 0, 4, 76, 65, 75, 72, 222, 137, 10, 69, 66, 70, 94, 78, 26, + 83, 78, 84, 236, 135, 5, 8, 80, 82, 69, 70, 73, 88, 69, 68, 199, 41, 79, + 6, 26, 84, 251, 195, 22, 79, 4, 132, 164, 6, 2, 69, 78, 175, 156, 17, 87, + 5, 155, 143, 23, 65, 16, 72, 5, 73, 78, 73, 84, 89, 85, 9, 79, 82, 77, + 65, 84, 73, 79, 78, 32, 5, 45, 9, 32, 78, 69, 71, 65, 84, 69, 68, 32, 2, + 225, 171, 8, 4, 87, 73, 84, 72, 12, 42, 83, 225, 216, 19, 4, 68, 69, 83, + 75, 10, 244, 152, 7, 5, 69, 80, 65, 82, 65, 243, 252, 9, 79, 4, 11, 32, + 4, 196, 139, 23, 15, 65, 82, 65, 66, 73, 67, 32, 70, 79, 82, 77, 32, 83, + 72, 65, 1, 14, 83, 89, 77, 77, 69, 84, 82, 73, 67, 32, 83, 87, 65, 80, + 10, 80, 6, 76, 65, 84, 73, 78, 32, 218, 244, 14, 83, 161, 213, 7, 4, 78, + 85, 77, 66, 6, 64, 6, 67, 65, 80, 73, 84, 65, 0, 4, 83, 77, 65, 76, 27, + 76, 2, 21, 3, 76, 32, 76, 2, 193, 214, 21, 2, 69, 84, 116, 84, 13, 67, + 82, 73, 80, 84, 73, 79, 78, 65, 76, 32, 80, 65, 245, 200, 15, 2, 69, 82, + 114, 72, 6, 72, 76, 65, 86, 73, 32, 225, 1, 7, 82, 84, 72, 73, 65, 78, + 32, 54, 48, 7, 76, 69, 84, 84, 69, 82, 32, 191, 3, 78, 38, 234, 171, 10, + 84, 222, 119, 65, 22, 68, 34, 76, 22, 77, 50, 87, 254, 169, 4, 71, 90, + 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, + 4, 78, 223, 105, 80, 60, 22, 76, 251, 1, 78, 44, 11, 69, 44, 29, 5, 84, + 84, 69, 82, 32, 44, 250, 169, 10, 84, 242, 119, 68, 34, 76, 50, 81, 214, + 205, 1, 82, 142, 220, 2, 65, 50, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, + 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 87, 218, 103, 80, + 171, 4, 77, 16, 33, 6, 85, 77, 66, 69, 82, 32, 16, 242, 161, 11, 84, 226, + 144, 4, 79, 167, 134, 3, 70, 50, 36, 4, 71, 82, 65, 76, 179, 3, 82, 23, + 11, 32, 20, 58, 65, 140, 1, 5, 87, 73, 84, 72, 32, 135, 175, 21, 69, 4, + 96, 6, 86, 69, 82, 65, 71, 69, 169, 172, 16, 12, 82, 79, 85, 78, 68, 32, + 65, 32, 80, 79, 73, 78, 2, 205, 173, 16, 5, 32, 87, 73, 84, 72, 14, 160, + 1, 3, 84, 73, 77, 20, 2, 85, 78, 172, 239, 6, 16, 76, 69, 70, 84, 87, 65, + 82, 68, 83, 32, 65, 82, 82, 79, 87, 32, 246, 173, 13, 73, 198, 1, 79, + 251, 64, 68, 2, 227, 158, 20, 69, 4, 238, 158, 20, 68, 131, 226, 2, 73, + 28, 94, 76, 232, 1, 7, 83, 69, 67, 84, 73, 79, 78, 146, 7, 82, 232, 249, + 11, 2, 67, 65, 43, 73, 8, 164, 1, 17, 73, 78, 69, 65, 82, 32, 65, 78, 78, + 79, 84, 65, 84, 73, 79, 78, 32, 221, 235, 4, 17, 79, 67, 75, 69, 68, 32, + 70, 69, 77, 65, 76, 69, 32, 65, 78, 68, 32, 6, 208, 167, 8, 3, 65, 78, + 67, 146, 154, 8, 84, 159, 219, 3, 83, 15, 11, 32, 12, 168, 1, 6, 65, 66, + 79, 86, 69, 32, 64, 5, 87, 73, 84, 72, 32, 169, 152, 20, 22, 66, 69, 83, + 73, 68, 69, 32, 65, 78, 68, 32, 74, 79, 73, 78, 69, 68, 32, 87, 73, 84, + 72, 4, 152, 153, 20, 9, 66, 65, 82, 32, 65, 66, 79, 86, 69, 23, 85, 6, + 206, 169, 4, 76, 178, 240, 15, 79, 195, 225, 2, 68, 40, 56, 2, 69, 82, + 189, 5, 7, 73, 83, 73, 66, 76, 69, 32, 34, 48, 3, 83, 69, 32, 225, 2, 4, + 84, 69, 68, 32, 16, 174, 1, 66, 80, 5, 67, 72, 69, 67, 75, 68, 24, 68, + 79, 87, 78, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, 32, 87, 73, 84, + 72, 32, 84, 73, 80, 210, 178, 20, 87, 219, 26, 77, 6, 44, 5, 76, 65, 67, + 75, 32, 227, 230, 21, 85, 4, 250, 137, 22, 68, 227, 27, 83, 4, 228, 204, + 20, 8, 69, 82, 32, 66, 79, 65, 82, 68, 183, 186, 2, 32, 2, 197, 230, 20, + 2, 32, 76, 18, 144, 1, 6, 73, 78, 84, 69, 82, 82, 22, 76, 146, 242, 11, + 80, 230, 184, 4, 69, 244, 198, 1, 2, 79, 72, 204, 158, 2, 4, 85, 78, 68, + 69, 183, 97, 81, 2, 131, 214, 4, 79, 6, 60, 9, 79, 87, 32, 75, 65, 86, + 89, 75, 65, 215, 231, 6, 65, 5, 205, 154, 18, 11, 32, 87, 73, 84, 72, 32, + 75, 65, 86, 89, 75, 6, 38, 84, 154, 186, 19, 80, 223, 89, 83, 2, 135, + 173, 16, 73, 4, 222, 169, 22, 69, 215, 93, 73, 218, 1, 94, 65, 138, 21, + 69, 62, 79, 42, 85, 133, 187, 11, 10, 73, 71, 83, 65, 87, 32, 80, 85, 90, + 90, 202, 1, 120, 5, 67, 75, 45, 79, 45, 32, 7, 80, 65, 78, 69, 83, 69, + 32, 184, 2, 7, 86, 65, 78, 69, 83, 69, 32, 183, 192, 23, 82, 2, 145, 176, + 18, 3, 76, 65, 78, 16, 246, 1, 67, 18, 80, 204, 153, 1, 10, 73, 78, 68, + 85, 83, 84, 82, 73, 65, 76, 236, 229, 3, 3, 66, 65, 78, 134, 174, 3, 68, + 144, 139, 11, 15, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 66, 69, 71, + 73, 180, 248, 1, 3, 71, 79, 66, 169, 109, 2, 79, 71, 2, 207, 32, 65, 2, + 141, 137, 13, 7, 79, 83, 84, 32, 79, 70, 70, 182, 1, 172, 2, 15, 67, 79, + 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 76, 2, 76, 69, 40, 4, + 82, 73, 71, 72, 224, 6, 2, 80, 65, 176, 3, 14, 84, 85, 82, 78, 69, 68, + 32, 80, 65, 68, 65, 32, 80, 73, 88, 5, 83, 73, 71, 78, 32, 144, 1, 11, + 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 143, 189, 21, 68, 6, 52, 2, + 75, 69, 164, 193, 16, 2, 80, 69, 175, 5, 67, 2, 175, 136, 23, 82, 96, 38, + 70, 65, 5, 84, 84, 69, 82, 32, 2, 41, 8, 84, 32, 82, 69, 82, 69, 78, 71, + 2, 195, 240, 21, 71, 94, 230, 1, 68, 26, 73, 48, 2, 75, 65, 66, 78, 130, + 1, 66, 2, 67, 2, 71, 16, 2, 80, 65, 56, 2, 82, 65, 32, 2, 83, 65, 42, 84, + 74, 74, 194, 170, 21, 65, 142, 138, 2, 72, 2, 76, 2, 77, 2, 87, 2, 89, + 186, 2, 69, 2, 79, 3, 85, 8, 222, 3, 68, 15, 65, 7, 236, 201, 5, 3, 32, + 75, 65, 223, 240, 17, 73, 7, 11, 32, 4, 22, 83, 215, 2, 77, 2, 237, 128, + 21, 2, 65, 83, 14, 36, 2, 71, 65, 90, 89, 167, 1, 65, 7, 33, 6, 32, 76, + 69, 76, 69, 84, 5, 29, 5, 32, 82, 65, 83, 87, 2, 211, 226, 5, 65, 4, 163, + 1, 65, 7, 11, 32, 4, 154, 1, 77, 129, 180, 23, 3, 67, 69, 82, 5, 213, + 196, 16, 3, 32, 65, 71, 7, 17, 2, 32, 77, 4, 70, 85, 71, 65, 8, 18, 65, + 55, 84, 5, 17, 2, 32, 77, 2, 11, 85, 2, 147, 146, 23, 82, 4, 11, 65, 5, + 11, 32, 2, 11, 77, 2, 11, 65, 2, 11, 72, 2, 213, 177, 17, 2, 65, 80, 28, + 40, 3, 68, 65, 32, 165, 3, 2, 78, 71, 24, 174, 1, 65, 90, 76, 86, 80, + 168, 147, 7, 10, 84, 73, 82, 84, 65, 32, 84, 85, 77, 69, 210, 130, 12, + 87, 168, 199, 2, 7, 73, 83, 69, 78, 45, 73, 83, 169, 211, 1, 3, 77, 65, + 68, 6, 44, 3, 68, 69, 71, 153, 161, 22, 2, 78, 68, 5, 11, 32, 2, 169, + 238, 22, 2, 65, 68, 6, 38, 85, 141, 177, 23, 3, 73, 78, 71, 4, 216, 192, + 18, 2, 78, 71, 163, 250, 3, 72, 4, 38, 73, 181, 185, 18, 3, 65, 78, 71, + 2, 157, 189, 16, 3, 83, 69, 76, 4, 244, 144, 13, 5, 82, 65, 78, 71, 75, + 251, 209, 9, 75, 10, 108, 5, 67, 69, 67, 65, 75, 172, 202, 5, 3, 87, 73, + 71, 254, 241, 10, 76, 249, 228, 2, 5, 80, 65, 78, 89, 65, 5, 133, 168, + 18, 3, 32, 84, 69, 18, 116, 4, 83, 85, 75, 85, 42, 84, 64, 4, 87, 85, 76, + 85, 246, 186, 16, 80, 137, 224, 1, 7, 68, 73, 82, 71, 65, 32, 77, 5, 201, + 182, 22, 5, 32, 77, 69, 78, 68, 6, 26, 65, 179, 188, 16, 79, 4, 154, 188, + 16, 82, 187, 162, 6, 76, 5, 25, 4, 32, 77, 69, 76, 2, 255, 171, 23, 73, + 4, 36, 3, 76, 76, 89, 179, 231, 19, 65, 2, 143, 202, 19, 70, 4, 168, 252, + 21, 2, 89, 83, 191, 98, 73, 6, 172, 192, 14, 2, 71, 71, 194, 135, 5, 80, + 191, 199, 3, 78, 142, 18, 74, 65, 178, 78, 69, 218, 1, 72, 214, 46, 73, 198, 6, 78, 50, 79, 111, 82, 202, 10, 200, 1, 5, 73, 84, 72, 73, 32, 234, 4, 78, 188, 45, 6, 84, 65, 75, 65, 78, 65, 208, 13, 3, 87, 73, 32, 220, - 8, 7, 89, 65, 72, 32, 76, 73, 32, 224, 201, 4, 6, 75, 84, 79, 86, 73, 75, - 135, 244, 17, 65, 136, 1, 204, 1, 7, 76, 69, 84, 84, 69, 82, 32, 178, 2, - 83, 150, 116, 68, 228, 243, 3, 2, 86, 79, 236, 137, 3, 11, 78, 85, 77, - 66, 69, 82, 32, 83, 73, 71, 78, 162, 202, 9, 65, 189, 211, 1, 6, 69, 78, - 85, 77, 69, 82, 90, 214, 1, 68, 190, 210, 19, 65, 150, 1, 84, 230, 5, 85, + 8, 7, 89, 65, 72, 32, 76, 73, 32, 148, 198, 4, 6, 75, 84, 79, 86, 73, 75, + 187, 239, 17, 65, 136, 1, 204, 1, 7, 76, 69, 84, 84, 69, 82, 32, 178, 2, + 83, 202, 112, 68, 228, 243, 3, 2, 86, 79, 236, 137, 3, 11, 78, 85, 77, + 66, 69, 82, 32, 83, 73, 71, 78, 214, 197, 9, 65, 189, 211, 1, 6, 69, 78, + 85, 77, 69, 82, 90, 214, 1, 68, 166, 202, 19, 65, 150, 1, 84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 2, 82, 138, 69, 72, 2, 76, 2, 77, 2, 86, 2, 89, 186, 2, 69, 3, - 79, 10, 38, 68, 210, 173, 23, 72, 187, 2, 65, 6, 222, 178, 21, 68, 242, - 250, 1, 72, 187, 2, 65, 12, 40, 4, 73, 71, 78, 32, 179, 156, 11, 69, 10, - 202, 145, 19, 67, 98, 78, 138, 216, 3, 65, 239, 1, 86, 232, 4, 42, 71, + 79, 10, 38, 68, 186, 165, 23, 72, 187, 2, 65, 6, 198, 170, 21, 68, 242, + 250, 1, 72, 187, 2, 65, 12, 40, 4, 73, 71, 78, 32, 155, 148, 11, 69, 10, + 178, 137, 19, 67, 98, 78, 138, 216, 3, 65, 239, 1, 86, 232, 4, 42, 71, 241, 39, 5, 78, 65, 68, 65, 32, 174, 3, 76, 11, 88, 73, 32, 82, 65, 68, - 73, 67, 65, 76, 32, 249, 226, 20, 2, 65, 82, 172, 3, 130, 2, 65, 94, 66, + 73, 67, 65, 76, 32, 225, 218, 20, 2, 65, 82, 172, 3, 130, 2, 65, 94, 66, 230, 2, 67, 150, 2, 68, 158, 3, 69, 198, 1, 70, 138, 2, 71, 146, 1, 72, 210, 2, 73, 76, 2, 74, 65, 34, 75, 30, 76, 230, 1, 77, 254, 1, 78, 62, 79, 102, 80, 110, 82, 166, 1, 83, 230, 6, 84, 226, 2, 86, 50, 87, 210, 2, - 89, 207, 251, 21, 85, 10, 56, 2, 82, 82, 198, 252, 21, 71, 202, 104, 78, - 207, 47, 88, 4, 138, 173, 22, 79, 207, 1, 73, 34, 58, 65, 38, 73, 46, 76, - 54, 79, 102, 82, 207, 220, 21, 69, 4, 242, 202, 5, 77, 183, 142, 14, 68, - 6, 158, 240, 21, 84, 238, 115, 82, 163, 70, 71, 6, 210, 239, 19, 79, 170, - 136, 2, 65, 179, 155, 1, 85, 10, 62, 76, 226, 140, 23, 65, 218, 5, 78, - 142, 5, 68, 203, 17, 87, 2, 253, 219, 3, 4, 84, 32, 79, 70, 6, 42, 73, - 158, 248, 9, 65, 155, 197, 11, 85, 2, 219, 255, 13, 83, 28, 58, 65, 70, - 76, 74, 79, 206, 181, 10, 72, 183, 129, 11, 73, 6, 38, 85, 154, 139, 23, - 82, 219, 5, 86, 2, 141, 128, 22, 2, 76, 68, 8, 42, 65, 190, 190, 7, 73, - 167, 210, 14, 79, 4, 250, 166, 23, 78, 3, 87, 10, 130, 130, 22, 82, 148, + 89, 183, 243, 21, 85, 10, 56, 2, 82, 82, 174, 244, 21, 71, 202, 104, 78, + 207, 47, 88, 4, 242, 164, 22, 79, 207, 1, 73, 34, 58, 65, 38, 73, 46, 76, + 54, 79, 102, 82, 183, 212, 21, 69, 4, 166, 199, 5, 77, 235, 137, 14, 68, + 6, 134, 232, 21, 84, 238, 115, 82, 163, 70, 71, 6, 186, 231, 19, 79, 170, + 136, 2, 65, 179, 155, 1, 85, 10, 62, 76, 202, 132, 23, 65, 218, 5, 78, + 142, 5, 68, 203, 17, 87, 2, 177, 216, 3, 4, 84, 32, 79, 70, 6, 42, 73, + 134, 240, 9, 65, 155, 197, 11, 85, 2, 195, 247, 13, 83, 28, 58, 65, 70, + 76, 74, 79, 182, 173, 10, 72, 183, 129, 11, 73, 6, 38, 85, 130, 131, 23, + 82, 219, 5, 86, 2, 245, 247, 21, 2, 76, 68, 8, 42, 65, 242, 186, 7, 73, + 219, 205, 14, 79, 4, 226, 158, 23, 78, 3, 87, 10, 234, 249, 21, 82, 148, 2, 2, 77, 80, 222, 100, 86, 134, 5, 76, 235, 56, 87, 34, 38, 69, 38, 73, - 98, 79, 195, 1, 82, 4, 242, 160, 21, 65, 159, 204, 1, 69, 8, 38, 83, 226, - 128, 14, 86, 175, 2, 80, 4, 208, 192, 19, 5, 84, 73, 78, 71, 85, 207, - 228, 3, 72, 16, 94, 84, 76, 3, 85, 66, 76, 138, 130, 13, 87, 252, 208, 9, - 2, 32, 78, 222, 23, 79, 223, 56, 71, 7, 25, 4, 84, 69, 68, 32, 4, 168, - 187, 7, 3, 67, 76, 73, 155, 165, 15, 84, 2, 175, 134, 4, 69, 6, 242, 232, + 98, 79, 195, 1, 82, 4, 218, 152, 21, 65, 159, 204, 1, 69, 8, 38, 83, 202, + 248, 13, 86, 175, 2, 80, 4, 184, 184, 19, 5, 84, 73, 78, 71, 85, 207, + 228, 3, 72, 16, 94, 84, 76, 3, 85, 66, 76, 242, 249, 12, 87, 252, 208, 9, + 2, 32, 78, 222, 23, 79, 223, 56, 71, 7, 25, 4, 84, 69, 68, 32, 4, 220, + 183, 7, 3, 67, 76, 73, 207, 160, 15, 84, 2, 227, 130, 4, 69, 6, 218, 224, 21, 65, 222, 169, 1, 85, 219, 16, 89, 20, 106, 65, 38, 78, 32, 3, 86, 69, - 78, 140, 131, 9, 6, 77, 66, 82, 79, 73, 68, 250, 243, 13, 73, 243, 19, - 89, 6, 170, 233, 16, 82, 227, 184, 6, 84, 4, 178, 25, 67, 203, 202, 22, - 84, 5, 207, 208, 22, 73, 28, 74, 65, 50, 73, 62, 76, 38, 82, 170, 20, 69, - 250, 186, 22, 79, 223, 23, 85, 6, 146, 255, 13, 84, 130, 139, 9, 67, 131, - 22, 78, 8, 234, 240, 12, 69, 150, 133, 10, 71, 230, 19, 82, 199, 21, 83, - 4, 230, 214, 21, 85, 151, 201, 1, 89, 4, 180, 239, 21, 2, 65, 71, 207, - 175, 1, 79, 14, 58, 79, 52, 2, 82, 65, 190, 176, 19, 72, 239, 164, 2, 65, - 7, 206, 216, 22, 76, 241, 34, 5, 32, 83, 76, 79, 87, 4, 218, 206, 22, 73, + 78, 244, 250, 8, 6, 77, 66, 82, 79, 73, 68, 250, 243, 13, 73, 243, 19, + 89, 6, 146, 225, 16, 82, 227, 184, 6, 84, 4, 178, 25, 67, 179, 194, 22, + 84, 5, 183, 200, 22, 73, 28, 74, 65, 50, 73, 62, 76, 38, 82, 170, 20, 69, + 226, 178, 22, 79, 223, 23, 85, 6, 250, 246, 13, 84, 130, 139, 9, 67, 131, + 22, 78, 8, 210, 232, 12, 69, 150, 133, 10, 71, 230, 19, 82, 199, 21, 83, + 4, 206, 206, 21, 85, 151, 201, 1, 89, 4, 156, 231, 21, 2, 65, 71, 207, + 175, 1, 79, 14, 58, 79, 52, 2, 82, 65, 166, 168, 19, 72, 239, 164, 2, 65, + 7, 182, 208, 22, 76, 241, 34, 5, 32, 83, 76, 79, 87, 4, 194, 198, 22, 73, 135, 18, 83, 22, 58, 65, 142, 1, 69, 60, 5, 73, 68, 73, 78, 71, 19, 79, - 8, 38, 76, 154, 215, 22, 78, 199, 13, 73, 4, 34, 70, 165, 132, 22, 2, 66, - 69, 2, 41, 8, 32, 84, 82, 69, 69, 32, 84, 82, 2, 135, 184, 19, 85, 6, 26, - 65, 175, 156, 23, 77, 4, 138, 128, 23, 82, 175, 28, 68, 2, 195, 19, 32, - 6, 26, 82, 215, 152, 23, 79, 4, 150, 133, 23, 83, 215, 22, 78, 6, 26, 78, - 223, 132, 23, 67, 4, 26, 83, 135, 154, 23, 67, 2, 135, 138, 22, 69, 4, - 170, 132, 23, 68, 215, 22, 82, 2, 133, 179, 5, 2, 78, 73, 22, 46, 65, 34, - 69, 78, 73, 41, 3, 79, 78, 71, 4, 190, 131, 23, 77, 191, 19, 67, 8, 38, - 65, 242, 219, 22, 71, 199, 58, 69, 4, 246, 247, 13, 84, 215, 161, 9, 70, - 6, 210, 130, 23, 70, 2, 78, 215, 22, 68, 5, 153, 204, 11, 3, 32, 83, 84, - 22, 42, 69, 34, 73, 46, 79, 139, 200, 22, 65, 4, 198, 200, 22, 76, 195, - 51, 65, 4, 128, 243, 11, 2, 78, 73, 139, 195, 9, 76, 12, 34, 82, 34, 85, - 199, 199, 22, 79, 4, 134, 244, 21, 84, 187, 82, 78, 6, 26, 78, 251, 149, - 23, 84, 4, 158, 232, 21, 84, 235, 174, 1, 68, 6, 26, 79, 159, 250, 22, - 69, 4, 242, 255, 22, 83, 215, 22, 84, 10, 40, 2, 78, 69, 22, 80, 203, - 207, 22, 76, 5, 199, 157, 6, 83, 4, 190, 178, 10, 80, 247, 193, 2, 69, - 10, 54, 82, 230, 248, 21, 76, 166, 1, 79, 179, 154, 1, 73, 4, 148, 207, - 12, 2, 73, 86, 181, 141, 7, 2, 79, 70, 18, 62, 65, 42, 73, 234, 173, 10, - 79, 170, 150, 12, 85, 195, 9, 69, 6, 182, 196, 22, 73, 226, 79, 80, 3, - 84, 6, 156, 242, 12, 3, 71, 72, 84, 230, 227, 9, 86, 155, 39, 67, 74, + 8, 38, 76, 130, 207, 22, 78, 199, 13, 73, 4, 34, 70, 141, 252, 21, 2, 66, + 69, 2, 41, 8, 32, 84, 82, 69, 69, 32, 84, 82, 2, 239, 175, 19, 85, 6, 26, + 65, 151, 148, 23, 77, 4, 242, 247, 22, 82, 175, 28, 68, 2, 195, 19, 32, + 6, 26, 82, 191, 144, 23, 79, 4, 254, 252, 22, 83, 215, 22, 78, 6, 26, 78, + 199, 252, 22, 67, 4, 26, 83, 239, 145, 23, 67, 2, 239, 129, 22, 69, 4, + 146, 252, 22, 68, 215, 22, 82, 2, 185, 175, 5, 2, 78, 73, 22, 46, 65, 34, + 69, 78, 73, 41, 3, 79, 78, 71, 4, 166, 251, 22, 77, 191, 19, 67, 8, 38, + 65, 218, 211, 22, 71, 199, 58, 69, 4, 222, 239, 13, 84, 215, 161, 9, 70, + 6, 186, 250, 22, 70, 2, 78, 215, 22, 68, 5, 129, 196, 11, 3, 32, 83, 84, + 22, 42, 69, 34, 73, 46, 79, 243, 191, 22, 65, 4, 174, 192, 22, 76, 195, + 51, 65, 4, 232, 234, 11, 2, 78, 73, 139, 195, 9, 76, 12, 34, 82, 34, 85, + 175, 191, 22, 79, 4, 238, 235, 21, 84, 187, 82, 78, 6, 26, 78, 227, 141, + 23, 84, 4, 134, 224, 21, 84, 235, 174, 1, 68, 6, 26, 79, 135, 242, 22, + 69, 4, 218, 247, 22, 83, 215, 22, 84, 10, 40, 2, 78, 69, 22, 80, 179, + 199, 22, 76, 5, 251, 153, 6, 83, 4, 166, 170, 10, 80, 247, 193, 2, 69, + 10, 54, 82, 206, 240, 21, 76, 166, 1, 79, 179, 154, 1, 73, 4, 252, 198, + 12, 2, 73, 86, 181, 141, 7, 2, 79, 70, 18, 62, 65, 42, 73, 210, 165, 10, + 79, 170, 150, 12, 85, 195, 9, 69, 6, 158, 188, 22, 73, 226, 79, 80, 3, + 84, 6, 132, 234, 12, 3, 71, 72, 84, 230, 227, 9, 86, 155, 39, 67, 74, 170, 1, 65, 86, 67, 54, 69, 62, 72, 178, 1, 73, 46, 76, 62, 80, 106, 84, - 142, 245, 17, 87, 158, 159, 1, 78, 234, 64, 79, 130, 174, 1, 77, 226, - 103, 81, 130, 35, 75, 247, 47, 85, 6, 144, 195, 3, 9, 67, 82, 73, 70, 73, - 67, 73, 65, 76, 202, 178, 19, 76, 175, 28, 89, 4, 224, 246, 10, 2, 82, - 73, 249, 218, 5, 2, 72, 79, 8, 170, 210, 21, 67, 134, 51, 65, 174, 10, - 76, 167, 129, 1, 69, 10, 18, 69, 39, 79, 4, 222, 132, 22, 76, 199, 139, - 1, 69, 6, 40, 4, 82, 84, 32, 84, 183, 243, 22, 79, 4, 44, 5, 65, 73, 76, - 69, 68, 207, 133, 16, 72, 2, 201, 138, 21, 2, 32, 66, 4, 184, 247, 17, 2, - 67, 75, 195, 148, 5, 76, 6, 26, 65, 211, 209, 22, 73, 4, 246, 247, 22, - 86, 199, 21, 83, 10, 50, 69, 34, 73, 190, 148, 19, 82, 179, 169, 3, 79, - 4, 154, 213, 22, 65, 183, 22, 69, 2, 159, 241, 22, 82, 12, 34, 69, 34, - 79, 239, 252, 21, 65, 4, 198, 252, 22, 65, 219, 16, 80, 6, 26, 80, 147, - 246, 22, 78, 5, 223, 187, 22, 80, 30, 82, 65, 98, 73, 34, 79, 38, 82, 52, - 2, 85, 82, 32, 2, 87, 79, 167, 186, 22, 69, 6, 38, 78, 154, 229, 21, 66, - 239, 26, 76, 2, 33, 6, 78, 69, 68, 32, 76, 69, 2, 207, 233, 13, 65, 4, - 174, 205, 22, 71, 155, 39, 76, 4, 146, 251, 18, 78, 243, 138, 2, 79, 6, - 190, 240, 16, 73, 150, 232, 4, 65, 179, 155, 1, 69, 4, 134, 190, 21, 66, - 227, 37, 84, 5, 187, 199, 19, 32, 4, 254, 220, 12, 65, 209, 157, 5, 3, + 246, 236, 17, 87, 158, 159, 1, 78, 234, 64, 79, 130, 174, 1, 77, 226, + 103, 81, 130, 35, 75, 247, 47, 85, 6, 196, 191, 3, 9, 67, 82, 73, 70, 73, + 67, 73, 65, 76, 254, 173, 19, 76, 175, 28, 89, 4, 200, 238, 10, 2, 82, + 73, 249, 218, 5, 2, 72, 79, 8, 146, 202, 21, 67, 134, 51, 65, 174, 10, + 76, 167, 129, 1, 69, 10, 18, 69, 39, 79, 4, 198, 252, 21, 76, 199, 139, + 1, 69, 6, 40, 4, 82, 84, 32, 84, 159, 235, 22, 79, 4, 44, 5, 65, 73, 76, + 69, 68, 183, 253, 15, 72, 2, 177, 130, 21, 2, 32, 66, 4, 160, 239, 17, 2, + 67, 75, 195, 148, 5, 76, 6, 26, 65, 187, 201, 22, 73, 4, 222, 239, 22, + 86, 199, 21, 83, 10, 50, 69, 34, 73, 166, 140, 19, 82, 179, 169, 3, 79, + 4, 130, 205, 22, 65, 183, 22, 69, 2, 135, 233, 22, 82, 12, 34, 69, 34, + 79, 215, 244, 21, 65, 4, 174, 244, 22, 65, 219, 16, 80, 6, 26, 80, 251, + 237, 22, 78, 5, 199, 179, 22, 80, 30, 82, 65, 98, 73, 34, 79, 38, 82, 52, + 2, 85, 82, 32, 2, 87, 79, 143, 178, 22, 69, 6, 38, 78, 130, 221, 21, 66, + 239, 26, 76, 2, 33, 6, 78, 69, 68, 32, 76, 69, 2, 183, 225, 13, 65, 4, + 150, 197, 22, 71, 155, 39, 76, 4, 250, 242, 18, 78, 243, 138, 2, 79, 6, + 166, 232, 16, 73, 150, 232, 4, 65, 179, 155, 1, 69, 4, 238, 181, 21, 66, + 227, 37, 84, 5, 163, 191, 19, 32, 4, 230, 212, 12, 65, 209, 157, 5, 3, 73, 76, 76, 26, 58, 65, 110, 69, 42, 72, 32, 2, 73, 78, 30, 79, 39, 82, - 6, 32, 2, 76, 75, 247, 202, 22, 84, 5, 11, 32, 2, 11, 69, 2, 17, 2, 78, - 67, 2, 237, 243, 17, 2, 76, 79, 4, 168, 184, 22, 2, 65, 80, 195, 51, 83, - 4, 218, 190, 21, 73, 231, 63, 69, 4, 206, 135, 23, 68, 3, 69, 4, 150, - 187, 21, 77, 135, 201, 1, 82, 4, 150, 182, 22, 79, 239, 80, 65, 2, 141, - 229, 20, 2, 69, 76, 186, 1, 92, 2, 76, 69, 148, 2, 5, 83, 73, 71, 78, 32, - 170, 207, 17, 65, 186, 9, 86, 247, 182, 3, 68, 110, 44, 5, 84, 84, 69, - 82, 32, 219, 195, 22, 78, 108, 190, 214, 17, 78, 142, 209, 1, 65, 38, 68, + 6, 32, 2, 76, 75, 223, 194, 22, 84, 5, 11, 32, 2, 11, 69, 2, 17, 2, 78, + 67, 2, 213, 235, 17, 2, 76, 79, 4, 144, 176, 22, 2, 65, 80, 195, 51, 83, + 4, 194, 182, 21, 73, 231, 63, 69, 4, 182, 255, 22, 68, 3, 69, 4, 254, + 178, 21, 77, 135, 201, 1, 82, 4, 254, 173, 22, 79, 239, 80, 65, 2, 245, + 220, 20, 2, 69, 76, 186, 1, 92, 2, 76, 69, 148, 2, 5, 83, 73, 71, 78, 32, + 146, 199, 17, 65, 186, 9, 86, 247, 182, 3, 68, 110, 44, 5, 84, 84, 69, + 82, 32, 195, 187, 22, 78, 108, 166, 206, 17, 78, 142, 209, 1, 65, 38, 68, 46, 76, 38, 82, 34, 84, 46, 86, 186, 5, 85, 206, 141, 1, 79, 238, 60, 73, 182, 196, 1, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 162, 7, 69, - 234, 61, 70, 2, 72, 2, 77, 3, 89, 22, 94, 67, 138, 1, 83, 246, 228, 18, + 234, 61, 70, 2, 72, 2, 77, 3, 89, 22, 94, 67, 138, 1, 83, 222, 220, 18, 78, 190, 66, 65, 190, 158, 1, 74, 150, 3, 85, 235, 245, 1, 86, 4, 100, 19, 79, 77, 66, 73, 78, 73, 78, 71, 32, 65, 78, 85, 83, 86, 65, 82, 65, - 32, 65, 195, 228, 18, 65, 2, 173, 253, 19, 3, 66, 79, 86, 4, 216, 198, + 32, 65, 171, 220, 18, 65, 2, 149, 245, 19, 3, 66, 79, 86, 4, 192, 190, 12, 6, 80, 65, 67, 73, 78, 71, 255, 143, 5, 73, 162, 2, 62, 32, 173, 11, 10, 45, 72, 73, 82, 65, 71, 65, 78, 65, 32, 154, 2, 140, 1, 7, 76, 69, - 84, 84, 69, 82, 32, 242, 9, 86, 232, 130, 19, 10, 68, 73, 71, 82, 65, 80, + 84, 84, 69, 82, 32, 242, 9, 86, 208, 250, 18, 10, 68, 73, 71, 82, 65, 80, 72, 32, 75, 79, 238, 204, 1, 73, 191, 146, 1, 77, 146, 2, 186, 1, 65, 178, 1, 66, 106, 77, 186, 2, 78, 54, 83, 226, 1, 68, 2, 71, 2, 72, 2, 75, - 2, 80, 2, 82, 2, 84, 2, 86, 2, 90, 126, 87, 46, 89, 150, 246, 22, 69, 2, + 2, 80, 2, 82, 2, 84, 2, 86, 2, 90, 126, 87, 46, 89, 254, 237, 22, 69, 2, 73, 2, 79, 3, 85, 19, 60, 4, 73, 78, 85, 32, 45, 7, 82, 67, 72, 65, 73, - 67, 32, 8, 130, 7, 84, 138, 224, 22, 67, 215, 22, 80, 8, 38, 89, 166, - 216, 22, 87, 235, 36, 69, 4, 138, 253, 22, 69, 3, 73, 20, 50, 73, 190, - 252, 22, 65, 2, 69, 2, 79, 3, 85, 13, 253, 4, 9, 68, 65, 75, 85, 79, 78, - 32, 78, 71, 36, 50, 73, 214, 251, 22, 65, 2, 69, 2, 79, 3, 85, 29, 29, 5, + 67, 32, 8, 130, 7, 84, 242, 215, 22, 67, 215, 22, 80, 8, 38, 89, 142, + 208, 22, 87, 235, 36, 69, 4, 242, 244, 22, 69, 3, 73, 20, 50, 73, 166, + 244, 22, 65, 2, 69, 2, 79, 3, 85, 13, 253, 4, 9, 68, 65, 75, 85, 79, 78, + 32, 78, 71, 36, 50, 73, 190, 243, 22, 65, 2, 69, 2, 79, 3, 85, 29, 29, 5, 78, 78, 65, 78, 32, 26, 96, 15, 78, 65, 83, 65, 76, 73, 90, 69, 68, 32, - 84, 79, 78, 69, 45, 69, 5, 84, 79, 78, 69, 45, 14, 206, 250, 22, 49, 2, - 50, 2, 51, 2, 52, 2, 53, 2, 55, 3, 56, 12, 138, 250, 22, 50, 2, 51, 2, - 52, 2, 53, 2, 55, 3, 56, 13, 206, 249, 22, 65, 2, 69, 2, 73, 2, 79, 3, - 85, 76, 76, 5, 77, 65, 76, 76, 32, 206, 248, 22, 65, 2, 69, 2, 73, 2, 79, - 3, 85, 66, 142, 1, 72, 2, 82, 54, 75, 46, 84, 30, 87, 46, 89, 154, 159, + 84, 79, 78, 69, 45, 69, 5, 84, 79, 78, 69, 45, 14, 182, 242, 22, 49, 2, + 50, 2, 51, 2, 52, 2, 53, 2, 55, 3, 56, 12, 242, 241, 22, 50, 2, 51, 2, + 52, 2, 53, 2, 55, 3, 56, 13, 182, 241, 22, 65, 2, 69, 2, 73, 2, 79, 3, + 85, 76, 76, 5, 77, 65, 76, 76, 32, 182, 240, 22, 65, 2, 69, 2, 73, 2, 79, + 3, 85, 66, 142, 1, 72, 2, 82, 54, 75, 46, 84, 30, 87, 46, 89, 130, 151, 19, 78, 198, 150, 3, 83, 210, 27, 77, 234, 36, 65, 2, 69, 2, 73, 2, 79, - 3, 85, 10, 186, 247, 22, 65, 2, 69, 2, 73, 2, 79, 3, 85, 8, 134, 247, 22, - 65, 2, 69, 2, 79, 3, 85, 4, 218, 246, 22, 79, 3, 85, 8, 190, 246, 22, 65, - 2, 69, 2, 73, 3, 79, 6, 146, 246, 22, 65, 2, 79, 3, 85, 2, 189, 207, 20, + 3, 85, 10, 162, 239, 22, 65, 2, 69, 2, 73, 2, 79, 3, 85, 8, 238, 238, 22, + 65, 2, 69, 2, 79, 3, 85, 4, 194, 238, 22, 79, 3, 85, 8, 166, 238, 22, 65, + 2, 69, 2, 73, 3, 79, 6, 250, 237, 22, 65, 2, 79, 3, 85, 2, 165, 199, 20, 5, 79, 73, 67, 69, 68, 8, 52, 5, 68, 79, 85, 66, 76, 22, 80, 38, 83, 35, - 86, 2, 251, 128, 8, 69, 2, 89, 6, 82, 79, 76, 79, 78, 71, 2, 29, 5, 69, + 86, 2, 175, 253, 7, 69, 2, 89, 6, 82, 79, 76, 79, 78, 71, 2, 29, 5, 69, 77, 73, 45, 86, 2, 21, 3, 79, 73, 67, 2, 33, 6, 69, 68, 32, 83, 79, 85, - 2, 223, 167, 22, 78, 174, 1, 216, 1, 7, 76, 69, 84, 84, 69, 82, 32, 128, + 2, 199, 159, 22, 78, 174, 1, 216, 1, 7, 76, 69, 84, 84, 69, 82, 32, 128, 2, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 148, 3, 5, 83, 73, - 71, 78, 32, 88, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 162, 171, - 12, 68, 151, 224, 6, 67, 94, 226, 1, 65, 198, 166, 4, 74, 146, 236, 14, + 71, 78, 32, 88, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 138, 163, + 12, 68, 151, 224, 6, 67, 94, 226, 1, 65, 250, 162, 4, 74, 198, 231, 14, 68, 114, 84, 230, 5, 85, 22, 86, 166, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82, - 2, 87, 2, 89, 186, 2, 69, 3, 79, 7, 162, 240, 22, 65, 3, 73, 22, 122, 67, + 2, 87, 2, 89, 186, 2, 69, 3, 79, 7, 138, 232, 22, 65, 3, 73, 22, 122, 67, 90, 68, 58, 70, 54, 83, 20, 12, 65, 76, 84, 69, 82, 78, 65, 84, 69, 32, - 83, 69, 237, 217, 21, 4, 84, 82, 73, 80, 4, 56, 8, 76, 79, 83, 73, 78, - 71, 32, 83, 199, 154, 21, 73, 2, 229, 226, 21, 2, 80, 73, 4, 11, 79, 4, - 220, 218, 21, 2, 85, 66, 203, 147, 1, 84, 4, 200, 153, 21, 5, 73, 76, 76, - 69, 68, 163, 57, 76, 6, 18, 69, 23, 80, 2, 187, 245, 10, 67, 4, 140, 151, - 4, 2, 65, 67, 171, 202, 17, 73, 12, 222, 226, 7, 75, 182, 236, 10, 67, - 98, 78, 238, 64, 82, 170, 162, 1, 86, 247, 244, 1, 65, 20, 66, 65, 246, - 164, 4, 86, 234, 239, 14, 69, 2, 85, 187, 202, 1, 73, 6, 240, 233, 16, 8, + 83, 69, 213, 209, 21, 4, 84, 82, 73, 80, 4, 56, 8, 76, 79, 83, 73, 78, + 71, 32, 83, 175, 146, 21, 73, 2, 205, 218, 21, 2, 80, 73, 4, 11, 79, 4, + 196, 210, 21, 2, 85, 66, 203, 147, 1, 84, 4, 176, 145, 21, 5, 73, 76, 76, + 69, 68, 163, 57, 76, 6, 18, 69, 23, 80, 2, 163, 237, 10, 67, 4, 192, 147, + 4, 2, 65, 67, 223, 197, 17, 73, 12, 146, 223, 7, 75, 234, 231, 10, 67, + 98, 78, 238, 64, 82, 170, 162, 1, 86, 247, 244, 1, 65, 20, 66, 65, 170, + 161, 4, 86, 158, 235, 14, 69, 2, 85, 187, 202, 1, 73, 6, 216, 225, 16, 8, 76, 84, 69, 82, 78, 65, 84, 69, 230, 129, 6, 65, 3, 73, 96, 148, 1, 7, 76, 69, 84, 84, 69, 82, 32, 200, 1, 5, 83, 73, 71, 78, 32, 44, 5, 84, 79, - 78, 69, 32, 92, 6, 86, 79, 87, 69, 76, 32, 159, 243, 20, 68, 56, 138, - 206, 18, 79, 186, 7, 72, 158, 151, 2, 78, 214, 181, 1, 75, 2, 80, 2, 83, + 78, 69, 32, 92, 6, 86, 79, 87, 69, 76, 32, 135, 235, 20, 68, 56, 242, + 197, 18, 79, 186, 7, 72, 158, 151, 2, 78, 214, 181, 1, 75, 2, 80, 2, 83, 2, 84, 138, 69, 66, 2, 67, 2, 68, 2, 71, 2, 76, 2, 77, 2, 82, 2, 86, 2, - 87, 2, 89, 2, 90, 186, 2, 65, 3, 73, 4, 130, 243, 4, 67, 205, 242, 17, 2, - 83, 72, 6, 36, 5, 67, 65, 76, 89, 65, 23, 80, 5, 17, 2, 32, 80, 2, 249, - 240, 17, 3, 76, 79, 80, 10, 130, 167, 22, 69, 2, 85, 163, 64, 79, 36, 24, - 2, 76, 86, 23, 89, 2, 215, 234, 20, 73, 35, 68, 5, 66, 79, 65, 82, 68, - 36, 4, 67, 65, 80, 32, 243, 245, 2, 72, 5, 193, 157, 19, 4, 32, 65, 78, - 68, 26, 166, 154, 17, 78, 138, 180, 3, 65, 170, 35, 68, 135, 30, 84, 188, - 13, 202, 1, 65, 224, 9, 18, 73, 84, 65, 78, 32, 83, 77, 65, 76, 76, 32, - 83, 67, 82, 73, 80, 84, 32, 204, 3, 4, 77, 69, 82, 32, 204, 25, 5, 79, - 74, 75, 73, 32, 141, 6, 8, 85, 68, 65, 87, 65, 68, 73, 32, 138, 1, 56, 8, - 82, 79, 83, 72, 84, 72, 73, 32, 147, 190, 22, 78, 136, 1, 220, 1, 4, 68, + 87, 2, 89, 2, 90, 186, 2, 65, 3, 73, 4, 182, 239, 4, 67, 129, 238, 17, 2, + 83, 72, 6, 36, 5, 67, 65, 76, 89, 65, 23, 80, 5, 17, 2, 32, 80, 2, 225, + 232, 17, 3, 76, 79, 80, 10, 234, 158, 22, 69, 2, 85, 163, 64, 79, 36, 24, + 2, 76, 86, 23, 89, 2, 191, 226, 20, 73, 35, 68, 5, 66, 79, 65, 82, 68, + 36, 4, 67, 65, 80, 32, 167, 242, 2, 72, 5, 169, 149, 19, 4, 32, 65, 78, + 68, 26, 142, 146, 17, 78, 138, 180, 3, 65, 170, 35, 68, 135, 30, 84, 142, + 6, 202, 1, 65, 224, 9, 4, 77, 69, 82, 32, 204, 25, 5, 79, 74, 75, 73, 32, + 140, 6, 8, 85, 68, 65, 87, 65, 68, 73, 32, 169, 172, 7, 17, 73, 84, 65, + 78, 32, 83, 77, 65, 76, 76, 32, 83, 67, 82, 73, 80, 84, 138, 1, 56, 8, + 82, 79, 83, 72, 84, 72, 73, 32, 251, 181, 22, 78, 136, 1, 220, 1, 4, 68, 73, 71, 73, 20, 7, 76, 69, 84, 84, 69, 82, 32, 144, 2, 7, 78, 85, 77, 66, 69, 82, 32, 36, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 136, - 2, 5, 83, 73, 71, 78, 32, 210, 1, 86, 159, 201, 8, 70, 8, 243, 146, 16, - 84, 74, 182, 1, 75, 42, 84, 218, 140, 7, 78, 150, 245, 11, 68, 194, 149, + 2, 5, 83, 73, 71, 78, 32, 210, 1, 86, 135, 193, 8, 70, 8, 219, 138, 16, + 84, 74, 182, 1, 75, 42, 84, 142, 137, 7, 78, 202, 240, 11, 68, 194, 149, 3, 83, 82, 66, 2, 67, 2, 71, 2, 80, 2, 86, 138, 69, 72, 2, 74, 2, 76, 2, - 77, 2, 82, 2, 89, 2, 90, 187, 2, 65, 6, 170, 221, 22, 72, 2, 75, 187, 2, - 65, 12, 218, 130, 19, 84, 170, 218, 3, 72, 187, 2, 65, 8, 186, 215, 14, + 77, 2, 82, 2, 89, 2, 90, 187, 2, 65, 6, 146, 213, 22, 72, 2, 75, 187, 2, + 65, 12, 194, 250, 18, 84, 170, 218, 3, 72, 187, 2, 65, 8, 162, 207, 14, 84, 243, 170, 2, 79, 18, 70, 67, 74, 68, 66, 76, 36, 5, 77, 65, 78, 71, - 65, 163, 136, 21, 83, 4, 26, 82, 251, 137, 21, 73, 2, 173, 186, 21, 6, - 69, 83, 67, 69, 78, 84, 6, 26, 79, 199, 253, 18, 65, 4, 142, 253, 18, 85, - 175, 224, 3, 84, 4, 214, 227, 6, 79, 247, 195, 7, 73, 2, 227, 159, 21, - 76, 12, 72, 2, 66, 65, 22, 67, 20, 2, 68, 79, 130, 162, 20, 86, 247, 244, - 1, 65, 2, 143, 223, 21, 82, 2, 167, 154, 6, 65, 4, 44, 5, 85, 66, 76, 69, - 32, 167, 170, 20, 84, 2, 21, 3, 82, 73, 78, 2, 139, 170, 20, 71, 14, 44, - 5, 79, 87, 69, 76, 32, 199, 158, 20, 73, 12, 44, 5, 83, 73, 71, 78, 32, - 183, 152, 22, 76, 10, 202, 147, 4, 86, 230, 198, 18, 69, 2, 73, 2, 79, 3, - 85, 176, 7, 72, 12, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 147, - 207, 7, 70, 174, 7, 22, 66, 147, 1, 67, 128, 4, 142, 254, 7, 48, 2, 49, - 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, - 67, 2, 68, 2, 69, 3, 70, 174, 3, 142, 1, 68, 242, 251, 7, 48, 2, 49, 2, - 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, - 211, 217, 13, 70, 12, 226, 214, 22, 48, 2, 49, 2, 50, 2, 51, 2, 52, 3, - 53, 246, 2, 202, 1, 67, 240, 2, 18, 73, 78, 68, 69, 80, 69, 78, 68, 69, + 65, 139, 128, 21, 83, 4, 26, 82, 227, 129, 21, 73, 2, 149, 178, 21, 6, + 69, 83, 67, 69, 78, 84, 6, 26, 79, 175, 245, 18, 65, 4, 246, 244, 18, 85, + 175, 224, 3, 84, 4, 138, 224, 6, 79, 171, 191, 7, 73, 2, 203, 151, 21, + 76, 12, 72, 2, 66, 65, 22, 67, 20, 2, 68, 79, 234, 153, 20, 86, 247, 244, + 1, 65, 2, 247, 214, 21, 82, 2, 219, 150, 6, 65, 4, 44, 5, 85, 66, 76, 69, + 32, 143, 162, 20, 84, 2, 21, 3, 82, 73, 78, 2, 243, 161, 20, 71, 14, 44, + 5, 79, 87, 69, 76, 32, 175, 150, 20, 73, 12, 44, 5, 83, 73, 71, 78, 32, + 159, 144, 22, 76, 10, 254, 143, 4, 86, 154, 194, 18, 69, 2, 73, 2, 79, 3, + 85, 246, 2, 202, 1, 67, 240, 2, 18, 73, 78, 68, 69, 80, 69, 78, 68, 69, 78, 84, 32, 86, 79, 87, 69, 76, 32, 220, 2, 7, 76, 69, 84, 84, 69, 82, - 32, 254, 2, 83, 208, 12, 6, 86, 79, 87, 69, 76, 32, 187, 203, 20, 68, 70, + 32, 254, 2, 83, 208, 12, 6, 86, 79, 87, 69, 76, 32, 239, 198, 20, 68, 70, 176, 1, 20, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 67, - 79, 69, 78, 71, 32, 245, 189, 17, 17, 85, 82, 82, 69, 78, 67, 89, 32, 83, + 79, 69, 78, 71, 32, 169, 185, 17, 17, 85, 82, 82, 69, 78, 67, 89, 32, 83, 89, 77, 66, 79, 76, 32, 82, 73, 68, 138, 1, 78, 154, 4, 67, 2, 75, 90, - 80, 74, 84, 54, 68, 2, 76, 158, 132, 22, 83, 158, 41, 77, 2, 82, 2, 86, - 2, 89, 190, 28, 66, 3, 72, 8, 162, 179, 22, 71, 2, 89, 246, 30, 65, 3, + 80, 74, 84, 54, 68, 2, 76, 210, 255, 21, 83, 158, 41, 77, 2, 82, 2, 86, + 2, 89, 190, 28, 66, 3, 72, 8, 214, 174, 22, 71, 2, 89, 246, 30, 65, 3, 79, 42, 82, 81, 196, 1, 11, 83, 73, 71, 78, 32, 67, 79, 69, 78, 71, 32, - 50, 76, 3, 82, 26, 82, 65, 44, 6, 79, 79, 32, 84, 89, 80, 34, 85, 178, - 195, 20, 73, 199, 140, 2, 69, 8, 190, 208, 22, 65, 2, 73, 2, 81, 3, 85, - 4, 11, 69, 4, 199, 149, 10, 32, 9, 166, 192, 7, 85, 207, 143, 15, 75, 8, - 18, 81, 31, 82, 4, 186, 207, 22, 69, 3, 85, 4, 131, 190, 18, 89, 70, 138, - 1, 67, 2, 75, 42, 78, 50, 80, 30, 83, 46, 84, 54, 68, 2, 76, 186, 173, + 50, 76, 3, 82, 26, 82, 65, 44, 6, 79, 79, 32, 84, 89, 80, 34, 85, 230, + 190, 20, 73, 199, 140, 2, 69, 8, 242, 203, 22, 65, 2, 73, 2, 81, 3, 85, + 4, 11, 69, 4, 251, 144, 10, 32, 9, 166, 192, 7, 85, 131, 139, 15, 75, 8, + 18, 81, 31, 82, 4, 238, 202, 22, 69, 3, 85, 4, 183, 185, 18, 89, 70, 138, + 1, 67, 2, 75, 42, 78, 50, 80, 30, 83, 46, 84, 54, 68, 2, 76, 238, 168, 22, 77, 2, 82, 2, 86, 2, 89, 190, 28, 66, 2, 72, 3, 81, 8, 210, 1, 72, - 174, 204, 22, 65, 3, 79, 8, 226, 174, 22, 71, 2, 78, 2, 89, 247, 30, 79, - 6, 122, 72, 175, 204, 22, 79, 6, 150, 174, 22, 83, 190, 28, 72, 187, 2, - 65, 12, 50, 72, 0, 2, 84, 72, 174, 204, 22, 65, 3, 79, 4, 170, 204, 22, + 226, 199, 22, 65, 3, 79, 8, 150, 170, 22, 71, 2, 78, 2, 89, 247, 30, 79, + 6, 122, 72, 227, 199, 22, 79, 6, 202, 169, 22, 83, 190, 28, 72, 187, 2, + 65, 12, 50, 72, 0, 2, 84, 72, 226, 199, 22, 65, 3, 79, 4, 222, 199, 22, 65, 3, 79, 130, 1, 60, 4, 73, 71, 78, 32, 221, 6, 6, 89, 77, 66, 79, 76, 32, 46, 202, 2, 65, 104, 10, 83, 65, 77, 89, 79, 75, 32, 83, 65, 78, 22, 66, 118, 67, 86, 75, 74, 82, 54, 84, 188, 229, 4, 3, 76, 69, 75, 168, 11, - 6, 80, 72, 78, 65, 69, 75, 224, 232, 10, 10, 89, 85, 85, 75, 65, 76, 69, + 6, 80, 72, 78, 65, 69, 75, 148, 228, 10, 10, 89, 85, 85, 75, 65, 76, 69, 65, 80, 73, 244, 243, 1, 3, 78, 73, 75, 236, 171, 3, 9, 77, 85, 85, 83, 73, 75, 65, 84, 79, 141, 15, 4, 86, 73, 82, 73, 6, 100, 9, 86, 65, 75, - 82, 65, 72, 65, 83, 65, 232, 145, 18, 4, 84, 84, 72, 65, 173, 145, 4, 2, - 72, 83, 2, 187, 197, 22, 78, 8, 38, 65, 129, 188, 21, 3, 69, 89, 89, 6, - 174, 6, 84, 216, 1, 2, 78, 84, 185, 243, 20, 6, 82, 73, 89, 79, 79, 83, - 4, 248, 155, 7, 12, 65, 77, 78, 85, 67, 32, 80, 73, 73, 32, 75, 85, 183, - 228, 12, 79, 6, 188, 221, 11, 2, 65, 75, 226, 156, 9, 72, 205, 82, 4, 79, - 79, 77, 85, 4, 130, 221, 11, 79, 137, 235, 5, 4, 69, 65, 72, 77, 4, 180, - 178, 21, 4, 82, 73, 73, 83, 217, 9, 8, 79, 65, 78, 68, 65, 75, 72, 73, + 82, 65, 72, 65, 83, 65, 156, 141, 18, 4, 84, 84, 72, 65, 173, 145, 4, 2, + 72, 83, 2, 239, 192, 22, 78, 8, 38, 65, 181, 183, 21, 3, 69, 89, 89, 6, + 174, 6, 84, 216, 1, 2, 78, 84, 237, 238, 20, 6, 82, 73, 89, 79, 79, 83, + 4, 248, 155, 7, 12, 65, 77, 78, 85, 67, 32, 80, 73, 73, 32, 75, 85, 235, + 223, 12, 79, 6, 240, 216, 11, 2, 65, 75, 226, 156, 9, 72, 205, 82, 4, 79, + 79, 77, 85, 4, 182, 216, 11, 79, 137, 235, 5, 4, 69, 65, 72, 77, 4, 232, + 173, 21, 4, 82, 73, 73, 83, 217, 9, 8, 79, 65, 78, 68, 65, 75, 72, 73, 84, 128, 1, 3, 68, 65, 80, 92, 10, 76, 69, 75, 32, 65, 84, 84, 65, 75, 32, 182, 1, 80, 72, 5, 84, 85, 84, 69, 89, 78, 66, 47, 77, 24, 22, 45, 223, 3, 32, 20, 30, 80, 238, 2, 66, 47, 77, 8, 138, 3, 73, 37, 3, 82, 65, - 77, 20, 50, 80, 98, 66, 186, 150, 11, 77, 219, 219, 10, 83, 12, 36, 3, - 82, 65, 77, 223, 174, 22, 73, 11, 11, 45, 8, 42, 66, 186, 150, 11, 77, - 251, 228, 8, 80, 4, 142, 242, 21, 85, 151, 60, 69, 26, 44, 2, 65, 84, 44, - 3, 82, 65, 77, 91, 73, 2, 21, 3, 72, 65, 77, 2, 175, 190, 16, 65, 20, 18, + 77, 20, 50, 80, 98, 66, 238, 145, 11, 77, 219, 219, 10, 83, 12, 36, 3, + 82, 65, 77, 147, 170, 22, 73, 11, 11, 45, 8, 42, 66, 238, 145, 11, 77, + 251, 228, 8, 80, 4, 194, 237, 21, 85, 151, 60, 69, 26, 44, 2, 65, 84, 44, + 3, 82, 65, 77, 91, 73, 2, 21, 3, 72, 65, 77, 2, 227, 185, 16, 65, 20, 18, 45, 119, 32, 16, 34, 66, 32, 2, 80, 73, 15, 77, 8, 30, 69, 37, 3, 85, 79, - 78, 4, 35, 73, 4, 21, 3, 85, 79, 89, 4, 11, 32, 4, 34, 82, 189, 138, 22, - 2, 75, 79, 2, 195, 149, 21, 79, 42, 76, 10, 73, 78, 72, 69, 82, 69, 78, - 84, 32, 65, 29, 5, 83, 73, 71, 78, 32, 4, 238, 190, 22, 65, 3, 81, 38, - 102, 65, 54, 73, 30, 79, 38, 89, 216, 254, 2, 5, 67, 79, 69, 78, 71, 182, - 172, 7, 85, 239, 145, 12, 69, 10, 194, 180, 3, 65, 170, 137, 19, 69, 2, - 73, 3, 85, 7, 182, 189, 22, 69, 3, 73, 6, 154, 189, 22, 69, 2, 77, 3, 79, - 7, 246, 188, 22, 65, 3, 89, 130, 1, 146, 1, 68, 88, 7, 76, 69, 84, 84, + 78, 4, 35, 73, 4, 21, 3, 85, 79, 89, 4, 11, 32, 4, 34, 82, 241, 133, 22, + 2, 75, 79, 2, 247, 144, 21, 79, 42, 76, 10, 73, 78, 72, 69, 82, 69, 78, + 84, 32, 65, 29, 5, 83, 73, 71, 78, 32, 4, 162, 186, 22, 65, 3, 81, 38, + 102, 65, 54, 73, 30, 79, 38, 89, 216, 254, 2, 5, 67, 79, 69, 78, 71, 234, + 167, 7, 85, 239, 145, 12, 69, 10, 194, 180, 3, 65, 222, 132, 19, 69, 2, + 73, 3, 85, 7, 234, 184, 22, 69, 3, 73, 6, 206, 184, 22, 69, 2, 77, 3, 79, + 7, 170, 184, 22, 65, 3, 89, 130, 1, 146, 1, 68, 88, 7, 76, 69, 84, 84, 69, 82, 32, 170, 2, 83, 160, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, - 78, 32, 238, 237, 15, 87, 231, 85, 65, 6, 48, 6, 79, 85, 66, 76, 69, 32, - 155, 219, 18, 65, 4, 134, 168, 10, 83, 135, 179, 8, 68, 90, 234, 1, 83, - 254, 4, 66, 42, 71, 146, 141, 6, 68, 166, 145, 12, 74, 182, 55, 65, 150, + 78, 32, 162, 233, 15, 87, 231, 85, 65, 6, 48, 6, 79, 85, 66, 76, 69, 32, + 207, 214, 18, 65, 4, 186, 163, 10, 83, 135, 179, 8, 68, 90, 234, 1, 83, + 254, 4, 66, 42, 71, 146, 141, 6, 68, 218, 140, 12, 74, 182, 55, 65, 150, 1, 84, 198, 208, 1, 76, 226, 195, 1, 78, 126, 67, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 81, 2, 82, 2, 86, 2, 89, 186, 2, 69, 2, 73, 2, 79, 3, 85, - 4, 26, 72, 231, 184, 22, 65, 2, 209, 248, 21, 3, 79, 82, 84, 12, 40, 4, - 73, 71, 78, 32, 159, 165, 10, 69, 10, 54, 83, 226, 154, 18, 78, 154, 67, - 86, 243, 148, 3, 65, 4, 26, 72, 251, 179, 17, 85, 2, 11, 65, 2, 179, 146, - 22, 68, 18, 190, 240, 3, 86, 198, 239, 14, 65, 222, 202, 1, 73, 198, 140, + 4, 26, 72, 155, 180, 22, 65, 2, 133, 244, 21, 3, 79, 82, 84, 12, 40, 4, + 73, 71, 78, 32, 211, 160, 10, 69, 10, 54, 83, 150, 150, 18, 78, 154, 67, + 86, 243, 148, 3, 65, 4, 26, 72, 175, 175, 17, 85, 2, 11, 65, 2, 231, 141, + 22, 68, 18, 190, 240, 3, 86, 250, 234, 14, 65, 222, 202, 1, 73, 198, 140, 2, 69, 2, 79, 3, 85, 138, 1, 100, 7, 76, 69, 84, 84, 69, 82, 32, 176, 2, - 5, 83, 73, 71, 78, 32, 230, 194, 16, 86, 203, 252, 3, 68, 94, 222, 1, 66, - 42, 71, 146, 141, 6, 68, 254, 143, 12, 74, 222, 56, 65, 118, 82, 34, 84, + 5, 83, 73, 71, 78, 32, 154, 190, 16, 86, 203, 252, 3, 68, 94, 222, 1, 66, + 42, 71, 146, 141, 6, 68, 178, 139, 12, 74, 222, 56, 65, 118, 82, 34, 84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 126, 67, 2, 75, 2, 80, 2, - 83, 138, 69, 72, 2, 76, 2, 77, 2, 86, 2, 89, 186, 2, 69, 3, 79, 6, 202, - 177, 22, 66, 2, 72, 187, 2, 65, 6, 162, 177, 22, 71, 2, 72, 187, 2, 65, - 6, 178, 150, 18, 78, 154, 67, 86, 243, 148, 3, 65, 136, 1, 140, 1, 8, 82, - 65, 84, 32, 82, 65, 73, 32, 216, 3, 2, 83, 83, 208, 247, 20, 4, 87, 73, + 83, 138, 69, 72, 2, 76, 2, 77, 2, 86, 2, 89, 186, 2, 69, 3, 79, 6, 254, + 172, 22, 66, 2, 72, 187, 2, 65, 6, 214, 172, 22, 71, 2, 72, 187, 2, 65, + 6, 230, 145, 18, 78, 154, 67, 86, 243, 148, 3, 65, 136, 1, 140, 1, 8, 82, + 65, 84, 32, 82, 65, 73, 32, 216, 3, 2, 83, 83, 132, 243, 20, 4, 87, 73, 70, 82, 202, 47, 80, 240, 93, 2, 77, 79, 191, 18, 84, 116, 140, 1, 7, 76, 69, 84, 84, 69, 82, 32, 172, 1, 5, 83, 73, 71, 78, 32, 92, 11, 86, 79, - 87, 69, 76, 32, 83, 73, 71, 78, 32, 223, 237, 11, 68, 64, 142, 211, 18, + 87, 69, 76, 32, 83, 73, 71, 78, 32, 147, 233, 11, 68, 64, 194, 206, 18, 68, 114, 84, 206, 223, 1, 78, 214, 181, 1, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 2, 83, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 86, 2, 89, 187, 2, - 65, 12, 184, 209, 9, 3, 84, 79, 78, 0, 2, 89, 85, 190, 252, 1, 83, 198, - 156, 10, 65, 239, 1, 86, 16, 182, 215, 18, 65, 130, 151, 3, 85, 162, 64, - 69, 2, 73, 3, 79, 13, 40, 4, 73, 78, 71, 32, 183, 236, 21, 32, 8, 96, 4, - 70, 65, 67, 69, 177, 147, 14, 14, 67, 65, 84, 32, 70, 65, 67, 69, 32, 87, - 73, 84, 72, 32, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 158, 146, 14, 83, - 159, 155, 5, 67, 4, 232, 167, 18, 3, 69, 69, 76, 171, 232, 3, 79, 4, 40, - 4, 82, 69, 65, 78, 207, 137, 22, 65, 2, 33, 6, 32, 83, 84, 65, 78, 68, 2, - 193, 250, 18, 2, 65, 82, 2, 11, 79, 2, 171, 169, 10, 78, 200, 43, 154, 1, - 65, 178, 233, 1, 69, 198, 62, 73, 226, 83, 79, 206, 33, 85, 94, 89, 138, - 226, 7, 82, 232, 195, 9, 5, 32, 66, 32, 66, 65, 142, 163, 1, 76, 239, 66, + 65, 12, 236, 204, 9, 3, 84, 79, 78, 0, 2, 89, 85, 190, 252, 1, 83, 198, + 156, 10, 65, 239, 1, 86, 16, 234, 210, 18, 65, 130, 151, 3, 85, 162, 64, + 69, 2, 73, 3, 79, 13, 40, 4, 73, 78, 71, 32, 235, 231, 21, 32, 8, 96, 4, + 70, 65, 67, 69, 229, 142, 14, 14, 67, 65, 84, 32, 70, 65, 67, 69, 32, 87, + 73, 84, 72, 32, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 210, 141, 14, 83, + 159, 155, 5, 67, 4, 156, 163, 18, 3, 69, 69, 76, 171, 232, 3, 79, 4, 40, + 4, 82, 69, 65, 78, 131, 133, 22, 65, 2, 33, 6, 32, 83, 84, 65, 78, 68, 2, + 245, 245, 18, 2, 65, 82, 2, 11, 79, 2, 223, 164, 10, 78, 200, 43, 154, 1, + 65, 178, 233, 1, 69, 198, 62, 73, 226, 83, 79, 206, 33, 85, 94, 89, 190, + 221, 7, 82, 232, 195, 9, 5, 32, 66, 32, 66, 65, 142, 163, 1, 76, 239, 66, 70, 134, 23, 142, 1, 66, 44, 6, 67, 82, 79, 83, 83, 69, 46, 68, 58, 78, 64, 2, 79, 32, 222, 11, 82, 236, 21, 4, 83, 84, 32, 81, 77, 4, 84, 73, - 78, 32, 4, 228, 194, 14, 2, 32, 67, 155, 218, 6, 69, 2, 137, 255, 16, 6, - 32, 83, 84, 73, 67, 75, 4, 148, 255, 12, 5, 89, 32, 66, 69, 69, 247, 234, - 8, 68, 4, 178, 202, 9, 68, 161, 241, 10, 7, 71, 85, 65, 71, 69, 32, 84, + 78, 32, 4, 152, 190, 14, 2, 32, 67, 155, 218, 6, 69, 2, 189, 250, 16, 6, + 32, 83, 84, 73, 67, 75, 4, 200, 250, 12, 5, 89, 32, 66, 69, 69, 247, 234, + 8, 68, 4, 230, 197, 9, 68, 161, 241, 10, 7, 71, 85, 65, 71, 69, 32, 84, 174, 1, 200, 2, 3, 72, 79, 32, 28, 7, 76, 69, 84, 84, 69, 82, 32, 214, 5, 83, 148, 1, 9, 84, 79, 78, 69, 32, 77, 65, 73, 32, 84, 11, 86, 79, 87, - 69, 76, 32, 83, 73, 71, 78, 32, 228, 170, 4, 2, 75, 79, 224, 130, 13, 2, + 69, 76, 32, 83, 73, 71, 78, 32, 228, 170, 4, 2, 75, 79, 148, 254, 12, 2, 89, 65, 230, 199, 2, 69, 170, 51, 68, 212, 138, 1, 7, 67, 65, 78, 67, 69, - 76, 76, 221, 68, 6, 78, 73, 71, 71, 65, 72, 4, 186, 133, 22, 77, 3, 78, + 76, 76, 221, 68, 6, 78, 73, 71, 71, 65, 72, 4, 238, 128, 22, 77, 3, 78, 94, 176, 1, 3, 70, 79, 32, 78, 75, 96, 2, 76, 79, 50, 80, 154, 1, 83, 86, - 84, 30, 72, 162, 161, 16, 78, 234, 222, 5, 66, 2, 67, 2, 68, 2, 77, 2, - 82, 2, 87, 2, 89, 247, 30, 79, 8, 42, 70, 250, 174, 15, 83, 175, 182, 5, - 84, 4, 210, 210, 21, 79, 155, 62, 65, 10, 26, 72, 251, 161, 22, 79, 8, - 32, 3, 77, 85, 32, 231, 2, 79, 4, 142, 201, 21, 78, 211, 57, 71, 7, 17, - 2, 32, 76, 4, 166, 208, 21, 73, 67, 79, 30, 52, 4, 65, 76, 73, 32, 210, - 1, 72, 255, 158, 22, 79, 24, 230, 200, 6, 68, 34, 84, 206, 6, 78, 210, - 211, 13, 66, 2, 67, 2, 71, 2, 74, 147, 219, 1, 76, 8, 52, 9, 65, 78, 83, - 75, 82, 73, 84, 32, 83, 71, 79, 4, 250, 156, 22, 72, 3, 83, 6, 26, 72, - 255, 158, 22, 79, 4, 11, 79, 4, 11, 32, 4, 166, 171, 15, 83, 175, 182, 5, + 84, 30, 72, 214, 156, 16, 78, 234, 222, 5, 66, 2, 67, 2, 68, 2, 77, 2, + 82, 2, 87, 2, 89, 247, 30, 79, 8, 42, 70, 174, 170, 15, 83, 175, 182, 5, + 84, 4, 134, 206, 21, 79, 155, 62, 65, 10, 26, 72, 175, 157, 22, 79, 8, + 32, 3, 77, 85, 32, 231, 2, 79, 4, 194, 196, 21, 78, 211, 57, 71, 7, 17, + 2, 32, 76, 4, 218, 203, 21, 73, 67, 79, 30, 52, 4, 65, 76, 73, 32, 210, + 1, 72, 179, 154, 22, 79, 24, 230, 200, 6, 68, 34, 84, 206, 6, 78, 134, + 207, 13, 66, 2, 67, 2, 71, 2, 74, 147, 219, 1, 76, 8, 52, 9, 65, 78, 83, + 75, 82, 73, 84, 32, 83, 71, 79, 4, 174, 152, 22, 72, 3, 83, 6, 26, 72, + 179, 154, 22, 79, 4, 11, 79, 4, 11, 32, 4, 218, 166, 15, 83, 175, 182, 5, 84, 6, 112, 14, 69, 77, 73, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, - 209, 195, 18, 8, 73, 71, 78, 32, 80, 65, 76, 73, 4, 134, 197, 21, 78, - 211, 57, 76, 8, 50, 84, 132, 163, 17, 2, 67, 65, 223, 246, 4, 69, 4, 130, - 254, 21, 72, 247, 30, 73, 32, 106, 65, 44, 5, 77, 65, 73, 32, 75, 166, - 138, 18, 89, 162, 58, 85, 186, 202, 1, 69, 2, 73, 199, 140, 2, 79, 11, - 234, 155, 22, 65, 2, 73, 2, 77, 3, 89, 4, 222, 203, 21, 65, 3, 79, 166, - 1, 32, 2, 71, 69, 255, 147, 21, 73, 164, 1, 26, 32, 171, 251, 13, 82, - 160, 1, 254, 1, 66, 44, 4, 71, 82, 69, 69, 22, 79, 250, 1, 84, 190, 242, + 133, 191, 18, 8, 73, 71, 78, 32, 80, 65, 76, 73, 4, 186, 192, 21, 78, + 211, 57, 76, 8, 50, 84, 184, 158, 17, 2, 67, 65, 223, 246, 4, 69, 4, 182, + 249, 21, 72, 247, 30, 73, 32, 106, 65, 44, 5, 77, 65, 73, 32, 75, 218, + 133, 18, 89, 162, 58, 85, 186, 202, 1, 69, 2, 73, 199, 140, 2, 79, 11, + 158, 151, 22, 65, 2, 73, 2, 77, 3, 89, 4, 146, 199, 21, 65, 3, 79, 166, + 1, 32, 2, 71, 69, 179, 143, 21, 73, 164, 1, 26, 32, 223, 246, 13, 82, + 160, 1, 254, 1, 66, 44, 4, 71, 82, 69, 69, 22, 79, 250, 1, 84, 242, 237, 11, 68, 36, 2, 85, 80, 164, 193, 3, 12, 76, 69, 70, 84, 32, 84, 82, 73, 65, 78, 71, 76, 200, 203, 4, 5, 80, 85, 82, 80, 76, 12, 3, 82, 69, 68, 0, 6, 89, 69, 76, 76, 79, 87, 179, 66, 67, 10, 40, 3, 82, 79, 87, 201, 1, 2, - 76, 85, 4, 227, 129, 20, 78, 10, 48, 3, 78, 69, 32, 129, 1, 4, 82, 65, - 78, 71, 4, 240, 161, 8, 5, 68, 79, 84, 32, 79, 133, 234, 2, 18, 82, 73, + 76, 85, 4, 151, 253, 19, 78, 10, 48, 3, 78, 69, 32, 129, 1, 4, 82, 65, + 78, 71, 4, 164, 157, 8, 5, 68, 79, 84, 32, 79, 133, 234, 2, 18, 82, 73, 78, 71, 32, 79, 86, 69, 82, 32, 84, 87, 79, 32, 82, 73, 78, 71, 6, 11, - 69, 6, 11, 32, 6, 178, 194, 20, 67, 162, 21, 68, 155, 28, 83, 116, 156, - 1, 3, 87, 79, 32, 108, 10, 89, 80, 69, 32, 80, 73, 69, 67, 69, 32, 197, - 208, 18, 17, 82, 73, 80, 76, 69, 32, 86, 69, 82, 84, 73, 67, 65, 76, 32, - 66, 65, 4, 242, 241, 17, 68, 141, 93, 19, 82, 73, 78, 71, 83, 32, 79, 86, + 69, 6, 11, 32, 6, 230, 189, 20, 67, 162, 21, 68, 155, 28, 83, 116, 156, + 1, 3, 87, 79, 32, 108, 10, 89, 80, 69, 32, 80, 73, 69, 67, 69, 32, 249, + 203, 18, 17, 82, 73, 80, 76, 69, 32, 86, 69, 82, 84, 73, 67, 65, 76, 32, + 66, 65, 4, 166, 237, 17, 68, 141, 93, 19, 82, 73, 78, 71, 83, 32, 79, 86, 69, 82, 32, 79, 78, 69, 32, 82, 73, 78, 71, 110, 182, 1, 67, 136, 2, 9, 68, 73, 65, 71, 79, 78, 65, 76, 32, 218, 1, 76, 186, 2, 82, 158, 1, 83, 204, 3, 6, 85, 80, 80, 69, 82, 32, 145, 2, 9, 86, 69, 82, 84, 69, 88, 32, 79, 70, 14, 80, 9, 69, 78, 84, 82, 69, 32, 79, 70, 32, 73, 7, 82, 79, 83, - 83, 66, 65, 82, 8, 252, 8, 6, 90, 32, 87, 73, 84, 72, 138, 137, 22, 75, + 83, 66, 65, 82, 8, 252, 8, 6, 90, 32, 87, 73, 84, 72, 190, 132, 22, 75, 2, 88, 3, 89, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 40, 3, 76, 79, 87, 1, - 3, 85, 80, 80, 2, 137, 205, 10, 2, 69, 82, 12, 48, 6, 85, 80, 80, 69, 82, - 32, 167, 230, 9, 76, 8, 56, 4, 76, 69, 70, 84, 225, 230, 9, 4, 82, 73, + 3, 85, 80, 80, 2, 189, 200, 10, 2, 69, 82, 12, 48, 6, 85, 80, 80, 69, 82, + 32, 219, 225, 9, 76, 8, 56, 4, 76, 69, 70, 84, 149, 226, 9, 4, 82, 73, 71, 72, 5, 11, 32, 2, 21, 3, 65, 78, 68, 2, 17, 2, 32, 76, 2, 17, 2, 79, - 87, 2, 209, 220, 21, 2, 69, 82, 26, 48, 5, 79, 87, 69, 82, 32, 129, 3, 2, + 87, 2, 133, 216, 21, 2, 69, 82, 26, 48, 5, 79, 87, 69, 82, 32, 129, 3, 2, 69, 70, 24, 84, 5, 76, 69, 70, 84, 32, 56, 6, 82, 73, 71, 72, 84, 32, - 158, 6, 72, 179, 1, 84, 8, 22, 65, 207, 7, 67, 4, 194, 1, 78, 135, 226, + 158, 6, 72, 179, 1, 84, 8, 22, 65, 207, 7, 67, 4, 194, 1, 78, 187, 221, 20, 82, 10, 22, 65, 151, 7, 67, 6, 192, 1, 13, 78, 68, 32, 85, 80, 80, - 69, 82, 32, 82, 73, 71, 72, 249, 211, 19, 2, 82, 67, 4, 44, 4, 65, 73, + 69, 82, 32, 82, 73, 71, 72, 173, 207, 19, 2, 82, 67, 4, 44, 4, 65, 73, 83, 69, 77, 3, 73, 71, 72, 2, 53, 11, 68, 32, 85, 80, 80, 69, 82, 32, 76, - 69, 70, 2, 231, 139, 19, 84, 2, 137, 141, 21, 3, 84, 32, 65, 34, 48, 5, + 69, 70, 2, 155, 135, 19, 84, 2, 189, 136, 21, 3, 84, 32, 65, 34, 48, 5, 72, 79, 82, 84, 32, 77, 3, 84, 69, 77, 4, 40, 3, 76, 79, 87, 1, 3, 85, 80, 80, 2, 217, 4, 4, 69, 82, 32, 84, 31, 44, 6, 32, 87, 73, 84, 72, 32, - 171, 1, 45, 8, 44, 5, 76, 69, 70, 84, 32, 30, 82, 59, 67, 4, 82, 67, 199, - 221, 10, 74, 2, 21, 3, 73, 71, 72, 2, 11, 84, 2, 17, 2, 32, 67, 2, 169, - 229, 20, 4, 82, 79, 83, 83, 20, 48, 2, 49, 50, 22, 50, 26, 52, 203, 189, - 11, 51, 5, 183, 223, 14, 51, 9, 11, 51, 7, 11, 52, 5, 239, 135, 22, 53, + 171, 1, 45, 8, 44, 5, 76, 69, 70, 84, 32, 30, 82, 59, 67, 4, 82, 67, 251, + 216, 10, 74, 2, 21, 3, 73, 71, 72, 2, 11, 84, 2, 17, 2, 32, 67, 2, 221, + 224, 20, 4, 82, 79, 83, 83, 20, 48, 2, 49, 50, 22, 50, 26, 52, 255, 184, + 11, 51, 5, 235, 218, 14, 51, 9, 11, 51, 7, 11, 52, 5, 163, 131, 22, 53, 18, 62, 72, 96, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 83, 84, 4, 65, 14, - 65, 76, 70, 32, 86, 69, 82, 84, 69, 88, 32, 79, 70, 32, 4, 214, 134, 22, - 77, 3, 87, 6, 17, 2, 84, 32, 6, 26, 67, 175, 134, 19, 65, 4, 202, 92, 82, - 235, 168, 17, 79, 2, 157, 250, 8, 3, 69, 82, 77, 2, 187, 231, 14, 32, 6, + 65, 76, 70, 32, 86, 69, 82, 84, 69, 88, 32, 79, 70, 32, 4, 138, 130, 22, + 77, 3, 87, 6, 17, 2, 84, 32, 6, 26, 67, 227, 129, 19, 65, 4, 202, 92, 82, + 159, 164, 17, 79, 2, 209, 245, 8, 3, 69, 82, 77, 2, 239, 226, 14, 32, 6, 53, 11, 85, 65, 82, 84, 69, 82, 32, 77, 79, 79, 78, 7, 223, 240, 6, 32, 158, 20, 150, 1, 67, 224, 46, 18, 69, 80, 73, 71, 82, 65, 80, 72, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 252, 1, 7, 76, 69, 84, 84, 69, 82, 32, - 247, 12, 83, 206, 7, 56, 8, 65, 80, 73, 84, 65, 76, 32, 76, 243, 191, 20, + 247, 12, 83, 206, 7, 56, 8, 65, 80, 73, 84, 65, 76, 32, 76, 167, 187, 20, 82, 204, 7, 76, 6, 69, 84, 84, 69, 82, 32, 169, 45, 8, 73, 71, 65, 84, 85, 82, 69, 32, 200, 7, 154, 2, 65, 158, 3, 66, 154, 1, 67, 254, 1, 68, 186, 2, 69, 174, 2, 70, 82, 71, 194, 1, 72, 146, 1, 73, 154, 2, 74, 118, 75, 126, 76, 234, 2, 77, 114, 78, 134, 2, 79, 198, 2, 80, 114, 81, 62, 82, 190, 2, 83, 130, 3, 84, 142, 3, 85, 234, 1, 86, 146, 1, 87, 118, 88, 50, 89, 167, 1, 90, 93, 172, 1, 6, 32, 87, 73, 84, 72, 32, 166, 1, 69, - 246, 65, 78, 176, 158, 14, 6, 70, 82, 73, 67, 65, 78, 158, 193, 3, 76, + 246, 65, 78, 228, 153, 14, 6, 70, 82, 73, 67, 65, 78, 158, 193, 3, 76, 210, 183, 2, 86, 186, 164, 1, 65, 2, 79, 2, 85, 3, 89, 66, 246, 64, 66, 34, 68, 108, 3, 82, 73, 78, 242, 33, 77, 250, 21, 67, 150, 50, 72, 158, - 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 142, 175, 13, 84, 219, + 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 194, 170, 13, 84, 219, 183, 3, 83, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 206, 184, 1, 65, 239, - 199, 3, 77, 21, 60, 6, 32, 87, 73, 84, 72, 32, 190, 68, 82, 187, 147, 21, - 69, 14, 154, 67, 84, 138, 60, 70, 210, 57, 76, 182, 159, 16, 68, 170, + 199, 3, 77, 21, 60, 6, 32, 87, 73, 84, 72, 32, 190, 68, 82, 239, 142, 21, + 69, 14, 154, 67, 84, 138, 60, 70, 210, 57, 76, 234, 154, 16, 68, 170, 206, 2, 72, 247, 165, 1, 83, 33, 108, 6, 32, 87, 73, 84, 72, 32, 204, 70, - 7, 76, 79, 83, 69, 68, 32, 73, 54, 85, 154, 228, 20, 79, 139, 60, 72, 20, - 94, 67, 198, 181, 1, 65, 154, 233, 3, 80, 206, 133, 15, 72, 182, 50, 66, - 242, 34, 68, 211, 80, 83, 8, 198, 68, 69, 190, 113, 73, 227, 156, 19, 65, + 7, 76, 79, 83, 69, 68, 32, 73, 54, 85, 206, 223, 20, 79, 139, 60, 72, 20, + 94, 67, 198, 181, 1, 65, 154, 233, 3, 80, 130, 129, 15, 72, 182, 50, 66, + 242, 34, 68, 211, 80, 83, 8, 198, 68, 69, 190, 113, 73, 151, 152, 19, 65, 35, 76, 6, 32, 87, 73, 84, 72, 32, 178, 1, 90, 25, 6, 79, 85, 66, 76, 69, - 32, 24, 78, 83, 226, 15, 67, 202, 47, 84, 218, 117, 76, 182, 159, 16, 68, + 32, 24, 78, 83, 226, 15, 67, 202, 47, 84, 218, 117, 76, 234, 154, 16, 68, 171, 206, 2, 72, 8, 92, 13, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, - 32, 90, 150, 138, 1, 72, 235, 189, 20, 84, 5, 209, 72, 2, 32, 87, 4, 254, - 71, 87, 187, 185, 10, 84, 91, 104, 6, 32, 87, 73, 84, 72, 32, 152, 1, 2, - 90, 72, 134, 76, 71, 206, 152, 17, 84, 210, 143, 4, 83, 63, 78, 70, 254, + 32, 90, 150, 138, 1, 72, 159, 185, 20, 84, 5, 209, 72, 2, 32, 87, 4, 254, + 71, 87, 239, 180, 10, 84, 91, 104, 6, 32, 87, 73, 84, 72, 32, 152, 1, 2, + 90, 72, 134, 76, 71, 130, 148, 17, 84, 210, 143, 4, 83, 63, 78, 70, 254, 73, 67, 158, 2, 68, 194, 16, 84, 158, 23, 77, 250, 1, 86, 238, 45, 72, - 158, 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 171, 230, + 158, 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 223, 225, 16, 83, 7, 11, 32, 4, 138, 70, 87, 211, 8, 82, 9, 33, 6, 32, 87, 73, 84, - 72, 32, 6, 242, 158, 20, 72, 166, 85, 68, 211, 80, 83, 35, 76, 6, 32, 87, - 73, 84, 72, 32, 190, 81, 76, 230, 204, 18, 65, 147, 211, 2, 72, 20, 154, - 84, 67, 250, 90, 65, 178, 174, 3, 66, 190, 25, 77, 226, 140, 4, 79, 154, + 72, 32, 6, 166, 154, 20, 72, 166, 85, 68, 211, 80, 83, 35, 76, 6, 32, 87, + 73, 84, 72, 32, 190, 81, 76, 154, 200, 18, 65, 147, 211, 2, 72, 20, 154, + 84, 67, 250, 90, 65, 178, 174, 3, 66, 190, 25, 77, 150, 136, 4, 79, 154, 154, 11, 72, 166, 85, 68, 211, 80, 83, 29, 76, 6, 32, 87, 73, 84, 72, 32, - 250, 126, 65, 198, 244, 7, 87, 247, 173, 12, 69, 20, 186, 82, 66, 34, 67, - 46, 68, 178, 201, 19, 72, 247, 165, 1, 83, 59, 80, 6, 32, 87, 73, 84, 72, - 32, 132, 88, 2, 78, 83, 198, 244, 20, 79, 207, 36, 83, 40, 138, 1, 68, + 250, 126, 65, 250, 239, 7, 87, 247, 173, 12, 69, 20, 186, 82, 66, 34, 67, + 46, 68, 230, 196, 19, 72, 247, 165, 1, 83, 59, 80, 6, 32, 87, 73, 84, 72, + 32, 132, 88, 2, 78, 83, 250, 239, 20, 79, 207, 36, 83, 40, 138, 1, 68, 162, 83, 67, 242, 1, 77, 142, 1, 84, 130, 71, 72, 158, 1, 79, 198, 10, - 71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 171, 230, 16, 83, 10, 22, 79, - 191, 83, 73, 6, 218, 121, 85, 131, 212, 18, 84, 11, 33, 6, 32, 87, 73, - 84, 72, 32, 8, 42, 67, 174, 135, 18, 84, 219, 183, 3, 83, 4, 234, 170, 1, + 71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 223, 225, 16, 83, 10, 22, 79, + 191, 83, 73, 6, 218, 121, 85, 183, 207, 18, 84, 11, 33, 6, 32, 87, 73, + 84, 72, 32, 8, 42, 67, 226, 130, 18, 84, 219, 183, 3, 83, 4, 234, 170, 1, 73, 131, 223, 3, 82, 25, 33, 6, 32, 87, 73, 84, 72, 32, 22, 182, 89, 67, - 34, 68, 50, 83, 222, 79, 65, 138, 1, 76, 198, 211, 7, 79, 155, 154, 11, - 72, 41, 60, 6, 32, 87, 73, 84, 72, 32, 190, 94, 65, 231, 142, 21, 74, 32, + 34, 68, 50, 83, 222, 79, 65, 138, 1, 76, 250, 206, 7, 79, 155, 154, 11, + 72, 41, 60, 6, 32, 87, 73, 84, 72, 32, 190, 94, 65, 155, 138, 21, 74, 32, 138, 1, 66, 36, 2, 68, 79, 52, 7, 77, 73, 68, 68, 76, 69, 32, 38, 83, - 174, 2, 67, 182, 91, 72, 230, 72, 65, 138, 1, 76, 251, 219, 16, 84, 4, - 170, 198, 12, 69, 143, 237, 8, 65, 6, 22, 85, 231, 91, 84, 2, 249, 241, - 4, 2, 66, 76, 4, 230, 131, 18, 84, 159, 151, 3, 68, 4, 214, 2, 77, 211, - 184, 21, 84, 19, 44, 6, 32, 87, 73, 84, 72, 32, 207, 94, 73, 10, 242, - 165, 1, 65, 190, 160, 16, 68, 198, 60, 84, 231, 145, 2, 72, 33, 48, 6, - 32, 87, 73, 84, 72, 32, 215, 233, 21, 74, 28, 102, 67, 44, 2, 83, 77, - 178, 96, 76, 134, 65, 71, 186, 2, 65, 102, 68, 234, 211, 7, 79, 183, 136, - 9, 84, 6, 190, 132, 1, 69, 22, 73, 231, 188, 19, 65, 2, 157, 233, 10, 10, + 174, 2, 67, 182, 91, 72, 230, 72, 65, 138, 1, 76, 175, 215, 16, 84, 4, + 222, 193, 12, 69, 143, 237, 8, 65, 6, 22, 85, 231, 91, 84, 2, 249, 241, + 4, 2, 66, 76, 4, 154, 255, 17, 84, 159, 151, 3, 68, 4, 214, 2, 77, 135, + 180, 21, 84, 19, 44, 6, 32, 87, 73, 84, 72, 32, 207, 94, 73, 10, 242, + 165, 1, 65, 242, 155, 16, 68, 198, 60, 84, 231, 145, 2, 72, 33, 48, 6, + 32, 87, 73, 84, 72, 32, 139, 229, 21, 74, 28, 102, 67, 44, 2, 83, 77, + 178, 96, 76, 134, 65, 71, 186, 2, 65, 102, 68, 158, 207, 7, 79, 183, 136, + 9, 84, 6, 190, 132, 1, 69, 22, 73, 155, 184, 19, 65, 2, 209, 228, 10, 10, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 101, 108, 6, 32, 87, 73, 84, 72, - 32, 178, 103, 76, 138, 159, 4, 80, 218, 155, 9, 77, 134, 197, 7, 73, 2, + 32, 178, 103, 76, 138, 159, 4, 80, 142, 151, 9, 77, 134, 197, 7, 73, 2, 79, 3, 85, 84, 144, 1, 2, 76, 79, 34, 77, 226, 96, 67, 70, 68, 154, 2, 79, 38, 83, 66, 84, 106, 86, 222, 44, 72, 242, 12, 71, 186, 2, 65, 246, - 173, 3, 73, 63, 66, 4, 158, 99, 78, 215, 130, 21, 79, 8, 154, 99, 65, + 173, 3, 73, 63, 66, 4, 158, 99, 78, 139, 254, 20, 79, 8, 154, 99, 65, 235, 159, 4, 73, 19, 44, 6, 32, 87, 73, 84, 72, 32, 155, 23, 72, 14, 242, - 103, 70, 34, 83, 170, 56, 65, 230, 238, 18, 72, 167, 85, 68, 7, 33, 6, + 103, 70, 34, 83, 170, 56, 65, 154, 234, 18, 72, 167, 85, 68, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 190, 105, 68, 39, 83, 43, 94, 32, 156, 1, 8, 69, 86, 69, 82, 83, 69, 68, 32, 216, 111, 3, 85, 77, 32, 167, 147, 4, 65, 28, 40, 5, 87, 73, 84, 72, 32, 215, 112, 82, 26, 134, 78, 67, 218, 29, - 68, 170, 2, 84, 174, 48, 65, 138, 1, 76, 238, 172, 3, 73, 218, 166, 4, - 79, 143, 192, 12, 83, 8, 218, 110, 72, 154, 156, 4, 79, 186, 199, 13, 67, + 68, 170, 2, 84, 174, 48, 65, 138, 1, 76, 238, 172, 3, 73, 142, 162, 4, + 79, 143, 192, 12, 83, 8, 218, 110, 72, 154, 156, 4, 79, 238, 194, 13, 67, 239, 143, 3, 69, 49, 136, 1, 6, 32, 87, 73, 84, 72, 32, 136, 1, 5, 77, 65, 76, 76, 32, 240, 115, 2, 65, 76, 234, 1, 72, 152, 2, 2, 73, 71, 167, 138, 4, 67, 32, 86, 67, 138, 112, 65, 118, 68, 138, 1, 83, 174, 1, 86, - 190, 252, 7, 79, 155, 154, 11, 72, 10, 226, 112, 65, 230, 10, 69, 82, 79, - 203, 31, 73, 4, 132, 168, 19, 11, 81, 32, 87, 73, 84, 72, 32, 72, 79, 79, + 242, 247, 7, 79, 155, 154, 11, 72, 10, 226, 112, 65, 230, 10, 69, 82, 79, + 203, 31, 73, 4, 184, 163, 19, 11, 81, 32, 87, 73, 84, 72, 32, 72, 79, 79, 75, 173, 247, 1, 7, 67, 65, 80, 73, 84, 65, 76, 59, 136, 1, 6, 32, 87, 73, 84, 72, 32, 168, 1, 6, 85, 82, 78, 69, 68, 32, 188, 123, 2, 72, 79, - 176, 1, 2, 79, 78, 74, 82, 243, 222, 20, 90, 22, 82, 67, 50, 68, 254, - 152, 1, 76, 234, 237, 3, 82, 246, 255, 14, 72, 247, 165, 1, 83, 8, 202, - 120, 69, 22, 73, 62, 79, 171, 188, 19, 65, 6, 190, 142, 1, 73, 255, 169, - 16, 79, 18, 246, 39, 73, 242, 138, 3, 65, 190, 169, 18, 72, 2, 75, 2, 76, + 176, 1, 2, 79, 78, 74, 82, 167, 218, 20, 90, 22, 82, 67, 50, 68, 254, + 152, 1, 76, 234, 237, 3, 82, 170, 251, 14, 72, 247, 165, 1, 83, 8, 202, + 120, 69, 22, 73, 62, 79, 223, 183, 19, 65, 6, 190, 142, 1, 73, 179, 165, + 16, 79, 18, 246, 39, 73, 242, 138, 3, 65, 242, 164, 18, 72, 2, 75, 2, 76, 2, 77, 2, 84, 3, 86, 79, 26, 32, 183, 135, 5, 80, 74, 44, 5, 87, 73, 84, - 72, 32, 199, 183, 20, 66, 72, 166, 132, 1, 67, 74, 68, 150, 2, 72, 170, + 72, 32, 251, 178, 20, 66, 72, 166, 132, 1, 67, 74, 68, 150, 2, 72, 170, 1, 77, 134, 1, 79, 142, 1, 84, 186, 9, 71, 186, 2, 65, 246, 173, 3, 73, - 62, 66, 234, 225, 14, 82, 195, 132, 2, 83, 23, 88, 6, 32, 87, 73, 84, 72, - 32, 178, 139, 1, 73, 66, 79, 134, 189, 19, 69, 151, 144, 1, 89, 8, 226, - 138, 1, 68, 210, 230, 16, 84, 231, 145, 2, 72, 19, 48, 6, 32, 87, 73, 84, - 72, 32, 243, 151, 7, 89, 14, 190, 144, 1, 67, 18, 68, 70, 71, 186, 2, 65, - 231, 238, 18, 72, 7, 201, 140, 1, 7, 32, 87, 73, 84, 72, 32, 68, 29, 48, - 6, 32, 87, 73, 84, 72, 32, 219, 169, 17, 79, 24, 154, 143, 1, 67, 18, 68, - 70, 71, 22, 72, 42, 76, 254, 1, 65, 238, 199, 3, 77, 150, 149, 13, 84, + 62, 66, 158, 221, 14, 82, 195, 132, 2, 83, 23, 88, 6, 32, 87, 73, 84, 72, + 32, 178, 139, 1, 73, 66, 79, 186, 184, 19, 69, 151, 144, 1, 89, 8, 226, + 138, 1, 68, 134, 226, 16, 84, 231, 145, 2, 72, 19, 48, 6, 32, 87, 73, 84, + 72, 32, 167, 147, 7, 89, 14, 190, 144, 1, 67, 18, 68, 70, 71, 186, 2, 65, + 155, 234, 18, 72, 7, 201, 140, 1, 7, 32, 87, 73, 84, 72, 32, 68, 29, 48, + 6, 32, 87, 73, 84, 72, 32, 143, 165, 17, 79, 24, 154, 143, 1, 67, 18, 68, + 70, 71, 22, 72, 42, 76, 254, 1, 65, 238, 199, 3, 77, 202, 144, 13, 84, 219, 183, 3, 83, 25, 33, 6, 32, 87, 73, 84, 72, 32, 22, 254, 56, 67, 150, - 88, 65, 102, 68, 38, 76, 34, 83, 242, 231, 3, 80, 207, 133, 15, 72, 4, - 254, 213, 10, 73, 195, 232, 10, 79, 12, 128, 1, 5, 65, 82, 67, 72, 65, - 30, 73, 64, 9, 82, 69, 86, 69, 82, 83, 69, 68, 32, 201, 211, 10, 7, 83, - 73, 68, 69, 87, 65, 89, 2, 217, 246, 13, 2, 73, 67, 4, 220, 107, 5, 78, - 86, 69, 82, 84, 149, 216, 14, 3, 32, 76, 79, 4, 142, 211, 21, 70, 3, 80, + 88, 65, 102, 68, 38, 76, 34, 83, 242, 231, 3, 80, 131, 129, 15, 72, 4, + 178, 209, 10, 73, 195, 232, 10, 79, 12, 128, 1, 5, 65, 82, 67, 72, 65, + 30, 73, 64, 9, 82, 69, 86, 69, 82, 83, 69, 68, 32, 253, 206, 10, 7, 83, + 73, 68, 69, 87, 65, 89, 2, 141, 242, 13, 2, 73, 67, 4, 220, 107, 5, 78, + 86, 69, 82, 84, 201, 211, 14, 3, 32, 76, 79, 4, 194, 206, 21, 70, 3, 80, 138, 1, 242, 2, 65, 36, 2, 66, 73, 152, 1, 21, 73, 78, 86, 69, 82, 84, 69, 68, 32, 71, 76, 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 72, 2, 80, 72, 16, 2, 82, 69, 222, 1, 83, 132, 8, 3, 84, 87, 79, 182, 20, 87, 128, - 170, 4, 2, 68, 69, 148, 5, 2, 76, 65, 206, 11, 71, 212, 196, 15, 20, 86, + 170, 4, 2, 68, 69, 148, 5, 2, 76, 65, 206, 11, 71, 136, 192, 15, 20, 86, 79, 73, 67, 69, 68, 32, 76, 65, 82, 89, 78, 71, 69, 65, 76, 32, 83, 80, - 73, 199, 119, 89, 4, 230, 187, 4, 76, 183, 196, 16, 73, 6, 76, 7, 76, 65, + 73, 199, 119, 89, 4, 230, 187, 4, 76, 235, 191, 16, 73, 6, 76, 7, 76, 65, 66, 73, 65, 76, 32, 29, 8, 68, 69, 78, 84, 65, 76, 32, 80, 4, 26, 80, - 239, 206, 4, 67, 2, 153, 146, 16, 6, 69, 82, 67, 85, 83, 83, 7, 33, 6, - 32, 87, 73, 84, 72, 32, 4, 234, 243, 4, 67, 183, 170, 16, 83, 2, 207, 81, + 239, 206, 4, 67, 2, 205, 141, 16, 6, 69, 82, 67, 85, 83, 83, 7, 33, 6, + 32, 87, 73, 84, 72, 32, 4, 234, 243, 4, 67, 235, 165, 16, 83, 2, 207, 81, 65, 8, 104, 7, 86, 69, 82, 83, 69, 68, 32, 233, 243, 4, 13, 84, 82, 79, 70, 76, 69, 88, 32, 67, 76, 73, 67, 75, 4, 80, 3, 69, 83, 72, 161, 8, 12, 71, 76, 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 2, 213, 133, 1, 2, 32, 76, 96, 172, 1, 13, 77, 65, 76, 76, 32, 67, 65, 80, 73, 84, 65, 76, 32, - 244, 112, 10, 84, 82, 69, 84, 67, 72, 69, 68, 32, 67, 185, 198, 19, 10, + 244, 112, 10, 84, 82, 69, 84, 67, 72, 69, 68, 32, 67, 237, 193, 19, 10, 73, 78, 79, 76, 79, 71, 73, 67, 65, 76, 90, 230, 1, 69, 30, 73, 22, 76, - 74, 79, 42, 82, 126, 84, 254, 182, 4, 66, 214, 41, 71, 234, 165, 16, 65, + 74, 79, 42, 82, 126, 84, 254, 182, 4, 66, 214, 41, 71, 158, 161, 16, 65, 162, 64, 67, 2, 68, 2, 70, 2, 72, 2, 74, 2, 75, 2, 77, 2, 78, 2, 80, 2, - 81, 2, 83, 2, 85, 2, 86, 2, 87, 2, 89, 3, 90, 7, 226, 199, 21, 84, 3, 90, - 5, 147, 220, 4, 78, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 238, 225, 8, 66, - 183, 182, 12, 83, 9, 238, 95, 80, 142, 232, 20, 69, 3, 85, 11, 92, 8, 69, - 86, 69, 82, 83, 69, 68, 32, 236, 128, 1, 5, 32, 87, 73, 84, 72, 179, 181, - 20, 85, 4, 242, 198, 21, 78, 3, 82, 13, 33, 6, 85, 82, 78, 69, 68, 32, - 10, 178, 198, 21, 69, 2, 71, 2, 75, 2, 77, 3, 82, 186, 11, 136, 1, 5, 77, + 81, 2, 83, 2, 85, 2, 86, 2, 87, 2, 89, 3, 90, 7, 150, 195, 21, 84, 3, 90, + 5, 147, 220, 4, 78, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 162, 221, 8, 66, + 183, 182, 12, 83, 9, 238, 95, 80, 194, 227, 20, 69, 3, 85, 11, 92, 8, 69, + 86, 69, 82, 83, 69, 68, 32, 236, 128, 1, 5, 32, 87, 73, 84, 72, 231, 176, + 20, 85, 4, 166, 194, 21, 78, 3, 82, 13, 33, 6, 85, 82, 78, 69, 68, 32, + 10, 230, 193, 21, 69, 2, 71, 2, 75, 2, 77, 3, 82, 186, 11, 136, 1, 5, 77, 65, 76, 76, 32, 145, 131, 1, 22, 85, 66, 83, 67, 82, 73, 80, 84, 32, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 150, 11, 76, 15, 67, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 82, 32, 43, 76, 4, 18, 73, 3, @@ -4516,2677 +4495,2670 @@ static const unsigned char packed_name_dawg[] = { 230, 2, 73, 166, 7, 74, 182, 1, 75, 178, 2, 76, 206, 6, 77, 178, 2, 78, 218, 3, 79, 242, 8, 80, 218, 2, 81, 174, 1, 82, 142, 8, 83, 250, 10, 84, 246, 13, 85, 218, 9, 86, 130, 3, 87, 110, 88, 226, 2, 89, 171, 3, 90, - 101, 118, 32, 198, 3, 69, 82, 78, 192, 226, 4, 4, 76, 80, 72, 65, 222, - 180, 15, 86, 186, 164, 1, 65, 2, 79, 2, 85, 3, 89, 72, 88, 5, 87, 73, 84, + 101, 118, 32, 198, 3, 69, 82, 78, 192, 226, 4, 4, 76, 80, 72, 65, 146, + 176, 15, 86, 186, 164, 1, 65, 2, 79, 2, 85, 3, 89, 72, 88, 5, 87, 73, 84, 72, 32, 157, 229, 5, 11, 82, 69, 86, 69, 82, 83, 69, 68, 45, 83, 67, 70, 150, 1, 66, 34, 68, 54, 82, 170, 34, 77, 250, 21, 67, 150, 50, 72, 158, - 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 142, 175, 13, 84, 219, + 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 194, 170, 13, 84, 219, 183, 3, 83, 12, 161, 106, 4, 82, 69, 86, 69, 12, 22, 79, 151, 57, 73, 8, 214, 57, 84, 211, 13, 85, 10, 26, 73, 175, 231, 4, 69, 8, 26, 78, 179, - 174, 4, 71, 6, 17, 2, 71, 32, 6, 236, 58, 4, 65, 66, 79, 86, 251, 223, + 174, 4, 71, 6, 17, 2, 71, 32, 6, 236, 58, 4, 65, 66, 79, 86, 175, 219, 18, 66, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 242, 116, 71, 186, 2, 65, - 239, 199, 3, 77, 2, 181, 198, 10, 7, 71, 76, 73, 67, 65, 78, 65, 41, 140, + 239, 199, 3, 77, 2, 233, 193, 10, 7, 71, 76, 73, 67, 65, 78, 65, 41, 140, 1, 6, 32, 87, 73, 84, 72, 32, 130, 1, 65, 108, 11, 76, 65, 67, 75, 76, - 69, 84, 84, 69, 82, 32, 38, 82, 174, 201, 4, 79, 143, 202, 16, 69, 18, - 110, 84, 138, 60, 70, 210, 57, 76, 230, 224, 3, 77, 174, 7, 80, 166, 183, + 69, 84, 84, 69, 82, 32, 38, 82, 174, 201, 4, 79, 195, 197, 16, 69, 18, + 110, 84, 138, 60, 70, 210, 57, 76, 230, 224, 3, 77, 174, 7, 80, 218, 178, 12, 68, 170, 206, 2, 72, 247, 165, 1, 83, 2, 255, 7, 79, 8, 64, 5, 82, - 82, 69, 68, 32, 161, 81, 6, 83, 69, 76, 73, 78, 69, 6, 182, 32, 65, 154, - 152, 21, 69, 3, 79, 6, 242, 195, 4, 79, 183, 244, 16, 69, 2, 181, 186, + 82, 69, 68, 32, 161, 81, 6, 83, 69, 76, 73, 78, 69, 6, 182, 32, 65, 206, + 147, 21, 69, 3, 79, 6, 242, 195, 4, 79, 235, 239, 16, 69, 2, 233, 181, 10, 4, 79, 75, 69, 78, 47, 108, 6, 32, 87, 73, 84, 72, 32, 196, 1, 2, 72, - 73, 92, 6, 76, 79, 83, 69, 68, 32, 90, 85, 155, 228, 20, 79, 24, 102, 67, - 182, 113, 65, 154, 233, 3, 80, 218, 5, 82, 246, 255, 14, 72, 182, 50, 66, - 242, 34, 68, 211, 80, 83, 10, 54, 69, 190, 113, 73, 150, 251, 6, 85, 207, + 73, 92, 6, 76, 79, 83, 69, 68, 32, 90, 85, 207, 223, 20, 79, 24, 102, 67, + 182, 113, 65, 154, 233, 3, 80, 218, 5, 82, 170, 251, 14, 72, 182, 50, 66, + 242, 34, 68, 211, 80, 83, 10, 54, 69, 190, 113, 73, 202, 246, 6, 85, 207, 161, 12, 65, 4, 245, 51, 5, 68, 73, 76, 76, 65, 7, 49, 10, 32, 87, 73, 84, 72, 32, 76, 79, 87, 32, 4, 162, 107, 82, 45, 4, 76, 69, 70, 84, 8, - 34, 73, 18, 79, 159, 200, 4, 82, 2, 163, 88, 78, 4, 130, 221, 4, 80, 151, - 146, 9, 77, 4, 37, 7, 65, 84, 82, 73, 76, 76, 79, 5, 209, 142, 13, 5, 32, + 34, 73, 18, 79, 159, 200, 4, 82, 2, 163, 88, 78, 4, 130, 221, 4, 80, 203, + 141, 9, 77, 4, 37, 7, 65, 84, 82, 73, 76, 76, 79, 5, 133, 138, 13, 5, 32, 87, 73, 84, 72, 73, 96, 6, 32, 87, 73, 84, 72, 32, 182, 1, 69, 34, 79, - 178, 1, 90, 178, 213, 4, 66, 187, 201, 16, 85, 32, 98, 83, 34, 84, 238, - 32, 67, 226, 45, 77, 170, 31, 76, 138, 217, 3, 72, 138, 15, 80, 167, 183, - 12, 68, 4, 134, 68, 72, 235, 189, 20, 84, 4, 26, 79, 215, 209, 19, 65, 2, - 219, 141, 20, 80, 8, 246, 78, 90, 207, 189, 20, 76, 16, 60, 6, 84, 76, - 69, 83, 83, 32, 49, 5, 85, 66, 76, 69, 32, 8, 26, 74, 151, 176, 21, 73, - 7, 167, 198, 4, 32, 8, 42, 87, 142, 202, 4, 82, 175, 239, 5, 84, 2, 163, - 239, 6, 89, 11, 11, 32, 8, 26, 87, 151, 198, 4, 68, 2, 169, 90, 5, 73, + 178, 1, 90, 178, 213, 4, 66, 239, 196, 16, 85, 32, 98, 83, 34, 84, 238, + 32, 67, 226, 45, 77, 170, 31, 76, 138, 217, 3, 72, 138, 15, 80, 219, 178, + 12, 68, 4, 134, 68, 72, 159, 185, 20, 84, 4, 26, 79, 139, 205, 19, 65, 2, + 143, 137, 20, 80, 8, 246, 78, 90, 131, 185, 20, 76, 16, 60, 6, 84, 76, + 69, 83, 83, 32, 49, 5, 85, 66, 76, 69, 32, 8, 26, 74, 203, 171, 21, 73, + 7, 167, 198, 4, 32, 8, 42, 87, 142, 202, 4, 82, 227, 234, 5, 84, 2, 215, + 234, 6, 89, 11, 11, 32, 8, 26, 87, 151, 198, 4, 68, 2, 169, 90, 5, 73, 84, 72, 32, 67, 119, 112, 6, 32, 87, 73, 84, 72, 32, 214, 4, 71, 72, 2, - 78, 71, 68, 2, 83, 72, 164, 1, 2, 90, 72, 159, 150, 17, 84, 76, 182, 1, + 78, 71, 68, 2, 83, 72, 164, 1, 2, 90, 72, 211, 145, 17, 84, 76, 182, 1, 67, 158, 2, 68, 110, 78, 214, 15, 84, 158, 23, 77, 250, 1, 86, 190, 3, 70, 178, 42, 72, 158, 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, - 62, 66, 194, 64, 82, 235, 165, 16, 83, 24, 92, 6, 69, 68, 73, 76, 76, 65, - 32, 9, 73, 82, 67, 85, 77, 70, 76, 69, 88, 151, 132, 20, 65, 5, 169, 149, - 4, 3, 32, 65, 78, 19, 11, 32, 16, 40, 4, 65, 78, 68, 32, 167, 137, 19, + 62, 66, 194, 64, 82, 159, 161, 16, 83, 24, 92, 6, 69, 68, 73, 76, 76, 65, + 32, 9, 73, 82, 67, 85, 77, 70, 76, 69, 88, 203, 255, 19, 65, 5, 169, 149, + 4, 3, 32, 65, 78, 19, 11, 32, 16, 40, 4, 65, 78, 68, 32, 219, 132, 19, 66, 14, 162, 86, 67, 130, 2, 72, 226, 11, 71, 186, 2, 65, 238, 199, 3, - 77, 158, 170, 4, 68, 251, 234, 8, 84, 12, 22, 79, 227, 98, 73, 10, 28, 2, - 84, 32, 227, 51, 85, 8, 192, 88, 5, 65, 66, 79, 86, 69, 199, 175, 18, 66, - 2, 131, 154, 14, 79, 4, 157, 134, 7, 13, 89, 80, 84, 79, 76, 79, 71, 73, + 77, 210, 165, 4, 68, 251, 234, 8, 84, 12, 22, 79, 227, 98, 73, 10, 28, 2, + 84, 32, 227, 51, 85, 8, 192, 88, 5, 65, 66, 79, 86, 69, 251, 170, 18, 66, + 2, 183, 149, 14, 79, 4, 209, 129, 7, 13, 89, 80, 84, 79, 76, 79, 71, 73, 67, 65, 76, 32, 65, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 158, 195, 4, 67, 231, 9, 80, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 88, 10, 68, 79, 85, 66, 76, 69, 32, 66, 65, 82, 230, 203, 4, 80, 142, 1, 67, 207, 4, 82, 5, 217, 204, 4, 4, 32, 65, 78, 68, 15, 11, 32, 12, 38, 82, 37, 5, 87, 73, - 84, 72, 32, 2, 157, 150, 14, 4, 69, 86, 69, 82, 10, 54, 67, 178, 202, 4, - 80, 218, 5, 82, 195, 158, 14, 84, 4, 234, 220, 7, 85, 207, 161, 12, 65, + 84, 72, 32, 2, 209, 145, 14, 4, 69, 86, 69, 82, 10, 54, 67, 178, 202, 4, + 80, 218, 5, 82, 247, 153, 14, 84, 4, 158, 216, 7, 85, 207, 161, 12, 65, 17, 84, 6, 32, 87, 73, 84, 72, 32, 73, 11, 69, 78, 71, 32, 68, 73, 71, - 82, 65, 80, 72, 10, 134, 194, 4, 77, 174, 7, 80, 206, 133, 15, 72, 166, - 85, 68, 211, 80, 83, 5, 209, 168, 18, 8, 32, 87, 73, 84, 72, 32, 84, 82, - 37, 72, 6, 32, 87, 73, 84, 72, 32, 126, 76, 230, 204, 18, 65, 147, 211, + 82, 65, 80, 72, 10, 134, 194, 4, 77, 174, 7, 80, 130, 129, 15, 72, 166, + 85, 68, 211, 80, 83, 5, 133, 164, 18, 8, 32, 87, 73, 84, 72, 32, 84, 82, + 37, 72, 6, 32, 87, 73, 84, 72, 32, 126, 76, 154, 200, 18, 65, 147, 211, 2, 72, 22, 218, 3, 67, 250, 90, 65, 178, 174, 3, 66, 190, 25, 77, 174, - 33, 80, 182, 235, 3, 79, 154, 154, 11, 72, 166, 85, 68, 211, 80, 83, 8, - 33, 6, 79, 84, 84, 65, 76, 32, 8, 142, 205, 18, 83, 250, 212, 2, 65, 2, + 33, 80, 234, 230, 3, 79, 154, 154, 11, 72, 166, 85, 68, 211, 80, 83, 8, + 33, 6, 79, 84, 84, 65, 76, 32, 8, 194, 200, 18, 83, 250, 212, 2, 65, 2, 73, 3, 85, 39, 140, 1, 6, 32, 87, 73, 84, 72, 32, 150, 45, 65, 232, 25, - 12, 79, 79, 75, 69, 68, 32, 83, 67, 72, 87, 65, 32, 174, 243, 3, 69, 159, - 230, 16, 86, 24, 86, 66, 34, 67, 46, 68, 214, 91, 76, 146, 232, 3, 80, - 206, 133, 15, 72, 247, 165, 1, 83, 2, 205, 147, 13, 3, 82, 69, 86, 6, - 158, 59, 69, 154, 32, 73, 227, 156, 19, 65, 8, 234, 87, 73, 226, 190, 3, - 69, 203, 228, 12, 79, 75, 80, 6, 32, 87, 73, 84, 72, 32, 222, 4, 78, 188, - 1, 2, 79, 84, 135, 152, 21, 83, 48, 178, 1, 67, 34, 68, 210, 1, 77, 64, + 12, 79, 79, 75, 69, 68, 32, 83, 67, 72, 87, 65, 32, 174, 243, 3, 69, 211, + 225, 16, 86, 24, 86, 66, 34, 67, 46, 68, 214, 91, 76, 146, 232, 3, 80, + 130, 129, 15, 72, 247, 165, 1, 83, 2, 129, 143, 13, 3, 82, 69, 86, 6, + 158, 59, 69, 154, 32, 73, 151, 152, 19, 65, 8, 234, 87, 73, 226, 190, 3, + 69, 255, 223, 12, 79, 75, 80, 6, 32, 87, 73, 84, 72, 32, 222, 4, 78, 188, + 1, 2, 79, 84, 187, 147, 21, 83, 48, 178, 1, 67, 34, 68, 210, 1, 77, 64, 6, 79, 71, 79, 78, 69, 75, 78, 84, 130, 71, 72, 226, 11, 71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 144, 64, 6, 83, 84, 82, 79, 75, 69, 51, 82, 4, - 210, 88, 73, 227, 156, 19, 65, 14, 18, 73, 47, 79, 4, 217, 26, 7, 65, 69, + 210, 88, 73, 151, 152, 19, 65, 14, 18, 73, 47, 79, 4, 217, 26, 7, 65, 69, 82, 69, 83, 73, 83, 10, 28, 2, 84, 32, 215, 37, 85, 8, 64, 10, 65, 66, - 79, 86, 69, 32, 65, 78, 68, 32, 187, 249, 18, 66, 6, 150, 84, 71, 186, 2, - 65, 131, 221, 16, 84, 4, 29, 5, 65, 67, 82, 79, 78, 5, 217, 36, 4, 32, + 79, 86, 69, 32, 65, 78, 68, 32, 239, 244, 18, 66, 6, 150, 84, 71, 186, 2, + 65, 183, 216, 16, 84, 4, 29, 5, 65, 67, 82, 79, 78, 5, 217, 36, 4, 32, 65, 78, 68, 7, 145, 73, 15, 32, 65, 78, 68, 32, 68, 79, 84, 32, 65, 66, 79, 86, 69, 32, 4, 21, 3, 73, 76, 68, 4, 151, 142, 5, 69, 16, 46, 83, 93, - 7, 86, 69, 82, 84, 69, 68, 32, 12, 29, 5, 85, 76, 65, 82, 32, 12, 238, - 152, 21, 68, 2, 70, 2, 71, 2, 82, 2, 83, 3, 84, 4, 26, 65, 199, 129, 21, - 79, 2, 143, 188, 17, 76, 6, 206, 163, 4, 65, 129, 188, 6, 5, 73, 70, 73, + 7, 86, 69, 82, 84, 69, 68, 32, 12, 29, 5, 85, 76, 65, 82, 32, 12, 162, + 148, 21, 68, 2, 70, 2, 71, 2, 82, 2, 83, 3, 84, 4, 26, 65, 251, 252, 20, + 79, 2, 195, 183, 17, 76, 6, 206, 163, 4, 65, 181, 183, 6, 5, 73, 70, 73, 69, 68, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 94, 67, 148, 180, 4, 13, - 68, 79, 84, 32, 65, 66, 79, 86, 69, 32, 65, 78, 68, 187, 178, 16, 83, 6, - 178, 82, 73, 130, 223, 3, 82, 227, 189, 15, 65, 29, 48, 6, 32, 87, 73, - 84, 72, 32, 175, 147, 21, 82, 24, 98, 67, 34, 68, 50, 83, 222, 79, 65, - 138, 1, 76, 146, 232, 3, 80, 182, 235, 3, 79, 155, 154, 11, 72, 4, 210, - 48, 69, 251, 188, 19, 65, 6, 214, 70, 73, 182, 197, 3, 69, 151, 182, 4, + 68, 79, 84, 32, 65, 66, 79, 86, 69, 32, 65, 78, 68, 239, 173, 16, 83, 6, + 178, 82, 73, 130, 223, 3, 82, 151, 185, 15, 65, 29, 48, 6, 32, 87, 73, + 84, 72, 32, 227, 142, 21, 82, 24, 98, 67, 34, 68, 50, 83, 222, 79, 65, + 138, 1, 76, 146, 232, 3, 80, 234, 230, 3, 79, 155, 154, 11, 72, 4, 210, + 48, 69, 175, 184, 19, 65, 6, 214, 70, 73, 182, 197, 3, 69, 203, 177, 4, 79, 4, 29, 5, 84, 82, 79, 75, 69, 5, 161, 25, 6, 32, 65, 78, 68, 32, 68, 79, 136, 1, 6, 32, 87, 73, 84, 72, 32, 250, 3, 65, 38, 69, 48, 5, 79, 78, - 71, 32, 83, 130, 180, 4, 83, 2, 90, 186, 201, 16, 85, 219, 16, 74, 50, + 71, 32, 83, 130, 180, 4, 83, 2, 90, 238, 196, 16, 85, 219, 16, 74, 50, 178, 1, 66, 86, 67, 56, 2, 68, 79, 100, 3, 77, 73, 68, 130, 2, 72, 230, 72, 65, 138, 1, 76, 150, 224, 3, 73, 162, 1, 82, 222, 2, 70, 130, 4, 80, - 234, 243, 12, 84, 219, 183, 3, 83, 6, 36, 3, 69, 76, 84, 167, 216, 20, + 158, 239, 12, 84, 219, 183, 3, 83, 6, 36, 3, 69, 76, 84, 219, 211, 20, 65, 5, 193, 181, 4, 6, 32, 65, 78, 68, 32, 80, 8, 166, 44, 69, 22, 73, - 154, 155, 7, 85, 207, 161, 12, 65, 8, 38, 84, 25, 5, 85, 66, 76, 69, 32, - 4, 141, 25, 2, 32, 66, 4, 242, 172, 4, 77, 175, 191, 15, 66, 8, 36, 4, - 68, 76, 69, 32, 207, 44, 45, 6, 186, 167, 17, 84, 210, 150, 3, 82, 79, - 68, 4, 173, 154, 4, 4, 77, 66, 68, 65, 6, 158, 181, 4, 90, 189, 138, 13, + 206, 150, 7, 85, 207, 161, 12, 65, 8, 38, 84, 25, 5, 85, 66, 76, 69, 32, + 4, 141, 25, 2, 32, 66, 4, 242, 172, 4, 77, 227, 186, 15, 66, 8, 36, 4, + 68, 76, 69, 32, 207, 44, 45, 6, 238, 162, 17, 84, 210, 150, 3, 82, 79, + 68, 4, 173, 154, 4, 4, 77, 66, 68, 65, 6, 158, 181, 4, 90, 241, 133, 13, 3, 78, 73, 83, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 18, 68, 35, 72, 4, - 206, 63, 73, 203, 205, 19, 79, 2, 197, 172, 4, 2, 73, 71, 27, 56, 6, 32, - 87, 73, 84, 72, 32, 102, 73, 167, 251, 20, 85, 16, 138, 72, 65, 182, 223, - 3, 67, 186, 2, 77, 174, 7, 80, 166, 183, 12, 68, 198, 60, 84, 231, 145, + 206, 63, 73, 255, 200, 19, 79, 2, 197, 172, 4, 2, 73, 71, 27, 56, 6, 32, + 87, 73, 84, 72, 32, 102, 73, 219, 246, 20, 85, 16, 138, 72, 65, 182, 223, + 3, 67, 186, 2, 77, 174, 7, 80, 218, 178, 12, 68, 198, 60, 84, 231, 145, 2, 72, 6, 25, 4, 68, 68, 76, 69, 6, 76, 7, 45, 87, 69, 76, 83, 72, 32, - 173, 145, 17, 6, 32, 83, 67, 79, 84, 83, 4, 190, 255, 19, 76, 211, 139, - 1, 86, 49, 58, 32, 216, 2, 2, 71, 32, 130, 247, 20, 85, 219, 16, 74, 40, + 225, 140, 17, 6, 32, 83, 67, 79, 84, 83, 4, 242, 250, 19, 76, 211, 139, + 1, 86, 49, 58, 32, 216, 2, 2, 71, 32, 182, 242, 20, 85, 219, 16, 74, 40, 88, 5, 87, 73, 84, 72, 32, 209, 142, 6, 11, 80, 82, 69, 67, 69, 68, 69, 68, 32, 66, 89, 38, 122, 67, 74, 76, 158, 37, 77, 234, 27, 71, 186, 2, - 65, 102, 68, 182, 232, 3, 80, 218, 5, 82, 222, 229, 3, 79, 183, 136, 9, - 84, 10, 170, 36, 69, 22, 73, 134, 255, 3, 82, 150, 156, 3, 85, 207, 161, + 65, 102, 68, 182, 232, 3, 80, 218, 5, 82, 146, 225, 3, 79, 183, 136, 9, + 84, 10, 170, 36, 69, 22, 73, 134, 255, 3, 82, 202, 151, 3, 85, 207, 161, 12, 65, 6, 132, 66, 3, 79, 78, 71, 202, 2, 73, 183, 239, 3, 69, 2, 25, 4, - 87, 73, 84, 72, 2, 177, 224, 17, 5, 32, 84, 73, 76, 68, 115, 116, 6, 32, - 87, 73, 84, 72, 32, 186, 6, 76, 52, 4, 80, 69, 78, 32, 174, 186, 13, 77, + 87, 73, 84, 72, 2, 229, 219, 17, 5, 32, 84, 73, 76, 68, 115, 116, 6, 32, + 87, 73, 84, 72, 32, 186, 6, 76, 52, 4, 80, 69, 78, 32, 226, 181, 13, 77, 134, 197, 7, 73, 2, 79, 3, 85, 86, 154, 1, 67, 70, 68, 152, 1, 2, 76, 79, 86, 77, 46, 79, 38, 83, 66, 84, 106, 86, 222, 44, 72, 242, 12, 71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 195, 64, 82, 14, 172, 49, 9, 73, 82, 67, - 85, 77, 70, 76, 69, 88, 159, 172, 19, 65, 14, 18, 73, 47, 79, 4, 221, 13, + 85, 77, 70, 76, 69, 88, 211, 167, 19, 65, 14, 18, 73, 47, 79, 4, 221, 13, 7, 65, 69, 82, 69, 83, 73, 83, 10, 22, 84, 171, 47, 85, 6, 11, 32, 6, - 140, 13, 5, 65, 66, 79, 86, 69, 223, 212, 18, 66, 6, 66, 78, 216, 208, + 140, 13, 5, 65, 66, 79, 86, 69, 147, 208, 18, 66, 6, 66, 78, 140, 204, 12, 6, 87, 32, 82, 73, 78, 71, 255, 177, 8, 79, 2, 159, 21, 71, 6, 11, 65, 6, 189, 2, 4, 67, 82, 79, 78, 4, 217, 11, 5, 71, 79, 78, 69, 75, 4, 25, 4, 84, 82, 79, 75, 4, 11, 69, 5, 213, 49, 2, 32, 65, 8, 25, 4, 73, 76, 68, 69, 9, 29, 5, 32, 65, 78, 68, 32, 6, 162, 47, 68, 142, 13, 65, 239, 199, 3, 77, 6, 81, 18, 69, 82, 84, 73, 67, 65, 76, 32, 76, 73, 78, - 69, 32, 66, 69, 76, 79, 87, 7, 221, 43, 4, 32, 65, 78, 68, 2, 153, 136, + 69, 32, 66, 69, 76, 79, 87, 7, 221, 43, 4, 32, 65, 78, 68, 2, 205, 131, 10, 8, 68, 32, 80, 79, 76, 73, 83, 72, 16, 26, 79, 131, 166, 4, 69, 13, - 48, 6, 32, 87, 73, 84, 72, 32, 227, 254, 20, 69, 8, 210, 55, 71, 186, 2, - 65, 242, 238, 3, 82, 235, 165, 16, 83, 25, 44, 6, 32, 87, 73, 84, 72, 32, + 48, 6, 32, 87, 73, 84, 72, 32, 151, 250, 20, 69, 8, 210, 55, 71, 186, 2, + 65, 242, 238, 3, 82, 159, 161, 16, 83, 25, 44, 6, 32, 87, 73, 84, 72, 32, 179, 1, 72, 18, 86, 70, 34, 83, 170, 56, 65, 238, 225, 3, 77, 174, 7, 80, - 206, 133, 15, 72, 167, 85, 68, 2, 153, 196, 14, 3, 76, 79, 85, 6, 210, - 28, 84, 209, 175, 12, 6, 81, 85, 73, 82, 82, 69, 4, 26, 65, 171, 252, 20, + 130, 129, 15, 72, 167, 85, 68, 2, 205, 191, 14, 3, 76, 79, 85, 6, 210, + 28, 84, 133, 171, 12, 6, 81, 85, 73, 82, 82, 69, 4, 26, 65, 223, 247, 20, 73, 2, 193, 183, 5, 18, 82, 89, 78, 71, 69, 65, 76, 32, 86, 79, 73, 67, 69, 68, 32, 70, 82, 73, 13, 48, 6, 32, 87, 73, 84, 72, 32, 139, 161, 4, - 80, 8, 42, 68, 16, 4, 72, 79, 79, 75, 23, 83, 2, 227, 44, 73, 5, 171, - 195, 18, 32, 2, 197, 26, 6, 84, 82, 79, 75, 69, 32, 77, 90, 32, 228, 4, + 80, 8, 42, 68, 16, 4, 72, 79, 79, 75, 23, 83, 2, 227, 44, 73, 5, 223, + 190, 18, 32, 2, 197, 26, 6, 84, 82, 79, 75, 69, 32, 77, 90, 32, 228, 4, 8, 69, 86, 69, 82, 83, 69, 68, 32, 148, 2, 2, 85, 77, 179, 147, 4, 65, - 46, 36, 4, 87, 73, 84, 72, 235, 6, 82, 44, 26, 32, 195, 190, 15, 79, 42, + 46, 36, 4, 87, 73, 84, 72, 235, 6, 82, 44, 26, 32, 247, 185, 15, 79, 42, 166, 1, 67, 50, 68, 200, 1, 8, 70, 73, 83, 72, 72, 79, 79, 75, 66, 76, - 34, 84, 142, 18, 77, 162, 30, 65, 246, 173, 3, 73, 166, 59, 80, 182, 235, - 3, 79, 143, 192, 12, 83, 6, 170, 19, 69, 154, 255, 3, 82, 227, 189, 15, - 65, 8, 11, 79, 8, 24, 2, 84, 32, 111, 85, 6, 26, 66, 251, 249, 19, 65, 4, + 34, 84, 142, 18, 77, 162, 30, 65, 246, 173, 3, 73, 166, 59, 80, 234, 230, + 3, 79, 143, 192, 12, 83, 6, 170, 19, 69, 154, 255, 3, 82, 151, 185, 15, + 65, 8, 11, 79, 8, 24, 2, 84, 32, 111, 85, 6, 26, 66, 175, 245, 19, 65, 4, 25, 4, 69, 76, 79, 87, 5, 29, 5, 32, 65, 78, 68, 32, 2, 191, 249, 3, 77, 2, 21, 3, 66, 76, 69, 2, 11, 32, 2, 227, 46, 71, 7, 29, 5, 32, 65, 78, 68, 32, 4, 214, 146, 4, 77, 175, 7, 80, 4, 222, 49, 73, 131, 236, 3, 79, - 4, 238, 215, 18, 73, 195, 61, 65, 22, 162, 1, 72, 40, 6, 79, 80, 69, 78, + 4, 162, 211, 18, 73, 195, 61, 65, 22, 162, 1, 72, 40, 6, 79, 80, 69, 78, 32, 69, 216, 147, 4, 8, 82, 32, 87, 73, 84, 72, 32, 70, 168, 2, 3, 83, - 67, 82, 190, 223, 14, 69, 190, 87, 67, 159, 166, 1, 75, 2, 11, 65, 2, - 253, 250, 9, 2, 76, 70, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 138, 157, 4, - 82, 247, 255, 14, 72, 5, 11, 32, 2, 11, 82, 2, 185, 146, 17, 3, 79, 84, + 67, 82, 242, 218, 14, 69, 190, 87, 67, 159, 166, 1, 75, 2, 11, 65, 2, + 177, 246, 9, 2, 76, 70, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 138, 157, 4, + 82, 171, 251, 14, 72, 5, 11, 32, 2, 11, 82, 2, 237, 141, 17, 3, 79, 84, 85, 85, 180, 1, 6, 32, 87, 73, 84, 72, 32, 218, 4, 65, 66, 67, 218, 1, 72, 34, 73, 156, 2, 13, 81, 85, 65, 84, 32, 82, 69, 86, 69, 82, 83, 69, - 68, 221, 235, 9, 6, 84, 73, 82, 82, 85, 80, 40, 110, 65, 34, 67, 86, 68, - 138, 1, 83, 174, 1, 86, 210, 9, 77, 186, 135, 4, 80, 182, 235, 3, 79, + 68, 145, 231, 9, 6, 84, 73, 82, 82, 85, 80, 40, 110, 65, 34, 67, 86, 68, + 138, 1, 83, 174, 1, 86, 210, 9, 77, 186, 135, 4, 80, 234, 230, 3, 79, 155, 154, 11, 72, 4, 205, 1, 4, 67, 85, 84, 69, 12, 58, 65, 230, 10, 69, - 82, 79, 202, 31, 73, 151, 251, 6, 85, 4, 113, 3, 82, 79, 78, 8, 32, 3, - 79, 84, 32, 207, 32, 73, 6, 26, 66, 207, 241, 19, 65, 4, 25, 4, 69, 76, - 79, 87, 5, 11, 32, 2, 173, 237, 19, 3, 65, 78, 68, 4, 22, 72, 203, 42, + 82, 79, 202, 31, 73, 203, 246, 6, 85, 4, 113, 3, 82, 79, 78, 8, 32, 3, + 79, 84, 32, 207, 32, 73, 6, 26, 66, 131, 237, 19, 65, 4, 25, 4, 69, 76, + 79, 87, 5, 11, 32, 2, 225, 232, 19, 3, 65, 78, 68, 4, 22, 72, 203, 42, 87, 2, 21, 3, 79, 82, 84, 2, 17, 2, 32, 83, 2, 11, 84, 2, 21, 3, 82, 79, - 75, 2, 11, 69, 2, 17, 2, 32, 79, 2, 197, 222, 19, 4, 86, 69, 82, 76, 2, - 37, 7, 69, 82, 84, 73, 67, 65, 76, 2, 205, 40, 2, 32, 76, 4, 46, 76, 165, - 226, 19, 5, 75, 72, 65, 32, 89, 2, 247, 12, 84, 18, 48, 3, 72, 87, 65, + 75, 2, 11, 69, 2, 17, 2, 32, 79, 2, 249, 217, 19, 4, 86, 69, 82, 76, 2, + 37, 7, 69, 82, 84, 73, 67, 65, 76, 2, 205, 40, 2, 32, 76, 4, 46, 76, 217, + 221, 19, 5, 75, 72, 65, 32, 89, 2, 247, 12, 84, 18, 48, 3, 72, 87, 65, 97, 5, 82, 73, 80, 84, 32, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 222, 35, - 71, 186, 2, 65, 242, 238, 3, 82, 247, 255, 14, 72, 8, 26, 82, 207, 132, - 4, 71, 5, 241, 186, 11, 5, 32, 87, 73, 84, 72, 2, 133, 240, 16, 3, 65, + 71, 186, 2, 65, 242, 238, 3, 82, 171, 251, 14, 72, 8, 26, 82, 207, 132, + 4, 71, 5, 165, 182, 11, 5, 32, 87, 73, 84, 72, 2, 185, 235, 16, 3, 65, 82, 80, 14, 48, 7, 68, 69, 87, 65, 89, 83, 32, 199, 1, 71, 12, 110, 79, - 56, 4, 84, 85, 82, 78, 156, 205, 10, 11, 68, 73, 65, 69, 82, 69, 83, 73, - 90, 69, 68, 215, 154, 10, 85, 7, 26, 80, 135, 135, 4, 32, 2, 193, 240, 9, - 2, 69, 78, 2, 221, 138, 13, 2, 69, 68, 2, 237, 237, 16, 4, 77, 79, 73, - 68, 2, 139, 129, 10, 32, 147, 1, 188, 1, 6, 32, 87, 73, 84, 72, 32, 192, + 56, 4, 84, 85, 82, 78, 208, 200, 10, 11, 68, 73, 65, 69, 82, 69, 83, 73, + 90, 69, 68, 215, 154, 10, 85, 7, 26, 80, 135, 135, 4, 32, 2, 245, 235, 9, + 2, 69, 78, 2, 145, 134, 13, 2, 69, 68, 2, 161, 233, 16, 4, 77, 79, 73, + 68, 2, 191, 252, 9, 32, 147, 1, 188, 1, 6, 32, 87, 73, 84, 72, 32, 192, 3, 2, 69, 83, 70, 72, 130, 2, 79, 102, 82, 54, 85, 174, 131, 4, 67, 202, - 1, 83, 208, 129, 11, 9, 65, 73, 76, 76, 69, 83, 83, 32, 80, 251, 215, 5, + 1, 83, 132, 253, 10, 9, 65, 73, 76, 76, 69, 83, 83, 32, 80, 251, 215, 5, 90, 34, 110, 67, 182, 1, 68, 66, 77, 170, 31, 76, 146, 232, 3, 80, 168, - 5, 4, 72, 79, 79, 75, 50, 82, 235, 165, 16, 83, 10, 58, 69, 22, 73, 62, - 79, 222, 154, 7, 85, 207, 161, 12, 65, 2, 219, 168, 12, 68, 2, 37, 7, 82, - 67, 85, 77, 70, 76, 69, 2, 215, 178, 18, 88, 2, 17, 2, 77, 77, 2, 175, - 178, 18, 65, 8, 32, 2, 73, 65, 135, 191, 16, 79, 4, 154, 21, 71, 215, 6, + 5, 4, 72, 79, 79, 75, 50, 82, 159, 161, 16, 83, 10, 58, 69, 22, 73, 62, + 79, 146, 150, 7, 85, 207, 161, 12, 65, 2, 143, 164, 12, 68, 2, 37, 7, 82, + 67, 85, 77, 70, 76, 69, 2, 139, 174, 18, 88, 2, 17, 2, 77, 77, 2, 227, + 173, 18, 65, 8, 32, 2, 73, 65, 187, 186, 16, 79, 4, 154, 21, 71, 215, 6, 69, 4, 17, 2, 73, 68, 4, 26, 45, 255, 255, 3, 68, 2, 149, 142, 4, 6, 72, 69, 73, 71, 72, 84, 6, 45, 9, 72, 32, 68, 73, 71, 82, 65, 80, 72, 7, 243, 133, 4, 32, 8, 64, 12, 32, 87, 73, 84, 72, 32, 83, 84, 82, 73, 75, 69, - 43, 79, 2, 233, 179, 16, 5, 84, 72, 82, 79, 85, 6, 17, 2, 82, 78, 7, 41, + 43, 79, 2, 157, 175, 16, 5, 84, 72, 82, 79, 85, 6, 17, 2, 82, 78, 7, 41, 8, 32, 87, 73, 84, 72, 32, 83, 84, 4, 25, 4, 82, 79, 75, 69, 5, 11, 32, 2, 133, 215, 3, 6, 84, 72, 82, 79, 85, 71, 8, 26, 78, 203, 133, 4, 80, 6, - 17, 2, 69, 32, 6, 206, 206, 4, 83, 134, 212, 10, 70, 155, 168, 3, 84, 2, - 17, 2, 69, 83, 2, 11, 73, 2, 255, 187, 20, 76, 76, 44, 5, 82, 78, 69, 68, - 32, 143, 222, 20, 77, 74, 162, 1, 68, 22, 72, 66, 73, 54, 79, 142, 1, 82, - 110, 84, 22, 86, 198, 129, 4, 65, 38, 77, 198, 2, 89, 210, 193, 16, 85, - 218, 19, 69, 2, 71, 2, 75, 2, 76, 3, 87, 2, 131, 160, 17, 69, 7, 141, + 17, 2, 69, 32, 6, 206, 206, 4, 83, 186, 207, 10, 70, 155, 168, 3, 84, 2, + 17, 2, 69, 83, 2, 11, 73, 2, 179, 183, 20, 76, 76, 44, 5, 82, 78, 69, 68, + 32, 195, 217, 20, 77, 74, 162, 1, 68, 22, 72, 66, 73, 54, 79, 142, 1, 82, + 110, 84, 22, 86, 198, 129, 4, 65, 38, 77, 198, 2, 89, 134, 189, 16, 85, + 218, 19, 69, 2, 71, 2, 75, 2, 76, 3, 87, 2, 183, 155, 17, 69, 7, 141, 242, 3, 11, 32, 87, 73, 84, 72, 32, 70, 73, 83, 72, 72, 5, 11, 78, 2, - 197, 218, 9, 5, 83, 85, 76, 65, 82, 12, 66, 69, 232, 230, 3, 7, 32, 79, + 249, 213, 9, 5, 83, 85, 76, 65, 82, 12, 66, 69, 232, 230, 3, 7, 32, 79, 80, 69, 78, 45, 79, 159, 29, 80, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, - 238, 178, 18, 72, 143, 248, 1, 83, 15, 33, 6, 32, 87, 73, 84, 72, 32, 12, - 198, 247, 3, 77, 174, 7, 80, 130, 5, 76, 154, 159, 14, 84, 183, 97, 72, + 162, 174, 18, 72, 143, 248, 1, 83, 15, 33, 6, 32, 87, 73, 84, 72, 32, 12, + 198, 247, 3, 77, 174, 7, 80, 130, 5, 76, 206, 154, 14, 84, 183, 97, 72, 5, 135, 255, 3, 32, 7, 11, 32, 4, 161, 5, 4, 87, 73, 84, 72, 97, 90, 32, - 152, 228, 3, 6, 80, 83, 73, 76, 79, 78, 182, 244, 16, 69, 2, 73, 2, 77, + 152, 228, 3, 6, 80, 83, 73, 76, 79, 78, 234, 239, 16, 69, 2, 73, 2, 77, 3, 79, 82, 48, 3, 66, 65, 82, 49, 5, 87, 73, 84, 72, 32, 5, 245, 17, 8, 32, 87, 73, 84, 72, 32, 83, 72, 78, 142, 1, 67, 74, 68, 150, 2, 72, 170, 1, 77, 134, 1, 79, 106, 82, 38, 84, 186, 9, 71, 82, 83, 234, 1, 65, 246, 173, 3, 73, 62, 66, 143, 66, 76, 6, 152, 203, 4, 9, 73, 82, 67, 85, 77, - 70, 76, 69, 88, 139, 228, 14, 65, 18, 52, 8, 73, 65, 69, 82, 69, 83, 73, - 83, 131, 1, 79, 13, 11, 32, 10, 40, 4, 65, 78, 68, 32, 183, 179, 18, 66, - 8, 50, 67, 226, 13, 71, 186, 2, 65, 239, 199, 3, 77, 2, 183, 173, 19, 65, - 6, 26, 85, 167, 163, 18, 84, 4, 21, 3, 66, 76, 69, 4, 11, 32, 4, 138, 13, + 70, 76, 69, 88, 191, 223, 14, 65, 18, 52, 8, 73, 65, 69, 82, 69, 83, 73, + 83, 131, 1, 79, 13, 11, 32, 10, 40, 4, 65, 78, 68, 32, 235, 174, 18, 66, + 8, 50, 67, 226, 13, 71, 186, 2, 65, 239, 199, 3, 77, 2, 235, 168, 19, 65, + 6, 26, 85, 219, 158, 18, 84, 4, 21, 3, 66, 76, 69, 4, 11, 32, 4, 138, 13, 71, 187, 2, 65, 14, 11, 79, 14, 28, 2, 82, 78, 207, 81, 79, 13, 29, 5, - 32, 65, 78, 68, 32, 10, 66, 72, 226, 11, 71, 186, 2, 65, 138, 242, 7, 68, + 32, 65, 78, 68, 32, 10, 66, 72, 226, 11, 71, 186, 2, 65, 190, 237, 7, 68, 251, 234, 8, 84, 2, 229, 80, 2, 79, 79, 10, 29, 5, 65, 67, 82, 79, 78, - 11, 29, 5, 32, 65, 78, 68, 32, 8, 50, 68, 214, 10, 71, 186, 2, 65, 131, - 221, 16, 84, 2, 171, 10, 73, 6, 29, 5, 71, 79, 78, 69, 75, 7, 11, 32, 4, - 25, 4, 65, 78, 68, 32, 4, 178, 12, 65, 131, 221, 16, 84, 4, 142, 251, 3, - 69, 171, 161, 14, 73, 6, 25, 4, 73, 76, 68, 69, 7, 11, 32, 4, 26, 65, - 151, 174, 18, 66, 2, 17, 2, 78, 68, 2, 11, 32, 2, 139, 11, 65, 29, 84, 6, - 32, 87, 73, 84, 72, 32, 162, 1, 73, 66, 79, 134, 189, 19, 69, 151, 144, - 1, 89, 14, 82, 68, 234, 242, 3, 80, 142, 1, 67, 146, 7, 82, 206, 235, 12, - 84, 231, 145, 2, 72, 4, 26, 73, 203, 251, 7, 79, 2, 17, 2, 65, 71, 2, - 201, 157, 20, 2, 79, 78, 2, 41, 8, 83, 73, 71, 79, 84, 72, 73, 67, 2, - 131, 239, 18, 32, 6, 33, 6, 76, 65, 80, 85, 75, 32, 6, 158, 182, 20, 65, + 11, 29, 5, 32, 65, 78, 68, 32, 8, 50, 68, 214, 10, 71, 186, 2, 65, 183, + 216, 16, 84, 2, 171, 10, 73, 6, 29, 5, 71, 79, 78, 69, 75, 7, 11, 32, 4, + 25, 4, 65, 78, 68, 32, 4, 178, 12, 65, 183, 216, 16, 84, 4, 142, 251, 3, + 69, 223, 156, 14, 73, 6, 25, 4, 73, 76, 68, 69, 7, 11, 32, 4, 26, 65, + 203, 169, 18, 66, 2, 17, 2, 78, 68, 2, 11, 32, 2, 139, 11, 65, 29, 84, 6, + 32, 87, 73, 84, 72, 32, 162, 1, 73, 66, 79, 186, 184, 19, 69, 151, 144, + 1, 89, 14, 82, 68, 234, 242, 3, 80, 142, 1, 67, 146, 7, 82, 130, 231, 12, + 84, 231, 145, 2, 72, 4, 26, 73, 255, 246, 7, 79, 2, 17, 2, 65, 71, 2, + 253, 152, 20, 2, 79, 78, 2, 41, 8, 83, 73, 71, 79, 84, 72, 73, 67, 2, + 183, 234, 18, 32, 6, 33, 6, 76, 65, 80, 85, 75, 32, 6, 210, 177, 20, 65, 2, 79, 3, 85, 19, 33, 6, 32, 87, 73, 84, 72, 32, 16, 202, 4, 67, 18, 68, - 70, 71, 186, 2, 65, 154, 144, 18, 82, 207, 94, 72, 17, 33, 6, 32, 87, 73, + 70, 71, 186, 2, 65, 206, 139, 18, 82, 207, 94, 72, 17, 33, 6, 32, 87, 73, 84, 72, 32, 14, 42, 68, 32, 2, 76, 79, 187, 239, 3, 80, 4, 222, 3, 73, - 247, 198, 19, 79, 8, 60, 11, 78, 71, 32, 76, 69, 70, 84, 32, 76, 69, 71, + 171, 194, 19, 79, 8, 60, 11, 78, 71, 32, 76, 69, 70, 84, 32, 76, 69, 71, 79, 87, 7, 11, 32, 4, 60, 7, 65, 78, 68, 32, 76, 79, 87, 65, 4, 87, 73, - 84, 72, 2, 17, 2, 32, 82, 2, 21, 3, 73, 71, 72, 2, 155, 154, 11, 84, 2, - 185, 199, 19, 4, 32, 83, 69, 82, 33, 48, 6, 32, 87, 73, 84, 72, 32, 175, - 155, 16, 79, 28, 110, 67, 18, 68, 70, 71, 22, 72, 42, 76, 22, 83, 234, 1, - 65, 238, 199, 3, 77, 150, 149, 13, 84, 155, 179, 1, 82, 2, 203, 3, 73, 6, - 26, 73, 171, 163, 16, 79, 2, 17, 2, 65, 69, 2, 187, 192, 16, 82, 2, 239, - 216, 18, 82, 4, 17, 2, 79, 79, 4, 239, 136, 5, 75, 2, 187, 205, 19, 79, - 4, 26, 72, 179, 150, 20, 84, 2, 21, 3, 79, 82, 84, 2, 197, 252, 7, 6, 32, + 84, 72, 2, 17, 2, 32, 82, 2, 21, 3, 73, 71, 72, 2, 207, 149, 11, 84, 2, + 237, 194, 19, 4, 32, 83, 69, 82, 33, 48, 6, 32, 87, 73, 84, 72, 32, 227, + 150, 16, 79, 28, 110, 67, 18, 68, 70, 71, 22, 72, 42, 76, 22, 83, 234, 1, + 65, 238, 199, 3, 77, 202, 144, 13, 84, 155, 179, 1, 82, 2, 203, 3, 73, 6, + 26, 73, 223, 158, 16, 79, 2, 17, 2, 65, 69, 2, 239, 187, 16, 82, 2, 163, + 212, 18, 82, 4, 17, 2, 79, 79, 4, 239, 136, 5, 75, 2, 239, 200, 19, 79, + 4, 26, 72, 231, 145, 20, 84, 2, 21, 3, 79, 82, 84, 2, 249, 247, 7, 6, 32, 82, 73, 71, 72, 84, 31, 33, 6, 32, 87, 73, 84, 72, 32, 28, 98, 65, 22, - 67, 82, 68, 38, 76, 34, 83, 198, 224, 3, 77, 174, 7, 80, 218, 5, 82, 247, - 255, 14, 72, 2, 223, 190, 13, 67, 6, 42, 73, 150, 251, 6, 85, 207, 161, - 12, 65, 2, 229, 203, 11, 4, 82, 67, 85, 77, 6, 154, 187, 3, 69, 203, 228, - 12, 79, 2, 11, 73, 2, 163, 183, 12, 78, 4, 26, 87, 163, 147, 20, 84, 2, - 215, 154, 17, 65, 18, 90, 70, 142, 195, 9, 73, 172, 9, 6, 76, 79, 78, 71, - 32, 83, 190, 217, 10, 83, 219, 5, 79, 10, 34, 70, 254, 193, 20, 73, 3, - 76, 7, 250, 193, 20, 73, 3, 76, 36, 150, 1, 83, 202, 192, 20, 65, 2, 69, + 67, 82, 68, 38, 76, 34, 83, 198, 224, 3, 77, 174, 7, 80, 218, 5, 82, 171, + 251, 14, 72, 2, 147, 186, 13, 67, 6, 42, 73, 202, 246, 6, 85, 207, 161, + 12, 65, 2, 153, 199, 11, 4, 82, 67, 85, 77, 6, 154, 187, 3, 69, 255, 223, + 12, 79, 2, 11, 73, 2, 215, 178, 12, 78, 4, 26, 87, 215, 142, 20, 84, 2, + 139, 150, 17, 65, 18, 90, 70, 194, 190, 9, 73, 172, 9, 6, 76, 79, 78, 71, + 32, 83, 190, 217, 10, 83, 219, 5, 79, 10, 34, 70, 178, 189, 20, 73, 3, + 76, 7, 174, 189, 20, 73, 3, 76, 36, 150, 1, 83, 254, 187, 20, 65, 2, 69, 2, 72, 2, 73, 2, 74, 2, 75, 2, 76, 2, 77, 2, 78, 2, 79, 2, 80, 2, 82, 2, 84, 2, 85, 2, 86, 3, 88, 5, 215, 230, 4, 67, 226, 5, 240, 1, 2, 65, 70, 144, 1, 2, 70, 84, 190, 38, 79, 20, 5, 80, 67, 72, 65, 32, 164, 8, 8, 83, - 83, 45, 84, 72, 65, 78, 32, 184, 250, 12, 5, 85, 75, 79, 84, 72, 218, + 83, 45, 84, 72, 65, 78, 32, 236, 245, 12, 5, 85, 75, 79, 84, 72, 218, 194, 3, 68, 228, 23, 6, 86, 69, 76, 32, 83, 76, 218, 233, 2, 77, 239, 79, 71, 6, 120, 3, 76, 69, 83, 160, 196, 1, 14, 32, 70, 76, 85, 84, 84, 69, - 82, 73, 78, 71, 32, 73, 78, 189, 218, 11, 3, 89, 32, 71, 2, 227, 243, 14, + 82, 73, 78, 71, 32, 73, 78, 241, 213, 11, 3, 89, 32, 71, 2, 151, 239, 14, 83, 134, 4, 58, 32, 250, 20, 45, 217, 2, 6, 87, 65, 82, 68, 83, 32, 246, 1, 166, 2, 65, 234, 4, 66, 202, 1, 67, 96, 2, 68, 79, 112, 2, 72, 65, - 166, 3, 76, 46, 77, 38, 79, 102, 82, 146, 3, 83, 82, 84, 222, 1, 87, 158, - 183, 8, 70, 236, 5, 14, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32, 82, 73, + 166, 3, 76, 46, 77, 38, 79, 102, 82, 146, 3, 83, 82, 84, 222, 1, 87, 210, + 178, 8, 70, 236, 5, 14, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32, 82, 73, 71, 72, 86, 78, 202, 1, 80, 153, 13, 10, 86, 69, 82, 84, 73, 67, 65, 76, 32, 66, 28, 22, 78, 143, 4, 82, 22, 28, 2, 68, 32, 191, 3, 71, 16, 96, 6, 76, 79, 87, 69, 82, 32, 32, 6, 82, 73, 71, 72, 84, 32, 89, 6, 85, 80, 80, - 69, 82, 32, 4, 202, 1, 65, 239, 196, 17, 79, 6, 50, 84, 209, 143, 18, 6, - 68, 79, 85, 66, 76, 69, 4, 250, 157, 17, 82, 211, 232, 1, 65, 6, 82, 65, + 69, 82, 32, 4, 202, 1, 65, 163, 192, 17, 79, 6, 50, 84, 133, 139, 18, 6, + 68, 79, 85, 66, 76, 69, 4, 174, 153, 17, 82, 211, 232, 1, 65, 6, 82, 65, 53, 16, 79, 78, 69, 32, 69, 73, 71, 72, 84, 72, 32, 66, 76, 79, 67, 75, - 2, 237, 155, 17, 8, 78, 68, 32, 82, 73, 71, 72, 84, 5, 245, 147, 19, 17, + 2, 161, 151, 17, 8, 78, 68, 32, 82, 73, 71, 72, 84, 5, 169, 143, 19, 17, 32, 67, 79, 78, 84, 65, 73, 78, 73, 78, 71, 32, 66, 76, 65, 67, 75, 6, - 198, 188, 8, 69, 185, 1, 4, 76, 69, 32, 66, 6, 26, 67, 163, 192, 8, 82, - 2, 253, 191, 8, 5, 32, 76, 69, 83, 83, 12, 40, 4, 65, 82, 66, 32, 187, - 192, 8, 76, 8, 40, 4, 68, 79, 87, 78, 1, 2, 85, 80, 4, 57, 12, 32, 82, - 73, 71, 72, 84, 32, 66, 65, 82, 66, 32, 4, 240, 137, 17, 4, 68, 79, 87, - 78, 1, 2, 85, 80, 14, 254, 191, 8, 85, 166, 26, 79, 242, 235, 2, 69, 141, + 250, 183, 8, 69, 185, 1, 4, 76, 69, 32, 66, 6, 26, 67, 215, 187, 8, 82, + 2, 177, 187, 8, 5, 32, 76, 69, 83, 83, 12, 40, 4, 65, 82, 66, 32, 239, + 187, 8, 76, 8, 40, 4, 68, 79, 87, 78, 1, 2, 85, 80, 4, 57, 12, 32, 82, + 73, 71, 72, 84, 32, 66, 65, 82, 66, 32, 4, 164, 133, 17, 4, 68, 79, 87, + 78, 1, 2, 85, 80, 14, 178, 187, 8, 85, 166, 26, 79, 242, 235, 2, 69, 141, 168, 2, 8, 76, 79, 83, 69, 68, 32, 69, 78, 10, 44, 5, 85, 66, 76, 69, 32, - 171, 192, 8, 84, 8, 222, 193, 8, 87, 190, 30, 65, 154, 132, 3, 81, 199, - 199, 4, 80, 38, 36, 3, 76, 70, 32, 163, 198, 8, 78, 36, 132, 2, 6, 67, - 73, 82, 67, 76, 69, 162, 193, 8, 66, 90, 70, 82, 72, 50, 82, 58, 84, 70, + 223, 187, 8, 84, 8, 146, 189, 8, 87, 190, 30, 65, 154, 132, 3, 81, 199, + 199, 4, 80, 38, 36, 3, 76, 70, 32, 215, 193, 8, 78, 36, 132, 2, 6, 67, + 73, 82, 67, 76, 69, 214, 188, 8, 66, 90, 70, 82, 72, 50, 82, 58, 84, 70, 87, 246, 13, 76, 22, 85, 176, 200, 8, 30, 73, 78, 86, 69, 82, 83, 69, 32, 77, 69, 68, 73, 85, 77, 32, 83, 72, 65, 68, 69, 32, 65, 78, 68, 32, 82, 73, 71, 72, 84, 255, 26, 77, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 42, - 84, 206, 136, 18, 70, 191, 214, 1, 68, 4, 150, 203, 5, 72, 199, 145, 13, - 87, 4, 232, 162, 1, 2, 85, 71, 163, 161, 7, 79, 2, 217, 155, 19, 4, 85, - 76, 84, 73, 8, 36, 3, 78, 69, 32, 243, 196, 8, 85, 6, 194, 183, 17, 81, + 84, 130, 132, 18, 70, 191, 214, 1, 68, 4, 146, 203, 5, 72, 255, 140, 13, + 87, 4, 232, 162, 1, 2, 85, 71, 215, 156, 7, 79, 2, 141, 151, 19, 4, 85, + 76, 84, 73, 8, 36, 3, 78, 69, 32, 167, 192, 8, 85, 6, 246, 178, 17, 81, 146, 4, 69, 45, 5, 84, 72, 73, 82, 68, 30, 44, 5, 73, 71, 72, 84, 32, - 199, 197, 8, 65, 28, 152, 1, 5, 65, 82, 82, 79, 87, 132, 1, 12, 68, 79, - 85, 66, 76, 69, 32, 65, 82, 82, 79, 87, 30, 87, 214, 242, 8, 79, 162, + 251, 192, 8, 65, 28, 152, 1, 5, 65, 82, 82, 79, 87, 132, 1, 12, 68, 79, + 85, 66, 76, 69, 32, 65, 82, 82, 79, 87, 30, 87, 138, 238, 8, 79, 162, 143, 8, 66, 54, 83, 211, 68, 84, 11, 11, 32, 8, 72, 5, 87, 73, 84, 72, - 32, 221, 214, 18, 7, 84, 72, 82, 79, 85, 71, 72, 6, 146, 195, 16, 68, - 234, 183, 3, 86, 79, 83, 7, 245, 234, 8, 2, 32, 87, 4, 202, 253, 8, 65, - 227, 191, 8, 72, 34, 218, 195, 8, 45, 70, 69, 78, 73, 168, 1, 3, 80, 69, - 69, 26, 81, 227, 2, 85, 26, 106, 82, 178, 200, 8, 72, 130, 226, 7, 79, + 32, 145, 210, 18, 7, 84, 72, 82, 79, 85, 71, 72, 6, 198, 190, 16, 68, + 234, 183, 3, 86, 79, 83, 7, 169, 230, 8, 2, 32, 87, 4, 254, 248, 8, 65, + 227, 191, 8, 72, 34, 142, 191, 8, 45, 70, 69, 78, 73, 168, 1, 3, 80, 69, + 69, 26, 81, 227, 2, 85, 26, 106, 82, 230, 195, 8, 72, 130, 226, 7, 79, 212, 134, 1, 8, 87, 79, 32, 84, 72, 73, 82, 68, 151, 198, 1, 65, 6, 40, - 4, 73, 65, 78, 71, 171, 203, 8, 65, 4, 140, 242, 4, 8, 76, 69, 32, 66, - 69, 83, 73, 68, 179, 191, 12, 85, 16, 206, 205, 8, 72, 202, 1, 73, 181, + 4, 73, 65, 78, 71, 223, 198, 8, 65, 4, 140, 242, 4, 8, 76, 69, 32, 66, + 69, 83, 73, 68, 231, 186, 12, 85, 16, 130, 201, 8, 72, 202, 1, 73, 181, 200, 10, 2, 82, 73, 62, 128, 1, 9, 80, 79, 73, 78, 84, 73, 78, 71, 32, - 138, 1, 83, 250, 205, 8, 70, 226, 2, 72, 153, 7, 7, 84, 79, 45, 82, 73, - 71, 72, 30, 86, 65, 130, 211, 8, 67, 94, 68, 58, 77, 58, 82, 182, 1, 83, - 74, 84, 211, 172, 8, 69, 6, 190, 211, 8, 78, 158, 175, 8, 84, 159, 2, 73, - 4, 44, 5, 73, 68, 69, 32, 65, 175, 214, 8, 72, 2, 205, 147, 1, 2, 82, 67, + 138, 1, 83, 174, 201, 8, 70, 226, 2, 72, 153, 7, 7, 84, 79, 45, 82, 73, + 71, 72, 30, 86, 65, 182, 206, 8, 67, 94, 68, 58, 77, 58, 82, 182, 1, 83, + 74, 84, 211, 172, 8, 69, 6, 242, 206, 8, 78, 158, 175, 8, 84, 159, 2, 73, + 4, 44, 5, 73, 68, 69, 32, 65, 227, 209, 8, 72, 2, 205, 147, 1, 2, 82, 67, 210, 1, 172, 1, 5, 65, 82, 82, 79, 87, 174, 5, 66, 70, 72, 242, 3, 84, - 178, 2, 87, 162, 214, 8, 68, 210, 1, 70, 170, 7, 76, 26, 79, 34, 80, 50, - 82, 70, 83, 242, 206, 8, 67, 47, 81, 73, 26, 32, 159, 236, 17, 45, 68, - 102, 65, 138, 1, 84, 132, 2, 5, 87, 73, 84, 72, 32, 242, 215, 8, 70, 217, - 165, 10, 4, 79, 86, 69, 82, 12, 44, 5, 66, 79, 86, 69, 32, 223, 217, 8, - 78, 10, 64, 4, 83, 72, 79, 82, 214, 216, 8, 82, 182, 230, 4, 65, 55, 84, - 2, 223, 255, 18, 84, 12, 56, 7, 72, 82, 79, 85, 71, 72, 32, 53, 3, 79, - 32, 66, 6, 226, 188, 13, 83, 238, 206, 4, 76, 211, 149, 2, 88, 6, 32, 2, - 65, 82, 231, 218, 8, 76, 5, 245, 168, 12, 23, 32, 79, 86, 69, 82, 32, 82, + 178, 2, 87, 214, 209, 8, 68, 210, 1, 70, 170, 7, 76, 26, 79, 34, 80, 50, + 82, 70, 83, 242, 206, 8, 67, 47, 81, 73, 26, 32, 211, 231, 17, 45, 68, + 102, 65, 138, 1, 84, 132, 2, 5, 87, 73, 84, 72, 32, 166, 211, 8, 70, 217, + 165, 10, 4, 79, 86, 69, 82, 12, 44, 5, 66, 79, 86, 69, 32, 147, 213, 8, + 78, 10, 64, 4, 83, 72, 79, 82, 138, 212, 8, 82, 182, 230, 4, 65, 55, 84, + 2, 147, 251, 18, 84, 12, 56, 7, 72, 82, 79, 85, 71, 72, 32, 53, 3, 79, + 32, 66, 6, 150, 184, 13, 83, 238, 206, 4, 76, 211, 149, 2, 88, 6, 32, 2, + 65, 82, 155, 214, 8, 76, 5, 169, 164, 12, 23, 32, 79, 86, 69, 82, 32, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, 32, 36, 118, - 76, 198, 218, 8, 68, 182, 1, 80, 30, 83, 38, 84, 138, 210, 8, 77, 38, 78, - 122, 69, 150, 153, 1, 72, 171, 165, 1, 86, 4, 162, 174, 17, 65, 171, 247, - 1, 79, 8, 234, 220, 8, 65, 172, 10, 5, 79, 84, 84, 79, 77, 219, 200, 8, - 76, 30, 26, 65, 131, 181, 17, 69, 26, 48, 6, 82, 80, 79, 79, 78, 32, 139, - 215, 19, 78, 24, 80, 10, 87, 73, 84, 72, 32, 66, 65, 82, 66, 32, 249, - 245, 9, 4, 79, 86, 69, 82, 22, 40, 4, 68, 79, 87, 78, 117, 2, 85, 80, 10, - 26, 32, 243, 186, 17, 87, 8, 234, 223, 8, 66, 188, 2, 7, 65, 66, 79, 86, - 69, 32, 82, 234, 208, 8, 70, 179, 5, 84, 12, 26, 32, 255, 185, 17, 87, - 10, 60, 6, 65, 66, 79, 86, 69, 32, 222, 177, 17, 70, 179, 5, 84, 6, 42, - 76, 213, 223, 8, 4, 82, 73, 71, 72, 4, 250, 221, 8, 69, 147, 223, 4, 79, - 54, 44, 2, 82, 73, 202, 227, 8, 79, 159, 5, 87, 34, 44, 5, 65, 78, 71, - 76, 69, 255, 231, 8, 80, 30, 56, 8, 45, 72, 69, 65, 68, 69, 68, 32, 251, - 191, 17, 32, 28, 52, 5, 65, 82, 82, 79, 87, 202, 184, 17, 68, 39, 80, 25, - 11, 32, 22, 192, 228, 8, 9, 79, 86, 69, 82, 32, 82, 73, 71, 72, 22, 87, - 135, 208, 8, 84, 6, 26, 72, 143, 234, 8, 65, 4, 45, 9, 73, 84, 69, 32, - 65, 82, 82, 79, 87, 5, 173, 189, 17, 2, 32, 87, 5, 243, 253, 18, 80, 148, + 76, 250, 213, 8, 68, 182, 1, 80, 30, 83, 38, 84, 138, 210, 8, 77, 38, 78, + 122, 69, 150, 153, 1, 72, 171, 165, 1, 86, 4, 214, 169, 17, 65, 171, 247, + 1, 79, 8, 158, 216, 8, 65, 172, 10, 5, 79, 84, 84, 79, 77, 219, 200, 8, + 76, 30, 26, 65, 183, 176, 17, 69, 26, 48, 6, 82, 80, 79, 79, 78, 32, 191, + 210, 19, 78, 24, 80, 10, 87, 73, 84, 72, 32, 66, 65, 82, 66, 32, 173, + 241, 9, 4, 79, 86, 69, 82, 22, 40, 4, 68, 79, 87, 78, 117, 2, 85, 80, 10, + 26, 32, 167, 182, 17, 87, 8, 158, 219, 8, 66, 188, 2, 7, 65, 66, 79, 86, + 69, 32, 82, 234, 208, 8, 70, 179, 5, 84, 12, 26, 32, 179, 181, 17, 87, + 10, 60, 6, 65, 66, 79, 86, 69, 32, 146, 173, 17, 70, 179, 5, 84, 6, 42, + 76, 137, 219, 8, 4, 82, 73, 71, 72, 4, 174, 217, 8, 69, 147, 223, 4, 79, + 54, 44, 2, 82, 73, 254, 222, 8, 79, 159, 5, 87, 34, 44, 5, 65, 78, 71, + 76, 69, 179, 227, 8, 80, 30, 56, 8, 45, 72, 69, 65, 68, 69, 68, 32, 175, + 187, 17, 32, 28, 52, 5, 65, 82, 82, 79, 87, 254, 179, 17, 68, 39, 80, 25, + 11, 32, 22, 244, 223, 8, 9, 79, 86, 69, 82, 32, 82, 73, 71, 72, 22, 87, + 135, 208, 8, 84, 6, 26, 72, 195, 229, 8, 65, 4, 45, 9, 73, 84, 69, 32, + 65, 82, 82, 79, 87, 5, 225, 184, 17, 2, 32, 87, 5, 167, 249, 18, 80, 148, 1, 252, 1, 15, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 124, 7, 76, 69, 84, 84, 69, 82, 32, 236, 1, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 198, 1, 83, 172, 1, 11, 86, 79, 87, 69, 76, - 32, 83, 73, 71, 78, 32, 251, 154, 18, 68, 18, 66, 75, 22, 78, 130, 148, - 20, 76, 2, 77, 2, 80, 2, 82, 3, 84, 5, 155, 195, 19, 65, 5, 189, 212, 12, - 4, 89, 73, 78, 45, 78, 194, 1, 75, 2, 80, 254, 153, 7, 68, 130, 236, 10, + 32, 83, 73, 71, 78, 32, 175, 150, 18, 68, 18, 66, 75, 22, 78, 182, 143, + 20, 76, 2, 77, 2, 80, 2, 82, 3, 84, 5, 207, 190, 19, 65, 5, 241, 207, 12, + 4, 89, 73, 78, 45, 78, 194, 1, 75, 2, 80, 178, 149, 7, 68, 130, 236, 10, 66, 2, 70, 2, 71, 2, 72, 2, 77, 138, 15, 78, 170, 181, 1, 84, 46, 67, 2, - 83, 138, 69, 74, 2, 76, 2, 82, 2, 86, 2, 87, 2, 89, 187, 2, 65, 6, 222, - 143, 20, 72, 2, 76, 187, 2, 65, 10, 82, 84, 40, 14, 78, 89, 69, 84, 32, + 83, 138, 69, 74, 2, 76, 2, 82, 2, 86, 2, 87, 2, 89, 187, 2, 65, 6, 146, + 139, 20, 72, 2, 76, 187, 2, 65, 10, 82, 84, 40, 14, 78, 89, 69, 84, 32, 84, 72, 89, 79, 79, 77, 32, 84, 65, 43, 67, 6, 38, 65, 21, 5, 83, 72, 79, - 79, 75, 2, 247, 253, 6, 45, 5, 17, 2, 32, 67, 2, 237, 150, 15, 3, 69, 82, + 79, 75, 2, 171, 249, 6, 45, 5, 17, 2, 32, 67, 2, 161, 146, 15, 3, 69, 82, 45, 8, 92, 4, 73, 71, 78, 32, 37, 15, 85, 66, 74, 79, 73, 78, 69, 68, 32, - 76, 69, 84, 84, 69, 82, 4, 202, 242, 15, 78, 231, 208, 2, 82, 4, 11, 32, - 4, 226, 140, 20, 82, 3, 89, 14, 130, 184, 16, 85, 206, 141, 1, 79, 250, + 76, 69, 84, 84, 69, 82, 4, 254, 237, 15, 78, 231, 208, 2, 82, 4, 11, 32, + 4, 150, 136, 20, 82, 3, 89, 14, 182, 179, 16, 85, 206, 141, 1, 79, 250, 198, 2, 65, 186, 2, 69, 3, 73, 52, 138, 1, 65, 128, 4, 11, 69, 81, 85, 65, 76, 32, 84, 79, 32, 79, 82, 200, 1, 2, 66, 85, 42, 67, 186, 1, 79, - 210, 2, 87, 207, 252, 18, 83, 16, 40, 5, 66, 79, 86, 69, 32, 171, 4, 78, + 210, 2, 87, 131, 248, 18, 83, 16, 40, 5, 66, 79, 86, 69, 32, 171, 4, 78, 12, 152, 1, 7, 71, 82, 69, 65, 84, 69, 82, 110, 83, 176, 1, 19, 68, 79, - 85, 66, 76, 69, 45, 76, 73, 78, 69, 32, 69, 81, 85, 65, 76, 32, 65, 167, - 228, 15, 76, 2, 181, 5, 23, 45, 84, 72, 65, 78, 32, 65, 66, 79, 86, 69, + 85, 66, 76, 69, 45, 76, 73, 78, 69, 32, 69, 81, 85, 65, 76, 32, 65, 219, + 223, 15, 76, 2, 181, 5, 23, 45, 84, 72, 65, 78, 32, 65, 66, 79, 86, 69, 32, 68, 79, 85, 66, 76, 69, 45, 76, 73, 78, 69, 6, 152, 1, 7, 73, 77, 73, 76, 65, 82, 32, 93, 26, 76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76, 32, 65, 66, 79, 86, 69, 32, 71, 82, 69, 65, 84, 69, 82, 4, 18, 65, 59, - 79, 2, 25, 4, 66, 79, 86, 69, 2, 181, 243, 17, 2, 32, 71, 2, 227, 2, 82, + 79, 2, 25, 4, 66, 79, 86, 69, 2, 233, 238, 17, 2, 32, 71, 2, 227, 2, 82, 2, 145, 2, 6, 45, 84, 72, 65, 78, 32, 4, 17, 2, 68, 32, 4, 220, 3, 5, 78, - 79, 84, 32, 65, 221, 162, 13, 11, 83, 73, 78, 71, 76, 69, 45, 76, 73, 78, - 69, 4, 217, 132, 13, 5, 84, 32, 78, 79, 84, 4, 65, 14, 76, 79, 83, 69, + 79, 84, 32, 65, 145, 158, 13, 11, 83, 73, 78, 71, 76, 69, 45, 76, 73, 78, + 69, 4, 141, 128, 13, 5, 84, 32, 78, 79, 84, 4, 65, 14, 76, 79, 83, 69, 68, 32, 66, 89, 32, 67, 85, 82, 86, 69, 5, 11, 32, 2, 61, 13, 65, 66, 79, - 86, 69, 32, 83, 76, 65, 78, 84, 69, 68, 2, 17, 2, 32, 69, 2, 151, 245, - 14, 81, 18, 40, 2, 82, 32, 221, 230, 11, 2, 86, 69, 16, 114, 65, 48, 16, - 83, 76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76, 32, 84, 79, 194, 129, - 13, 69, 131, 237, 4, 71, 2, 237, 190, 9, 7, 80, 80, 82, 79, 88, 73, 77, - 9, 49, 10, 32, 87, 73, 84, 72, 32, 68, 79, 84, 32, 6, 26, 65, 243, 209, - 11, 73, 4, 25, 4, 66, 79, 86, 69, 5, 179, 176, 18, 32, 6, 25, 4, 73, 84, - 72, 32, 6, 66, 67, 40, 8, 81, 85, 69, 83, 84, 73, 79, 78, 247, 177, 19, - 68, 2, 201, 208, 11, 5, 73, 82, 67, 76, 69, 2, 17, 2, 32, 77, 2, 17, 2, - 65, 82, 2, 255, 132, 19, 75, 136, 11, 190, 1, 71, 186, 5, 77, 166, 7, 78, - 156, 65, 2, 80, 83, 20, 3, 83, 85, 32, 142, 221, 15, 82, 136, 35, 11, 86, + 86, 69, 32, 83, 76, 65, 78, 84, 69, 68, 2, 17, 2, 32, 69, 2, 203, 240, + 14, 81, 18, 40, 2, 82, 32, 145, 226, 11, 2, 86, 69, 16, 114, 65, 48, 16, + 83, 76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76, 32, 84, 79, 246, 252, + 12, 69, 131, 237, 4, 71, 2, 161, 186, 9, 7, 80, 80, 82, 79, 88, 73, 77, + 9, 49, 10, 32, 87, 73, 84, 72, 32, 68, 79, 84, 32, 6, 26, 65, 167, 205, + 11, 73, 4, 25, 4, 66, 79, 86, 69, 5, 231, 171, 18, 32, 6, 25, 4, 73, 84, + 72, 32, 6, 66, 67, 40, 8, 81, 85, 69, 83, 84, 73, 79, 78, 171, 173, 19, + 68, 2, 253, 203, 11, 5, 73, 82, 67, 76, 69, 2, 17, 2, 32, 77, 2, 17, 2, + 65, 82, 2, 179, 128, 19, 75, 136, 11, 190, 1, 71, 186, 5, 77, 166, 7, 78, + 156, 65, 2, 80, 83, 20, 3, 83, 85, 32, 194, 216, 15, 82, 136, 35, 11, 86, 82, 69, 32, 84, 79, 85, 82, 78, 79, 73, 214, 59, 79, 190, 221, 1, 90, - 191, 84, 66, 44, 26, 65, 57, 2, 72, 84, 2, 181, 174, 9, 9, 84, 85, 82, + 191, 84, 66, 44, 26, 65, 57, 2, 72, 84, 2, 233, 169, 9, 9, 84, 85, 82, 69, 32, 79, 80, 69, 78, 42, 38, 32, 137, 4, 4, 78, 73, 78, 71, 36, 146, - 1, 69, 38, 70, 126, 82, 40, 3, 76, 69, 70, 86, 83, 42, 84, 236, 204, 7, + 1, 69, 38, 70, 126, 82, 40, 3, 76, 69, 70, 86, 83, 42, 84, 160, 200, 7, 3, 66, 76, 85, 238, 170, 9, 87, 254, 41, 86, 226, 78, 71, 219, 69, 67, 2, - 141, 230, 17, 4, 73, 71, 72, 84, 8, 94, 73, 153, 180, 18, 17, 79, 85, 82, - 32, 80, 79, 73, 78, 84, 69, 68, 32, 66, 76, 65, 67, 75, 4, 161, 226, 17, - 2, 86, 69, 4, 36, 3, 73, 71, 72, 135, 157, 18, 65, 2, 245, 241, 1, 16, - 84, 32, 84, 79, 82, 84, 79, 73, 83, 69, 32, 83, 72, 69, 76, 76, 6, 194, - 129, 17, 72, 254, 97, 65, 43, 73, 4, 220, 174, 16, 2, 87, 69, 21, 3, 72, - 82, 69, 7, 29, 5, 32, 77, 79, 79, 68, 5, 219, 155, 8, 32, 138, 1, 80, 3, - 66, 85, 32, 201, 163, 8, 11, 73, 84, 69, 68, 32, 76, 73, 65, 66, 73, 76, + 193, 225, 17, 4, 73, 71, 72, 84, 8, 94, 73, 205, 175, 18, 17, 79, 85, 82, + 32, 80, 79, 73, 78, 84, 69, 68, 32, 66, 76, 65, 67, 75, 4, 213, 221, 17, + 2, 86, 69, 4, 36, 3, 73, 71, 72, 187, 152, 18, 65, 2, 245, 241, 1, 16, + 84, 32, 84, 79, 82, 84, 79, 73, 83, 69, 32, 83, 72, 69, 76, 76, 6, 246, + 252, 16, 72, 254, 97, 65, 43, 73, 4, 144, 170, 16, 2, 87, 69, 21, 3, 72, + 82, 69, 7, 29, 5, 32, 77, 79, 79, 68, 5, 143, 151, 8, 32, 138, 1, 80, 3, + 66, 85, 32, 253, 158, 8, 11, 73, 84, 69, 68, 32, 76, 73, 65, 66, 73, 76, 136, 1, 128, 1, 7, 76, 69, 84, 84, 69, 82, 32, 222, 1, 83, 200, 2, 5, 86, - 79, 87, 69, 76, 154, 217, 12, 69, 246, 198, 4, 81, 223, 96, 68, 60, 170, - 1, 71, 198, 145, 6, 84, 234, 231, 8, 89, 186, 136, 1, 78, 246, 173, 3, + 79, 87, 69, 76, 206, 212, 12, 69, 246, 198, 4, 81, 223, 96, 68, 60, 170, + 1, 71, 250, 140, 6, 84, 234, 231, 8, 89, 186, 136, 1, 78, 246, 173, 3, 83, 82, 66, 2, 67, 2, 68, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, - 2, 82, 3, 87, 6, 202, 171, 18, 89, 230, 201, 1, 72, 187, 2, 65, 32, 108, + 2, 82, 3, 87, 6, 254, 166, 18, 89, 230, 201, 1, 72, 187, 2, 65, 32, 108, 4, 73, 71, 78, 32, 128, 1, 12, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, - 82, 32, 245, 255, 6, 2, 85, 66, 8, 72, 3, 75, 69, 77, 0, 3, 77, 85, 75, - 32, 2, 83, 65, 231, 170, 17, 76, 2, 153, 175, 17, 3, 80, 72, 82, 2, 131, - 226, 19, 45, 18, 194, 255, 15, 78, 142, 177, 3, 65, 194, 66, 75, 2, 76, + 82, 32, 169, 251, 6, 2, 85, 66, 8, 72, 3, 75, 69, 77, 0, 3, 77, 85, 75, + 32, 2, 83, 65, 155, 166, 17, 76, 2, 205, 170, 17, 3, 80, 72, 82, 2, 183, + 221, 19, 45, 18, 246, 250, 15, 78, 142, 177, 3, 65, 194, 66, 75, 2, 76, 2, 77, 2, 80, 2, 82, 3, 84, 20, 84, 6, 32, 83, 73, 71, 78, 32, 149, 90, - 10, 45, 67, 65, 82, 82, 73, 69, 82, 32, 76, 18, 230, 216, 5, 65, 130, + 10, 45, 67, 65, 82, 82, 73, 69, 82, 32, 76, 18, 154, 212, 5, 65, 130, 210, 11, 79, 146, 137, 2, 69, 162, 64, 73, 3, 85, 226, 8, 22, 69, 187, 64, 75, 222, 8, 34, 32, 177, 3, 3, 65, 82, 32, 14, 120, 12, 73, 78, 84, - 69, 71, 82, 65, 84, 73, 79, 78, 32, 150, 167, 13, 70, 206, 153, 3, 83, + 69, 71, 82, 65, 84, 73, 79, 78, 32, 202, 162, 13, 70, 206, 153, 3, 83, 237, 147, 1, 4, 84, 65, 66, 85, 6, 108, 5, 87, 73, 84, 72, 32, 157, 1, 17, 78, 79, 84, 32, 73, 78, 67, 76, 85, 68, 73, 78, 71, 32, 84, 72, 69, 4, 76, 7, 82, 69, 67, 84, 65, 78, 71, 1, 8, 83, 69, 77, 73, 67, 73, 82, 67, 2, 73, 16, 85, 76, 65, 82, 32, 80, 65, 84, 72, 32, 65, 82, 79, 85, - 78, 68, 2, 17, 2, 32, 80, 2, 179, 201, 18, 79, 208, 8, 60, 8, 65, 32, 83, + 78, 68, 2, 17, 2, 32, 80, 2, 231, 196, 18, 79, 208, 8, 60, 8, 65, 32, 83, 73, 71, 78, 32, 65, 205, 24, 2, 66, 32, 170, 5, 122, 49, 86, 51, 202, 2, - 52, 214, 1, 53, 158, 4, 54, 142, 3, 55, 132, 4, 2, 56, 48, 78, 66, 185, - 159, 18, 3, 48, 50, 56, 6, 212, 198, 12, 5, 48, 48, 45, 49, 48, 200, 233, + 52, 214, 1, 53, 158, 4, 54, 142, 3, 55, 132, 4, 2, 56, 48, 78, 66, 237, + 154, 18, 3, 48, 50, 56, 6, 136, 194, 12, 5, 48, 48, 45, 49, 48, 200, 233, 5, 2, 50, 48, 233, 19, 2, 51, 49, 150, 1, 78, 48, 90, 49, 130, 1, 55, - 250, 172, 14, 50, 2, 51, 2, 52, 2, 53, 3, 54, 22, 178, 1, 57, 190, 235, - 19, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 24, 90, 51, 190, - 235, 19, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 6, - 186, 235, 19, 65, 2, 66, 3, 67, 4, 150, 235, 19, 48, 3, 49, 38, 18, 48, + 174, 168, 14, 50, 2, 51, 2, 52, 2, 53, 3, 54, 22, 178, 1, 57, 242, 230, + 19, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 24, 90, 51, 242, + 230, 19, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 6, + 238, 230, 19, 65, 2, 66, 3, 67, 4, 202, 230, 19, 48, 3, 49, 38, 18, 48, 91, 49, 20, 162, 1, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 18, 74, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, - 55, 3, 56, 2, 237, 183, 6, 2, 45, 86, 160, 1, 102, 48, 78, 49, 62, 51, - 86, 52, 70, 53, 86, 54, 190, 11, 50, 194, 171, 2, 57, 174, 240, 11, 55, - 3, 56, 16, 186, 232, 19, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, - 57, 12, 238, 231, 19, 48, 2, 49, 2, 50, 2, 51, 2, 53, 3, 54, 18, 178, - 231, 19, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 14, - 222, 230, 19, 48, 2, 49, 2, 50, 2, 53, 2, 55, 2, 56, 3, 57, 18, 154, 230, - 19, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 12, 198, - 229, 19, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 104, 70, 48, 78, 50, 86, - 51, 38, 52, 78, 54, 150, 162, 14, 53, 131, 2, 49, 16, 194, 228, 19, 48, - 2, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 56, 3, 57, 18, 246, 227, 19, 48, 2, - 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 6, 162, 227, 19, 52, - 2, 55, 3, 56, 16, 254, 226, 19, 48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, - 56, 3, 57, 10, 178, 226, 19, 48, 2, 49, 2, 50, 2, 51, 3, 52, 44, 86, 48, - 134, 2, 49, 196, 129, 2, 2, 51, 50, 153, 204, 17, 6, 50, 54, 32, 69, 89, - 89, 26, 110, 57, 154, 225, 8, 55, 182, 6, 50, 62, 54, 254, 63, 52, 146, - 155, 3, 51, 114, 56, 186, 211, 2, 49, 155, 122, 53, 10, 26, 45, 207, 212, - 18, 32, 8, 96, 2, 50, 32, 156, 180, 12, 3, 54, 32, 76, 184, 2, 3, 52, 32, - 76, 137, 174, 3, 3, 51, 32, 76, 2, 247, 183, 12, 76, 14, 114, 51, 32, 3, - 52, 32, 65, 0, 2, 53, 32, 134, 65, 49, 174, 223, 3, 50, 198, 200, 4, 48, - 249, 249, 6, 2, 55, 32, 2, 11, 32, 2, 147, 153, 12, 79, 2, 151, 160, 18, - 66, 16, 250, 221, 19, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3, + 55, 3, 56, 2, 161, 179, 6, 2, 45, 86, 160, 1, 102, 48, 78, 49, 62, 51, + 86, 52, 70, 53, 86, 54, 190, 11, 50, 194, 171, 2, 57, 226, 235, 11, 55, + 3, 56, 16, 238, 227, 19, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, + 57, 12, 162, 227, 19, 48, 2, 49, 2, 50, 2, 51, 2, 53, 3, 54, 18, 230, + 226, 19, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 14, + 146, 226, 19, 48, 2, 49, 2, 50, 2, 53, 2, 55, 2, 56, 3, 57, 18, 206, 225, + 19, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 12, 250, + 224, 19, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 104, 70, 48, 78, 50, 86, + 51, 38, 52, 78, 54, 202, 157, 14, 53, 131, 2, 49, 16, 246, 223, 19, 48, + 2, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 56, 3, 57, 18, 170, 223, 19, 48, 2, + 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 6, 214, 222, 19, 52, + 2, 55, 3, 56, 16, 178, 222, 19, 48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, + 56, 3, 57, 10, 230, 221, 19, 48, 2, 49, 2, 50, 2, 51, 3, 52, 44, 86, 48, + 134, 2, 49, 196, 129, 2, 2, 51, 50, 205, 199, 17, 6, 50, 54, 32, 69, 89, + 89, 26, 110, 57, 206, 220, 8, 55, 182, 6, 50, 62, 54, 254, 63, 52, 146, + 155, 3, 51, 114, 56, 186, 211, 2, 49, 155, 122, 53, 10, 26, 45, 131, 208, + 18, 32, 8, 96, 2, 50, 32, 208, 175, 12, 3, 54, 32, 76, 184, 2, 3, 52, 32, + 76, 137, 174, 3, 3, 51, 32, 76, 2, 171, 179, 12, 76, 14, 114, 51, 32, 3, + 52, 32, 65, 0, 2, 53, 32, 134, 65, 49, 174, 223, 3, 50, 250, 195, 4, 48, + 249, 249, 6, 2, 55, 32, 2, 11, 32, 2, 199, 148, 12, 79, 2, 203, 155, 18, + 66, 16, 174, 217, 19, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3, 55, 162, 1, 22, 48, 155, 5, 49, 140, 1, 82, 49, 54, 50, 118, 51, 62, 52, - 78, 53, 86, 54, 62, 55, 70, 56, 155, 152, 14, 48, 10, 186, 220, 19, 48, - 2, 49, 2, 51, 2, 54, 3, 55, 28, 86, 49, 2, 50, 138, 82, 51, 170, 137, 19, - 48, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 7, 174, 219, 19, 70, 3, 77, 12, - 146, 219, 19, 48, 2, 49, 2, 52, 2, 55, 2, 56, 3, 57, 16, 214, 218, 19, - 48, 2, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 18, 138, 218, 19, - 48, 2, 49, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 182, 217, - 19, 48, 2, 49, 2, 53, 2, 54, 2, 55, 3, 57, 14, 250, 216, 19, 48, 2, 51, - 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 12, 182, 216, 19, 48, 2, 49, 2, 50, 2, - 53, 2, 54, 3, 55, 22, 82, 50, 36, 2, 51, 49, 30, 56, 186, 171, 12, 49, - 206, 2, 54, 146, 1, 55, 3, 57, 6, 166, 215, 19, 48, 2, 50, 3, 51, 4, 130, - 215, 19, 65, 3, 66, 4, 230, 214, 19, 48, 3, 56, 166, 3, 116, 9, 73, 68, + 78, 53, 86, 54, 62, 55, 70, 56, 207, 147, 14, 48, 10, 238, 215, 19, 48, + 2, 49, 2, 51, 2, 54, 3, 55, 28, 86, 49, 2, 50, 138, 82, 51, 222, 132, 19, + 48, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 7, 226, 214, 19, 70, 3, 77, 12, + 198, 214, 19, 48, 2, 49, 2, 52, 2, 55, 2, 56, 3, 57, 16, 138, 214, 19, + 48, 2, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 18, 190, 213, 19, + 48, 2, 49, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 234, 212, + 19, 48, 2, 49, 2, 53, 2, 54, 2, 55, 3, 57, 14, 174, 212, 19, 48, 2, 51, + 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 12, 234, 211, 19, 48, 2, 49, 2, 50, 2, + 53, 2, 54, 3, 55, 22, 82, 50, 36, 2, 51, 49, 30, 56, 238, 166, 12, 49, + 206, 2, 54, 146, 1, 55, 3, 57, 6, 218, 210, 19, 48, 2, 50, 3, 51, 4, 182, + 210, 19, 65, 3, 66, 4, 154, 210, 19, 48, 3, 56, 166, 3, 116, 9, 73, 68, 69, 79, 71, 82, 65, 77, 32, 220, 17, 10, 77, 79, 78, 79, 71, 82, 65, 77, 32, 66, 249, 1, 2, 83, 89, 234, 1, 54, 66, 253, 15, 8, 86, 69, 83, 83, 69, 76, 32, 66, 176, 1, 22, 49, 131, 11, 50, 126, 86, 48, 210, 3, 50, 166, 1, 51, 86, 52, 122, 53, 114, 54, 146, 1, 55, 118, 56, 71, 57, 28, - 114, 53, 98, 54, 58, 55, 78, 56, 62, 57, 156, 139, 7, 3, 50, 32, 87, 254, - 88, 48, 137, 175, 11, 4, 52, 32, 68, 69, 6, 132, 138, 7, 2, 32, 69, 220, + 114, 53, 98, 54, 58, 55, 78, 56, 62, 57, 208, 134, 7, 3, 50, 32, 87, 254, + 88, 48, 137, 175, 11, 4, 52, 32, 68, 69, 6, 184, 133, 7, 2, 32, 69, 220, 166, 11, 3, 70, 32, 77, 133, 82, 7, 77, 32, 83, 84, 65, 76, 76, 4, 168, - 245, 1, 3, 70, 32, 69, 133, 160, 16, 2, 77, 32, 4, 36, 3, 70, 32, 83, 1, - 2, 77, 32, 2, 129, 236, 11, 4, 72, 69, 45, 71, 4, 240, 159, 9, 3, 77, 32, - 66, 173, 149, 9, 3, 70, 32, 83, 4, 224, 198, 17, 4, 77, 32, 66, 85, 129, - 110, 3, 70, 32, 67, 10, 248, 152, 9, 4, 51, 32, 83, 80, 240, 10, 5, 49, + 245, 1, 3, 70, 32, 69, 185, 155, 16, 2, 77, 32, 4, 36, 3, 70, 32, 83, 1, + 2, 77, 32, 2, 181, 231, 11, 4, 72, 69, 45, 71, 4, 164, 155, 9, 3, 77, 32, + 66, 173, 149, 9, 3, 70, 32, 83, 4, 148, 194, 17, 4, 77, 32, 66, 85, 129, + 110, 3, 70, 32, 67, 10, 172, 148, 9, 4, 51, 32, 83, 80, 240, 10, 5, 49, 32, 66, 65, 82, 148, 240, 4, 4, 50, 32, 79, 76, 20, 6, 53, 32, 67, 89, - 80, 69, 129, 179, 4, 4, 48, 32, 87, 72, 6, 54, 49, 164, 239, 17, 3, 48, - 32, 79, 211, 223, 1, 50, 2, 181, 179, 18, 2, 32, 87, 10, 224, 5, 3, 53, - 32, 87, 252, 150, 9, 6, 48, 32, 66, 82, 79, 78, 172, 2, 4, 49, 32, 71, - 79, 206, 175, 10, 50, 3, 54, 16, 82, 57, 134, 238, 2, 49, 138, 223, 16, + 80, 69, 129, 179, 4, 4, 48, 32, 87, 72, 6, 54, 49, 216, 234, 17, 3, 48, + 32, 79, 211, 223, 1, 50, 2, 233, 174, 18, 2, 32, 87, 10, 224, 5, 3, 53, + 32, 87, 176, 146, 9, 6, 48, 32, 66, 82, 79, 78, 172, 2, 4, 49, 32, 71, + 79, 206, 175, 10, 50, 3, 54, 16, 82, 57, 134, 238, 2, 49, 190, 218, 16, 48, 2, 50, 2, 51, 2, 52, 2, 55, 3, 56, 2, 157, 102, 3, 32, 67, 76, 20, - 160, 177, 14, 5, 51, 32, 65, 82, 77, 152, 216, 4, 5, 50, 32, 71, 65, 82, - 182, 67, 48, 2, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 18, 130, - 130, 14, 54, 216, 196, 3, 4, 51, 32, 77, 79, 134, 133, 2, 48, 2, 49, 2, - 50, 2, 52, 2, 55, 2, 56, 3, 57, 14, 234, 202, 19, 48, 2, 49, 2, 50, 2, - 51, 2, 52, 2, 53, 3, 57, 4, 204, 169, 2, 3, 49, 32, 72, 219, 160, 17, 48, + 212, 172, 14, 5, 51, 32, 65, 82, 77, 152, 216, 4, 5, 50, 32, 71, 65, 82, + 182, 67, 48, 2, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 18, 182, + 253, 13, 54, 216, 196, 3, 4, 51, 32, 77, 79, 134, 133, 2, 48, 2, 49, 2, + 50, 2, 52, 2, 55, 2, 56, 3, 57, 14, 158, 198, 19, 48, 2, 49, 2, 50, 2, + 51, 2, 52, 2, 53, 3, 57, 4, 204, 169, 2, 3, 49, 32, 72, 143, 156, 17, 48, 50, 42, 50, 110, 51, 130, 1, 52, 227, 1, 53, 4, 84, 8, 48, 32, 70, 79, - 79, 84, 83, 84, 245, 215, 6, 7, 53, 32, 66, 65, 84, 72, 84, 2, 231, 179, - 18, 79, 12, 104, 4, 51, 32, 83, 87, 132, 143, 14, 4, 48, 32, 83, 80, 154, - 156, 4, 49, 218, 156, 1, 50, 2, 52, 3, 54, 2, 131, 175, 18, 79, 16, 168, - 1, 9, 48, 32, 87, 72, 69, 69, 76, 69, 68, 2, 49, 34, 51, 180, 180, 17, + 79, 84, 83, 84, 169, 211, 6, 7, 53, 32, 66, 65, 84, 72, 84, 2, 155, 175, + 18, 79, 12, 104, 4, 51, 32, 83, 87, 184, 138, 14, 4, 48, 32, 83, 80, 154, + 156, 4, 49, 218, 156, 1, 50, 2, 52, 3, 54, 2, 183, 170, 18, 79, 16, 168, + 1, 9, 48, 32, 87, 72, 69, 69, 76, 69, 68, 2, 49, 34, 51, 232, 175, 17, 12, 50, 32, 67, 72, 65, 82, 73, 79, 84, 32, 70, 82, 226, 145, 2, 53, 2, - 54, 2, 56, 3, 57, 2, 145, 186, 18, 3, 32, 67, 72, 2, 195, 196, 6, 32, 18, - 224, 190, 18, 3, 52, 32, 68, 158, 135, 1, 49, 2, 50, 2, 51, 2, 53, 2, 54, - 2, 55, 2, 56, 3, 57, 58, 50, 50, 160, 155, 12, 2, 49, 53, 1, 2, 51, 48, - 54, 50, 50, 206, 157, 12, 53, 198, 232, 1, 48, 3, 49, 12, 174, 196, 19, + 54, 2, 56, 3, 57, 2, 197, 181, 18, 3, 32, 67, 72, 2, 247, 191, 6, 32, 18, + 148, 186, 18, 3, 52, 32, 68, 158, 135, 1, 49, 2, 50, 2, 51, 2, 53, 2, 54, + 2, 55, 2, 56, 3, 57, 58, 50, 50, 212, 150, 12, 2, 49, 53, 1, 2, 51, 48, + 54, 50, 50, 130, 153, 12, 53, 198, 232, 1, 48, 3, 49, 12, 226, 191, 19, 49, 2, 50, 2, 54, 2, 55, 2, 56, 3, 57, 12, 46, 49, 153, 12, 6, 50, 52, 55, 32, 68, 73, 10, 50, 50, 70, 51, 181, 11, 5, 53, 54, 32, 84, 85, 4, - 148, 180, 3, 3, 55, 32, 75, 237, 239, 15, 5, 56, 32, 75, 65, 78, 4, 56, - 3, 53, 32, 77, 233, 132, 16, 5, 51, 32, 65, 82, 69, 2, 195, 214, 12, 69, + 148, 180, 3, 3, 55, 32, 75, 161, 235, 15, 5, 56, 32, 75, 65, 78, 4, 56, + 3, 53, 32, 77, 157, 128, 16, 5, 51, 32, 65, 82, 69, 2, 247, 209, 12, 69, 176, 1, 84, 9, 76, 76, 65, 66, 76, 69, 32, 66, 48, 229, 12, 7, 77, 66, 79, 76, 32, 66, 48, 148, 1, 114, 48, 142, 1, 49, 162, 1, 50, 230, 1, 51, 174, 1, 52, 162, 1, 53, 154, 1, 54, 186, 1, 55, 198, 1, 56, 87, 57, 18, - 118, 54, 182, 203, 1, 55, 130, 8, 52, 190, 14, 57, 170, 252, 10, 53, 158, - 152, 2, 56, 198, 10, 49, 254, 2, 50, 207, 8, 51, 2, 151, 129, 18, 32, 16, + 118, 54, 182, 203, 1, 55, 130, 8, 52, 190, 14, 57, 222, 247, 10, 53, 158, + 152, 2, 56, 198, 10, 49, 254, 2, 50, 207, 8, 51, 2, 203, 252, 17, 32, 16, 122, 54, 18, 55, 202, 212, 1, 49, 134, 2, 50, 166, 26, 52, 176, 187, 1, - 2, 53, 32, 158, 247, 5, 48, 229, 128, 9, 2, 51, 32, 2, 171, 95, 32, 2, - 235, 143, 11, 32, 18, 166, 1, 51, 22, 54, 20, 3, 57, 32, 80, 224, 6, 2, - 53, 32, 168, 180, 3, 2, 48, 32, 232, 222, 14, 2, 55, 32, 140, 7, 2, 52, - 32, 162, 91, 56, 185, 44, 3, 49, 32, 81, 2, 247, 180, 14, 32, 2, 195, - 250, 14, 32, 2, 235, 148, 12, 85, 16, 134, 1, 48, 20, 2, 51, 32, 186, - 200, 1, 55, 234, 34, 54, 218, 241, 4, 57, 210, 165, 2, 56, 246, 171, 4, - 49, 205, 237, 5, 3, 50, 32, 81, 2, 183, 182, 14, 32, 2, 135, 1, 82, 16, + 2, 53, 32, 210, 242, 5, 48, 229, 128, 9, 2, 51, 32, 2, 171, 95, 32, 2, + 159, 139, 11, 32, 18, 166, 1, 51, 22, 54, 20, 3, 57, 32, 80, 224, 6, 2, + 53, 32, 168, 180, 3, 2, 48, 32, 156, 218, 14, 2, 55, 32, 140, 7, 2, 52, + 32, 162, 91, 56, 185, 44, 3, 49, 32, 81, 2, 171, 176, 14, 32, 2, 247, + 245, 14, 32, 2, 159, 144, 12, 85, 16, 134, 1, 48, 20, 2, 51, 32, 186, + 200, 1, 55, 234, 34, 54, 142, 237, 4, 57, 210, 165, 2, 56, 246, 171, 4, + 49, 205, 237, 5, 3, 50, 32, 81, 2, 235, 177, 14, 32, 2, 135, 1, 82, 16, 116, 2, 51, 32, 22, 53, 174, 196, 1, 48, 222, 1, 49, 242, 5, 50, 218, 10, - 52, 178, 5, 54, 133, 228, 12, 3, 56, 32, 78, 2, 151, 191, 15, 65, 2, 235, - 166, 17, 32, 18, 130, 1, 51, 222, 196, 1, 49, 150, 1, 56, 42, 57, 102, - 55, 194, 5, 48, 250, 141, 2, 52, 132, 181, 15, 2, 50, 32, 157, 4, 2, 53, - 32, 2, 251, 204, 12, 32, 16, 132, 1, 2, 50, 32, 20, 2, 56, 32, 204, 1, 3, - 54, 32, 84, 210, 191, 1, 55, 226, 3, 57, 146, 2, 53, 198, 248, 6, 49, - 243, 172, 10, 48, 2, 151, 238, 17, 80, 2, 213, 143, 12, 2, 82, 79, 18, + 52, 178, 5, 54, 185, 223, 12, 3, 56, 32, 78, 2, 203, 186, 15, 65, 2, 159, + 162, 17, 32, 18, 130, 1, 51, 222, 196, 1, 49, 150, 1, 56, 42, 57, 102, + 55, 194, 5, 48, 250, 141, 2, 52, 184, 176, 15, 2, 50, 32, 157, 4, 2, 53, + 32, 2, 175, 200, 12, 32, 16, 132, 1, 2, 50, 32, 20, 2, 56, 32, 204, 1, 3, + 54, 32, 84, 210, 191, 1, 55, 226, 3, 57, 146, 2, 53, 250, 243, 6, 49, + 243, 172, 10, 48, 2, 203, 233, 17, 80, 2, 137, 139, 12, 2, 82, 79, 18, 172, 1, 3, 54, 32, 82, 242, 191, 1, 55, 138, 8, 48, 170, 16, 53, 12, 3, - 49, 32, 68, 168, 171, 7, 2, 52, 32, 222, 252, 3, 50, 200, 158, 6, 3, 56, - 32, 81, 241, 2, 2, 51, 32, 2, 139, 142, 12, 65, 8, 238, 191, 1, 49, 168, - 24, 3, 55, 32, 84, 196, 250, 6, 2, 53, 32, 191, 156, 6, 48, 4, 150, 160, - 17, 49, 21, 3, 48, 32, 68, 28, 90, 52, 30, 54, 30, 56, 142, 136, 12, 53, - 158, 2, 49, 30, 51, 166, 1, 50, 171, 173, 3, 55, 4, 222, 179, 19, 55, 3, - 57, 4, 194, 179, 19, 51, 3, 52, 8, 166, 179, 19, 50, 2, 51, 2, 54, 3, 57, - 4, 228, 212, 10, 9, 69, 68, 32, 80, 65, 80, 69, 82, 67, 223, 200, 7, 32, - 5, 163, 128, 18, 84, 98, 96, 7, 76, 69, 84, 84, 69, 82, 32, 129, 240, 6, + 49, 32, 68, 220, 166, 7, 2, 52, 32, 222, 252, 3, 50, 200, 158, 6, 3, 56, + 32, 81, 241, 2, 2, 51, 32, 2, 191, 137, 12, 65, 8, 238, 191, 1, 49, 168, + 24, 3, 55, 32, 84, 248, 245, 6, 2, 53, 32, 191, 156, 6, 48, 4, 202, 155, + 17, 49, 21, 3, 48, 32, 68, 28, 90, 52, 30, 54, 30, 56, 194, 131, 12, 53, + 158, 2, 49, 30, 51, 166, 1, 50, 171, 173, 3, 55, 4, 146, 175, 19, 55, 3, + 57, 4, 246, 174, 19, 51, 3, 52, 8, 218, 174, 19, 50, 2, 51, 2, 54, 3, 57, + 4, 152, 208, 10, 9, 69, 68, 32, 80, 65, 80, 69, 82, 67, 223, 200, 7, 32, + 5, 215, 251, 17, 84, 98, 96, 7, 76, 69, 84, 84, 69, 82, 32, 181, 235, 6, 11, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 94, 238, 1, 84, 150, 246, - 2, 68, 182, 164, 10, 85, 130, 159, 2, 78, 138, 31, 69, 190, 143, 3, 67, + 2, 68, 234, 159, 10, 85, 130, 159, 2, 78, 138, 31, 69, 190, 143, 3, 67, 2, 71, 2, 72, 2, 75, 2, 80, 2, 83, 2, 89, 2, 90, 162, 7, 65, 2, 79, 234, 61, 66, 2, 70, 2, 74, 2, 76, 2, 77, 2, 87, 2, 88, 187, 2, 73, 20, 64, 4, - 79, 78, 69, 32, 202, 231, 18, 83, 138, 69, 72, 187, 2, 65, 12, 48, 4, 77, - 89, 65, 32, 141, 197, 1, 2, 78, 65, 10, 246, 193, 12, 74, 234, 205, 6, + 79, 78, 69, 32, 254, 226, 18, 83, 138, 69, 72, 187, 2, 65, 12, 48, 4, 77, + 89, 65, 32, 141, 197, 1, 2, 78, 65, 10, 170, 189, 12, 74, 234, 205, 6, 66, 158, 11, 84, 254, 16, 67, 39, 78, 210, 2, 232, 1, 2, 67, 75, 132, 1, 3, 71, 73, 67, 176, 6, 3, 78, 71, 32, 206, 9, 84, 116, 3, 86, 69, 32, 70, - 87, 172, 12, 5, 90, 69, 78, 71, 69, 174, 232, 7, 66, 240, 156, 10, 8, 85, + 87, 172, 12, 5, 90, 69, 78, 71, 69, 226, 227, 7, 66, 240, 156, 10, 8, 85, 68, 76, 89, 32, 67, 82, 89, 141, 15, 4, 76, 76, 73, 80, 9, 96, 10, 73, 78, 71, 45, 83, 72, 73, 70, 84, 32, 137, 25, 9, 32, 87, 73, 84, 72, 32, - 73, 78, 75, 4, 174, 185, 17, 90, 223, 86, 79, 40, 56, 6, 32, 71, 65, 84, + 73, 78, 75, 4, 226, 180, 17, 90, 223, 86, 79, 40, 56, 6, 32, 71, 65, 84, 69, 32, 137, 2, 3, 65, 76, 32, 12, 104, 6, 66, 85, 70, 70, 69, 82, 84, 9, - 73, 78, 86, 69, 82, 84, 69, 68, 32, 142, 153, 18, 65, 187, 87, 79, 5, + 73, 78, 86, 69, 82, 84, 69, 68, 32, 194, 148, 18, 65, 187, 87, 79, 5, 133, 1, 17, 32, 87, 73, 84, 72, 32, 73, 78, 86, 69, 82, 84, 69, 68, 32, - 73, 78, 4, 48, 3, 79, 85, 84, 205, 159, 6, 3, 73, 78, 80, 2, 155, 175, + 73, 78, 4, 48, 3, 79, 85, 84, 129, 155, 6, 3, 73, 78, 80, 2, 207, 170, 18, 80, 28, 36, 3, 65, 78, 68, 85, 2, 79, 82, 15, 33, 6, 32, 87, 73, 84, - 72, 32, 12, 226, 1, 68, 94, 72, 58, 77, 147, 182, 15, 85, 15, 11, 32, 12, + 72, 32, 12, 226, 1, 68, 94, 72, 58, 77, 199, 177, 15, 85, 15, 11, 32, 12, 88, 13, 79, 86, 69, 82, 76, 65, 80, 80, 73, 78, 71, 32, 76, 49, 5, 87, - 73, 84, 72, 32, 2, 209, 150, 18, 7, 79, 71, 73, 67, 65, 76, 32, 10, 26, - 68, 94, 72, 59, 77, 6, 11, 79, 6, 44, 5, 85, 66, 76, 69, 32, 235, 168, - 18, 84, 4, 230, 182, 15, 85, 143, 61, 79, 2, 209, 228, 15, 9, 79, 82, 73, - 90, 79, 78, 84, 65, 76, 2, 173, 225, 7, 5, 73, 68, 68, 76, 69, 48, 70, + 73, 84, 72, 32, 2, 133, 146, 18, 7, 79, 71, 73, 67, 65, 76, 32, 10, 26, + 68, 94, 72, 59, 77, 6, 11, 79, 6, 44, 5, 85, 66, 76, 69, 32, 159, 164, + 18, 84, 4, 154, 178, 15, 85, 143, 61, 79, 2, 133, 224, 15, 9, 79, 82, 73, + 90, 79, 78, 84, 65, 76, 2, 225, 220, 7, 5, 73, 68, 68, 76, 69, 48, 70, 68, 228, 1, 4, 76, 69, 70, 84, 241, 2, 5, 82, 73, 71, 72, 84, 6, 164, 1, 30, 65, 83, 72, 32, 70, 82, 79, 77, 32, 76, 69, 70, 84, 32, 77, 69, 77, - 66, 69, 82, 32, 79, 70, 32, 68, 79, 85, 66, 76, 69, 198, 165, 16, 73, - 151, 210, 1, 82, 2, 17, 2, 32, 86, 2, 137, 151, 18, 5, 69, 82, 84, 73, + 66, 69, 82, 32, 79, 70, 32, 68, 79, 85, 66, 76, 69, 250, 160, 16, 73, + 151, 210, 1, 82, 2, 17, 2, 32, 86, 2, 189, 146, 18, 5, 69, 82, 84, 73, 67, 20, 46, 32, 193, 1, 6, 87, 65, 82, 68, 83, 32, 8, 48, 6, 82, 73, 71, - 72, 84, 32, 139, 131, 16, 84, 6, 44, 5, 65, 82, 82, 79, 87, 203, 248, 15, - 68, 5, 193, 248, 13, 18, 32, 87, 73, 84, 72, 32, 68, 69, 80, 69, 78, 68, - 69, 78, 84, 32, 76, 79, 12, 214, 3, 68, 42, 65, 146, 1, 83, 229, 244, 8, + 72, 84, 32, 191, 254, 15, 84, 6, 44, 5, 65, 82, 82, 79, 87, 255, 243, 15, + 68, 5, 245, 243, 13, 18, 32, 87, 73, 84, 72, 32, 68, 69, 80, 69, 78, 68, + 69, 78, 84, 32, 76, 79, 12, 214, 3, 68, 42, 65, 146, 1, 83, 153, 240, 8, 19, 72, 65, 82, 80, 79, 79, 78, 32, 65, 66, 79, 86, 69, 32, 83, 72, 79, - 82, 84, 22, 48, 6, 87, 65, 82, 68, 83, 32, 235, 251, 8, 32, 20, 88, 5, + 82, 84, 22, 48, 6, 87, 65, 82, 68, 83, 32, 159, 247, 8, 32, 20, 88, 5, 65, 82, 82, 79, 87, 202, 1, 68, 96, 8, 72, 65, 82, 80, 79, 79, 78, 32, 91, 83, 11, 11, 32, 8, 164, 1, 7, 84, 72, 82, 79, 85, 71, 72, 132, 143, - 3, 10, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 196, 232, 5, 9, 79, 86, - 69, 82, 32, 76, 79, 78, 71, 203, 188, 7, 70, 2, 203, 142, 18, 32, 4, 37, - 7, 79, 85, 66, 76, 69, 32, 65, 4, 25, 4, 82, 82, 79, 87, 5, 181, 179, 16, - 2, 32, 70, 4, 236, 246, 8, 4, 79, 86, 69, 82, 33, 11, 65, 66, 79, 86, 69, - 32, 83, 72, 79, 82, 84, 2, 233, 228, 7, 3, 81, 85, 73, 6, 92, 5, 73, 79, - 78, 32, 66, 144, 255, 17, 9, 32, 79, 70, 32, 70, 79, 82, 84, 85, 215, 93, - 85, 2, 211, 241, 9, 79, 4, 38, 76, 213, 132, 14, 3, 72, 79, 84, 2, 245, - 223, 17, 2, 69, 84, 222, 1, 34, 32, 229, 1, 3, 69, 82, 32, 14, 138, 1, - 66, 176, 201, 10, 11, 68, 79, 85, 66, 76, 69, 32, 80, 82, 73, 77, 214, + 3, 10, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 248, 227, 5, 9, 79, 86, + 69, 82, 32, 76, 79, 78, 71, 203, 188, 7, 70, 2, 255, 137, 18, 32, 4, 37, + 7, 79, 85, 66, 76, 69, 32, 65, 4, 25, 4, 82, 82, 79, 87, 5, 233, 174, 16, + 2, 32, 70, 4, 160, 242, 8, 4, 79, 86, 69, 82, 33, 11, 65, 66, 79, 86, 69, + 32, 83, 72, 79, 82, 84, 2, 157, 224, 7, 3, 81, 85, 73, 6, 92, 5, 73, 79, + 78, 32, 66, 196, 250, 17, 9, 32, 79, 70, 32, 70, 79, 82, 84, 85, 215, 93, + 85, 2, 135, 237, 9, 79, 4, 38, 76, 137, 128, 14, 3, 72, 79, 84, 2, 169, + 219, 17, 2, 69, 84, 222, 1, 34, 32, 229, 1, 3, 69, 82, 32, 14, 138, 1, + 66, 228, 196, 10, 11, 68, 79, 85, 66, 76, 69, 32, 80, 82, 73, 77, 214, 183, 6, 65, 148, 113, 6, 75, 65, 86, 89, 75, 65, 227, 10, 76, 4, 38, 82, - 209, 249, 4, 3, 65, 84, 84, 2, 185, 130, 18, 7, 73, 71, 72, 84, 78, 69, + 133, 245, 4, 3, 65, 84, 84, 2, 237, 253, 17, 7, 73, 71, 72, 84, 78, 69, 83, 208, 1, 158, 1, 72, 140, 2, 5, 76, 69, 70, 84, 32, 236, 2, 6, 82, 73, - 71, 72, 84, 32, 154, 247, 15, 66, 74, 67, 74, 70, 234, 10, 77, 150, 2, - 79, 170, 18, 83, 67, 84, 20, 84, 4, 65, 76, 70, 32, 205, 186, 7, 11, 79, - 82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 18, 176, 166, 7, 9, 65, 78, 68, + 71, 72, 84, 32, 206, 242, 15, 66, 74, 67, 74, 70, 234, 10, 77, 150, 2, + 79, 170, 18, 83, 67, 84, 20, 84, 4, 65, 76, 70, 32, 129, 182, 7, 11, 79, + 82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 18, 228, 161, 7, 9, 65, 78, 68, 32, 85, 80, 80, 69, 82, 32, 7, 73, 78, 86, 69, 82, 83, 69, 150, 216, 8, 72, 230, 1, 86, 174, 26, 77, 130, 3, 76, 22, 82, 202, 5, 66, 247, 157, 1, 67, 72, 186, 1, 66, 60, 8, 70, 79, 85, 78, 84, 65, 73, 78, 22, 80, 56, 12, 83, 69, 77, 73, 67, 73, 82, 67, 85, 76, 65, 82, 154, 1, 81, 246, 2, - 84, 232, 197, 11, 3, 67, 82, 65, 203, 187, 4, 79, 24, 56, 8, 65, 76, 76, - 80, 79, 73, 78, 84, 175, 135, 16, 76, 2, 179, 246, 9, 32, 4, 132, 131, - 15, 5, 65, 73, 78, 84, 66, 163, 141, 1, 69, 2, 185, 195, 7, 5, 32, 65, - 78, 84, 73, 74, 110, 81, 166, 2, 83, 82, 84, 202, 178, 7, 82, 158, 199, + 84, 156, 193, 11, 3, 67, 82, 65, 203, 187, 4, 79, 24, 56, 8, 65, 76, 76, + 80, 79, 73, 78, 84, 227, 130, 16, 76, 2, 231, 241, 9, 32, 4, 184, 254, + 14, 5, 65, 73, 78, 84, 66, 163, 141, 1, 69, 2, 237, 190, 7, 5, 32, 65, + 78, 84, 73, 74, 110, 81, 166, 2, 83, 82, 84, 254, 173, 7, 82, 158, 199, 8, 66, 238, 3, 67, 226, 3, 79, 222, 7, 68, 207, 2, 80, 30, 17, 2, 85, 65, - 30, 48, 6, 68, 82, 65, 78, 84, 32, 239, 146, 16, 82, 28, 74, 70, 60, 2, - 78, 69, 50, 83, 150, 142, 16, 67, 226, 1, 77, 143, 1, 84, 4, 26, 65, 231, - 198, 17, 82, 2, 149, 185, 7, 3, 67, 69, 32, 2, 25, 4, 85, 84, 82, 65, 2, - 195, 209, 18, 76, 4, 234, 224, 10, 77, 215, 175, 5, 84, 6, 240, 191, 7, - 11, 69, 77, 73, 67, 73, 82, 67, 85, 76, 65, 82, 191, 209, 8, 72, 6, 150, - 146, 16, 82, 155, 1, 87, 5, 253, 230, 17, 25, 32, 68, 73, 86, 73, 68, 69, + 30, 48, 6, 68, 82, 65, 78, 84, 32, 163, 142, 16, 82, 28, 74, 70, 60, 2, + 78, 69, 50, 83, 202, 137, 16, 67, 226, 1, 77, 143, 1, 84, 4, 26, 65, 155, + 194, 17, 82, 2, 201, 180, 7, 3, 67, 69, 32, 2, 25, 4, 85, 84, 82, 65, 2, + 247, 204, 18, 76, 4, 158, 220, 10, 77, 215, 175, 5, 84, 6, 164, 187, 7, + 11, 69, 77, 73, 67, 73, 82, 67, 85, 76, 65, 82, 191, 209, 8, 72, 6, 202, + 141, 16, 82, 155, 1, 87, 5, 177, 226, 17, 25, 32, 68, 73, 86, 73, 68, 69, 68, 32, 66, 89, 32, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 85, - 6, 18, 71, 23, 78, 2, 143, 253, 13, 71, 4, 168, 231, 17, 5, 65, 82, 32, + 6, 18, 71, 23, 78, 2, 195, 248, 13, 71, 4, 220, 226, 17, 5, 65, 82, 32, 69, 67, 151, 103, 71, 114, 104, 12, 67, 73, 65, 78, 32, 76, 69, 84, 84, - 69, 82, 32, 232, 1, 5, 68, 73, 65, 78, 32, 131, 129, 18, 73, 58, 210, 1, - 77, 150, 138, 5, 75, 154, 214, 9, 84, 158, 24, 66, 246, 146, 2, 65, 2, + 69, 82, 32, 232, 1, 5, 68, 73, 65, 78, 32, 183, 252, 17, 73, 58, 210, 1, + 77, 202, 133, 5, 75, 154, 214, 9, 84, 158, 24, 66, 246, 146, 2, 65, 2, 69, 2, 78, 238, 253, 1, 68, 2, 71, 2, 72, 2, 73, 2, 74, 2, 76, 2, 80, 2, - 81, 2, 82, 2, 83, 2, 85, 2, 87, 2, 88, 3, 90, 5, 167, 137, 19, 77, 54, - 88, 7, 76, 69, 84, 84, 69, 82, 32, 153, 224, 14, 9, 84, 82, 73, 65, 78, - 71, 85, 76, 65, 52, 222, 159, 13, 84, 190, 215, 1, 76, 198, 135, 2, 83, + 81, 2, 82, 2, 83, 2, 85, 2, 87, 2, 88, 3, 90, 5, 219, 132, 19, 77, 54, + 88, 7, 76, 69, 84, 84, 69, 82, 32, 205, 219, 14, 9, 84, 82, 73, 65, 78, + 71, 85, 76, 65, 52, 146, 155, 13, 84, 190, 215, 1, 76, 198, 135, 2, 83, 238, 11, 65, 2, 69, 2, 78, 238, 253, 1, 66, 2, 67, 2, 68, 2, 70, 2, 71, 2, 73, 2, 75, 2, 77, 2, 79, 2, 81, 2, 82, 2, 85, 2, 86, 3, 89, 128, 54, 162, 1, 65, 194, 103, 69, 182, 103, 73, 154, 25, 79, 164, 112, 3, 82, 79, - 32, 234, 3, 85, 204, 70, 7, 89, 65, 78, 77, 65, 82, 32, 138, 165, 15, 86, + 32, 234, 3, 85, 204, 70, 7, 89, 65, 78, 77, 65, 82, 32, 190, 160, 15, 86, 198, 61, 77, 27, 87, 204, 23, 186, 1, 71, 62, 72, 254, 10, 75, 234, 3, 76, 252, 13, 2, 77, 77, 22, 78, 154, 17, 80, 118, 82, 174, 7, 83, 190, 7, - 84, 184, 36, 3, 89, 65, 78, 204, 129, 1, 3, 88, 73, 77, 175, 248, 15, 67, - 6, 228, 243, 17, 4, 73, 67, 32, 87, 138, 91, 78, 155, 53, 69, 166, 1, 84, + 84, 184, 36, 3, 89, 65, 78, 204, 129, 1, 3, 88, 73, 77, 227, 243, 15, 67, + 6, 152, 239, 17, 4, 73, 67, 32, 87, 138, 91, 78, 155, 53, 69, 166, 1, 84, 6, 65, 74, 65, 78, 73, 32, 129, 3, 10, 74, 79, 78, 71, 32, 84, 73, 76, - 69, 32, 78, 38, 76, 162, 2, 83, 215, 140, 13, 65, 72, 88, 6, 69, 84, 84, - 69, 82, 32, 161, 150, 12, 10, 73, 71, 65, 84, 85, 82, 69, 32, 83, 72, 70, - 134, 175, 3, 78, 150, 245, 11, 68, 82, 82, 34, 84, 162, 149, 3, 66, 2, + 69, 32, 78, 38, 76, 162, 2, 83, 139, 136, 13, 65, 72, 88, 6, 69, 84, 84, + 69, 82, 32, 213, 145, 12, 10, 73, 71, 65, 84, 85, 82, 69, 32, 83, 72, 70, + 134, 175, 3, 78, 202, 240, 11, 68, 82, 82, 34, 84, 162, 149, 3, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 83, 2, 86, - 186, 2, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 170, 237, 6, 69, 253, 245, 7, + 186, 2, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 222, 232, 6, 69, 253, 245, 7, 5, 73, 71, 78, 32, 78, 88, 236, 1, 2, 66, 65, 38, 69, 46, 70, 46, 78, 42, 79, 46, 80, 22, 83, 118, 84, 194, 1, 87, 112, 5, 71, 82, 69, 69, 78, 0, - 3, 82, 69, 68, 168, 136, 6, 3, 65, 85, 84, 222, 21, 74, 209, 175, 11, 11, - 67, 72, 82, 89, 83, 65, 78, 84, 72, 69, 77, 4, 162, 158, 1, 77, 199, 220, + 3, 82, 69, 68, 220, 131, 6, 3, 65, 85, 84, 222, 21, 74, 209, 175, 11, 11, + 67, 72, 82, 89, 83, 65, 78, 84, 72, 69, 77, 4, 162, 158, 1, 77, 251, 215, 17, 67, 8, 228, 2, 4, 73, 71, 72, 84, 195, 1, 65, 12, 172, 2, 2, 73, 86, 13, 3, 79, 85, 82, 8, 192, 1, 2, 79, 82, 65, 2, 73, 78, 8, 218, 1, 78, - 173, 229, 11, 3, 82, 67, 72, 2, 139, 209, 17, 76, 18, 88, 2, 79, 85, 76, - 4, 69, 86, 69, 78, 0, 2, 73, 88, 182, 157, 12, 85, 255, 199, 1, 80, 2, + 225, 224, 11, 3, 82, 67, 72, 2, 191, 204, 17, 76, 18, 88, 2, 79, 85, 76, + 4, 69, 86, 69, 78, 0, 2, 73, 88, 234, 152, 12, 85, 255, 199, 1, 80, 2, 157, 2, 2, 84, 72, 12, 36, 3, 72, 82, 69, 13, 2, 87, 79, 6, 11, 69, 6, - 25, 4, 32, 79, 70, 32, 6, 46, 67, 189, 248, 6, 5, 66, 65, 77, 66, 79, 4, - 184, 140, 6, 2, 73, 82, 153, 234, 10, 5, 72, 65, 82, 65, 67, 6, 50, 69, - 60, 4, 72, 73, 84, 69, 227, 190, 17, 73, 2, 17, 2, 83, 84, 2, 17, 2, 32, - 87, 2, 247, 232, 17, 73, 2, 17, 2, 32, 68, 2, 163, 190, 17, 82, 52, 52, - 5, 65, 83, 65, 82, 32, 241, 139, 15, 2, 69, 77, 50, 162, 1, 69, 40, 7, + 25, 4, 32, 79, 70, 32, 6, 46, 67, 241, 243, 6, 5, 66, 65, 77, 66, 79, 4, + 236, 135, 6, 2, 73, 82, 153, 234, 10, 5, 72, 65, 82, 65, 67, 6, 50, 69, + 60, 4, 72, 73, 84, 69, 151, 186, 17, 73, 2, 17, 2, 83, 84, 2, 17, 2, 32, + 87, 2, 171, 228, 17, 73, 2, 17, 2, 32, 68, 2, 215, 185, 17, 82, 52, 52, + 5, 65, 83, 65, 82, 32, 165, 135, 15, 2, 69, 77, 50, 162, 1, 69, 40, 7, 76, 69, 84, 84, 69, 82, 32, 152, 1, 5, 80, 65, 83, 83, 73, 32, 11, 86, - 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 173, 236, 18, 3, 65, 78, 71, 2, - 205, 244, 15, 5, 78, 68, 32, 79, 70, 36, 182, 249, 16, 78, 222, 250, 1, + 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 225, 231, 18, 3, 65, 78, 71, 2, + 129, 240, 15, 5, 78, 68, 32, 79, 70, 36, 234, 244, 16, 78, 222, 250, 1, 66, 2, 67, 2, 68, 2, 71, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 2, 83, - 2, 84, 2, 86, 2, 89, 187, 2, 65, 2, 11, 77, 2, 211, 156, 18, 66, 8, 146, - 245, 18, 69, 2, 73, 2, 79, 3, 85, 246, 1, 80, 7, 65, 89, 65, 76, 65, 77, + 2, 84, 2, 86, 2, 89, 187, 2, 65, 2, 11, 77, 2, 135, 152, 18, 66, 8, 198, + 240, 18, 69, 2, 73, 2, 79, 3, 85, 246, 1, 80, 7, 65, 89, 65, 76, 65, 77, 32, 176, 11, 2, 69, 32, 225, 1, 3, 84, 69, 83, 236, 1, 198, 1, 68, 44, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, 240, 1, 7, 76, 69, 84, 84, 69, 82, 32, 164, 5, 7, 78, 85, 77, 66, 69, 82, 32, 36, 5, 83, 73, 71, 78, 32, - 230, 191, 13, 86, 239, 201, 1, 65, 22, 164, 171, 8, 2, 65, 84, 163, 211, + 154, 187, 13, 86, 239, 201, 1, 65, 22, 216, 166, 8, 2, 65, 84, 163, 211, 8, 73, 26, 56, 4, 79, 78, 69, 32, 121, 6, 84, 72, 82, 69, 69, 32, 18, 82, - 84, 254, 135, 5, 83, 130, 132, 8, 70, 62, 79, 146, 222, 3, 69, 46, 72, - 47, 81, 4, 134, 143, 13, 87, 255, 220, 3, 69, 8, 150, 136, 5, 83, 198, + 84, 178, 131, 5, 83, 130, 132, 8, 70, 62, 79, 146, 222, 3, 69, 46, 72, + 47, 81, 4, 186, 138, 13, 87, 255, 220, 3, 69, 8, 202, 131, 5, 83, 198, 135, 8, 69, 110, 84, 179, 220, 3, 81, 132, 1, 226, 1, 65, 82, 67, 158, 1, - 68, 78, 84, 82, 86, 226, 141, 13, 78, 182, 128, 2, 76, 38, 82, 134, 6, + 68, 78, 84, 82, 86, 150, 137, 13, 78, 182, 128, 2, 76, 38, 82, 134, 6, 85, 206, 141, 1, 79, 238, 60, 73, 182, 196, 1, 83, 82, 66, 2, 71, 2, 74, - 2, 75, 2, 80, 162, 7, 69, 234, 61, 72, 2, 77, 3, 89, 11, 240, 167, 16, 7, + 2, 75, 2, 80, 162, 7, 69, 234, 61, 72, 2, 77, 3, 89, 11, 164, 163, 16, 7, 82, 67, 72, 65, 73, 67, 32, 206, 198, 2, 65, 2, 73, 3, 85, 22, 26, 72, - 215, 237, 18, 65, 20, 44, 5, 73, 76, 76, 85, 32, 167, 237, 18, 65, 18, - 138, 132, 13, 76, 174, 235, 3, 78, 146, 197, 1, 82, 222, 56, 75, 2, 77, - 3, 89, 10, 212, 226, 10, 4, 79, 84, 32, 82, 190, 194, 7, 68, 138, 69, 72, - 187, 2, 65, 10, 38, 84, 170, 233, 18, 72, 187, 2, 65, 6, 166, 233, 18, - 72, 2, 84, 187, 2, 65, 12, 242, 227, 3, 69, 234, 176, 11, 79, 223, 214, - 3, 65, 6, 162, 142, 13, 79, 223, 134, 4, 84, 18, 50, 67, 114, 86, 250, - 142, 15, 65, 251, 149, 3, 80, 6, 54, 79, 120, 5, 73, 82, 67, 85, 76, 171, - 203, 14, 65, 2, 145, 190, 13, 9, 77, 66, 73, 78, 73, 78, 71, 32, 65, 6, - 60, 9, 69, 82, 84, 73, 67, 65, 76, 32, 66, 255, 165, 18, 73, 2, 253, 142, + 139, 233, 18, 65, 20, 44, 5, 73, 76, 76, 85, 32, 219, 232, 18, 65, 18, + 190, 255, 12, 76, 174, 235, 3, 78, 146, 197, 1, 82, 222, 56, 75, 2, 77, + 3, 89, 10, 136, 222, 10, 4, 79, 84, 32, 82, 190, 194, 7, 68, 138, 69, 72, + 187, 2, 65, 10, 38, 84, 222, 228, 18, 72, 187, 2, 65, 6, 218, 228, 18, + 72, 2, 84, 187, 2, 65, 12, 242, 227, 3, 69, 158, 172, 11, 79, 223, 214, + 3, 65, 6, 214, 137, 13, 79, 223, 134, 4, 84, 18, 50, 67, 114, 86, 174, + 138, 15, 65, 251, 149, 3, 80, 6, 54, 79, 120, 5, 73, 82, 67, 85, 76, 223, + 198, 14, 65, 2, 197, 185, 13, 9, 77, 66, 73, 78, 73, 78, 71, 32, 65, 6, + 60, 9, 69, 82, 84, 73, 67, 65, 76, 32, 66, 179, 161, 18, 73, 2, 177, 138, 15, 2, 65, 82, 8, 80, 12, 87, 73, 84, 72, 32, 83, 84, 82, 79, 75, 69, 32, - 70, 65, 227, 224, 17, 83, 4, 64, 10, 65, 78, 68, 32, 77, 65, 76, 69, 32, - 65, 227, 224, 17, 83, 2, 25, 4, 78, 68, 32, 70, 2, 11, 69, 2, 11, 77, 2, - 139, 211, 7, 65, 2, 191, 163, 17, 69, 2, 243, 225, 16, 79, 185, 1, 210, + 70, 65, 151, 220, 17, 83, 4, 64, 10, 65, 78, 68, 32, 77, 65, 76, 69, 32, + 65, 151, 220, 17, 83, 2, 25, 4, 78, 68, 32, 70, 2, 11, 69, 2, 11, 77, 2, + 191, 206, 7, 65, 2, 243, 158, 17, 69, 2, 167, 221, 16, 79, 185, 1, 210, 1, 32, 220, 2, 5, 68, 65, 73, 67, 32, 224, 3, 8, 73, 67, 72, 65, 69, 65, - 78, 32, 222, 8, 83, 156, 166, 2, 3, 85, 65, 76, 130, 228, 10, 65, 240, + 78, 32, 222, 8, 83, 156, 166, 2, 3, 85, 65, 76, 182, 223, 10, 65, 240, 167, 1, 8, 84, 69, 76, 80, 73, 69, 67, 69, 235, 132, 4, 71, 12, 132, 1, 3, 73, 78, 32, 128, 1, 5, 87, 73, 84, 72, 32, 136, 147, 2, 3, 68, 65, 78, - 237, 140, 13, 8, 65, 78, 68, 32, 87, 79, 77, 65, 4, 248, 140, 10, 19, 66, + 161, 136, 13, 8, 65, 78, 68, 32, 87, 79, 77, 65, 4, 172, 136, 10, 19, 66, 85, 83, 73, 78, 69, 83, 83, 32, 83, 85, 73, 84, 32, 76, 69, 86, 73, 84, - 189, 151, 1, 4, 84, 85, 88, 69, 4, 140, 243, 13, 8, 71, 85, 65, 32, 80, + 189, 151, 1, 4, 84, 85, 88, 69, 4, 192, 238, 13, 8, 71, 85, 65, 32, 80, 73, 32, 77, 205, 163, 3, 4, 84, 85, 82, 66, 58, 112, 4, 65, 70, 70, 82, - 28, 7, 76, 69, 84, 84, 69, 82, 32, 208, 184, 14, 3, 86, 79, 67, 226, 72, - 71, 251, 25, 80, 2, 249, 247, 17, 2, 73, 67, 50, 82, 65, 176, 1, 2, 68, - 85, 2, 85, 28, 3, 72, 65, 76, 22, 73, 183, 152, 18, 75, 38, 154, 1, 75, - 206, 246, 12, 84, 250, 191, 1, 83, 130, 217, 3, 73, 226, 79, 66, 2, 68, - 2, 71, 2, 72, 2, 76, 2, 77, 2, 78, 2, 80, 2, 81, 2, 82, 3, 90, 5, 235, - 220, 18, 83, 2, 185, 132, 8, 2, 83, 72, 2, 187, 220, 18, 81, 4, 222, 222, + 28, 7, 76, 69, 84, 84, 69, 82, 32, 132, 180, 14, 3, 86, 79, 67, 226, 72, + 71, 251, 25, 80, 2, 173, 243, 17, 2, 73, 67, 50, 82, 65, 176, 1, 2, 68, + 85, 2, 85, 28, 3, 72, 65, 76, 22, 73, 235, 147, 18, 75, 38, 154, 1, 75, + 130, 242, 12, 84, 250, 191, 1, 83, 130, 217, 3, 73, 226, 79, 66, 2, 68, + 2, 71, 2, 72, 2, 76, 2, 77, 2, 78, 2, 80, 2, 81, 2, 82, 3, 90, 5, 159, + 216, 18, 83, 2, 237, 255, 7, 2, 83, 72, 2, 239, 215, 18, 81, 4, 146, 218, 18, 78, 3, 84, 102, 216, 1, 7, 76, 69, 84, 84, 69, 82, 32, 194, 4, 78, 80, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 220, 1, 4, 83, - 73, 71, 78, 249, 200, 10, 16, 65, 66, 66, 82, 69, 86, 73, 65, 84, 73, 79, + 73, 71, 78, 173, 196, 10, 16, 65, 66, 66, 82, 69, 86, 73, 65, 84, 73, 79, 78, 32, 77, 65, 82, 72, 218, 1, 65, 46, 66, 38, 68, 30, 71, 30, 74, 2, - 90, 30, 75, 30, 81, 38, 83, 50, 84, 54, 88, 158, 164, 6, 76, 134, 206, 1, + 90, 30, 75, 30, 81, 38, 83, 50, 84, 54, 88, 210, 159, 6, 76, 134, 206, 1, 82, 246, 221, 2, 89, 198, 207, 1, 72, 190, 184, 5, 78, 134, 2, 87, 218, - 103, 70, 2, 80, 171, 4, 77, 6, 142, 209, 10, 76, 122, 65, 179, 137, 7, - 89, 4, 134, 249, 12, 72, 227, 220, 3, 69, 4, 254, 165, 6, 65, 23, 72, 4, - 182, 208, 10, 72, 15, 73, 4, 242, 208, 10, 72, 15, 65, 4, 226, 166, 12, - 72, 15, 65, 4, 210, 165, 6, 72, 131, 129, 6, 79, 8, 186, 205, 10, 83, - 154, 3, 65, 131, 137, 7, 72, 6, 206, 164, 6, 72, 178, 175, 10, 69, 219, - 134, 1, 65, 4, 202, 165, 12, 65, 3, 79, 10, 33, 6, 85, 77, 66, 69, 82, - 32, 10, 250, 207, 10, 79, 58, 84, 131, 203, 2, 70, 14, 80, 2, 68, 79, - 116, 3, 76, 73, 78, 190, 167, 5, 70, 230, 219, 11, 84, 167, 10, 83, 6, + 103, 70, 2, 80, 171, 4, 77, 6, 194, 204, 10, 76, 122, 65, 179, 137, 7, + 89, 4, 186, 244, 12, 72, 227, 220, 3, 69, 4, 178, 161, 6, 65, 23, 72, 4, + 234, 203, 10, 72, 15, 73, 4, 166, 204, 10, 72, 15, 65, 4, 150, 162, 12, + 72, 15, 65, 4, 134, 161, 6, 72, 131, 129, 6, 79, 8, 238, 200, 10, 83, + 154, 3, 65, 131, 137, 7, 72, 6, 130, 160, 6, 72, 178, 175, 10, 69, 219, + 134, 1, 65, 4, 254, 160, 12, 65, 3, 79, 10, 33, 6, 85, 77, 66, 69, 82, + 32, 10, 174, 203, 10, 79, 58, 84, 131, 203, 2, 70, 14, 80, 2, 68, 79, + 116, 3, 76, 73, 78, 242, 162, 5, 70, 230, 219, 11, 84, 167, 10, 83, 6, 54, 84, 13, 9, 85, 66, 76, 69, 32, 68, 79, 84, 32, 5, 11, 32, 2, 25, 4, - 87, 73, 84, 72, 2, 151, 193, 2, 73, 2, 231, 203, 3, 69, 2, 139, 168, 17, - 32, 2, 11, 32, 2, 249, 190, 18, 2, 83, 72, 4, 92, 17, 32, 83, 89, 77, 66, - 79, 76, 32, 70, 79, 82, 32, 76, 73, 71, 72, 84, 139, 220, 10, 76, 2, 179, - 140, 15, 72, 142, 1, 142, 1, 65, 20, 5, 67, 72, 69, 78, 32, 216, 164, 6, + 87, 73, 84, 72, 2, 151, 193, 2, 73, 2, 231, 203, 3, 69, 2, 191, 163, 17, + 32, 2, 11, 32, 2, 173, 186, 18, 2, 83, 72, 4, 92, 17, 32, 83, 89, 77, 66, + 79, 76, 32, 70, 79, 82, 32, 76, 73, 71, 72, 84, 191, 215, 10, 76, 2, 231, + 135, 15, 72, 142, 1, 142, 1, 65, 20, 5, 67, 72, 69, 78, 32, 140, 160, 6, 4, 82, 73, 65, 71, 249, 175, 11, 13, 84, 73, 65, 76, 32, 65, 82, 84, 83, - 32, 85, 78, 73, 2, 227, 161, 5, 67, 136, 1, 152, 1, 7, 76, 69, 84, 84, + 32, 85, 78, 73, 2, 151, 157, 5, 67, 136, 1, 152, 1, 7, 76, 69, 84, 84, 69, 82, 32, 194, 1, 83, 236, 2, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, - 78, 32, 170, 129, 18, 72, 225, 5, 4, 77, 65, 82, 75, 60, 254, 3, 84, 206, - 148, 2, 68, 166, 188, 14, 78, 214, 181, 1, 67, 2, 75, 2, 80, 2, 83, 2, + 78, 32, 222, 252, 17, 72, 225, 5, 4, 77, 65, 82, 75, 60, 254, 3, 84, 206, + 148, 2, 68, 218, 183, 14, 78, 214, 181, 1, 67, 2, 75, 2, 80, 2, 83, 2, 90, 138, 69, 45, 2, 66, 2, 71, 2, 72, 2, 74, 2, 76, 2, 77, 2, 82, 2, 87, 2, 89, 187, 2, 65, 62, 96, 4, 73, 71, 78, 32, 37, 16, 85, 66, 74, 79, 73, - 78, 69, 68, 32, 76, 69, 84, 84, 69, 82, 32, 4, 254, 177, 14, 67, 235, - 216, 3, 65, 58, 182, 1, 84, 206, 148, 2, 68, 166, 188, 14, 78, 214, 181, + 78, 69, 68, 32, 76, 69, 84, 84, 69, 82, 32, 4, 178, 173, 14, 67, 235, + 216, 3, 65, 58, 182, 1, 84, 206, 148, 2, 68, 218, 183, 14, 78, 214, 181, 1, 67, 2, 75, 2, 80, 2, 83, 2, 90, 138, 69, 66, 2, 71, 2, 72, 2, 74, 2, - 76, 2, 77, 2, 82, 2, 87, 2, 89, 187, 2, 65, 8, 194, 134, 18, 83, 138, 69, - 72, 187, 2, 65, 10, 158, 203, 18, 65, 186, 2, 69, 2, 73, 2, 79, 3, 85, + 76, 2, 77, 2, 82, 2, 87, 2, 89, 187, 2, 65, 8, 246, 129, 18, 83, 138, 69, + 72, 187, 2, 65, 10, 210, 198, 18, 65, 186, 2, 69, 2, 73, 2, 79, 3, 85, 156, 1, 120, 11, 65, 82, 65, 77, 32, 71, 79, 78, 68, 73, 32, 232, 5, 3, - 67, 85, 76, 64, 5, 75, 32, 87, 79, 82, 183, 132, 18, 85, 150, 1, 100, 7, + 67, 85, 76, 64, 5, 75, 32, 87, 79, 82, 235, 255, 17, 85, 150, 1, 100, 7, 76, 69, 84, 84, 69, 82, 32, 178, 2, 82, 56, 5, 83, 73, 71, 78, 32, 82, - 86, 247, 211, 16, 68, 94, 210, 1, 74, 42, 84, 198, 235, 14, 65, 38, 68, + 86, 171, 207, 16, 68, 94, 210, 1, 74, 42, 84, 250, 230, 14, 65, 38, 68, 214, 6, 85, 186, 202, 1, 73, 42, 76, 190, 195, 1, 75, 38, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 86, 2, 89, 186, 2, - 69, 3, 79, 6, 130, 199, 18, 78, 38, 72, 187, 2, 65, 10, 246, 129, 18, 84, - 138, 69, 72, 2, 82, 187, 2, 65, 4, 32, 2, 65, 45, 219, 236, 14, 69, 2, - 147, 132, 18, 75, 10, 230, 176, 1, 67, 182, 207, 12, 72, 178, 43, 78, - 150, 227, 1, 86, 247, 244, 1, 65, 22, 26, 79, 199, 139, 16, 73, 20, 45, - 9, 87, 69, 76, 32, 83, 73, 71, 78, 32, 20, 74, 86, 198, 239, 14, 65, 38, - 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 2, 141, 203, 7, 6, 79, 67, - 65, 76, 73, 67, 2, 145, 141, 18, 11, 73, 78, 69, 32, 79, 82, 68, 73, 78, - 65, 76, 2, 179, 176, 17, 75, 226, 15, 76, 10, 72, 69, 77, 65, 84, 73, 67, - 65, 76, 32, 153, 224, 14, 3, 69, 32, 68, 224, 15, 252, 1, 5, 66, 79, 76, + 69, 3, 79, 6, 182, 194, 18, 78, 38, 72, 187, 2, 65, 10, 170, 253, 17, 84, + 138, 69, 72, 2, 82, 187, 2, 65, 4, 32, 2, 65, 45, 143, 232, 14, 69, 2, + 199, 255, 17, 75, 10, 230, 176, 1, 67, 234, 202, 12, 72, 178, 43, 78, + 150, 227, 1, 86, 247, 244, 1, 65, 22, 26, 79, 251, 134, 16, 73, 20, 45, + 9, 87, 69, 76, 32, 83, 73, 71, 78, 32, 20, 74, 86, 250, 234, 14, 65, 38, + 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 2, 193, 198, 7, 6, 79, 67, + 65, 76, 73, 67, 2, 197, 136, 18, 11, 73, 78, 69, 32, 79, 82, 68, 73, 78, + 65, 76, 2, 231, 171, 17, 75, 226, 15, 76, 10, 72, 69, 77, 65, 84, 73, 67, + 65, 76, 32, 205, 219, 14, 3, 69, 32, 68, 224, 15, 252, 1, 5, 66, 79, 76, 68, 32, 168, 6, 14, 68, 79, 85, 66, 76, 69, 45, 83, 84, 82, 85, 67, 75, 32, 238, 1, 70, 164, 2, 7, 73, 84, 65, 76, 73, 67, 32, 180, 3, 10, 77, 79, 78, 79, 83, 80, 65, 67, 69, 32, 40, 2, 82, 73, 36, 3, 76, 69, 70, 167, 1, 83, 160, 5, 176, 1, 8, 67, 65, 80, 73, 84, 65, 76, 32, 130, 2, 83, 210, 14, 73, 210, 3, 69, 38, 75, 38, 78, 30, 80, 98, 82, 242, 5, 84, - 56, 7, 70, 82, 65, 75, 84, 85, 82, 195, 177, 16, 68, 104, 190, 4, 68, + 56, 7, 70, 82, 65, 75, 84, 85, 82, 247, 172, 16, 68, 104, 190, 4, 68, 174, 15, 84, 174, 4, 65, 22, 66, 2, 90, 42, 69, 98, 71, 22, 73, 22, 75, - 34, 76, 22, 79, 50, 80, 42, 82, 22, 83, 70, 85, 214, 197, 1, 67, 198, - 137, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 70, 2, 72, 2, 74, 2, + 34, 76, 22, 79, 50, 80, 42, 82, 22, 83, 70, 85, 214, 197, 1, 67, 250, + 132, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 70, 2, 72, 2, 74, 2, 81, 2, 86, 2, 87, 3, 89, 208, 1, 60, 5, 77, 65, 76, 76, 32, 201, 25, 5, 67, 82, 73, 80, 84, 104, 250, 1, 68, 218, 19, 65, 22, 66, 2, 90, 42, 69, 38, 70, 62, 71, 22, 73, 22, 75, 34, 76, 22, 79, 50, 80, 42, 82, 22, 83, - 34, 84, 38, 85, 214, 197, 1, 67, 198, 137, 13, 77, 2, 78, 186, 202, 1, - 88, 198, 140, 2, 72, 2, 74, 2, 81, 2, 86, 2, 87, 3, 89, 7, 26, 73, 151, - 128, 15, 69, 2, 247, 213, 1, 71, 110, 68, 8, 67, 65, 80, 73, 84, 65, 76, - 32, 150, 23, 83, 131, 177, 16, 68, 38, 154, 188, 18, 65, 2, 66, 2, 68, 2, + 34, 84, 38, 85, 214, 197, 1, 67, 250, 132, 13, 77, 2, 78, 186, 202, 1, + 88, 198, 140, 2, 72, 2, 74, 2, 81, 2, 86, 2, 87, 3, 89, 7, 26, 73, 203, + 251, 14, 69, 2, 247, 213, 1, 71, 110, 68, 8, 67, 65, 80, 73, 84, 65, 76, + 32, 150, 23, 83, 183, 172, 16, 68, 38, 206, 183, 18, 65, 2, 66, 2, 68, 2, 69, 2, 70, 2, 71, 2, 73, 2, 74, 2, 75, 2, 76, 2, 77, 2, 79, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88, 3, 89, 96, 52, 7, 82, 65, 75, 84, 85, 82, 32, - 255, 143, 7, 65, 94, 52, 8, 67, 65, 80, 73, 84, 65, 76, 32, 131, 21, 83, - 42, 134, 186, 18, 65, 2, 66, 2, 68, 2, 69, 2, 70, 2, 71, 2, 74, 2, 75, 2, + 179, 139, 7, 65, 94, 52, 8, 67, 65, 80, 73, 84, 65, 76, 32, 131, 21, 83, + 42, 186, 181, 18, 65, 2, 66, 2, 68, 2, 69, 2, 70, 2, 71, 2, 74, 2, 75, 2, 76, 2, 77, 2, 78, 2, 79, 2, 80, 2, 81, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88, 3, 89, 222, 1, 100, 6, 83, 77, 65, 76, 76, 32, 222, 7, 67, 218, 2, 69, 38, 75, 38, 78, 30, 80, 98, 82, 243, 5, 84, 104, 242, 1, 68, 186, 12, 65, 22, 66, 2, 90, 42, 69, 38, 70, 62, 71, 22, 73, 22, 75, 34, 76, 22, - 79, 50, 80, 42, 82, 22, 83, 34, 84, 38, 85, 214, 197, 1, 67, 198, 137, + 79, 50, 80, 42, 82, 22, 83, 34, 84, 38, 85, 214, 197, 1, 67, 250, 132, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 74, 2, 81, 2, 86, 2, 87, 3, - 89, 9, 52, 7, 79, 84, 76, 69, 83, 83, 32, 219, 248, 14, 69, 4, 186, 181, - 18, 73, 3, 74, 124, 246, 15, 67, 34, 83, 131, 177, 16, 68, 12, 32, 2, 71, - 72, 167, 138, 7, 83, 10, 17, 2, 84, 32, 10, 112, 6, 87, 72, 73, 84, 69, - 32, 142, 245, 5, 68, 222, 107, 65, 153, 235, 4, 9, 70, 76, 65, 84, 84, - 69, 78, 69, 68, 4, 174, 180, 14, 83, 39, 84, 130, 6, 84, 10, 65, 78, 83, + 89, 9, 52, 7, 79, 84, 76, 69, 83, 83, 32, 143, 244, 14, 69, 4, 238, 176, + 18, 73, 3, 74, 124, 246, 15, 67, 34, 83, 183, 172, 16, 68, 12, 32, 2, 71, + 72, 219, 133, 7, 83, 10, 17, 2, 84, 32, 10, 112, 6, 87, 72, 73, 84, 69, + 32, 194, 240, 5, 68, 222, 107, 65, 153, 235, 4, 9, 70, 76, 65, 84, 84, + 69, 78, 69, 68, 4, 226, 175, 14, 83, 39, 84, 130, 6, 84, 10, 65, 78, 83, 45, 83, 69, 82, 73, 70, 32, 249, 13, 6, 67, 82, 73, 80, 84, 32, 176, 5, 96, 5, 66, 79, 76, 68, 32, 164, 12, 6, 73, 84, 65, 76, 73, 67, 34, 67, - 34, 83, 131, 177, 16, 68, 204, 3, 98, 73, 122, 67, 218, 2, 69, 38, 75, - 38, 78, 30, 80, 98, 82, 30, 83, 214, 5, 84, 251, 177, 16, 68, 220, 1, 33, + 34, 83, 183, 172, 16, 68, 204, 3, 98, 73, 122, 67, 218, 2, 69, 38, 75, + 38, 78, 30, 80, 98, 82, 30, 83, 214, 5, 84, 175, 173, 16, 68, 220, 1, 33, 6, 84, 65, 76, 73, 67, 32, 220, 1, 74, 67, 218, 2, 69, 38, 75, 38, 78, 30, 80, 98, 82, 30, 83, 215, 5, 84, 102, 37, 7, 65, 80, 73, 84, 65, 76, 32, 102, 250, 1, 84, 174, 4, 65, 22, 66, 2, 90, 22, 68, 22, 69, 98, 71, 22, 73, 22, 75, 34, 76, 22, 79, 50, 80, 42, 82, 22, 83, 70, 85, 214, 197, - 1, 67, 198, 137, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 70, 2, 72, - 2, 74, 2, 81, 2, 86, 2, 87, 3, 89, 9, 232, 159, 11, 4, 72, 69, 84, 65, - 151, 233, 6, 65, 2, 249, 178, 16, 4, 80, 83, 73, 76, 2, 17, 2, 65, 80, 2, - 159, 7, 80, 2, 209, 138, 18, 2, 65, 66, 6, 74, 72, 148, 150, 5, 8, 65, - 82, 84, 73, 65, 76, 32, 68, 175, 128, 12, 73, 2, 191, 150, 17, 73, 2, - 169, 150, 17, 2, 72, 79, 102, 29, 5, 77, 65, 76, 76, 32, 102, 246, 1, 65, + 1, 67, 250, 132, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 70, 2, 72, + 2, 74, 2, 81, 2, 86, 2, 87, 3, 89, 9, 156, 155, 11, 4, 72, 69, 84, 65, + 151, 233, 6, 65, 2, 173, 174, 16, 4, 80, 83, 73, 76, 2, 17, 2, 65, 80, 2, + 159, 7, 80, 2, 133, 134, 18, 2, 65, 66, 6, 74, 72, 200, 145, 5, 8, 65, + 82, 84, 73, 65, 76, 32, 68, 175, 128, 12, 73, 2, 243, 145, 17, 73, 2, + 221, 145, 17, 2, 72, 79, 102, 29, 5, 77, 65, 76, 76, 32, 102, 246, 1, 65, 22, 66, 2, 90, 22, 68, 22, 69, 38, 70, 62, 71, 22, 73, 22, 75, 34, 76, - 22, 79, 50, 80, 42, 82, 22, 83, 34, 84, 38, 85, 214, 197, 1, 67, 198, - 137, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 72, 2, 74, 2, 81, 2, - 86, 2, 87, 3, 89, 5, 179, 205, 14, 76, 5, 219, 132, 18, 69, 5, 175, 236, - 14, 69, 7, 130, 213, 1, 80, 199, 209, 16, 84, 5, 11, 73, 2, 29, 5, 78, - 65, 76, 32, 83, 2, 227, 1, 73, 5, 215, 210, 15, 65, 5, 191, 131, 18, 79, - 5, 11, 65, 2, 195, 234, 14, 80, 5, 243, 235, 14, 65, 7, 11, 77, 4, 190, - 171, 1, 73, 183, 185, 16, 69, 9, 186, 147, 18, 72, 2, 83, 219, 19, 73, 5, - 247, 135, 18, 72, 5, 11, 73, 2, 187, 133, 18, 71, 7, 162, 233, 14, 72, + 22, 79, 50, 80, 42, 82, 22, 83, 34, 84, 38, 85, 214, 197, 1, 67, 250, + 132, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 72, 2, 74, 2, 81, 2, + 86, 2, 87, 3, 89, 5, 231, 200, 14, 76, 5, 143, 128, 18, 69, 5, 227, 231, + 14, 69, 7, 130, 213, 1, 80, 251, 204, 16, 84, 5, 11, 73, 2, 29, 5, 78, + 65, 76, 32, 83, 2, 227, 1, 73, 5, 139, 206, 15, 65, 5, 243, 254, 17, 79, + 5, 11, 65, 2, 247, 229, 14, 80, 5, 167, 231, 14, 65, 7, 11, 77, 4, 190, + 171, 1, 73, 235, 180, 16, 69, 9, 238, 142, 18, 72, 2, 83, 219, 19, 73, 5, + 171, 131, 18, 72, 5, 11, 73, 2, 239, 128, 18, 71, 7, 214, 228, 14, 72, 175, 152, 3, 65, 5, 151, 210, 1, 80, 2, 11, 72, 2, 11, 69, 2, 11, 84, 2, - 151, 144, 17, 65, 104, 11, 32, 104, 18, 67, 35, 83, 52, 53, 5, 65, 80, - 73, 84, 65, 52, 21, 3, 77, 65, 76, 52, 195, 131, 12, 76, 82, 76, 8, 67, - 65, 80, 73, 84, 65, 76, 32, 157, 1, 6, 83, 77, 65, 76, 76, 32, 36, 138, - 164, 18, 65, 2, 67, 2, 68, 2, 71, 2, 74, 2, 75, 2, 78, 2, 79, 2, 80, 2, - 81, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88, 2, 89, 3, 90, 46, 238, 162, + 203, 139, 17, 65, 104, 11, 32, 104, 18, 67, 35, 83, 52, 53, 5, 65, 80, + 73, 84, 65, 52, 21, 3, 77, 65, 76, 52, 247, 254, 11, 76, 82, 76, 8, 67, + 65, 80, 73, 84, 65, 76, 32, 157, 1, 6, 83, 77, 65, 76, 76, 32, 36, 190, + 159, 18, 65, 2, 67, 2, 68, 2, 71, 2, 74, 2, 75, 2, 78, 2, 79, 2, 80, 2, + 81, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88, 2, 89, 3, 90, 46, 162, 158, 18, 65, 2, 66, 2, 67, 2, 68, 2, 70, 2, 72, 2, 73, 2, 74, 2, 75, 2, 76, 2, 77, 2, 78, 2, 80, 2, 81, 2, 82, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88, 2, 89, 3, 90, 40, 45, 9, 32, 78, 85, 77, 69, 82, 65, 76, 32, 40, 70, 69, - 66, 70, 70, 78, 26, 83, 66, 84, 206, 172, 16, 90, 223, 86, 79, 6, 40, 4, - 73, 71, 72, 84, 203, 253, 9, 76, 5, 131, 202, 16, 69, 8, 30, 73, 105, 3, - 79, 85, 82, 4, 146, 135, 5, 70, 239, 129, 13, 86, 4, 65, 3, 73, 78, 69, - 8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 5, 219, 200, 16, 84, 10, 42, 72, - 150, 253, 9, 87, 187, 209, 7, 69, 4, 222, 133, 5, 73, 175, 166, 11, 82, + 66, 70, 70, 78, 26, 83, 66, 84, 130, 168, 16, 90, 223, 86, 79, 6, 40, 4, + 73, 71, 72, 84, 255, 248, 9, 76, 5, 183, 197, 16, 69, 8, 30, 73, 105, 3, + 79, 85, 82, 4, 198, 130, 5, 70, 239, 129, 13, 86, 4, 65, 3, 73, 78, 69, + 8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 5, 143, 196, 16, 84, 10, 42, 72, + 202, 248, 9, 87, 187, 209, 7, 69, 4, 146, 129, 5, 73, 175, 166, 11, 82, 130, 9, 226, 1, 65, 188, 4, 9, 67, 72, 65, 78, 73, 67, 65, 76, 32, 34, 68, 204, 15, 11, 69, 84, 69, 73, 32, 77, 65, 89, 69, 75, 32, 178, 11, 76, 62, 78, 134, 50, 82, 176, 15, 8, 83, 83, 65, 71, 69, 32, 87, 65, 22, 84, - 211, 155, 17, 77, 26, 68, 6, 83, 85, 82, 69, 68, 32, 137, 182, 14, 5, 84, - 32, 79, 78, 32, 24, 96, 5, 65, 78, 71, 76, 69, 164, 148, 10, 9, 82, 73, + 135, 151, 17, 77, 26, 68, 6, 83, 85, 82, 69, 68, 32, 189, 177, 14, 5, 84, + 32, 79, 78, 32, 24, 96, 5, 65, 78, 71, 76, 69, 216, 143, 10, 9, 82, 73, 71, 72, 84, 32, 65, 78, 71, 139, 245, 7, 66, 21, 11, 32, 18, 212, 1, 39, 87, 73, 84, 72, 32, 79, 80, 69, 78, 32, 65, 82, 77, 32, 69, 78, 68, 73, 78, 71, 32, 73, 78, 32, 65, 82, 82, 79, 87, 32, 80, 79, 73, 78, 84, 73, - 78, 71, 32, 205, 230, 17, 7, 79, 80, 69, 78, 73, 78, 71, 16, 62, 68, 24, + 78, 71, 32, 129, 226, 17, 7, 79, 80, 69, 78, 73, 78, 71, 16, 62, 68, 24, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 43, 85, 4, 73, 3, 79, 87, 78, 4, - 157, 150, 8, 5, 84, 32, 65, 78, 68, 4, 11, 80, 4, 153, 233, 11, 3, 32, - 65, 78, 4, 166, 153, 17, 65, 215, 56, 76, 252, 1, 56, 9, 69, 70, 65, 73, + 209, 145, 8, 5, 84, 32, 65, 78, 68, 4, 11, 80, 4, 205, 228, 11, 3, 32, + 65, 78, 4, 218, 148, 17, 65, 215, 56, 76, 252, 1, 56, 9, 69, 70, 65, 73, 68, 82, 73, 78, 32, 159, 7, 73, 190, 1, 174, 1, 67, 52, 6, 68, 73, 71, - 73, 84, 32, 152, 1, 7, 78, 85, 77, 66, 69, 82, 32, 114, 83, 224, 147, 7, + 73, 84, 32, 152, 1, 7, 78, 85, 77, 66, 69, 82, 32, 114, 83, 148, 143, 7, 12, 69, 88, 67, 76, 65, 77, 65, 84, 73, 79, 78, 32, 131, 170, 8, 70, 70, - 128, 3, 5, 65, 80, 73, 84, 65, 135, 189, 15, 79, 26, 82, 84, 48, 2, 79, - 78, 142, 161, 16, 70, 30, 83, 102, 90, 210, 86, 78, 239, 112, 69, 8, 44, - 3, 72, 82, 69, 241, 148, 17, 2, 87, 79, 4, 239, 148, 17, 69, 20, 50, 84, - 182, 249, 4, 69, 46, 70, 42, 78, 31, 83, 6, 246, 250, 4, 72, 220, 247, 4, - 2, 87, 69, 159, 209, 7, 69, 70, 68, 3, 77, 65, 76, 157, 212, 9, 8, 89, + 128, 3, 5, 65, 80, 73, 84, 65, 187, 184, 15, 79, 26, 82, 84, 48, 2, 79, + 78, 194, 156, 16, 70, 30, 83, 102, 90, 210, 86, 78, 239, 112, 69, 8, 44, + 3, 72, 82, 69, 165, 144, 17, 2, 87, 79, 4, 163, 144, 17, 69, 20, 50, 84, + 234, 244, 4, 69, 46, 70, 42, 78, 31, 83, 6, 170, 246, 4, 72, 220, 247, 4, + 2, 87, 69, 159, 209, 7, 69, 70, 68, 3, 77, 65, 76, 209, 207, 9, 8, 89, 77, 66, 79, 76, 32, 65, 73, 68, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, - 32, 68, 242, 1, 65, 38, 78, 218, 227, 3, 72, 2, 75, 178, 213, 10, 89, + 32, 68, 242, 1, 65, 38, 78, 142, 223, 3, 72, 2, 75, 178, 213, 10, 89, 222, 150, 3, 79, 162, 64, 66, 2, 67, 2, 68, 2, 69, 2, 70, 2, 71, 2, 73, 2, 74, 2, 76, 2, 77, 2, 80, 2, 81, 2, 82, 2, 83, 2, 84, 2, 85, 2, 86, 2, - 87, 2, 88, 3, 90, 7, 254, 243, 3, 84, 171, 156, 14, 73, 7, 130, 144, 18, - 71, 3, 89, 62, 48, 5, 69, 86, 65, 76, 32, 45, 3, 85, 77, 32, 6, 218, 243, + 87, 2, 88, 3, 90, 7, 178, 239, 3, 84, 171, 156, 14, 73, 7, 182, 139, 18, + 71, 3, 89, 62, 48, 5, 69, 86, 65, 76, 32, 45, 3, 85, 77, 32, 6, 142, 239, 10, 69, 134, 198, 4, 67, 115, 81, 56, 210, 1, 66, 50, 70, 164, 1, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 248, 1, 11, 77, 65, 84, 72, 69, 77, 65, 84, - 73, 67, 65, 22, 83, 124, 4, 84, 72, 82, 69, 214, 174, 15, 86, 246, 62, - 69, 166, 4, 87, 203, 11, 71, 4, 164, 158, 6, 3, 79, 76, 68, 211, 239, 7, + 73, 67, 65, 22, 83, 124, 4, 84, 72, 82, 69, 138, 170, 15, 86, 246, 62, + 69, 166, 4, 87, 203, 11, 71, 4, 216, 153, 6, 3, 79, 76, 68, 211, 239, 7, 76, 10, 84, 9, 76, 65, 84, 84, 69, 78, 69, 68, 32, 224, 3, 3, 79, 85, 82, - 135, 239, 15, 73, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 213, 1, + 187, 234, 15, 73, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 213, 1, 3, 84, 32, 80, 6, 11, 84, 6, 78, 32, 41, 15, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 65, 78, 71, 76, 69, 4, 36, 5, 67, 85, 82, 76, 89, 59, 80, 2, - 17, 2, 32, 66, 2, 249, 184, 7, 4, 82, 65, 67, 75, 2, 193, 198, 17, 10, - 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 2, 163, 203, 17, 76, 12, 150, - 143, 15, 72, 200, 95, 2, 73, 88, 182, 2, 65, 245, 115, 15, 77, 65, 76, + 17, 2, 32, 66, 2, 173, 180, 7, 4, 82, 65, 67, 75, 2, 245, 193, 17, 10, + 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 2, 215, 198, 17, 76, 12, 202, + 138, 15, 72, 200, 95, 2, 73, 88, 182, 2, 65, 245, 115, 15, 77, 65, 76, 76, 32, 87, 72, 73, 84, 69, 32, 67, 73, 82, 67, 4, 11, 69, 4, 45, 9, 32, - 80, 79, 73, 78, 84, 69, 68, 32, 4, 250, 207, 9, 80, 151, 158, 6, 66, 158, + 80, 79, 73, 78, 84, 69, 68, 32, 4, 174, 203, 9, 80, 151, 158, 6, 66, 158, 1, 146, 1, 65, 104, 6, 67, 72, 69, 73, 75, 72, 34, 76, 144, 6, 8, 83, 89, - 76, 76, 65, 66, 76, 69, 0, 4, 87, 79, 82, 68, 50, 86, 147, 139, 16, 68, - 6, 80, 8, 72, 65, 78, 71, 32, 75, 72, 85, 164, 6, 3, 80, 85, 78, 227, - 223, 13, 78, 2, 251, 200, 16, 68, 4, 150, 182, 17, 65, 139, 60, 69, 94, + 76, 76, 65, 66, 76, 69, 0, 4, 87, 79, 82, 68, 50, 86, 199, 134, 16, 68, + 6, 80, 8, 72, 65, 78, 71, 32, 75, 72, 85, 164, 6, 3, 80, 85, 78, 151, + 219, 13, 78, 2, 175, 196, 16, 68, 4, 202, 177, 17, 65, 139, 60, 69, 94, 52, 6, 69, 84, 84, 69, 82, 32, 185, 5, 2, 85, 77, 92, 250, 1, 66, 36, 2, 67, 72, 38, 68, 50, 71, 38, 74, 34, 75, 42, 78, 62, 80, 30, 83, 42, 84, - 54, 73, 0, 3, 76, 65, 73, 0, 3, 77, 73, 84, 166, 130, 13, 72, 166, 10, + 54, 73, 0, 3, 76, 65, 73, 0, 3, 77, 73, 84, 218, 253, 12, 72, 166, 10, 82, 2, 87, 248, 186, 2, 2, 65, 84, 250, 223, 1, 89, 246, 8, 85, 226, 79, - 69, 3, 79, 4, 146, 198, 16, 72, 147, 189, 1, 65, 4, 174, 247, 16, 73, - 211, 139, 1, 65, 8, 214, 171, 10, 72, 182, 203, 6, 73, 147, 68, 68, 4, - 166, 171, 10, 72, 239, 211, 7, 79, 4, 246, 196, 16, 72, 195, 49, 73, 6, - 216, 1, 2, 79, 75, 139, 169, 10, 72, 12, 178, 1, 65, 0, 3, 71, 79, 85, - 214, 253, 17, 78, 3, 89, 6, 118, 65, 255, 194, 16, 72, 6, 142, 240, 17, - 65, 162, 14, 72, 3, 83, 10, 48, 2, 73, 76, 138, 169, 10, 72, 199, 143, 7, - 84, 5, 225, 177, 1, 4, 32, 76, 79, 78, 2, 193, 252, 17, 3, 32, 73, 89, 2, - 157, 150, 17, 7, 32, 82, 69, 80, 69, 84, 73, 30, 64, 10, 79, 87, 69, 76, - 32, 83, 73, 71, 78, 32, 187, 194, 15, 73, 28, 130, 1, 65, 44, 4, 67, 72, - 69, 73, 2, 79, 0, 3, 83, 79, 85, 0, 2, 89, 69, 22, 73, 38, 85, 178, 137, - 11, 78, 211, 185, 4, 86, 8, 198, 234, 16, 78, 210, 82, 65, 187, 64, 85, - 2, 155, 234, 16, 78, 4, 134, 234, 16, 78, 139, 147, 1, 73, 4, 226, 233, - 16, 78, 139, 147, 1, 85, 6, 148, 225, 16, 4, 80, 79, 77, 69, 146, 19, 84, + 69, 3, 79, 4, 198, 193, 16, 72, 147, 189, 1, 65, 4, 226, 242, 16, 73, + 211, 139, 1, 65, 8, 138, 167, 10, 72, 182, 203, 6, 73, 147, 68, 68, 4, + 218, 166, 10, 72, 239, 211, 7, 79, 4, 170, 192, 16, 72, 195, 49, 73, 6, + 216, 1, 2, 79, 75, 191, 164, 10, 72, 12, 178, 1, 65, 0, 3, 71, 79, 85, + 138, 249, 17, 78, 3, 89, 6, 118, 65, 179, 190, 16, 72, 6, 194, 235, 17, + 65, 162, 14, 72, 3, 83, 10, 48, 2, 73, 76, 190, 164, 10, 72, 199, 143, 7, + 84, 5, 225, 177, 1, 4, 32, 76, 79, 78, 2, 245, 247, 17, 3, 32, 73, 89, 2, + 209, 145, 17, 7, 32, 82, 69, 80, 69, 84, 73, 30, 64, 10, 79, 87, 69, 76, + 32, 83, 73, 71, 78, 32, 239, 189, 15, 73, 28, 130, 1, 65, 44, 4, 67, 72, + 69, 73, 2, 79, 0, 3, 83, 79, 85, 0, 2, 89, 69, 22, 73, 38, 85, 230, 132, + 11, 78, 211, 185, 4, 86, 8, 250, 229, 16, 78, 210, 82, 65, 187, 64, 85, + 2, 207, 229, 16, 78, 4, 186, 229, 16, 78, 139, 147, 1, 73, 4, 150, 229, + 16, 78, 139, 147, 1, 85, 6, 200, 220, 16, 4, 80, 79, 77, 69, 146, 19, 84, 195, 56, 79, 178, 3, 160, 1, 11, 68, 69, 32, 75, 73, 75, 65, 75, 85, 73, - 32, 212, 228, 16, 20, 79, 82, 65, 72, 32, 87, 73, 84, 72, 32, 78, 73, 78, + 32, 136, 224, 16, 20, 79, 82, 65, 72, 32, 87, 73, 84, 72, 32, 78, 73, 78, 69, 32, 66, 82, 65, 78, 67, 79, 83, 174, 3, 148, 1, 17, 67, 79, 77, 66, 73, 78, 73, 78, 71, 32, 78, 85, 77, 66, 69, 82, 32, 164, 1, 10, 83, 89, - 76, 76, 65, 66, 76, 69, 32, 77, 215, 172, 9, 68, 14, 62, 84, 56, 7, 72, - 85, 78, 68, 82, 69, 68, 147, 186, 4, 77, 8, 26, 69, 219, 186, 4, 72, 6, - 26, 78, 167, 177, 14, 69, 4, 172, 186, 4, 2, 32, 84, 163, 190, 13, 83, + 76, 76, 65, 66, 76, 69, 32, 77, 139, 168, 9, 68, 14, 62, 84, 56, 7, 72, + 85, 78, 68, 82, 69, 68, 199, 181, 4, 77, 8, 26, 69, 143, 182, 4, 72, 6, + 26, 78, 219, 172, 14, 69, 4, 224, 181, 4, 2, 32, 84, 163, 190, 13, 83, 142, 3, 22, 48, 143, 21, 49, 198, 1, 118, 48, 250, 1, 49, 210, 1, 50, 138, 2, 51, 254, 1, 52, 130, 2, 53, 158, 2, 54, 242, 1, 55, 134, 2, 56, - 187, 2, 57, 18, 142, 1, 49, 34, 50, 22, 51, 22, 52, 162, 151, 2, 53, 162, - 241, 3, 56, 196, 236, 10, 3, 57, 32, 77, 92, 3, 55, 32, 77, 237, 90, 3, - 54, 32, 87, 2, 11, 32, 2, 151, 226, 17, 75, 2, 243, 236, 17, 32, 2, 179, - 159, 12, 32, 2, 11, 32, 2, 207, 225, 17, 87, 20, 130, 1, 49, 22, 54, 18, - 56, 22, 57, 228, 28, 2, 48, 32, 162, 188, 7, 53, 218, 209, 5, 52, 198, - 10, 55, 222, 9, 50, 207, 244, 3, 51, 2, 231, 198, 17, 32, 2, 147, 25, 32, - 2, 215, 214, 13, 32, 2, 227, 128, 13, 32, 20, 106, 49, 22, 50, 22, 51, - 22, 52, 22, 53, 22, 54, 22, 55, 22, 57, 142, 229, 11, 48, 185, 236, 1, 2, - 56, 32, 2, 147, 175, 10, 32, 2, 195, 134, 10, 32, 2, 227, 205, 17, 32, 2, - 211, 153, 12, 32, 2, 167, 238, 12, 32, 2, 219, 207, 17, 32, 2, 179, 232, + 187, 2, 57, 18, 142, 1, 49, 34, 50, 22, 51, 22, 52, 162, 151, 2, 53, 214, + 236, 3, 56, 196, 236, 10, 3, 57, 32, 77, 92, 3, 55, 32, 77, 237, 90, 3, + 54, 32, 87, 2, 11, 32, 2, 203, 221, 17, 75, 2, 167, 232, 17, 32, 2, 231, + 154, 12, 32, 2, 11, 32, 2, 131, 221, 17, 87, 20, 130, 1, 49, 22, 54, 18, + 56, 22, 57, 228, 28, 2, 48, 32, 214, 183, 7, 53, 218, 209, 5, 52, 198, + 10, 55, 222, 9, 50, 207, 244, 3, 51, 2, 155, 194, 17, 32, 2, 147, 25, 32, + 2, 139, 210, 13, 32, 2, 151, 252, 12, 32, 20, 106, 49, 22, 50, 22, 51, + 22, 52, 22, 53, 22, 54, 22, 55, 22, 57, 194, 224, 11, 48, 185, 236, 1, 2, + 56, 32, 2, 199, 170, 10, 32, 2, 247, 129, 10, 32, 2, 151, 201, 17, 32, 2, + 135, 149, 12, 32, 2, 219, 233, 12, 32, 2, 143, 203, 17, 32, 2, 231, 227, 12, 32, 2, 219, 28, 32, 20, 174, 1, 48, 16, 2, 49, 32, 20, 2, 52, 32, 20, - 2, 56, 32, 130, 195, 4, 57, 214, 51, 50, 22, 53, 220, 240, 7, 2, 54, 32, + 2, 56, 32, 182, 190, 4, 57, 214, 51, 50, 22, 53, 220, 240, 7, 2, 54, 32, 188, 136, 4, 3, 55, 32, 78, 237, 90, 3, 51, 32, 89, 2, 159, 37, 32, 2, - 163, 220, 17, 89, 2, 143, 220, 17, 70, 2, 183, 163, 16, 78, 20, 192, 1, + 215, 215, 17, 89, 2, 195, 215, 17, 70, 2, 235, 158, 16, 78, 20, 192, 1, 2, 48, 32, 22, 53, 22, 56, 160, 8, 3, 52, 32, 75, 128, 22, 3, 54, 32, 72, - 222, 2, 55, 202, 213, 4, 49, 224, 184, 4, 3, 57, 32, 87, 156, 174, 4, 2, - 51, 32, 157, 197, 1, 3, 50, 32, 72, 2, 219, 251, 15, 72, 2, 175, 217, 15, - 32, 2, 211, 206, 17, 32, 20, 178, 1, 48, 18, 53, 20, 2, 54, 32, 20, 2, - 56, 32, 22, 57, 232, 218, 9, 2, 50, 32, 236, 4, 2, 51, 32, 210, 214, 1, + 222, 2, 55, 254, 208, 4, 49, 224, 184, 4, 3, 57, 32, 87, 156, 174, 4, 2, + 51, 32, 157, 197, 1, 3, 50, 32, 72, 2, 143, 247, 15, 72, 2, 227, 212, 15, + 32, 2, 135, 202, 17, 32, 20, 178, 1, 48, 18, 53, 20, 2, 54, 32, 20, 2, + 56, 32, 22, 57, 156, 214, 9, 2, 50, 32, 236, 4, 2, 51, 32, 210, 214, 1, 49, 164, 234, 3, 3, 52, 32, 76, 197, 144, 1, 3, 55, 32, 78, 2, 159, 4, - 32, 2, 231, 162, 16, 32, 2, 191, 190, 17, 71, 2, 131, 156, 13, 78, 2, - 185, 149, 16, 2, 32, 77, 20, 196, 1, 2, 50, 32, 22, 54, 238, 25, 51, 168, - 2, 3, 55, 32, 78, 200, 216, 1, 2, 52, 32, 234, 150, 3, 56, 144, 150, 5, + 32, 2, 155, 158, 16, 32, 2, 243, 185, 17, 71, 2, 183, 151, 13, 78, 2, + 237, 144, 16, 2, 32, 77, 20, 196, 1, 2, 50, 32, 22, 54, 238, 25, 51, 168, + 2, 3, 55, 32, 78, 200, 216, 1, 2, 52, 32, 158, 146, 3, 56, 144, 150, 5, 3, 48, 32, 78, 192, 89, 3, 49, 32, 87, 158, 13, 57, 249, 238, 4, 3, 53, - 32, 75, 2, 179, 188, 17, 77, 2, 207, 157, 10, 32, 20, 196, 1, 3, 52, 32, + 32, 75, 2, 231, 183, 17, 77, 2, 131, 153, 10, 32, 20, 196, 1, 3, 52, 32, 75, 20, 2, 53, 32, 22, 57, 232, 7, 3, 49, 32, 71, 234, 1, 51, 236, 6, 3, - 48, 32, 71, 146, 5, 50, 212, 230, 10, 2, 55, 32, 172, 160, 4, 3, 54, 32, - 75, 217, 88, 3, 56, 32, 70, 2, 131, 195, 17, 80, 2, 131, 209, 17, 70, 2, - 163, 249, 10, 32, 20, 228, 1, 2, 48, 32, 20, 2, 49, 32, 20, 2, 52, 32, - 22, 53, 172, 14, 6, 54, 32, 76, 79, 78, 71, 224, 11, 2, 57, 32, 228, 173, + 48, 32, 71, 146, 5, 50, 136, 226, 10, 2, 55, 32, 172, 160, 4, 3, 54, 32, + 75, 217, 88, 3, 56, 32, 70, 2, 183, 190, 17, 80, 2, 183, 204, 17, 70, 2, + 215, 244, 10, 32, 20, 228, 1, 2, 48, 32, 20, 2, 49, 32, 20, 2, 52, 32, + 22, 53, 172, 14, 6, 54, 32, 76, 79, 78, 71, 224, 11, 2, 57, 32, 152, 169, 3, 3, 51, 32, 72, 128, 165, 9, 4, 50, 32, 78, 71, 236, 247, 3, 3, 55, 32, - 72, 189, 97, 3, 56, 32, 70, 2, 243, 206, 17, 89, 2, 147, 243, 15, 80, 2, - 255, 242, 15, 76, 2, 183, 232, 16, 32, 20, 230, 1, 53, 216, 14, 4, 48, - 32, 78, 71, 244, 7, 3, 51, 32, 71, 220, 163, 12, 2, 55, 32, 250, 117, 57, + 72, 189, 97, 3, 56, 32, 70, 2, 167, 202, 17, 89, 2, 199, 238, 15, 80, 2, + 179, 238, 15, 76, 2, 235, 227, 16, 32, 20, 230, 1, 53, 216, 14, 4, 48, + 32, 78, 71, 244, 7, 3, 51, 32, 71, 144, 159, 12, 2, 55, 32, 250, 117, 57, 200, 117, 3, 50, 32, 75, 136, 203, 1, 3, 49, 32, 84, 156, 28, 4, 56, 32, - 78, 89, 152, 134, 1, 3, 52, 32, 77, 225, 34, 2, 54, 32, 2, 183, 179, 17, + 78, 89, 152, 134, 1, 3, 52, 32, 77, 225, 34, 2, 54, 32, 2, 235, 174, 17, 32, 200, 1, 118, 48, 186, 2, 49, 210, 2, 50, 166, 2, 51, 222, 1, 52, 186, 2, 53, 214, 2, 54, 166, 2, 55, 190, 2, 56, 223, 2, 57, 20, 222, 1, 49, 30, 52, 28, 7, 53, 32, 76, 79, 78, 71, 32, 12, 2, 51, 32, 184, 11, 6, 54, - 32, 76, 79, 78, 71, 202, 241, 4, 50, 170, 170, 2, 48, 204, 143, 5, 3, 55, - 32, 71, 200, 182, 3, 3, 57, 32, 89, 201, 40, 3, 56, 32, 75, 2, 129, 148, - 16, 2, 32, 70, 2, 137, 149, 15, 2, 32, 84, 2, 11, 77, 2, 227, 148, 15, + 32, 76, 79, 78, 71, 254, 236, 4, 50, 170, 170, 2, 48, 204, 143, 5, 3, 55, + 32, 71, 200, 182, 3, 3, 57, 32, 89, 201, 40, 3, 56, 32, 75, 2, 181, 143, + 16, 2, 32, 70, 2, 189, 144, 15, 2, 32, 84, 2, 11, 77, 2, 151, 144, 15, 66, 20, 208, 1, 6, 48, 32, 76, 79, 78, 71, 22, 51, 34, 54, 22, 56, 32, 2, - 57, 32, 248, 17, 4, 53, 32, 78, 71, 128, 209, 2, 2, 55, 32, 196, 151, 2, + 57, 32, 248, 17, 4, 53, 32, 78, 71, 128, 209, 2, 2, 55, 32, 248, 146, 2, 3, 50, 32, 75, 216, 151, 10, 3, 52, 32, 87, 181, 136, 2, 2, 49, 32, 2, - 183, 183, 16, 32, 2, 11, 32, 2, 255, 198, 17, 74, 2, 155, 210, 16, 32, 2, - 11, 32, 2, 203, 198, 17, 87, 2, 151, 202, 15, 78, 20, 226, 1, 50, 32, 2, - 51, 32, 128, 4, 3, 52, 32, 71, 254, 9, 48, 244, 245, 9, 4, 56, 32, 72, + 235, 178, 16, 32, 2, 11, 32, 2, 179, 194, 17, 74, 2, 207, 205, 16, 32, 2, + 11, 32, 2, 255, 193, 17, 87, 2, 203, 197, 15, 78, 20, 226, 1, 50, 32, 2, + 51, 32, 128, 4, 3, 52, 32, 71, 254, 9, 48, 168, 241, 9, 4, 56, 32, 72, 79, 208, 225, 2, 5, 55, 32, 78, 71, 71, 148, 88, 2, 53, 32, 168, 61, 2, 57, 32, 216, 237, 1, 3, 54, 32, 87, 221, 153, 1, 2, 49, 32, 2, 11, 32, 2, - 183, 166, 13, 77, 2, 11, 78, 2, 143, 199, 17, 68, 20, 200, 3, 2, 56, 32, - 252, 4, 3, 52, 32, 78, 148, 244, 4, 3, 50, 32, 75, 250, 215, 2, 49, 2, + 235, 161, 13, 77, 2, 11, 78, 2, 195, 194, 17, 68, 20, 200, 3, 2, 56, 32, + 252, 4, 3, 52, 32, 78, 200, 239, 4, 3, 50, 32, 75, 250, 215, 2, 49, 2, 53, 232, 174, 2, 2, 55, 32, 160, 140, 5, 3, 51, 32, 70, 0, 3, 54, 32, 83, 224, 53, 2, 48, 32, 197, 152, 1, 3, 57, 32, 87, 20, 236, 1, 8, 50, 32, 76, 79, 78, 71, 32, 77, 20, 3, 53, 32, 77, 22, 54, 224, 2, 3, 57, 32, 78, - 186, 220, 6, 55, 176, 160, 3, 3, 51, 32, 87, 160, 230, 2, 2, 48, 32, 168, - 60, 3, 56, 32, 71, 216, 233, 1, 3, 49, 32, 89, 1, 3, 52, 32, 86, 2, 147, - 184, 17, 66, 2, 155, 195, 17, 66, 2, 169, 159, 16, 3, 32, 78, 71, 20, + 238, 215, 6, 55, 176, 160, 3, 3, 51, 32, 87, 160, 230, 2, 2, 48, 32, 168, + 60, 3, 56, 32, 71, 216, 233, 1, 3, 49, 32, 89, 1, 3, 52, 32, 86, 2, 199, + 179, 17, 66, 2, 207, 190, 17, 66, 2, 221, 154, 16, 3, 32, 78, 71, 20, 192, 1, 2, 50, 32, 34, 52, 26, 53, 34, 54, 36, 2, 55, 32, 188, 7, 2, 48, - 32, 204, 128, 10, 3, 56, 32, 75, 188, 198, 2, 2, 49, 32, 136, 144, 3, 5, - 57, 32, 78, 71, 71, 229, 210, 1, 2, 51, 32, 2, 11, 78, 2, 183, 210, 17, - 74, 2, 165, 5, 2, 32, 77, 2, 11, 32, 2, 223, 192, 17, 71, 2, 169, 137, - 15, 4, 32, 78, 71, 71, 2, 223, 225, 15, 74, 20, 220, 1, 2, 48, 32, 20, 6, - 49, 32, 76, 79, 78, 71, 30, 56, 156, 2, 2, 55, 32, 188, 198, 9, 3, 52, + 32, 128, 252, 9, 3, 56, 32, 75, 188, 198, 2, 2, 49, 32, 136, 144, 3, 5, + 57, 32, 78, 71, 71, 229, 210, 1, 2, 51, 32, 2, 11, 78, 2, 235, 205, 17, + 74, 2, 165, 5, 2, 32, 77, 2, 11, 32, 2, 147, 188, 17, 71, 2, 221, 132, + 15, 4, 32, 78, 71, 71, 2, 147, 221, 15, 74, 20, 220, 1, 2, 48, 32, 20, 6, + 49, 32, 76, 79, 78, 71, 30, 56, 156, 2, 2, 55, 32, 240, 193, 9, 3, 52, 32, 78, 236, 49, 4, 54, 32, 71, 85, 160, 140, 5, 2, 53, 32, 216, 88, 3, - 50, 32, 83, 0, 2, 51, 32, 241, 101, 2, 57, 32, 2, 147, 135, 15, 74, 2, - 141, 169, 12, 2, 32, 77, 2, 191, 217, 12, 32, 24, 198, 1, 50, 2, 52, 36, - 6, 53, 32, 76, 79, 78, 71, 28, 3, 55, 32, 78, 34, 56, 168, 247, 11, 2, + 50, 32, 83, 0, 2, 51, 32, 241, 101, 2, 57, 32, 2, 199, 130, 15, 74, 2, + 193, 164, 12, 2, 32, 77, 2, 243, 212, 12, 32, 24, 198, 1, 50, 2, 52, 36, + 6, 53, 32, 76, 79, 78, 71, 28, 3, 55, 32, 78, 34, 56, 220, 242, 11, 2, 54, 32, 196, 98, 3, 57, 32, 75, 148, 131, 3, 3, 51, 32, 86, 240, 113, 4, - 48, 32, 78, 89, 219, 53, 49, 4, 205, 134, 15, 4, 32, 77, 66, 79, 2, 229, - 176, 17, 2, 32, 74, 2, 11, 71, 2, 151, 131, 16, 85, 2, 155, 249, 15, 32, + 48, 32, 78, 89, 219, 53, 49, 4, 129, 130, 15, 4, 32, 77, 66, 79, 2, 153, + 172, 17, 2, 32, 74, 2, 11, 71, 2, 203, 254, 15, 85, 2, 207, 244, 15, 32, 20, 212, 1, 2, 48, 32, 22, 49, 22, 50, 20, 6, 51, 32, 76, 79, 78, 71, 34, - 56, 168, 142, 9, 2, 53, 32, 128, 129, 1, 3, 52, 32, 78, 232, 198, 2, 2, + 56, 220, 137, 9, 2, 53, 32, 128, 129, 1, 3, 52, 32, 78, 232, 198, 2, 2, 54, 32, 216, 129, 3, 4, 55, 32, 77, 66, 237, 30, 4, 57, 32, 77, 85, 2, - 187, 130, 15, 68, 2, 223, 141, 10, 32, 2, 215, 222, 10, 32, 2, 165, 189, - 15, 3, 32, 78, 71, 2, 17, 2, 32, 77, 2, 163, 218, 15, 66, 16, 142, 1, 48, + 239, 253, 14, 68, 2, 147, 137, 10, 32, 2, 139, 218, 10, 32, 2, 217, 184, + 15, 3, 32, 78, 71, 2, 17, 2, 32, 77, 2, 215, 213, 15, 66, 16, 142, 1, 48, 32, 3, 49, 32, 78, 20, 3, 50, 32, 78, 20, 2, 51, 32, 20, 3, 52, 32, 87, - 22, 53, 20, 2, 54, 32, 233, 212, 12, 3, 55, 32, 70, 2, 11, 32, 2, 243, - 216, 15, 71, 2, 223, 216, 15, 68, 2, 131, 166, 17, 74, 2, 235, 250, 16, - 72, 2, 235, 182, 17, 85, 2, 147, 254, 15, 32, 2, 163, 145, 1, 83, 248, 1, - 72, 6, 79, 73, 84, 73, 67, 32, 212, 131, 11, 2, 67, 85, 191, 193, 2, 80, + 22, 53, 20, 2, 54, 32, 157, 208, 12, 3, 55, 32, 70, 2, 11, 32, 2, 167, + 212, 15, 71, 2, 147, 212, 15, 68, 2, 183, 161, 17, 74, 2, 159, 246, 16, + 72, 2, 159, 178, 17, 85, 2, 199, 249, 15, 32, 2, 163, 145, 1, 83, 248, 1, + 72, 6, 79, 73, 84, 73, 67, 32, 136, 255, 10, 2, 67, 85, 191, 193, 2, 80, 244, 1, 104, 8, 67, 85, 82, 83, 73, 86, 69, 32, 221, 10, 13, 72, 73, 69, 82, 79, 71, 76, 89, 80, 72, 73, 67, 32, 180, 1, 96, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, 250, 2, 76, 133, 3, 7, 78, 85, 77, 66, 69, 82, 32, 24, 78, 69, 50, 70, 44, 4, 79, 78, 69, 32, 46, 83, 50, 84, 61, 3, 78, 73, 78, 4, 160, 1, 2, 76, 69, 93, 4, 73, 71, 72, 84, 4, 192, 1, 2, 73, 86, - 13, 3, 79, 85, 82, 4, 140, 192, 15, 4, 84, 87, 69, 76, 19, 72, 4, 26, 69, + 13, 3, 79, 85, 82, 4, 192, 187, 15, 4, 84, 87, 69, 76, 19, 72, 4, 26, 69, 93, 2, 73, 88, 2, 65, 2, 86, 69, 6, 46, 69, 12, 3, 72, 82, 69, 13, 2, 87, - 79, 2, 23, 78, 2, 11, 69, 2, 237, 193, 15, 5, 32, 84, 87, 69, 76, 52, 76, + 79, 2, 23, 78, 2, 11, 69, 2, 161, 189, 15, 5, 32, 84, 87, 69, 76, 52, 76, 6, 69, 84, 84, 69, 82, 32, 137, 2, 8, 79, 71, 79, 71, 82, 65, 77, 32, 48, - 182, 1, 65, 46, 84, 238, 235, 1, 78, 2, 83, 162, 217, 13, 72, 234, 181, + 182, 1, 65, 46, 84, 238, 235, 1, 78, 2, 83, 214, 212, 13, 72, 234, 181, 1, 75, 138, 69, 66, 2, 68, 2, 76, 2, 77, 2, 80, 2, 81, 2, 82, 2, 87, 2, - 89, 186, 2, 69, 2, 73, 3, 79, 5, 157, 182, 11, 6, 82, 67, 72, 65, 73, 67, - 6, 178, 194, 17, 65, 2, 69, 3, 79, 4, 202, 209, 4, 73, 153, 212, 12, 2, + 89, 186, 2, 69, 2, 73, 3, 79, 5, 209, 177, 11, 6, 82, 67, 72, 65, 73, 67, + 6, 230, 189, 17, 65, 2, 69, 3, 79, 4, 254, 204, 4, 73, 153, 212, 12, 2, 82, 77, 104, 92, 5, 69, 73, 71, 72, 84, 30, 70, 92, 4, 78, 73, 78, 69, 54, 83, 78, 84, 73, 2, 79, 78, 11, 150, 1, 89, 223, 1, 32, 24, 18, 73, - 35, 79, 12, 142, 2, 86, 163, 236, 3, 70, 12, 148, 2, 2, 85, 82, 251, 235, - 3, 82, 11, 28, 2, 84, 89, 223, 1, 32, 2, 215, 161, 6, 32, 24, 40, 4, 69, - 86, 69, 78, 1, 2, 73, 88, 13, 154, 1, 32, 251, 235, 3, 84, 28, 34, 72, - 50, 87, 143, 160, 6, 69, 12, 32, 2, 82, 69, 239, 235, 3, 73, 8, 39, 69, - 12, 26, 79, 239, 235, 3, 69, 9, 11, 32, 6, 178, 158, 6, 72, 207, 195, 5, - 84, 64, 96, 7, 76, 69, 84, 84, 69, 82, 32, 201, 167, 3, 11, 83, 89, 77, + 35, 79, 12, 142, 2, 86, 215, 231, 3, 70, 12, 148, 2, 2, 85, 82, 175, 231, + 3, 82, 11, 28, 2, 84, 89, 223, 1, 32, 2, 139, 157, 6, 32, 24, 40, 4, 69, + 86, 69, 78, 1, 2, 73, 88, 13, 154, 1, 32, 175, 231, 3, 84, 28, 34, 72, + 50, 87, 195, 155, 6, 69, 12, 32, 2, 82, 69, 163, 231, 3, 73, 8, 39, 69, + 12, 26, 79, 163, 231, 3, 69, 9, 11, 32, 6, 230, 153, 6, 72, 207, 195, 5, + 84, 64, 96, 7, 76, 69, 84, 84, 69, 82, 32, 253, 162, 3, 11, 83, 89, 77, 66, 79, 76, 32, 86, 73, 68, 74, 60, 174, 1, 66, 2, 82, 22, 78, 30, 83, - 38, 84, 222, 189, 15, 72, 234, 181, 1, 75, 138, 69, 68, 2, 76, 2, 77, 2, - 80, 2, 81, 2, 87, 2, 89, 186, 2, 65, 2, 69, 2, 73, 3, 79, 4, 151, 166, 3, - 65, 8, 130, 166, 3, 65, 3, 69, 6, 230, 165, 3, 65, 195, 149, 14, 69, 10, - 194, 165, 3, 65, 2, 69, 195, 149, 14, 79, 2, 243, 171, 12, 73, 22, 26, - 82, 207, 252, 16, 73, 20, 44, 5, 73, 67, 65, 76, 32, 251, 185, 17, 79, + 38, 84, 146, 185, 15, 72, 234, 181, 1, 75, 138, 69, 68, 2, 76, 2, 77, 2, + 80, 2, 81, 2, 87, 2, 89, 186, 2, 65, 2, 69, 2, 73, 3, 79, 4, 203, 161, 3, + 65, 8, 182, 161, 3, 65, 3, 69, 6, 154, 161, 3, 65, 195, 149, 14, 69, 10, + 246, 160, 3, 65, 2, 69, 195, 149, 14, 79, 2, 167, 167, 12, 73, 22, 26, + 82, 131, 248, 16, 73, 20, 44, 5, 73, 67, 65, 76, 32, 175, 181, 17, 79, 18, 116, 10, 76, 79, 78, 71, 32, 79, 86, 69, 82, 32, 74, 80, 26, 84, 168, - 1, 7, 83, 72, 79, 82, 84, 32, 79, 215, 32, 66, 4, 180, 246, 2, 2, 83, 72, + 1, 7, 83, 72, 79, 82, 84, 32, 79, 215, 32, 66, 4, 232, 241, 2, 2, 83, 72, 169, 253, 10, 7, 84, 87, 79, 32, 83, 72, 79, 2, 109, 3, 69, 78, 84, 8, 66, 69, 34, 82, 41, 10, 87, 79, 32, 83, 72, 79, 82, 84, 83, 32, 2, 17, 2, - 84, 82, 2, 23, 65, 2, 11, 73, 2, 189, 157, 16, 2, 83, 69, 4, 26, 79, 235, - 131, 8, 74, 2, 205, 195, 10, 4, 86, 69, 82, 32, 230, 2, 104, 3, 65, 79, + 84, 82, 2, 23, 65, 2, 11, 73, 2, 241, 152, 16, 2, 83, 69, 4, 26, 79, 159, + 255, 7, 74, 2, 129, 191, 10, 4, 86, 69, 82, 32, 230, 2, 104, 3, 65, 79, 32, 136, 18, 2, 67, 82, 142, 1, 68, 142, 1, 76, 130, 1, 78, 245, 2, 4, 82, 82, 79, 82, 170, 2, 156, 1, 7, 76, 69, 84, 84, 69, 82, 32, 180, 10, 5, 83, 73, 71, 78, 32, 212, 1, 5, 84, 79, 78, 69, 32, 69, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 178, 1, 214, 1, 65, 110, 66, 34, 68, 106, 71, 34, 76, 50, 78, 106, 82, 170, 1, 83, 54, 84, 218, 1, 86, 32, 3, 89, - 73, 32, 118, 90, 238, 180, 13, 81, 234, 233, 1, 80, 222, 196, 1, 72, 2, + 73, 32, 118, 90, 162, 176, 13, 81, 234, 233, 1, 80, 222, 196, 1, 72, 2, 77, 138, 69, 70, 2, 75, 2, 87, 3, 88, 10, 52, 7, 82, 67, 72, 65, 73, 67, - 32, 175, 178, 17, 72, 8, 134, 132, 9, 90, 162, 184, 4, 78, 207, 243, 3, - 77, 4, 158, 158, 17, 82, 219, 19, 65, 16, 50, 90, 154, 4, 76, 214, 170, - 17, 68, 187, 2, 65, 8, 202, 157, 17, 89, 162, 17, 72, 2, 90, 187, 2, 65, - 6, 174, 233, 16, 72, 195, 71, 65, 8, 170, 184, 10, 72, 238, 245, 6, 89, - 187, 2, 65, 18, 54, 65, 170, 232, 16, 71, 2, 78, 2, 89, 139, 69, 72, 5, - 11, 83, 2, 141, 234, 13, 4, 65, 76, 73, 90, 16, 60, 9, 69, 70, 79, 82, - 77, 69, 68, 32, 84, 167, 152, 17, 84, 14, 40, 4, 79, 78, 69, 45, 167, - 177, 15, 83, 12, 202, 174, 17, 49, 2, 50, 2, 52, 2, 53, 2, 54, 3, 56, 8, - 182, 154, 17, 89, 162, 17, 72, 2, 83, 187, 2, 65, 32, 78, 76, 20, 4, 79, - 78, 69, 45, 70, 83, 254, 169, 17, 84, 186, 2, 65, 3, 69, 4, 231, 180, 10, - 72, 14, 246, 172, 17, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 8, - 250, 169, 17, 72, 2, 83, 186, 2, 65, 3, 69, 4, 202, 169, 17, 70, 187, 2, - 65, 16, 70, 84, 244, 173, 15, 2, 68, 90, 146, 63, 78, 226, 187, 1, 75, 3, - 80, 8, 218, 227, 16, 83, 138, 69, 84, 187, 2, 65, 16, 50, 90, 254, 226, - 16, 83, 138, 69, 72, 187, 2, 65, 8, 150, 178, 10, 83, 238, 245, 6, 89, + 32, 227, 173, 17, 72, 8, 186, 255, 8, 90, 162, 184, 4, 78, 207, 243, 3, + 77, 4, 210, 153, 17, 82, 219, 19, 65, 16, 50, 90, 154, 4, 76, 138, 166, + 17, 68, 187, 2, 65, 8, 254, 152, 17, 89, 162, 17, 72, 2, 90, 187, 2, 65, + 6, 226, 228, 16, 72, 195, 71, 65, 8, 222, 179, 10, 72, 238, 245, 6, 89, + 187, 2, 65, 18, 54, 65, 222, 227, 16, 71, 2, 78, 2, 89, 139, 69, 72, 5, + 11, 83, 2, 193, 229, 13, 4, 65, 76, 73, 90, 16, 60, 9, 69, 70, 79, 82, + 77, 69, 68, 32, 84, 219, 147, 17, 84, 14, 40, 4, 79, 78, 69, 45, 219, + 172, 15, 83, 12, 254, 169, 17, 49, 2, 50, 2, 52, 2, 53, 2, 54, 3, 56, 8, + 234, 149, 17, 89, 162, 17, 72, 2, 83, 187, 2, 65, 32, 78, 76, 20, 4, 79, + 78, 69, 45, 70, 83, 178, 165, 17, 84, 186, 2, 65, 3, 69, 4, 155, 176, 10, + 72, 14, 170, 168, 17, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 8, + 174, 165, 17, 72, 2, 83, 186, 2, 65, 3, 69, 4, 254, 164, 17, 70, 187, 2, + 65, 16, 70, 84, 168, 169, 15, 2, 68, 90, 146, 63, 78, 226, 187, 1, 75, 3, + 80, 8, 142, 223, 16, 83, 138, 69, 84, 187, 2, 65, 16, 50, 90, 178, 222, + 16, 83, 138, 69, 72, 187, 2, 65, 8, 202, 173, 10, 83, 238, 245, 6, 89, 187, 2, 65, 8, 144, 1, 9, 82, 69, 70, 79, 82, 77, 69, 68, 32, 34, 65, - 133, 133, 16, 18, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 77, 79, 68, 73, - 70, 73, 69, 82, 4, 30, 65, 221, 88, 2, 86, 79, 2, 133, 150, 12, 3, 83, - 80, 73, 8, 202, 134, 15, 66, 204, 78, 3, 84, 79, 80, 182, 86, 65, 159, - 82, 82, 104, 146, 1, 65, 78, 69, 62, 73, 78, 79, 74, 85, 74, 89, 224, - 149, 7, 9, 82, 79, 85, 78, 68, 69, 68, 32, 69, 238, 196, 7, 87, 178, 75, - 78, 227, 127, 86, 19, 222, 168, 15, 78, 226, 189, 1, 69, 146, 63, 72, - 146, 1, 65, 2, 73, 3, 85, 15, 246, 207, 13, 82, 158, 216, 1, 78, 130, - 254, 1, 65, 3, 73, 23, 202, 167, 15, 65, 54, 79, 134, 253, 1, 78, 86, 69, - 2, 71, 2, 73, 3, 85, 13, 42, 69, 226, 164, 17, 71, 2, 79, 3, 85, 4, 222, - 164, 17, 82, 3, 89, 19, 182, 166, 15, 65, 182, 234, 1, 69, 134, 19, 78, - 2, 79, 86, 73, 3, 85, 7, 162, 144, 17, 85, 219, 19, 73, 12, 18, 32, 63, - 79, 4, 244, 141, 16, 4, 79, 78, 32, 85, 13, 4, 68, 65, 83, 72, 8, 142, - 237, 11, 83, 154, 137, 4, 80, 242, 37, 32, 163, 112, 66, 12, 64, 4, 68, - 76, 69, 32, 237, 223, 4, 6, 76, 73, 78, 69, 32, 72, 10, 220, 193, 5, 3, + 185, 128, 16, 18, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 77, 79, 68, 73, + 70, 73, 69, 82, 4, 30, 65, 221, 88, 2, 86, 79, 2, 185, 145, 12, 3, 83, + 80, 73, 8, 254, 129, 15, 66, 204, 78, 3, 84, 79, 80, 182, 86, 65, 159, + 82, 82, 104, 146, 1, 65, 78, 69, 62, 73, 78, 79, 74, 85, 74, 89, 148, + 145, 7, 9, 82, 79, 85, 78, 68, 69, 68, 32, 69, 238, 196, 7, 87, 178, 75, + 78, 227, 127, 86, 19, 146, 164, 15, 78, 226, 189, 1, 69, 146, 63, 72, + 146, 1, 65, 2, 73, 3, 85, 15, 170, 203, 13, 82, 158, 216, 1, 78, 130, + 254, 1, 65, 3, 73, 23, 254, 162, 15, 65, 54, 79, 134, 253, 1, 78, 86, 69, + 2, 71, 2, 73, 3, 85, 13, 42, 69, 150, 160, 17, 71, 2, 79, 3, 85, 4, 146, + 160, 17, 82, 3, 89, 19, 234, 161, 15, 65, 182, 234, 1, 69, 134, 19, 78, + 2, 79, 86, 73, 3, 85, 7, 214, 139, 17, 85, 219, 19, 73, 12, 18, 32, 63, + 79, 4, 168, 137, 16, 4, 79, 78, 32, 85, 13, 4, 68, 65, 83, 72, 8, 194, + 232, 11, 83, 154, 137, 4, 80, 242, 37, 32, 163, 112, 66, 12, 64, 4, 68, + 76, 69, 32, 161, 219, 4, 6, 76, 73, 78, 69, 32, 72, 10, 144, 189, 5, 3, 84, 72, 73, 198, 232, 8, 76, 22, 82, 159, 167, 2, 68, 8, 76, 6, 73, 84, - 65, 82, 89, 32, 164, 194, 10, 3, 75, 89, 32, 211, 215, 5, 76, 4, 26, 72, - 219, 181, 12, 77, 2, 135, 178, 4, 69, 24, 42, 73, 76, 2, 85, 83, 207, - 159, 17, 89, 6, 34, 68, 22, 77, 255, 150, 15, 66, 2, 203, 157, 6, 73, 2, - 231, 237, 6, 73, 16, 46, 32, 153, 183, 10, 5, 45, 79, 82, 45, 80, 14, 40, - 4, 83, 73, 71, 78, 159, 183, 13, 84, 13, 11, 32, 10, 44, 5, 87, 73, 84, - 72, 32, 247, 173, 6, 73, 8, 66, 67, 166, 203, 4, 68, 230, 173, 8, 82, 21, - 4, 70, 65, 76, 76, 2, 177, 242, 11, 3, 79, 77, 77, 5, 143, 147, 15, 32, + 65, 82, 89, 32, 216, 189, 10, 3, 75, 89, 32, 211, 215, 5, 76, 4, 26, 72, + 143, 177, 12, 77, 2, 187, 173, 4, 69, 24, 42, 73, 76, 2, 85, 83, 131, + 155, 17, 89, 6, 34, 68, 22, 77, 179, 146, 15, 66, 2, 255, 152, 6, 73, 2, + 155, 233, 6, 73, 16, 46, 32, 205, 178, 10, 5, 45, 79, 82, 45, 80, 14, 40, + 4, 83, 73, 71, 78, 211, 178, 13, 84, 13, 11, 32, 10, 44, 5, 87, 73, 84, + 72, 32, 171, 169, 6, 73, 8, 66, 67, 218, 198, 4, 68, 230, 173, 8, 82, 21, + 4, 70, 65, 76, 76, 2, 229, 237, 11, 3, 79, 77, 77, 5, 195, 142, 15, 32, 186, 9, 184, 1, 10, 66, 73, 76, 69, 32, 80, 72, 79, 78, 69, 166, 1, 68, - 198, 76, 78, 178, 27, 79, 172, 1, 3, 83, 81, 85, 38, 84, 250, 1, 85, 218, - 187, 11, 89, 189, 225, 2, 5, 86, 73, 69, 32, 67, 7, 11, 32, 4, 108, 21, + 198, 76, 78, 178, 27, 79, 172, 1, 3, 83, 81, 85, 38, 84, 250, 1, 85, 142, + 183, 11, 89, 189, 225, 2, 5, 86, 73, 69, 32, 67, 7, 11, 32, 4, 108, 21, 87, 73, 84, 72, 32, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 65, 82, - 82, 79, 87, 195, 178, 1, 79, 2, 11, 32, 2, 173, 232, 16, 2, 65, 84, 156, - 6, 58, 69, 74, 73, 157, 75, 7, 85, 76, 79, 32, 84, 87, 79, 4, 156, 202, + 82, 79, 87, 195, 178, 1, 79, 2, 11, 32, 2, 225, 227, 16, 2, 65, 84, 156, + 6, 58, 69, 74, 73, 157, 75, 7, 85, 76, 79, 32, 84, 87, 79, 4, 208, 197, 16, 10, 82, 78, 32, 80, 69, 78, 84, 65, 84, 72, 159, 18, 76, 150, 6, 42, 32, 221, 1, 5, 70, 73, 69, 82, 32, 158, 1, 88, 5, 83, 73, 71, 78, 32, - 158, 180, 3, 86, 170, 163, 3, 68, 186, 1, 76, 243, 203, 4, 65, 10, 42, - 65, 218, 217, 8, 72, 179, 251, 7, 86, 4, 44, 5, 82, 68, 72, 65, 67, 251, - 210, 16, 78, 2, 161, 211, 16, 3, 65, 78, 68, 248, 4, 92, 12, 66, 82, 69, + 210, 175, 3, 86, 170, 163, 3, 68, 186, 1, 76, 243, 203, 4, 65, 10, 42, + 65, 142, 213, 8, 72, 179, 251, 7, 86, 4, 44, 5, 82, 68, 72, 65, 67, 175, + 206, 16, 78, 2, 213, 206, 16, 3, 65, 78, 68, 248, 4, 92, 12, 66, 82, 69, 86, 69, 32, 87, 73, 84, 72, 32, 73, 89, 7, 76, 69, 84, 84, 69, 82, 32, 2, - 33, 6, 78, 86, 69, 82, 84, 69, 2, 21, 3, 68, 32, 66, 2, 205, 153, 16, 2, + 33, 6, 78, 86, 69, 82, 84, 69, 2, 21, 3, 68, 32, 66, 2, 129, 149, 16, 2, 82, 69, 246, 4, 198, 1, 65, 82, 66, 66, 67, 198, 13, 68, 202, 1, 69, 182, 2, 71, 82, 72, 46, 76, 230, 4, 77, 216, 3, 7, 79, 80, 69, 78, 32, 83, 72, 22, 80, 38, 82, 182, 4, 83, 206, 33, 84, 114, 85, 118, 86, 63, 89, 6, 38, - 76, 166, 27, 67, 227, 209, 10, 80, 2, 253, 19, 6, 86, 69, 79, 76, 65, 82, + 76, 166, 27, 67, 151, 205, 10, 80, 2, 253, 19, 6, 86, 69, 79, 76, 65, 82, 6, 192, 19, 5, 73, 76, 65, 66, 73, 193, 45, 4, 69, 71, 73, 78, 162, 1, 240, 1, 7, 65, 80, 73, 84, 65, 76, 32, 200, 2, 7, 69, 78, 84, 82, 69, 68, 32, 100, 13, 72, 73, 78, 69, 83, 69, 32, 84, 79, 78, 69, 32, 89, 108, 8, - 89, 82, 73, 76, 76, 73, 67, 32, 218, 230, 10, 73, 244, 2, 4, 82, 79, 83, - 83, 219, 211, 5, 79, 58, 214, 1, 66, 42, 82, 130, 27, 72, 186, 157, 13, + 89, 82, 73, 76, 76, 73, 67, 32, 142, 226, 10, 73, 244, 2, 4, 82, 79, 83, + 83, 219, 211, 5, 79, 58, 214, 1, 66, 42, 82, 130, 27, 72, 238, 152, 13, 79, 222, 150, 3, 65, 162, 64, 67, 2, 68, 2, 69, 2, 70, 2, 71, 2, 73, 2, 74, 2, 75, 2, 76, 2, 77, 2, 78, 2, 80, 2, 81, 2, 83, 2, 84, 2, 85, 2, 86, - 3, 87, 5, 237, 150, 6, 5, 65, 82, 82, 69, 68, 7, 41, 8, 69, 86, 69, 82, - 83, 69, 68, 32, 4, 134, 143, 17, 69, 3, 78, 4, 30, 76, 21, 3, 82, 73, 71, + 3, 87, 5, 161, 146, 6, 5, 65, 82, 82, 69, 68, 7, 41, 8, 69, 86, 69, 82, + 83, 69, 68, 32, 4, 186, 138, 17, 69, 3, 78, 4, 30, 76, 21, 3, 82, 73, 71, 2, 29, 2, 69, 70, 2, 11, 72, 2, 11, 84, 2, 181, 26, 2, 32, 72, 16, 36, 3, - 65, 78, 71, 1, 2, 73, 78, 8, 11, 32, 8, 166, 145, 12, 83, 170, 171, 4, - 80, 158, 44, 81, 3, 82, 78, 34, 72, 30, 83, 255, 188, 16, 69, 2, 181, - 161, 15, 2, 65, 82, 74, 40, 5, 77, 65, 76, 76, 32, 183, 6, 79, 72, 186, - 1, 66, 138, 1, 68, 38, 69, 150, 1, 80, 58, 83, 94, 84, 34, 89, 226, 134, + 65, 78, 71, 1, 2, 73, 78, 8, 11, 32, 8, 218, 140, 12, 83, 170, 171, 4, + 80, 158, 44, 81, 3, 82, 78, 34, 72, 30, 83, 179, 184, 16, 69, 2, 233, + 156, 15, 2, 65, 82, 74, 40, 5, 77, 65, 76, 76, 32, 183, 6, 79, 72, 186, + 1, 66, 138, 1, 68, 38, 69, 150, 1, 80, 58, 83, 94, 84, 34, 89, 150, 130, 16, 90, 130, 64, 73, 150, 19, 67, 2, 71, 186, 22, 74, 2, 86, 158, 20, 72, - 2, 75, 186, 2, 65, 2, 79, 3, 85, 6, 38, 89, 198, 27, 65, 139, 239, 16, + 2, 75, 186, 2, 65, 2, 79, 3, 85, 6, 38, 89, 198, 27, 65, 191, 234, 16, 69, 2, 237, 202, 1, 19, 69, 76, 79, 82, 85, 83, 83, 73, 65, 78, 45, 85, - 75, 82, 65, 73, 78, 73, 65, 4, 242, 215, 6, 90, 251, 177, 10, 69, 15, 50, - 83, 150, 137, 17, 70, 2, 76, 2, 77, 3, 82, 5, 25, 4, 32, 87, 73, 84, 2, - 21, 3, 72, 32, 68, 2, 11, 69, 2, 253, 156, 13, 3, 83, 67, 69, 4, 26, 65, - 155, 136, 17, 69, 2, 205, 219, 16, 2, 76, 79, 8, 42, 84, 226, 173, 1, 67, - 187, 215, 15, 72, 4, 153, 19, 8, 82, 65, 73, 71, 72, 84, 32, 85, 4, 202, - 240, 16, 83, 215, 22, 69, 6, 36, 3, 69, 82, 85, 219, 134, 17, 85, 5, 37, - 7, 32, 87, 73, 84, 72, 32, 66, 2, 21, 3, 65, 67, 75, 2, 169, 200, 16, 2, - 32, 89, 2, 175, 186, 11, 70, 16, 18, 69, 27, 79, 2, 169, 5, 2, 78, 84, - 14, 64, 2, 84, 32, 52, 5, 85, 66, 76, 69, 32, 129, 52, 2, 87, 78, 6, 162, - 224, 9, 83, 210, 202, 4, 86, 247, 181, 1, 72, 4, 210, 137, 2, 65, 231, - 248, 2, 80, 24, 40, 5, 88, 84, 82, 65, 45, 131, 49, 78, 20, 52, 5, 72, + 75, 82, 65, 73, 78, 73, 65, 4, 166, 211, 6, 90, 251, 177, 10, 69, 15, 50, + 83, 202, 132, 17, 70, 2, 76, 2, 77, 3, 82, 5, 25, 4, 32, 87, 73, 84, 2, + 21, 3, 72, 32, 68, 2, 11, 69, 2, 177, 152, 13, 3, 83, 67, 69, 4, 26, 65, + 207, 131, 17, 69, 2, 129, 215, 16, 2, 76, 79, 8, 42, 84, 226, 173, 1, 67, + 239, 210, 15, 72, 4, 153, 19, 8, 82, 65, 73, 71, 72, 84, 32, 85, 4, 254, + 235, 16, 83, 215, 22, 69, 6, 36, 3, 69, 82, 85, 143, 130, 17, 85, 5, 37, + 7, 32, 87, 73, 84, 72, 32, 66, 2, 21, 3, 65, 67, 75, 2, 221, 195, 16, 2, + 32, 89, 2, 227, 181, 11, 70, 16, 18, 69, 27, 79, 2, 169, 5, 2, 78, 84, + 14, 64, 2, 84, 32, 52, 5, 85, 66, 76, 69, 32, 129, 52, 2, 87, 78, 6, 214, + 219, 9, 83, 210, 202, 4, 86, 247, 181, 1, 72, 4, 210, 137, 2, 65, 155, + 244, 2, 80, 24, 40, 5, 88, 84, 82, 65, 45, 131, 49, 78, 20, 52, 5, 72, 73, 71, 72, 32, 81, 4, 76, 79, 87, 32, 10, 156, 1, 9, 69, 88, 84, 82, 65, 45, 76, 79, 87, 154, 7, 68, 70, 76, 79, 84, 10, 76, 10, 69, 88, 84, 82, 65, 45, 72, 73, 71, 72, 154, 7, 68, 70, 76, 79, 84, 2, 145, 8, 8, 32, 67, - 79, 78, 84, 79, 85, 82, 8, 162, 9, 82, 226, 3, 76, 173, 209, 15, 9, 69, + 79, 78, 84, 79, 85, 82, 8, 162, 9, 82, 226, 3, 76, 225, 204, 15, 9, 69, 79, 82, 71, 73, 65, 78, 32, 78, 10, 248, 5, 4, 73, 71, 72, 32, 255, 40, 65, 44, 46, 65, 84, 2, 79, 87, 201, 11, 2, 69, 70, 2, 21, 3, 84, 69, 82, - 2, 17, 2, 65, 76, 2, 17, 2, 32, 67, 2, 239, 205, 15, 76, 36, 86, 32, 133, - 151, 12, 15, 69, 82, 32, 82, 73, 71, 72, 84, 32, 67, 79, 82, 78, 69, 82, + 2, 17, 2, 65, 76, 2, 17, 2, 32, 67, 2, 163, 201, 15, 76, 36, 86, 32, 185, + 146, 12, 15, 69, 82, 32, 82, 73, 71, 72, 84, 32, 67, 79, 82, 78, 69, 82, 34, 158, 1, 67, 20, 2, 68, 79, 40, 4, 76, 69, 70, 84, 82, 77, 12, 2, 82, - 73, 50, 84, 178, 3, 65, 42, 71, 170, 2, 73, 172, 157, 14, 2, 85, 80, 255, - 188, 1, 86, 2, 175, 215, 10, 73, 6, 238, 2, 84, 241, 161, 14, 2, 87, 78, - 6, 28, 2, 32, 65, 247, 2, 45, 4, 25, 4, 82, 82, 79, 87, 5, 187, 164, 14, - 72, 2, 111, 65, 4, 216, 163, 14, 3, 71, 72, 84, 175, 216, 2, 78, 4, 194, - 2, 79, 219, 220, 14, 73, 18, 18, 65, 23, 73, 2, 195, 212, 15, 67, 16, 26, - 68, 179, 201, 13, 78, 14, 38, 32, 217, 1, 4, 68, 76, 69, 32, 8, 26, 68, + 73, 50, 84, 178, 3, 65, 42, 71, 170, 2, 73, 224, 152, 14, 2, 85, 80, 255, + 188, 1, 86, 2, 227, 210, 10, 73, 6, 238, 2, 84, 165, 157, 14, 2, 87, 78, + 6, 28, 2, 32, 65, 247, 2, 45, 4, 25, 4, 82, 82, 79, 87, 5, 239, 159, 14, + 72, 2, 111, 65, 4, 140, 159, 14, 3, 71, 72, 84, 175, 216, 2, 78, 4, 194, + 2, 79, 143, 216, 14, 73, 18, 18, 65, 23, 73, 2, 247, 207, 15, 67, 16, 26, + 68, 231, 196, 13, 78, 14, 38, 32, 217, 1, 4, 68, 76, 69, 32, 8, 26, 68, 70, 76, 79, 84, 4, 17, 2, 79, 84, 4, 25, 4, 84, 69, 68, 32, 4, 18, 76, 79, 84, 2, 25, 4, 69, 70, 84, 45, 2, 25, 4, 83, 84, 69, 77, 2, 17, 2, 32, - 84, 2, 11, 79, 2, 11, 78, 2, 135, 214, 15, 69, 6, 40, 6, 68, 79, 85, 66, - 76, 69, 75, 71, 4, 11, 32, 4, 18, 65, 43, 71, 2, 11, 67, 2, 145, 213, 10, - 2, 85, 84, 2, 11, 82, 2, 223, 212, 10, 65, 2, 171, 242, 14, 69, 4, 134, - 198, 13, 76, 159, 152, 2, 82, 26, 104, 6, 65, 73, 83, 69, 68, 32, 150, 1, - 69, 216, 1, 3, 73, 71, 72, 193, 250, 8, 5, 72, 79, 84, 73, 67, 10, 70, - 68, 30, 73, 214, 218, 9, 69, 128, 255, 5, 2, 85, 80, 215, 76, 67, 2, 197, - 163, 15, 2, 79, 87, 2, 189, 218, 9, 7, 78, 86, 69, 82, 84, 69, 68, 8, + 84, 2, 11, 79, 2, 11, 78, 2, 187, 209, 15, 69, 6, 40, 6, 68, 79, 85, 66, + 76, 69, 75, 71, 4, 11, 32, 4, 18, 65, 43, 71, 2, 11, 67, 2, 197, 208, 10, + 2, 85, 84, 2, 11, 82, 2, 147, 208, 10, 65, 2, 223, 237, 14, 69, 4, 186, + 193, 13, 76, 159, 152, 2, 82, 26, 104, 6, 65, 73, 83, 69, 68, 32, 150, 1, + 69, 216, 1, 3, 73, 71, 72, 245, 245, 8, 5, 72, 79, 84, 73, 67, 10, 70, + 68, 30, 73, 138, 214, 9, 69, 128, 255, 5, 2, 85, 80, 215, 76, 67, 2, 249, + 158, 15, 2, 79, 87, 2, 241, 213, 9, 7, 78, 86, 69, 82, 84, 69, 68, 8, 104, 7, 86, 69, 82, 83, 69, 68, 32, 137, 28, 14, 84, 82, 79, 70, 76, 69, - 88, 32, 67, 76, 73, 67, 75, 32, 6, 26, 71, 163, 159, 14, 67, 4, 11, 76, + 88, 32, 67, 76, 73, 67, 75, 32, 6, 26, 71, 215, 154, 14, 67, 4, 11, 76, 4, 49, 10, 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 5, 171, 19, 32, 6, 17, - 2, 84, 32, 6, 38, 72, 150, 213, 13, 84, 239, 69, 65, 2, 197, 196, 7, 3, + 2, 84, 32, 6, 38, 72, 202, 208, 13, 84, 239, 69, 65, 2, 249, 191, 7, 3, 65, 76, 70, 156, 2, 138, 1, 72, 48, 5, 77, 65, 76, 76, 32, 148, 31, 8, 84, 82, 69, 83, 83, 32, 65, 78, 53, 11, 85, 80, 69, 82, 83, 67, 82, 73, - 80, 84, 32, 4, 180, 158, 8, 3, 79, 82, 84, 251, 205, 6, 69, 144, 2, 154, + 80, 84, 32, 4, 232, 153, 8, 3, 79, 82, 84, 251, 205, 6, 69, 144, 2, 154, 2, 65, 50, 66, 130, 1, 67, 238, 2, 68, 238, 2, 90, 66, 69, 46, 70, 30, 71, 110, 72, 102, 77, 34, 73, 34, 74, 98, 76, 176, 3, 7, 78, 32, 87, 73, 84, 72, 32, 30, 79, 94, 80, 22, 82, 146, 2, 83, 190, 1, 84, 246, 7, 85, - 142, 1, 86, 226, 211, 16, 75, 2, 81, 2, 87, 2, 88, 3, 89, 9, 222, 147, + 142, 1, 86, 150, 207, 16, 75, 2, 81, 2, 87, 2, 88, 3, 89, 9, 146, 143, 13, 76, 170, 140, 3, 73, 227, 79, 69, 11, 46, 65, 50, 79, 222, 8, 32, - 179, 193, 16, 69, 2, 17, 2, 82, 82, 2, 169, 247, 5, 2, 69, 68, 2, 229, + 231, 188, 16, 69, 2, 17, 2, 82, 82, 2, 221, 242, 5, 2, 69, 68, 2, 229, 20, 4, 84, 84, 79, 77, 41, 100, 7, 65, 80, 73, 84, 65, 76, 32, 180, 1, 6, - 76, 79, 83, 69, 68, 32, 190, 17, 32, 139, 199, 16, 72, 30, 114, 73, 214, - 6, 71, 226, 16, 76, 214, 190, 16, 79, 158, 20, 65, 186, 2, 66, 2, 72, 2, - 78, 2, 82, 2, 85, 3, 89, 7, 22, 78, 191, 11, 32, 2, 225, 240, 5, 5, 86, - 69, 82, 84, 69, 4, 26, 82, 243, 166, 9, 79, 2, 217, 20, 9, 69, 86, 69, + 76, 79, 83, 69, 68, 32, 190, 17, 32, 191, 194, 16, 72, 30, 114, 73, 214, + 6, 71, 226, 16, 76, 138, 186, 16, 79, 158, 20, 65, 186, 2, 66, 2, 72, 2, + 78, 2, 82, 2, 85, 3, 89, 7, 22, 78, 191, 11, 32, 2, 149, 236, 5, 5, 86, + 69, 82, 84, 69, 4, 26, 82, 167, 162, 9, 79, 2, 217, 20, 9, 69, 86, 69, 82, 83, 69, 68, 32, 79, 23, 104, 6, 32, 87, 73, 84, 72, 32, 86, 69, 32, 9, 79, 84, 76, 69, 83, 83, 32, 74, 32, 105, 3, 90, 32, 68, 6, 26, 72, - 163, 179, 14, 84, 4, 21, 3, 79, 79, 75, 5, 213, 250, 13, 3, 32, 65, 78, - 4, 238, 15, 90, 211, 181, 16, 76, 4, 33, 6, 87, 73, 84, 72, 32, 83, 4, - 29, 5, 84, 82, 79, 75, 69, 5, 193, 239, 8, 4, 32, 65, 78, 68, 6, 33, 6, + 215, 174, 14, 84, 4, 21, 3, 79, 79, 75, 5, 137, 246, 13, 3, 32, 65, 78, + 4, 238, 15, 90, 135, 177, 16, 76, 4, 33, 6, 87, 73, 84, 72, 32, 83, 4, + 29, 5, 84, 82, 79, 75, 69, 5, 245, 234, 8, 4, 32, 65, 78, 68, 6, 33, 6, 73, 71, 82, 65, 80, 72, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 138, 14, 67, - 207, 4, 82, 11, 142, 231, 16, 83, 2, 84, 2, 90, 63, 78, 5, 225, 13, 3, - 69, 78, 71, 11, 56, 5, 82, 69, 69, 75, 32, 162, 1, 32, 183, 144, 14, 65, - 4, 26, 71, 139, 143, 11, 80, 2, 183, 145, 14, 65, 11, 40, 6, 32, 87, 73, - 84, 72, 32, 39, 69, 4, 206, 144, 15, 72, 247, 165, 1, 83, 4, 17, 2, 78, - 71, 5, 11, 32, 2, 255, 235, 8, 87, 4, 222, 4, 32, 191, 188, 16, 79, 5, - 37, 7, 32, 87, 73, 84, 72, 32, 67, 2, 11, 82, 2, 225, 173, 14, 6, 79, 83, + 207, 4, 82, 11, 194, 226, 16, 83, 2, 84, 2, 90, 63, 78, 5, 225, 13, 3, + 69, 78, 71, 11, 56, 5, 82, 69, 69, 75, 32, 162, 1, 32, 235, 139, 14, 65, + 4, 26, 71, 191, 138, 11, 80, 2, 235, 140, 14, 65, 11, 40, 6, 32, 87, 73, + 84, 72, 32, 39, 69, 4, 130, 140, 15, 72, 247, 165, 1, 83, 4, 17, 2, 78, + 71, 5, 11, 32, 2, 179, 231, 8, 87, 4, 222, 4, 32, 243, 183, 16, 79, 5, + 37, 7, 32, 87, 73, 84, 72, 32, 67, 2, 11, 82, 2, 149, 169, 14, 6, 79, 83, 83, 69, 68, 45, 25, 116, 6, 32, 87, 73, 84, 72, 32, 226, 9, 83, 2, 90, - 112, 2, 69, 90, 193, 194, 16, 8, 73, 71, 65, 84, 85, 82, 69, 32, 12, 54, - 73, 82, 77, 82, 82, 222, 6, 80, 143, 245, 3, 66, 2, 49, 10, 78, 86, 69, - 82, 84, 69, 68, 32, 76, 65, 2, 157, 233, 12, 2, 90, 89, 2, 11, 73, 2, 17, - 2, 68, 68, 2, 17, 2, 76, 69, 2, 221, 250, 12, 2, 32, 84, 4, 61, 13, 69, + 112, 2, 69, 90, 245, 189, 16, 8, 73, 71, 65, 84, 85, 82, 69, 32, 12, 54, + 73, 82, 77, 82, 82, 222, 6, 80, 195, 240, 3, 66, 2, 49, 10, 78, 86, 69, + 82, 84, 69, 68, 32, 76, 65, 2, 209, 228, 12, 2, 90, 89, 2, 11, 73, 2, 17, + 2, 68, 68, 2, 17, 2, 76, 69, 2, 145, 246, 12, 2, 32, 84, 4, 61, 13, 69, 84, 82, 79, 70, 76, 69, 88, 32, 72, 79, 79, 75, 5, 205, 12, 4, 32, 65, 78, 68, 4, 210, 11, 82, 207, 1, 76, 9, 18, 32, 47, 80, 2, 21, 3, 87, 73, - 84, 2, 219, 176, 16, 72, 4, 229, 196, 12, 2, 69, 78, 5, 231, 204, 16, 72, + 84, 2, 143, 172, 16, 72, 4, 153, 192, 12, 2, 69, 78, 5, 155, 200, 16, 72, 15, 80, 6, 32, 87, 73, 84, 72, 32, 62, 65, 41, 8, 69, 86, 69, 82, 83, 69, - 68, 32, 4, 26, 70, 155, 168, 14, 84, 2, 225, 229, 8, 3, 73, 83, 72, 2, - 17, 2, 77, 83, 2, 235, 232, 5, 32, 6, 38, 71, 170, 7, 79, 167, 215, 16, - 69, 2, 11, 76, 2, 161, 137, 14, 4, 79, 84, 84, 65, 13, 72, 6, 32, 87, 73, - 84, 72, 32, 34, 67, 61, 6, 73, 68, 69, 87, 65, 89, 4, 158, 3, 67, 195, - 132, 15, 72, 4, 26, 82, 187, 227, 11, 72, 2, 209, 219, 5, 3, 73, 80, 84, - 2, 159, 194, 6, 83, 51, 106, 32, 102, 67, 116, 2, 69, 83, 44, 2, 79, 80, - 42, 83, 96, 6, 85, 82, 78, 69, 68, 32, 215, 155, 13, 72, 4, 29, 5, 87, - 73, 84, 72, 32, 4, 22, 80, 219, 5, 82, 2, 213, 225, 8, 6, 65, 76, 65, 84, + 68, 32, 4, 26, 70, 207, 163, 14, 84, 2, 149, 225, 8, 3, 73, 83, 72, 2, + 17, 2, 77, 83, 2, 159, 228, 5, 32, 6, 38, 71, 170, 7, 79, 219, 210, 16, + 69, 2, 11, 76, 2, 213, 132, 14, 4, 79, 84, 84, 65, 13, 72, 6, 32, 87, 73, + 84, 72, 32, 34, 67, 61, 6, 73, 68, 69, 87, 65, 89, 4, 158, 3, 67, 247, + 255, 14, 72, 4, 26, 82, 239, 222, 11, 72, 2, 133, 215, 5, 3, 73, 80, 84, + 2, 211, 189, 6, 83, 51, 106, 32, 102, 67, 116, 2, 69, 83, 44, 2, 79, 80, + 42, 83, 96, 6, 85, 82, 78, 69, 68, 32, 139, 151, 13, 72, 4, 29, 5, 87, + 73, 84, 72, 32, 4, 22, 80, 219, 5, 82, 2, 137, 221, 8, 6, 65, 76, 65, 84, 65, 76, 2, 45, 9, 32, 68, 73, 71, 82, 65, 80, 72, 32, 2, 25, 4, 87, 73, - 84, 72, 2, 17, 2, 32, 67, 2, 175, 145, 3, 85, 2, 11, 72, 2, 189, 155, 10, - 3, 32, 68, 73, 2, 165, 226, 5, 5, 32, 72, 65, 76, 70, 4, 37, 7, 32, 68, + 84, 72, 2, 17, 2, 32, 67, 2, 227, 140, 3, 85, 2, 11, 72, 2, 241, 150, 10, + 3, 32, 68, 73, 2, 217, 221, 5, 5, 32, 72, 65, 76, 70, 4, 37, 7, 32, 68, 73, 71, 82, 65, 80, 4, 11, 72, 5, 11, 32, 2, 141, 3, 4, 87, 73, 84, 72, - 32, 86, 65, 38, 77, 74, 79, 42, 82, 214, 1, 89, 170, 213, 16, 72, 2, 73, - 2, 86, 3, 87, 7, 134, 252, 12, 76, 139, 220, 3, 69, 5, 41, 8, 32, 87, 73, - 84, 72, 32, 76, 79, 2, 253, 141, 4, 2, 78, 71, 2, 11, 80, 2, 225, 158, 6, - 2, 69, 78, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 26, 76, 207, 128, 15, 72, + 32, 86, 65, 38, 77, 74, 79, 42, 82, 214, 1, 89, 222, 208, 16, 72, 2, 73, + 2, 86, 3, 87, 7, 186, 247, 12, 76, 139, 220, 3, 69, 5, 41, 8, 32, 87, 73, + 84, 72, 32, 76, 79, 2, 177, 137, 4, 2, 78, 71, 2, 11, 80, 2, 149, 154, 6, + 2, 69, 78, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 26, 76, 131, 252, 14, 72, 4, 37, 7, 79, 78, 71, 32, 76, 69, 71, 5, 25, 4, 32, 65, 78, 68, 2, 17, 2, - 32, 82, 2, 11, 69, 2, 241, 219, 8, 7, 84, 82, 79, 70, 76, 69, 88, 5, 29, - 5, 32, 87, 73, 84, 72, 2, 213, 238, 3, 2, 32, 66, 9, 18, 32, 95, 80, 4, - 40, 4, 87, 73, 84, 72, 243, 176, 15, 66, 2, 17, 2, 32, 76, 2, 11, 69, 2, - 131, 1, 70, 2, 129, 132, 16, 2, 83, 73, 7, 33, 6, 32, 87, 73, 84, 72, 32, - 4, 26, 82, 179, 253, 14, 72, 2, 21, 3, 73, 71, 72, 2, 163, 217, 8, 84, 4, + 32, 82, 2, 11, 69, 2, 165, 215, 8, 7, 84, 82, 79, 70, 76, 69, 88, 5, 29, + 5, 32, 87, 73, 84, 72, 2, 137, 234, 3, 2, 32, 66, 9, 18, 32, 95, 80, 4, + 40, 4, 87, 73, 84, 72, 167, 172, 15, 66, 2, 17, 2, 32, 76, 2, 11, 69, 2, + 131, 1, 70, 2, 181, 255, 15, 2, 83, 73, 7, 33, 6, 32, 87, 73, 84, 72, 32, + 4, 26, 82, 231, 248, 14, 72, 2, 21, 3, 73, 71, 72, 2, 215, 212, 8, 84, 4, 11, 68, 4, 11, 32, 4, 146, 210, 1, 72, 35, 76, 4, 24, 2, 72, 65, 31, 84, 2, 25, 4, 76, 70, 32, 84, 2, 43, 82, 4, 30, 82, 53, 3, 85, 82, 78, 2, - 189, 129, 16, 8, 73, 65, 78, 71, 85, 76, 65, 82, 2, 169, 172, 8, 2, 69, - 68, 8, 70, 80, 184, 159, 10, 7, 78, 65, 83, 80, 73, 82, 65, 143, 177, 6, - 83, 4, 11, 32, 4, 226, 177, 13, 84, 239, 69, 65, 4, 26, 79, 135, 180, 15, - 69, 2, 11, 73, 2, 235, 254, 15, 67, 4, 36, 3, 65, 78, 71, 1, 2, 73, 78, + 241, 252, 15, 8, 73, 65, 78, 71, 85, 76, 65, 82, 2, 221, 167, 8, 2, 69, + 68, 8, 70, 80, 236, 154, 10, 7, 78, 65, 83, 80, 73, 82, 65, 143, 177, 6, + 83, 4, 11, 32, 4, 150, 173, 13, 84, 239, 69, 65, 4, 26, 79, 187, 175, 15, + 69, 2, 11, 73, 2, 159, 250, 15, 67, 4, 36, 3, 65, 78, 71, 1, 2, 73, 78, 2, 25, 4, 32, 68, 69, 80, 2, 21, 3, 65, 82, 84, 2, 21, 3, 73, 78, 71, 2, - 17, 2, 32, 84, 2, 11, 79, 2, 171, 135, 6, 78, 2, 11, 32, 2, 131, 163, 15, + 17, 2, 32, 84, 2, 11, 79, 2, 223, 130, 6, 78, 2, 11, 32, 2, 183, 158, 15, 83, 234, 2, 92, 2, 69, 89, 88, 7, 71, 79, 76, 73, 65, 78, 32, 206, 24, - 79, 209, 140, 12, 3, 75, 69, 89, 6, 26, 32, 203, 143, 16, 45, 4, 128, - 142, 12, 6, 87, 73, 84, 72, 32, 87, 167, 211, 2, 66, 214, 2, 194, 2, 68, + 79, 133, 136, 12, 3, 75, 69, 89, 6, 26, 32, 255, 138, 16, 45, 4, 180, + 137, 12, 6, 87, 73, 84, 72, 32, 87, 167, 211, 2, 66, 214, 2, 194, 2, 68, 46, 70, 148, 1, 14, 73, 78, 86, 69, 82, 84, 69, 68, 32, 66, 73, 82, 71, 65, 16, 7, 76, 69, 84, 84, 69, 82, 32, 138, 16, 83, 132, 1, 7, 82, 79, - 84, 65, 84, 69, 68, 22, 66, 98, 84, 160, 2, 4, 86, 79, 87, 69, 194, 241, + 84, 65, 84, 69, 68, 22, 66, 98, 84, 160, 2, 4, 86, 79, 87, 69, 246, 236, 3, 67, 164, 1, 6, 77, 65, 78, 67, 72, 85, 160, 201, 7, 4, 78, 73, 82, 85, - 239, 208, 2, 69, 22, 232, 20, 3, 79, 85, 66, 171, 193, 14, 73, 12, 112, + 239, 208, 2, 69, 22, 232, 20, 3, 79, 85, 66, 223, 188, 14, 73, 12, 112, 19, 82, 69, 69, 32, 86, 65, 82, 73, 65, 84, 73, 79, 78, 32, 83, 69, 76, - 69, 67, 202, 243, 13, 85, 195, 46, 79, 8, 177, 250, 9, 3, 84, 79, 82, 5, + 69, 67, 254, 238, 13, 85, 195, 46, 79, 8, 229, 245, 9, 3, 84, 79, 82, 5, 227, 19, 32, 136, 2, 130, 2, 65, 244, 4, 2, 67, 72, 88, 2, 77, 65, 174, - 2, 83, 246, 1, 84, 234, 3, 90, 178, 195, 14, 72, 246, 173, 1, 75, 2, 76, + 2, 83, 246, 1, 84, 234, 3, 90, 230, 190, 14, 72, 246, 173, 1, 75, 2, 76, 162, 7, 69, 2, 79, 2, 85, 234, 61, 66, 2, 68, 2, 70, 2, 71, 2, 74, 2, 78, 2, 80, 2, 81, 2, 82, 2, 87, 2, 89, 187, 2, 73, 59, 56, 8, 76, 73, 32, 71, - 65, 76, 73, 32, 171, 197, 16, 78, 54, 174, 1, 65, 52, 6, 86, 73, 83, 65, + 65, 76, 73, 32, 223, 192, 16, 78, 54, 174, 1, 65, 52, 6, 86, 73, 83, 65, 82, 71, 22, 68, 76, 5, 72, 65, 76, 70, 32, 34, 73, 50, 85, 34, 78, 30, - 84, 66, 66, 174, 250, 15, 80, 2, 90, 254, 68, 83, 14, 67, 3, 75, 7, 48, - 6, 78, 85, 83, 86, 65, 82, 155, 196, 16, 72, 2, 243, 165, 9, 65, 8, 26, - 65, 179, 193, 16, 68, 7, 166, 253, 8, 77, 253, 131, 7, 3, 71, 65, 76, 4, - 254, 192, 16, 89, 187, 2, 85, 5, 45, 9, 78, 86, 69, 82, 84, 69, 68, 32, - 85, 2, 249, 255, 15, 3, 66, 65, 68, 4, 142, 192, 16, 71, 3, 78, 8, 60, 6, - 72, 82, 69, 69, 32, 66, 174, 250, 15, 84, 195, 71, 65, 2, 17, 2, 65, 76, - 2, 211, 156, 16, 85, 6, 26, 65, 171, 193, 16, 73, 5, 29, 5, 32, 87, 73, - 84, 72, 2, 149, 238, 14, 2, 32, 84, 41, 29, 5, 78, 67, 72, 85, 32, 38, - 104, 9, 65, 76, 73, 32, 71, 65, 76, 73, 32, 186, 194, 14, 90, 242, 250, - 1, 70, 2, 75, 2, 82, 187, 2, 73, 28, 122, 68, 194, 198, 9, 67, 246, 227, + 84, 66, 66, 226, 245, 15, 80, 2, 90, 254, 68, 83, 14, 67, 3, 75, 7, 48, + 6, 78, 85, 83, 86, 65, 82, 207, 191, 16, 72, 2, 167, 161, 9, 65, 8, 26, + 65, 231, 188, 16, 68, 7, 218, 248, 8, 77, 253, 131, 7, 3, 71, 65, 76, 4, + 178, 188, 16, 89, 187, 2, 85, 5, 45, 9, 78, 86, 69, 82, 84, 69, 68, 32, + 85, 2, 173, 251, 15, 3, 66, 65, 68, 4, 194, 187, 16, 71, 3, 78, 8, 60, 6, + 72, 82, 69, 69, 32, 66, 226, 245, 15, 84, 195, 71, 65, 2, 17, 2, 65, 76, + 2, 135, 152, 16, 85, 6, 26, 65, 223, 188, 16, 73, 5, 29, 5, 32, 87, 73, + 84, 72, 2, 201, 233, 14, 2, 32, 84, 41, 29, 5, 78, 67, 72, 85, 32, 38, + 104, 9, 65, 76, 73, 32, 71, 65, 76, 73, 32, 238, 189, 14, 90, 242, 250, + 1, 70, 2, 75, 2, 82, 187, 2, 73, 28, 122, 68, 246, 193, 9, 67, 246, 227, 2, 84, 138, 151, 2, 66, 2, 71, 2, 74, 2, 76, 234, 181, 1, 90, 254, 4, 78, - 131, 64, 83, 4, 186, 193, 14, 68, 243, 250, 1, 72, 48, 52, 4, 73, 66, 69, - 32, 210, 187, 16, 72, 187, 2, 65, 44, 214, 222, 5, 71, 2, 72, 170, 202, + 131, 64, 83, 4, 238, 188, 14, 68, 243, 250, 1, 72, 48, 52, 4, 73, 66, 69, + 32, 134, 183, 16, 72, 187, 2, 65, 44, 138, 218, 5, 71, 2, 72, 170, 202, 6, 84, 238, 3, 73, 246, 147, 2, 67, 2, 83, 246, 7, 82, 190, 164, 1, 65, 186, 9, 90, 162, 7, 85, 234, 61, 68, 2, 70, 2, 74, 2, 75, 2, 80, 187, 2, - 69, 60, 52, 4, 79, 68, 79, 32, 222, 185, 16, 83, 187, 2, 65, 56, 250, 1, + 69, 60, 52, 4, 79, 68, 79, 32, 146, 181, 16, 83, 187, 2, 65, 56, 250, 1, 65, 98, 68, 34, 74, 34, 78, 252, 164, 1, 8, 76, 79, 78, 71, 32, 86, 79, - 87, 206, 180, 4, 71, 170, 202, 6, 84, 226, 151, 2, 67, 246, 7, 72, 150, + 87, 130, 176, 4, 71, 170, 202, 6, 84, 226, 151, 2, 67, 246, 7, 72, 150, 181, 1, 79, 2, 85, 234, 61, 66, 2, 75, 2, 77, 2, 80, 2, 81, 2, 87, 2, 89, - 186, 2, 69, 3, 73, 6, 56, 8, 76, 73, 32, 71, 65, 76, 73, 32, 139, 185, - 16, 78, 4, 178, 188, 14, 90, 243, 250, 1, 84, 4, 254, 182, 16, 90, 187, - 2, 65, 4, 222, 182, 16, 73, 187, 2, 65, 2, 191, 182, 16, 73, 6, 138, 165, - 16, 72, 162, 17, 82, 187, 2, 65, 8, 128, 1, 4, 87, 73, 82, 76, 217, 191, + 186, 2, 69, 3, 73, 6, 56, 8, 76, 73, 32, 71, 65, 76, 73, 32, 191, 180, + 16, 78, 4, 230, 183, 14, 90, 243, 250, 1, 84, 4, 178, 178, 16, 90, 187, + 2, 65, 4, 146, 178, 16, 73, 187, 2, 65, 2, 243, 177, 16, 73, 6, 190, 160, + 16, 72, 162, 17, 82, 187, 2, 65, 8, 128, 1, 4, 87, 73, 82, 76, 141, 187, 4, 21, 73, 66, 69, 32, 83, 89, 76, 76, 65, 66, 76, 69, 32, 66, 79, 85, 78, 68, 65, 82, 89, 6, 17, 2, 32, 66, 6, 25, 4, 73, 82, 71, 65, 7, 33, 6, - 32, 87, 73, 84, 72, 32, 4, 150, 2, 68, 255, 240, 15, 79, 6, 152, 1, 3, + 32, 87, 73, 84, 72, 32, 4, 150, 2, 68, 179, 236, 15, 79, 6, 152, 1, 3, 82, 73, 80, 56, 18, 85, 82, 78, 69, 68, 32, 83, 87, 73, 82, 76, 32, 66, 73, 82, 71, 65, 32, 217, 192, 1, 8, 79, 68, 79, 32, 83, 79, 70, 84, 2, - 165, 241, 15, 9, 76, 69, 32, 66, 73, 82, 71, 65, 32, 2, 33, 6, 87, 73, - 84, 72, 32, 68, 2, 229, 240, 15, 5, 79, 85, 66, 76, 69, 2, 135, 235, 9, + 217, 236, 15, 9, 76, 69, 32, 66, 73, 82, 71, 65, 32, 2, 33, 6, 87, 73, + 84, 72, 32, 68, 2, 153, 236, 15, 5, 79, 85, 66, 76, 69, 2, 187, 230, 9, 76, 10, 84, 9, 71, 82, 65, 77, 32, 70, 79, 82, 32, 60, 4, 83, 84, 65, 66, - 215, 251, 13, 82, 6, 26, 89, 179, 198, 12, 69, 4, 158, 226, 15, 65, 155, - 1, 73, 2, 171, 132, 4, 76, 10, 48, 2, 78, 32, 250, 210, 4, 68, 231, 200, - 11, 83, 6, 88, 12, 86, 73, 69, 87, 73, 78, 71, 32, 67, 69, 82, 69, 174, - 197, 12, 67, 85, 2, 76, 65, 2, 249, 145, 16, 2, 77, 79, 4, 174, 190, 12, + 139, 247, 13, 82, 6, 26, 89, 231, 193, 12, 69, 4, 210, 221, 15, 65, 155, + 1, 73, 2, 223, 255, 3, 76, 10, 48, 2, 78, 32, 174, 206, 4, 68, 231, 200, + 11, 83, 6, 88, 12, 86, 73, 69, 87, 73, 78, 71, 32, 67, 69, 82, 69, 226, + 192, 12, 67, 85, 2, 76, 65, 2, 173, 141, 16, 2, 77, 79, 4, 226, 185, 12, 73, 139, 243, 3, 69, 10, 26, 72, 69, 2, 79, 82, 2, 45, 9, 69, 82, 32, 67, - 72, 82, 73, 83, 84, 2, 243, 254, 2, 77, 8, 50, 32, 52, 4, 73, 90, 69, 68, - 175, 161, 15, 87, 4, 150, 202, 8, 66, 221, 171, 6, 4, 83, 67, 79, 79, 2, - 209, 176, 3, 7, 32, 87, 72, 69, 69, 76, 67, 18, 52, 2, 78, 84, 152, 1, 2, - 83, 69, 191, 172, 16, 84, 10, 48, 3, 65, 73, 78, 169, 142, 12, 3, 32, 70, - 85, 9, 11, 32, 6, 186, 207, 9, 82, 24, 5, 67, 65, 66, 76, 69, 177, 241, - 1, 6, 66, 73, 67, 89, 67, 76, 7, 11, 32, 4, 180, 154, 15, 2, 84, 82, 131, - 86, 70, 86, 52, 7, 76, 69, 84, 84, 69, 82, 32, 231, 235, 5, 68, 62, 198, - 1, 75, 62, 77, 34, 78, 34, 79, 30, 80, 34, 84, 242, 105, 68, 212, 133, 8, + 72, 82, 73, 83, 84, 2, 167, 250, 2, 77, 8, 50, 32, 52, 4, 73, 90, 69, 68, + 227, 156, 15, 87, 4, 202, 197, 8, 66, 221, 171, 6, 4, 83, 67, 79, 79, 2, + 133, 172, 3, 7, 32, 87, 72, 69, 69, 76, 67, 18, 52, 2, 78, 84, 152, 1, 2, + 83, 69, 243, 167, 16, 84, 10, 48, 3, 65, 73, 78, 221, 137, 12, 3, 32, 70, + 85, 9, 11, 32, 6, 238, 202, 9, 82, 24, 5, 67, 65, 66, 76, 69, 177, 241, + 1, 6, 66, 73, 67, 89, 67, 76, 7, 11, 32, 4, 232, 149, 15, 2, 84, 82, 131, + 86, 70, 86, 52, 7, 76, 69, 84, 84, 69, 82, 32, 155, 231, 5, 68, 62, 198, + 1, 75, 62, 77, 34, 78, 34, 79, 30, 80, 34, 84, 242, 105, 68, 136, 129, 8, 2, 72, 65, 2, 82, 166, 226, 1, 83, 190, 89, 76, 246, 7, 67, 218, 100, 69, - 254, 242, 3, 89, 190, 28, 66, 2, 87, 187, 2, 65, 6, 160, 174, 5, 2, 69, - 65, 178, 137, 6, 72, 199, 243, 4, 79, 4, 174, 152, 16, 65, 215, 1, 73, 4, - 218, 218, 15, 73, 139, 60, 71, 7, 154, 170, 16, 76, 3, 79, 4, 166, 150, - 16, 72, 219, 19, 65, 6, 222, 149, 9, 72, 234, 144, 7, 69, 155, 3, 65, - 206, 4, 44, 2, 76, 84, 234, 6, 83, 247, 139, 14, 67, 102, 36, 4, 65, 78, - 73, 32, 219, 2, 73, 76, 52, 7, 76, 69, 84, 84, 69, 82, 32, 151, 149, 4, - 83, 74, 206, 1, 68, 234, 83, 78, 194, 236, 1, 82, 254, 208, 9, 74, 202, + 254, 242, 3, 89, 190, 28, 66, 2, 87, 187, 2, 65, 6, 212, 169, 5, 2, 69, + 65, 178, 137, 6, 72, 199, 243, 4, 79, 4, 226, 147, 16, 65, 215, 1, 73, 4, + 142, 214, 15, 73, 139, 60, 71, 7, 206, 165, 16, 76, 3, 79, 4, 218, 145, + 16, 72, 219, 19, 65, 6, 146, 145, 9, 72, 234, 144, 7, 69, 155, 3, 65, + 206, 4, 44, 2, 76, 84, 234, 6, 83, 171, 135, 14, 67, 102, 36, 4, 65, 78, + 73, 32, 219, 2, 73, 76, 52, 7, 76, 69, 84, 84, 69, 82, 32, 203, 144, 4, + 83, 74, 206, 1, 68, 234, 83, 78, 246, 231, 1, 82, 254, 208, 9, 74, 202, 56, 84, 162, 149, 3, 66, 2, 67, 2, 71, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 83, 2, 86, 2, 89, 186, 2, 65, 2, 69, 2, 73, 3, 85, 10, 38, 68, - 238, 163, 16, 72, 187, 2, 65, 6, 234, 163, 16, 68, 2, 72, 187, 2, 65, 26, - 56, 2, 80, 76, 236, 2, 3, 83, 69, 84, 207, 143, 15, 77, 18, 50, 69, 89, + 162, 159, 16, 72, 187, 2, 65, 6, 158, 159, 16, 68, 2, 72, 187, 2, 65, 26, + 56, 2, 80, 76, 236, 2, 3, 83, 69, 84, 131, 139, 15, 77, 18, 50, 69, 89, 8, 73, 67, 65, 84, 73, 79, 78, 32, 2, 41, 8, 32, 77, 85, 83, 73, 67, 65, - 76, 2, 21, 3, 32, 78, 79, 2, 195, 142, 15, 84, 16, 40, 4, 83, 73, 71, 78, - 139, 164, 16, 88, 15, 11, 32, 12, 48, 3, 73, 78, 32, 81, 5, 87, 73, 84, - 72, 32, 8, 254, 206, 3, 76, 22, 82, 140, 191, 9, 5, 68, 79, 85, 66, 76, - 183, 238, 1, 84, 4, 242, 179, 12, 85, 187, 238, 2, 68, 7, 11, 32, 4, 244, - 83, 5, 77, 85, 76, 84, 73, 203, 155, 12, 85, 228, 3, 44, 5, 72, 82, 79, - 79, 77, 21, 2, 73, 67, 5, 215, 243, 14, 32, 224, 3, 30, 32, 109, 3, 65, + 76, 2, 21, 3, 32, 78, 79, 2, 247, 137, 15, 84, 16, 40, 4, 83, 73, 71, 78, + 191, 159, 16, 88, 15, 11, 32, 12, 48, 3, 73, 78, 32, 81, 5, 87, 73, 84, + 72, 32, 8, 178, 202, 3, 76, 22, 82, 140, 191, 9, 5, 68, 79, 85, 66, 76, + 183, 238, 1, 84, 4, 166, 175, 12, 85, 187, 238, 2, 68, 7, 11, 32, 4, 244, + 83, 5, 77, 85, 76, 84, 73, 255, 150, 12, 85, 228, 3, 44, 5, 72, 82, 79, + 79, 77, 21, 2, 73, 67, 5, 139, 239, 14, 32, 224, 3, 30, 32, 109, 3, 65, 76, 32, 6, 64, 4, 78, 65, 84, 85, 20, 3, 83, 72, 65, 209, 43, 2, 70, 76, - 2, 187, 212, 10, 82, 2, 227, 191, 11, 82, 218, 3, 64, 8, 75, 69, 89, 66, - 79, 65, 82, 68, 66, 83, 131, 248, 3, 78, 5, 41, 8, 32, 87, 73, 84, 72, - 32, 74, 65, 2, 231, 254, 13, 67, 212, 3, 48, 6, 89, 77, 66, 79, 76, 32, - 239, 177, 11, 67, 210, 3, 230, 2, 66, 238, 1, 67, 230, 9, 68, 250, 2, 69, + 2, 239, 207, 10, 82, 2, 151, 187, 11, 82, 218, 3, 64, 8, 75, 69, 89, 66, + 79, 65, 82, 68, 66, 83, 183, 243, 3, 78, 5, 41, 8, 32, 87, 73, 84, 72, + 32, 74, 65, 2, 155, 250, 13, 67, 212, 3, 48, 6, 89, 77, 66, 79, 76, 32, + 163, 173, 11, 67, 210, 3, 230, 2, 66, 238, 1, 67, 230, 9, 68, 250, 2, 69, 162, 1, 70, 166, 2, 71, 112, 9, 65, 82, 80, 69, 71, 71, 73, 65, 84, 168, 1, 2, 72, 65, 126, 75, 198, 3, 76, 138, 1, 77, 186, 2, 78, 162, 1, 79, 218, 2, 80, 200, 2, 2, 81, 85, 146, 2, 82, 198, 2, 83, 226, 5, 84, 182, - 10, 86, 42, 88, 42, 87, 232, 145, 9, 9, 73, 78, 86, 69, 82, 84, 69, 68, + 10, 86, 42, 88, 42, 87, 156, 141, 9, 9, 73, 78, 86, 69, 82, 84, 69, 68, 32, 143, 210, 6, 90, 20, 36, 5, 69, 71, 73, 78, 32, 59, 82, 8, 142, 15, - 80, 30, 83, 250, 251, 7, 66, 151, 245, 7, 84, 12, 24, 2, 65, 67, 35, 69, - 4, 250, 229, 15, 75, 155, 53, 69, 8, 26, 86, 255, 216, 15, 65, 6, 32, 2, - 73, 83, 183, 154, 16, 69, 5, 179, 26, 32, 84, 120, 2, 65, 69, 34, 76, 94, - 79, 194, 7, 82, 242, 11, 32, 224, 32, 7, 73, 82, 67, 76, 69, 32, 88, 233, - 227, 5, 2, 85, 84, 2, 11, 83, 2, 219, 212, 15, 85, 8, 42, 73, 249, 23, 5, - 85, 83, 84, 69, 82, 4, 26, 77, 187, 241, 13, 86, 2, 199, 219, 9, 65, 64, - 26, 77, 219, 149, 16, 68, 62, 64, 7, 66, 73, 78, 73, 78, 71, 32, 153, - 151, 6, 3, 77, 79, 78, 60, 202, 1, 65, 80, 7, 77, 65, 82, 67, 65, 84, 79, + 80, 30, 83, 174, 247, 7, 66, 151, 245, 7, 84, 12, 24, 2, 65, 67, 35, 69, + 4, 174, 225, 15, 75, 155, 53, 69, 8, 26, 86, 179, 212, 15, 65, 6, 32, 2, + 73, 83, 235, 149, 16, 69, 5, 179, 26, 32, 84, 120, 2, 65, 69, 34, 76, 94, + 79, 194, 7, 82, 242, 11, 32, 224, 32, 7, 73, 82, 67, 76, 69, 32, 88, 157, + 223, 5, 2, 85, 84, 2, 11, 83, 2, 143, 208, 15, 85, 8, 42, 73, 249, 23, 5, + 85, 83, 84, 69, 82, 4, 26, 77, 239, 236, 13, 86, 2, 251, 214, 9, 65, 64, + 26, 77, 143, 145, 16, 68, 62, 64, 7, 66, 73, 78, 73, 78, 71, 32, 205, + 146, 6, 3, 77, 79, 78, 60, 202, 1, 65, 80, 7, 77, 65, 82, 67, 65, 84, 79, 56, 2, 68, 79, 56, 2, 85, 80, 28, 2, 70, 76, 40, 5, 72, 65, 82, 77, 79, - 22, 83, 142, 2, 84, 250, 181, 7, 66, 172, 199, 3, 2, 76, 79, 143, 147, 5, + 22, 83, 142, 2, 84, 174, 177, 7, 66, 172, 199, 3, 2, 76, 79, 143, 147, 5, 82, 6, 76, 5, 67, 67, 69, 78, 84, 37, 10, 85, 71, 77, 69, 78, 84, 65, 84, - 73, 79, 5, 205, 2, 5, 45, 83, 84, 65, 67, 2, 219, 129, 15, 78, 6, 52, 2, - 87, 78, 168, 3, 2, 85, 66, 239, 244, 15, 73, 2, 149, 248, 14, 2, 32, 66, - 12, 248, 76, 2, 65, 71, 159, 199, 15, 73, 2, 223, 233, 14, 78, 12, 132, - 1, 9, 78, 65, 80, 32, 80, 73, 90, 90, 73, 22, 84, 232, 206, 4, 11, 80, - 82, 69, 67, 72, 71, 69, 83, 65, 78, 71, 247, 138, 6, 77, 2, 231, 130, 12, - 67, 6, 44, 5, 65, 67, 67, 65, 84, 199, 129, 16, 69, 4, 40, 4, 73, 83, 83, - 73, 243, 145, 16, 79, 2, 251, 242, 15, 77, 10, 34, 82, 165, 158, 12, 2, - 69, 78, 8, 28, 2, 73, 80, 199, 6, 69, 2, 173, 129, 12, 6, 76, 69, 32, 84, - 79, 78, 4, 22, 79, 179, 2, 69, 2, 147, 130, 15, 73, 24, 98, 65, 142, 1, - 69, 92, 6, 79, 85, 66, 76, 69, 32, 145, 169, 10, 7, 82, 85, 77, 32, 67, + 73, 79, 5, 205, 2, 5, 45, 83, 84, 65, 67, 2, 143, 253, 14, 78, 6, 52, 2, + 87, 78, 168, 3, 2, 85, 66, 163, 240, 15, 73, 2, 201, 243, 14, 2, 32, 66, + 12, 248, 76, 2, 65, 71, 211, 194, 15, 73, 2, 147, 229, 14, 78, 12, 132, + 1, 9, 78, 65, 80, 32, 80, 73, 90, 90, 73, 22, 84, 156, 202, 4, 11, 80, + 82, 69, 67, 72, 71, 69, 83, 65, 78, 71, 247, 138, 6, 77, 2, 155, 254, 11, + 67, 6, 44, 5, 65, 67, 67, 65, 84, 251, 252, 15, 69, 4, 40, 4, 73, 83, 83, + 73, 167, 141, 16, 79, 2, 175, 238, 15, 77, 10, 34, 82, 217, 153, 12, 2, + 69, 78, 8, 28, 2, 73, 80, 199, 6, 69, 2, 225, 252, 11, 6, 76, 69, 32, 84, + 79, 78, 4, 22, 79, 179, 2, 69, 2, 199, 253, 14, 73, 24, 98, 65, 142, 1, + 69, 92, 6, 79, 85, 66, 76, 69, 32, 197, 164, 10, 7, 82, 85, 77, 32, 67, 76, 69, 10, 96, 2, 32, 67, 20, 2, 77, 80, 204, 29, 4, 83, 72, 69, 68, - 137, 200, 15, 5, 76, 32, 83, 69, 71, 2, 255, 194, 8, 65, 5, 175, 132, 14, + 189, 195, 15, 5, 76, 32, 83, 69, 71, 2, 179, 190, 8, 65, 5, 227, 255, 13, 32, 4, 40, 3, 67, 82, 69, 29, 3, 71, 82, 69, 2, 181, 25, 3, 83, 67, 69, - 2, 155, 233, 8, 69, 6, 242, 21, 83, 254, 6, 66, 191, 135, 5, 70, 14, 32, + 2, 207, 228, 8, 69, 6, 242, 21, 83, 254, 6, 66, 243, 130, 5, 70, 14, 32, 3, 78, 68, 32, 151, 16, 73, 10, 74, 80, 30, 83, 204, 13, 3, 79, 70, 32, - 174, 238, 7, 66, 151, 245, 7, 84, 2, 185, 227, 12, 2, 72, 82, 2, 231, - 147, 15, 76, 34, 104, 6, 69, 82, 77, 65, 84, 65, 22, 73, 122, 79, 102, - 32, 144, 36, 3, 85, 83, 65, 213, 230, 3, 2, 76, 65, 5, 175, 218, 13, 32, + 226, 233, 7, 66, 151, 245, 7, 84, 2, 237, 222, 12, 2, 72, 82, 2, 155, + 143, 15, 76, 34, 104, 6, 69, 82, 77, 65, 84, 65, 22, 73, 122, 79, 102, + 32, 144, 36, 3, 85, 83, 65, 137, 226, 3, 2, 76, 65, 5, 227, 213, 13, 32, 10, 22, 78, 135, 34, 86, 8, 56, 9, 71, 69, 82, 69, 68, 32, 84, 82, 69, - 239, 20, 65, 6, 137, 242, 5, 4, 77, 79, 76, 79, 6, 208, 25, 3, 85, 82, - 45, 203, 167, 14, 82, 18, 54, 32, 56, 7, 76, 73, 83, 83, 65, 78, 68, 23, - 82, 6, 25, 4, 67, 76, 69, 70, 7, 157, 13, 3, 32, 79, 84, 4, 251, 134, 6, + 239, 20, 65, 6, 189, 237, 5, 4, 77, 79, 76, 79, 6, 208, 25, 3, 85, 82, + 45, 255, 162, 14, 82, 18, 54, 32, 56, 7, 76, 73, 83, 83, 65, 78, 68, 23, + 82, 6, 25, 4, 67, 76, 69, 70, 7, 157, 13, 3, 32, 79, 84, 4, 175, 130, 6, 79, 8, 84, 9, 65, 67, 69, 32, 78, 79, 84, 69, 32, 37, 8, 69, 71, 79, 82, - 73, 65, 78, 32, 4, 184, 227, 8, 2, 78, 79, 27, 83, 4, 250, 2, 67, 3, 70, - 8, 44, 3, 76, 70, 32, 205, 8, 3, 85, 80, 84, 6, 52, 3, 80, 69, 68, 210, - 223, 3, 78, 151, 181, 8, 82, 2, 139, 199, 5, 65, 24, 48, 6, 73, 69, 86, - 65, 78, 32, 139, 223, 14, 79, 22, 178, 1, 67, 46, 69, 68, 7, 81, 85, 65, - 82, 84, 69, 82, 62, 70, 148, 220, 3, 4, 72, 65, 76, 70, 0, 5, 87, 72, 79, + 73, 65, 78, 32, 4, 236, 222, 8, 2, 78, 79, 27, 83, 4, 250, 2, 67, 3, 70, + 8, 44, 3, 76, 70, 32, 205, 8, 3, 85, 80, 84, 6, 52, 3, 80, 69, 68, 134, + 219, 3, 78, 151, 181, 8, 82, 2, 191, 194, 5, 65, 24, 48, 6, 73, 69, 86, + 65, 78, 32, 191, 218, 14, 79, 22, 178, 1, 67, 46, 69, 68, 7, 81, 85, 65, + 82, 84, 69, 82, 62, 70, 200, 215, 3, 4, 72, 65, 76, 70, 0, 5, 87, 72, 79, 76, 69, 173, 224, 1, 9, 82, 69, 67, 73, 84, 65, 84, 73, 86, 2, 11, 32, 2, - 11, 67, 2, 235, 163, 5, 76, 6, 64, 5, 73, 71, 72, 84, 72, 221, 203, 14, - 5, 78, 68, 32, 79, 70, 4, 253, 129, 6, 10, 32, 78, 79, 84, 69, 32, 83, - 84, 69, 77, 4, 218, 14, 76, 185, 205, 3, 4, 73, 78, 65, 76, 8, 44, 4, 79, + 11, 67, 2, 159, 159, 5, 76, 6, 64, 5, 73, 71, 72, 84, 72, 145, 199, 14, + 5, 78, 68, 32, 79, 70, 4, 177, 253, 5, 10, 32, 78, 79, 84, 69, 32, 83, + 84, 69, 77, 4, 218, 14, 76, 237, 200, 3, 4, 73, 78, 65, 76, 8, 44, 4, 79, 78, 71, 65, 217, 13, 2, 69, 70, 7, 11, 32, 4, 28, 3, 73, 77, 80, 3, 80, 2, 193, 2, 7, 69, 82, 70, 69, 67, 84, 65, 18, 104, 2, 65, 88, 20, 2, 69, 90, 20, 5, 73, 78, 73, 77, 65, 44, 3, 79, 79, 78, 25, 4, 85, 76, 84, 73, - 2, 167, 224, 15, 73, 2, 175, 226, 15, 90, 7, 11, 32, 4, 226, 142, 12, 82, + 2, 219, 219, 15, 73, 2, 227, 221, 15, 90, 7, 11, 32, 4, 150, 138, 12, 82, 195, 83, 66, 4, 189, 17, 2, 32, 78, 4, 60, 11, 80, 76, 69, 32, 77, 69, - 65, 83, 85, 82, 69, 15, 32, 2, 11, 32, 2, 223, 141, 12, 82, 10, 120, 4, - 69, 66, 69, 78, 212, 26, 3, 85, 76, 76, 236, 225, 5, 3, 65, 84, 85, 189, - 227, 6, 7, 79, 84, 69, 72, 69, 65, 68, 2, 253, 228, 14, 4, 83, 84, 73, + 65, 83, 85, 82, 69, 15, 32, 2, 11, 32, 2, 147, 137, 12, 82, 10, 120, 4, + 69, 66, 69, 78, 212, 26, 3, 85, 76, 76, 160, 221, 5, 3, 65, 84, 85, 189, + 227, 6, 7, 79, 84, 69, 72, 69, 65, 68, 2, 177, 224, 14, 4, 83, 84, 73, 77, 32, 88, 2, 78, 69, 120, 14, 82, 78, 65, 77, 69, 78, 84, 32, 83, 84, 82, 79, 75, 69, 107, 84, 6, 92, 18, 32, 72, 85, 78, 68, 82, 69, 68, 32, 84, 87, 69, 78, 84, 89, 45, 69, 73, 159, 20, 45, 4, 181, 13, 2, 71, 72, - 22, 11, 45, 22, 170, 166, 3, 49, 194, 214, 12, 50, 2, 51, 2, 52, 2, 53, + 22, 11, 45, 22, 222, 161, 3, 49, 194, 214, 12, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 4, 173, 4, 3, 84, 65, 86, 18, 96, 9, 65, 82, - 69, 78, 84, 72, 69, 83, 73, 0, 2, 76, 85, 18, 69, 142, 1, 79, 163, 239, + 69, 78, 84, 72, 69, 83, 73, 0, 2, 76, 85, 18, 69, 142, 1, 79, 215, 234, 13, 73, 2, 243, 22, 83, 6, 68, 4, 68, 65, 76, 32, 49, 9, 83, 32, 83, 85, - 66, 80, 85, 78, 67, 4, 26, 85, 243, 184, 15, 77, 2, 215, 184, 15, 80, 2, - 255, 210, 13, 84, 6, 48, 2, 68, 65, 245, 5, 5, 82, 82, 69, 67, 84, 2, - 219, 240, 13, 84, 12, 76, 6, 65, 82, 84, 69, 82, 32, 125, 9, 73, 78, 68, - 73, 67, 69, 83, 73, 77, 8, 60, 5, 84, 79, 78, 69, 32, 234, 208, 3, 78, - 151, 181, 8, 82, 4, 26, 83, 187, 142, 5, 70, 2, 241, 247, 15, 3, 72, 65, - 82, 4, 17, 2, 65, 32, 4, 230, 186, 12, 65, 161, 186, 3, 3, 66, 65, 83, + 66, 80, 85, 78, 67, 4, 26, 85, 167, 180, 15, 77, 2, 139, 180, 15, 80, 2, + 179, 206, 13, 84, 6, 48, 2, 68, 65, 245, 5, 5, 82, 82, 69, 67, 84, 2, + 143, 236, 13, 84, 12, 76, 6, 65, 82, 84, 69, 82, 32, 125, 9, 73, 78, 68, + 73, 67, 69, 83, 73, 77, 8, 60, 5, 84, 79, 78, 69, 32, 158, 204, 3, 78, + 151, 181, 8, 82, 4, 26, 83, 239, 137, 5, 70, 2, 165, 243, 15, 3, 72, 65, + 82, 4, 17, 2, 65, 32, 4, 154, 182, 12, 65, 161, 186, 3, 3, 66, 65, 83, 14, 22, 69, 175, 1, 73, 10, 72, 4, 80, 69, 65, 84, 81, 10, 86, 69, 82, 83, 69, 32, 70, 73, 78, 65, 8, 56, 8, 69, 68, 32, 70, 73, 71, 85, 82, - 179, 163, 14, 32, 6, 179, 221, 5, 69, 2, 207, 4, 76, 4, 48, 2, 71, 72, - 57, 6, 78, 70, 79, 82, 90, 65, 2, 33, 6, 84, 32, 82, 69, 80, 69, 2, 179, - 169, 10, 65, 2, 171, 181, 8, 78, 48, 136, 1, 6, 67, 65, 78, 68, 73, 67, - 62, 69, 162, 1, 72, 54, 73, 252, 1, 6, 81, 85, 65, 82, 69, 32, 252, 158, - 8, 2, 85, 66, 251, 100, 79, 4, 17, 2, 85, 83, 5, 209, 234, 13, 5, 32, 70, - 76, 69, 88, 14, 32, 2, 77, 73, 223, 201, 15, 71, 12, 64, 6, 66, 82, 69, - 86, 73, 83, 1, 6, 77, 73, 78, 73, 77, 65, 6, 11, 32, 6, 134, 13, 87, 246, - 242, 11, 82, 195, 83, 66, 6, 84, 3, 79, 82, 84, 129, 239, 5, 3, 65, 82, - 80, 14, 32, 4, 78, 71, 76, 69, 43, 88, 2, 17, 2, 32, 66, 2, 207, 134, 14, - 65, 12, 18, 45, 79, 84, 4, 242, 7, 76, 217, 207, 14, 11, 83, 84, 82, 73, + 231, 158, 14, 32, 6, 231, 216, 5, 69, 2, 207, 4, 76, 4, 48, 2, 71, 72, + 57, 6, 78, 70, 79, 82, 90, 65, 2, 33, 6, 84, 32, 82, 69, 80, 69, 2, 231, + 164, 10, 65, 2, 223, 176, 8, 78, 48, 136, 1, 6, 67, 65, 78, 68, 73, 67, + 62, 69, 162, 1, 72, 54, 73, 252, 1, 6, 81, 85, 65, 82, 69, 32, 176, 154, + 8, 2, 85, 66, 251, 100, 79, 4, 17, 2, 85, 83, 5, 133, 230, 13, 5, 32, 70, + 76, 69, 88, 14, 32, 2, 77, 73, 147, 197, 15, 71, 12, 64, 6, 66, 82, 69, + 86, 73, 83, 1, 6, 77, 73, 78, 73, 77, 65, 6, 11, 32, 6, 134, 13, 87, 170, + 238, 11, 82, 195, 83, 66, 6, 84, 3, 79, 82, 84, 181, 234, 5, 3, 65, 82, + 80, 14, 32, 4, 78, 71, 76, 69, 43, 88, 2, 17, 2, 32, 66, 2, 131, 130, 14, + 65, 12, 18, 45, 79, 84, 4, 242, 7, 76, 141, 203, 14, 11, 83, 84, 82, 73, 78, 71, 32, 70, 82, 69, 84, 8, 52, 3, 69, 69, 78, 1, 6, 89, 45, 70, 79, - 85, 82, 4, 193, 12, 2, 84, 72, 6, 26, 78, 167, 239, 15, 66, 4, 229, 9, 7, + 85, 82, 4, 193, 12, 2, 84, 72, 6, 26, 78, 219, 234, 15, 66, 4, 229, 9, 7, 79, 84, 69, 72, 69, 65, 68, 60, 132, 1, 6, 69, 77, 80, 85, 83, 32, 154, 4, 72, 88, 2, 87, 79, 84, 7, 79, 82, 67, 85, 76, 85, 83, 46, 82, 141, 3, 3, 85, 82, 78, 16, 232, 1, 27, 73, 77, 80, 69, 82, 70, 69, 67, 84, 85, 77, 32, 67, 85, 77, 32, 80, 82, 79, 76, 65, 84, 73, 79, 78, 69, 32, 129, 1, 25, 80, 69, 82, 70, 69, 67, 84, 85, 77, 32, 67, 85, 77, 32, 80, 82, 79, 76, 65, 84, 73, 79, 78, 69, 32, 10, 60, 10, 73, 77, 80, 69, 82, 70, - 69, 67, 84, 65, 131, 1, 80, 9, 249, 210, 5, 11, 32, 68, 73, 77, 73, 78, + 69, 67, 84, 65, 131, 1, 80, 9, 173, 206, 5, 11, 32, 68, 73, 77, 73, 78, 85, 84, 73, 79, 78, 6, 60, 3, 73, 77, 80, 41, 8, 80, 69, 82, 70, 69, 67, - 84, 65, 2, 245, 197, 15, 5, 69, 82, 70, 69, 67, 5, 197, 194, 8, 12, 32, + 84, 65, 2, 169, 193, 15, 5, 69, 82, 70, 69, 67, 5, 249, 189, 8, 12, 32, 68, 73, 77, 73, 78, 85, 84, 73, 79, 78, 45, 6, 72, 2, 82, 69, 249, 5, 11, 73, 82, 84, 89, 45, 83, 69, 67, 79, 78, 68, 2, 11, 69, 2, 11, 45, 2, 11, - 76, 2, 37, 7, 73, 78, 69, 32, 83, 84, 65, 2, 155, 231, 14, 70, 5, 189, - 221, 11, 6, 32, 82, 69, 83, 85, 80, 27, 33, 6, 73, 65, 78, 71, 76, 69, + 76, 2, 37, 7, 73, 78, 69, 32, 83, 84, 65, 2, 207, 226, 14, 70, 5, 241, + 216, 11, 6, 32, 82, 69, 83, 85, 80, 27, 33, 6, 73, 65, 78, 71, 76, 69, 24, 128, 1, 10, 32, 78, 79, 84, 69, 72, 69, 65, 68, 32, 61, 17, 45, 82, 79, 85, 78, 68, 32, 78, 79, 84, 69, 72, 69, 65, 68, 32, 68, 20, 58, 68, 24, 3, 85, 80, 32, 38, 82, 25, 3, 76, 69, 70, 4, 93, 3, 79, 87, 78, 8, - 34, 82, 78, 87, 183, 198, 12, 66, 4, 21, 3, 73, 71, 72, 4, 11, 84, 4, 11, - 32, 4, 26, 87, 183, 198, 12, 66, 2, 11, 72, 2, 243, 155, 14, 73, 7, 11, - 32, 4, 146, 192, 8, 83, 203, 164, 7, 85, 4, 36, 3, 79, 73, 68, 207, 161, - 15, 73, 2, 205, 139, 13, 5, 32, 78, 79, 84, 69, 6, 92, 4, 72, 79, 76, 69, - 253, 204, 8, 13, 73, 84, 72, 32, 70, 73, 78, 71, 69, 82, 78, 65, 73, 4, - 11, 32, 4, 210, 187, 3, 78, 151, 181, 8, 82, 232, 3, 224, 2, 15, 67, 79, + 34, 82, 78, 87, 235, 193, 12, 66, 4, 21, 3, 73, 71, 72, 4, 11, 84, 4, 11, + 32, 4, 26, 87, 235, 193, 12, 66, 2, 11, 72, 2, 167, 151, 14, 73, 7, 11, + 32, 4, 198, 187, 8, 83, 203, 164, 7, 85, 4, 36, 3, 79, 73, 68, 131, 157, + 15, 73, 2, 129, 135, 13, 5, 32, 78, 79, 84, 69, 6, 92, 4, 72, 79, 76, 69, + 177, 200, 8, 13, 73, 84, 72, 32, 70, 73, 78, 71, 69, 82, 78, 65, 73, 4, + 11, 32, 4, 134, 183, 3, 78, 151, 181, 8, 82, 232, 3, 224, 2, 15, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 254, 1, 76, 212, 14, 16, 77, 79, 68, 73, 70, 73, 69, 82, 32, 76, 69, 84, 84, 69, 82, 32, 122, 83, 80, 16, 69, 65, 83, 84, 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 218, 9, 84, 204, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, - 140, 180, 9, 3, 80, 65, 79, 175, 154, 4, 68, 16, 66, 77, 165, 1, 11, 83, + 192, 175, 9, 3, 80, 65, 79, 175, 154, 4, 68, 16, 66, 77, 165, 1, 11, 83, 72, 65, 78, 32, 77, 69, 68, 73, 65, 76, 14, 80, 6, 69, 68, 73, 65, 76, - 32, 45, 10, 79, 78, 32, 77, 69, 68, 73, 65, 76, 32, 8, 170, 220, 15, 72, - 2, 82, 2, 87, 3, 89, 6, 254, 219, 15, 76, 2, 77, 3, 78, 2, 183, 228, 10, + 32, 45, 10, 79, 78, 32, 77, 69, 68, 73, 65, 76, 32, 8, 222, 215, 15, 72, + 2, 82, 2, 87, 3, 89, 6, 178, 215, 15, 76, 2, 77, 3, 78, 2, 235, 223, 10, 32, 238, 1, 104, 6, 69, 84, 84, 69, 82, 32, 185, 13, 15, 79, 71, 79, 71, 82, 65, 77, 32, 75, 72, 65, 77, 84, 73, 32, 232, 1, 238, 1, 65, 50, 69, 146, 1, 71, 50, 75, 254, 1, 77, 134, 1, 78, 58, 82, 86, 83, 130, 3, 84, - 198, 1, 87, 142, 243, 11, 68, 214, 6, 85, 22, 86, 166, 202, 1, 73, 42, + 198, 1, 87, 194, 238, 11, 68, 214, 6, 85, 22, 86, 166, 202, 1, 73, 42, 76, 222, 196, 1, 66, 2, 67, 2, 74, 2, 80, 138, 69, 72, 2, 89, 187, 2, 79, - 7, 192, 144, 15, 4, 73, 84, 79, 78, 219, 74, 85, 9, 77, 17, 65, 83, 84, - 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 6, 42, 71, 150, - 224, 10, 89, 199, 187, 3, 78, 2, 147, 224, 10, 72, 6, 130, 205, 9, 82, - 162, 138, 6, 72, 187, 2, 65, 44, 32, 2, 72, 65, 139, 217, 15, 65, 43, 25, - 4, 77, 84, 73, 32, 40, 134, 1, 68, 34, 84, 162, 223, 8, 78, 230, 176, 6, + 7, 244, 139, 15, 4, 73, 84, 79, 78, 219, 74, 85, 9, 77, 17, 65, 83, 84, + 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 6, 42, 71, 202, + 219, 10, 89, 199, 187, 3, 78, 2, 199, 219, 10, 72, 6, 182, 200, 9, 82, + 162, 138, 6, 72, 187, 2, 65, 44, 32, 2, 72, 65, 191, 212, 15, 65, 43, 25, + 4, 77, 84, 73, 32, 40, 134, 1, 68, 34, 84, 214, 218, 8, 78, 230, 176, 6, 67, 2, 72, 2, 74, 170, 37, 76, 226, 31, 70, 2, 71, 2, 82, 2, 83, 2, 88, - 3, 90, 6, 162, 144, 15, 68, 139, 69, 72, 4, 131, 144, 15, 84, 12, 36, 3, - 79, 78, 32, 139, 215, 15, 65, 10, 60, 2, 66, 66, 162, 217, 13, 74, 230, - 186, 1, 78, 199, 66, 69, 4, 198, 214, 15, 65, 3, 69, 10, 134, 222, 8, 78, - 238, 245, 6, 71, 2, 89, 187, 2, 65, 4, 132, 221, 2, 12, 85, 77, 65, 73, - 32, 80, 65, 76, 65, 85, 78, 71, 239, 248, 12, 65, 50, 90, 72, 200, 221, + 3, 90, 6, 214, 139, 15, 68, 139, 69, 72, 4, 183, 139, 15, 84, 12, 36, 3, + 79, 78, 32, 191, 210, 15, 65, 10, 60, 2, 66, 66, 214, 212, 13, 74, 230, + 186, 1, 78, 199, 66, 69, 4, 250, 209, 15, 65, 3, 69, 10, 186, 217, 8, 78, + 238, 245, 6, 71, 2, 89, 187, 2, 65, 4, 184, 216, 2, 12, 85, 77, 65, 73, + 32, 80, 65, 76, 65, 85, 78, 71, 239, 248, 12, 65, 50, 90, 72, 252, 216, 2, 9, 71, 65, 87, 32, 75, 65, 82, 69, 78, 198, 244, 12, 83, 187, 2, 65, 44, 66, 65, 197, 1, 11, 87, 69, 32, 80, 65, 76, 65, 85, 78, 71, 32, 41, - 17, 2, 78, 32, 38, 134, 1, 78, 190, 213, 13, 74, 2, 80, 2, 84, 234, 181, + 17, 2, 78, 32, 38, 134, 1, 78, 242, 208, 13, 74, 2, 80, 2, 84, 234, 181, 1, 66, 2, 67, 2, 71, 2, 75, 138, 69, 68, 2, 70, 2, 72, 2, 90, 187, 2, 65, - 6, 170, 208, 15, 78, 2, 89, 187, 2, 65, 4, 146, 213, 13, 67, 3, 83, 36, - 38, 65, 186, 138, 15, 84, 139, 69, 72, 31, 41, 8, 73, 32, 76, 65, 73, 78, - 71, 32, 28, 82, 78, 170, 243, 11, 68, 146, 150, 3, 66, 2, 71, 2, 74, 170, - 37, 76, 227, 31, 70, 4, 190, 206, 15, 78, 3, 89, 6, 92, 17, 69, 83, 84, - 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 255, 207, 15, 65, - 4, 158, 214, 10, 80, 183, 252, 2, 84, 6, 182, 193, 14, 79, 194, 62, 81, + 6, 222, 203, 15, 78, 2, 89, 187, 2, 65, 4, 198, 208, 13, 67, 3, 83, 36, + 38, 65, 238, 133, 15, 84, 139, 69, 72, 31, 41, 8, 73, 32, 76, 65, 73, 78, + 71, 32, 28, 82, 78, 222, 238, 11, 68, 146, 150, 3, 66, 2, 71, 2, 74, 170, + 37, 76, 227, 31, 70, 4, 242, 201, 15, 78, 3, 89, 6, 92, 17, 69, 83, 84, + 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 179, 203, 15, 65, + 4, 210, 209, 10, 80, 183, 252, 2, 84, 6, 234, 188, 14, 79, 194, 62, 81, 139, 63, 72, 4, 56, 6, 75, 72, 65, 77, 84, 73, 1, 4, 83, 72, 65, 78, 2, - 29, 5, 32, 82, 69, 68, 85, 2, 241, 132, 1, 2, 80, 76, 90, 76, 2, 72, 65, - 20, 4, 73, 71, 78, 32, 233, 6, 6, 89, 77, 66, 79, 76, 32, 20, 175, 191, + 29, 5, 32, 82, 69, 68, 85, 2, 165, 128, 1, 2, 80, 76, 90, 76, 2, 72, 65, + 20, 4, 73, 71, 78, 32, 233, 6, 6, 89, 77, 66, 79, 76, 32, 20, 227, 186, 9, 78, 52, 202, 3, 65, 32, 12, 75, 72, 65, 77, 84, 73, 32, 84, 79, 78, 69, 45, 30, 83, 132, 2, 15, 84, 65, 73, 32, 76, 65, 73, 78, 71, 32, 84, 79, 78, 69, 45, 28, 22, 87, 69, 83, 84, 69, 82, 78, 32, 80, 87, 79, 32, - 75, 65, 82, 69, 78, 32, 84, 79, 78, 69, 222, 244, 2, 68, 136, 169, 5, 19, + 75, 65, 82, 69, 78, 32, 84, 79, 78, 69, 146, 240, 2, 68, 136, 169, 5, 19, 82, 85, 77, 65, 73, 32, 80, 65, 76, 65, 85, 78, 71, 32, 84, 79, 78, 69, 45, 140, 180, 3, 9, 80, 65, 79, 32, 75, 65, 82, 69, 78, 148, 115, 6, 76, - 73, 84, 84, 76, 69, 155, 191, 2, 86, 4, 210, 192, 14, 83, 199, 68, 78, 4, - 226, 201, 15, 49, 3, 51, 18, 40, 4, 72, 65, 78, 32, 195, 248, 14, 69, 16, - 84, 8, 67, 79, 85, 78, 67, 73, 76, 32, 84, 5, 84, 79, 78, 69, 45, 199, - 201, 14, 83, 6, 136, 211, 11, 8, 69, 77, 80, 72, 65, 84, 73, 67, 185, - 244, 3, 4, 84, 79, 78, 69, 8, 238, 199, 15, 50, 2, 51, 2, 53, 3, 54, 4, - 194, 199, 15, 50, 3, 53, 10, 11, 45, 10, 154, 199, 15, 49, 2, 50, 2, 51, + 73, 84, 84, 76, 69, 155, 191, 2, 86, 4, 134, 188, 14, 83, 199, 68, 78, 4, + 150, 197, 15, 49, 3, 51, 18, 40, 4, 72, 65, 78, 32, 247, 243, 14, 69, 16, + 84, 8, 67, 79, 85, 78, 67, 73, 76, 32, 84, 5, 84, 79, 78, 69, 45, 251, + 196, 14, 83, 6, 188, 206, 11, 8, 69, 77, 80, 72, 65, 84, 73, 67, 185, + 244, 3, 4, 84, 79, 78, 69, 8, 162, 195, 15, 50, 2, 51, 2, 53, 3, 54, 4, + 246, 194, 15, 50, 3, 53, 10, 11, 45, 10, 206, 194, 15, 49, 2, 50, 2, 51, 2, 52, 3, 53, 18, 130, 1, 65, 128, 1, 2, 76, 79, 28, 5, 83, 72, 65, 78, - 32, 228, 178, 8, 4, 71, 69, 78, 73, 217, 96, 6, 67, 79, 77, 80, 76, 69, - 8, 84, 5, 73, 84, 79, 78, 32, 185, 179, 6, 10, 70, 79, 82, 69, 77, 69, - 78, 84, 73, 79, 6, 94, 69, 246, 175, 13, 84, 139, 121, 79, 2, 253, 178, - 8, 2, 67, 65, 4, 26, 69, 255, 168, 14, 79, 2, 201, 12, 4, 88, 67, 76, 65, + 32, 152, 174, 8, 4, 71, 69, 78, 73, 217, 96, 6, 67, 79, 77, 80, 76, 69, + 8, 84, 5, 73, 84, 79, 78, 32, 237, 174, 6, 10, 70, 79, 82, 69, 77, 69, + 78, 84, 73, 79, 6, 94, 69, 170, 171, 13, 84, 139, 121, 79, 2, 177, 174, + 8, 2, 67, 65, 4, 26, 69, 179, 164, 14, 79, 2, 201, 12, 4, 88, 67, 76, 65, 24, 140, 1, 20, 79, 78, 69, 32, 77, 65, 82, 75, 32, 83, 71, 65, 87, 32, - 75, 65, 82, 69, 78, 32, 201, 180, 9, 8, 65, 73, 32, 76, 65, 73, 78, 71, - 4, 38, 72, 181, 211, 8, 3, 75, 69, 32, 2, 191, 213, 8, 65, 56, 150, 2, + 75, 65, 82, 69, 78, 32, 253, 175, 9, 8, 65, 73, 32, 76, 65, 73, 78, 71, + 4, 38, 72, 233, 206, 8, 3, 75, 69, 32, 2, 243, 208, 8, 65, 56, 150, 2, 65, 76, 9, 71, 69, 66, 65, 32, 75, 65, 82, 69, 20, 6, 75, 65, 89, 65, 72, 32, 40, 4, 77, 79, 78, 32, 34, 83, 142, 1, 69, 40, 18, 87, 69, 83, 84, - 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 212, 187, 9, 2, - 84, 65, 254, 170, 2, 85, 22, 86, 167, 202, 1, 73, 8, 26, 73, 143, 192, - 15, 65, 7, 25, 4, 84, 79, 78, 32, 4, 171, 179, 13, 65, 2, 203, 255, 14, - 78, 6, 242, 168, 15, 69, 2, 79, 215, 22, 85, 4, 198, 171, 15, 73, 219, - 19, 79, 10, 80, 4, 72, 65, 78, 32, 209, 209, 8, 10, 71, 65, 87, 32, 75, - 65, 82, 69, 78, 32, 8, 54, 69, 20, 5, 70, 73, 78, 65, 76, 171, 187, 15, - 65, 5, 251, 192, 14, 32, 2, 151, 172, 15, 32, 4, 226, 152, 15, 69, 151, - 14, 85, 232, 17, 152, 2, 5, 45, 65, 82, 89, 32, 214, 4, 65, 222, 16, 66, - 30, 69, 146, 32, 73, 136, 1, 3, 75, 79, 32, 170, 10, 79, 166, 24, 85, - 224, 8, 22, 89, 73, 65, 75, 69, 78, 71, 32, 80, 85, 65, 67, 72, 85, 69, + 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 136, 183, 9, 2, + 84, 65, 254, 170, 2, 85, 22, 86, 167, 202, 1, 73, 8, 26, 73, 195, 187, + 15, 65, 7, 25, 4, 84, 79, 78, 32, 4, 223, 174, 13, 65, 2, 255, 250, 14, + 78, 6, 166, 164, 15, 69, 2, 79, 215, 22, 85, 4, 250, 166, 15, 73, 219, + 19, 79, 10, 80, 4, 72, 65, 78, 32, 133, 205, 8, 10, 71, 65, 87, 32, 75, + 65, 82, 69, 78, 32, 8, 54, 69, 20, 5, 70, 73, 78, 65, 76, 223, 182, 15, + 65, 5, 175, 188, 14, 32, 2, 203, 167, 15, 32, 4, 150, 148, 15, 69, 151, + 14, 85, 208, 11, 152, 2, 5, 45, 65, 82, 89, 32, 214, 4, 65, 222, 16, 66, + 30, 69, 146, 32, 73, 136, 1, 3, 75, 79, 32, 170, 10, 79, 162, 24, 85, + 152, 4, 22, 89, 73, 65, 75, 69, 78, 71, 32, 80, 85, 65, 67, 72, 85, 69, 32, 72, 77, 79, 78, 71, 32, 232, 135, 2, 2, 80, 78, 252, 208, 12, 2, 78, 66, 27, 76, 32, 130, 1, 67, 114, 84, 46, 83, 160, 1, 5, 85, 78, 73, 79, - 78, 108, 4, 87, 72, 73, 84, 214, 241, 11, 76, 210, 17, 73, 151, 162, 2, - 80, 8, 52, 7, 73, 82, 67, 76, 69, 68, 32, 159, 168, 14, 79, 6, 40, 2, 80, - 76, 14, 84, 251, 146, 8, 68, 2, 35, 85, 2, 21, 3, 73, 77, 69, 2, 187, - 245, 11, 83, 6, 40, 6, 81, 85, 65, 82, 69, 32, 87, 85, 4, 60, 9, 73, 78, - 84, 69, 82, 83, 69, 67, 84, 1, 2, 85, 78, 2, 147, 207, 11, 73, 2, 11, 77, - 2, 147, 242, 11, 77, 7, 69, 15, 32, 79, 80, 69, 82, 65, 84, 79, 82, 32, - 87, 73, 84, 72, 32, 4, 246, 171, 11, 80, 215, 186, 3, 68, 2, 11, 69, 2, - 205, 220, 12, 2, 32, 86, 188, 2, 170, 2, 66, 252, 4, 10, 71, 32, 77, 85, + 78, 108, 4, 87, 72, 73, 84, 138, 237, 11, 76, 210, 17, 73, 151, 162, 2, + 80, 8, 52, 7, 73, 82, 67, 76, 69, 68, 32, 211, 163, 14, 79, 6, 40, 2, 80, + 76, 14, 84, 175, 142, 8, 68, 2, 35, 85, 2, 21, 3, 73, 77, 69, 2, 239, + 240, 11, 83, 6, 40, 6, 81, 85, 65, 82, 69, 32, 87, 85, 4, 60, 9, 73, 78, + 84, 69, 82, 83, 69, 67, 84, 1, 2, 85, 78, 2, 199, 202, 11, 73, 2, 11, 77, + 2, 199, 237, 11, 77, 7, 69, 15, 32, 79, 80, 69, 82, 65, 84, 79, 82, 32, + 87, 73, 84, 72, 32, 4, 170, 167, 11, 80, 215, 186, 3, 68, 2, 11, 69, 2, + 129, 216, 12, 2, 32, 86, 188, 2, 170, 2, 66, 252, 4, 10, 71, 32, 77, 85, 78, 68, 65, 82, 73, 32, 142, 4, 73, 52, 2, 78, 68, 208, 4, 7, 84, 73, 79, - 78, 65, 76, 32, 132, 214, 1, 2, 85, 83, 148, 147, 8, 5, 77, 69, 32, 66, + 78, 65, 76, 32, 184, 209, 1, 2, 85, 83, 148, 147, 8, 5, 77, 69, 32, 66, 65, 220, 218, 3, 7, 90, 65, 82, 32, 65, 77, 85, 164, 163, 1, 8, 82, 82, 79, 87, 32, 78, 79, 45, 231, 62, 75, 82, 52, 7, 65, 84, 65, 69, 65, 78, - 32, 155, 177, 15, 76, 80, 160, 1, 7, 76, 69, 84, 84, 69, 82, 32, 236, 2, - 7, 78, 85, 77, 66, 69, 82, 32, 237, 253, 9, 16, 67, 82, 85, 67, 73, 70, + 32, 207, 172, 15, 76, 80, 160, 1, 7, 76, 69, 84, 84, 69, 82, 32, 236, 2, + 7, 78, 85, 77, 66, 69, 82, 32, 161, 249, 9, 16, 67, 82, 85, 67, 73, 70, 79, 82, 77, 32, 78, 85, 77, 66, 69, 82, 62, 236, 1, 6, 70, 73, 78, 65, - 76, 32, 134, 132, 2, 84, 242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82, + 76, 32, 186, 255, 1, 84, 242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82, 142, 220, 2, 65, 50, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 87, 218, 103, 80, 171, 4, 77, - 18, 222, 251, 2, 65, 54, 76, 190, 168, 4, 83, 190, 3, 89, 174, 213, 1, - 75, 174, 81, 66, 170, 225, 4, 78, 222, 105, 72, 171, 4, 77, 16, 238, 252, + 18, 146, 247, 2, 65, 54, 76, 190, 168, 4, 83, 190, 3, 89, 174, 213, 1, + 75, 174, 81, 66, 170, 225, 4, 78, 222, 105, 72, 171, 4, 77, 16, 162, 248, 2, 84, 202, 170, 4, 79, 255, 148, 6, 70, 84, 84, 7, 76, 69, 84, 84, 69, - 82, 32, 164, 2, 5, 83, 73, 71, 78, 32, 139, 184, 13, 68, 54, 42, 65, 50, - 69, 66, 73, 50, 79, 47, 85, 11, 190, 156, 15, 78, 202, 17, 66, 2, 72, 3, - 74, 15, 234, 175, 13, 78, 158, 114, 76, 166, 111, 84, 174, 28, 71, 3, 77, - 11, 246, 230, 14, 68, 162, 70, 72, 2, 83, 3, 84, 11, 146, 172, 15, 78, - 86, 76, 2, 80, 3, 89, 11, 186, 172, 15, 67, 2, 68, 2, 75, 3, 82, 10, 100, - 2, 77, 85, 20, 3, 83, 85, 84, 178, 118, 73, 184, 250, 10, 2, 79, 74, 197, - 129, 3, 3, 84, 79, 89, 2, 191, 242, 14, 72, 2, 131, 170, 15, 85, 4, 176, - 198, 11, 5, 76, 32, 80, 79, 76, 187, 15, 82, 133, 1, 41, 8, 73, 78, 65, + 82, 32, 164, 2, 5, 83, 73, 71, 78, 32, 191, 179, 13, 68, 54, 42, 65, 50, + 69, 66, 73, 50, 79, 47, 85, 11, 242, 151, 15, 78, 202, 17, 66, 2, 72, 3, + 74, 15, 158, 171, 13, 78, 158, 114, 76, 166, 111, 84, 174, 28, 71, 3, 77, + 11, 170, 226, 14, 68, 162, 70, 72, 2, 83, 3, 84, 11, 198, 167, 15, 78, + 86, 76, 2, 80, 3, 89, 11, 238, 167, 15, 67, 2, 68, 2, 75, 3, 82, 10, 100, + 2, 77, 85, 20, 3, 83, 85, 84, 230, 113, 73, 184, 250, 10, 2, 79, 74, 197, + 129, 3, 3, 84, 79, 89, 2, 243, 237, 14, 72, 2, 183, 165, 15, 85, 4, 228, + 193, 11, 5, 76, 32, 80, 79, 76, 187, 15, 82, 133, 1, 41, 8, 73, 78, 65, 71, 65, 82, 73, 32, 130, 1, 140, 1, 7, 76, 69, 84, 84, 69, 82, 32, 248, 1, 5, 83, 73, 71, 78, 32, 52, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, - 32, 251, 230, 4, 72, 94, 210, 1, 86, 194, 201, 11, 65, 38, 68, 82, 82, + 32, 175, 226, 4, 72, 94, 210, 1, 86, 246, 196, 11, 65, 38, 68, 82, 82, 34, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 89, 186, 2, - 69, 3, 79, 6, 242, 152, 5, 79, 195, 142, 10, 65, 10, 230, 251, 9, 83, - 230, 208, 1, 65, 187, 151, 3, 86, 24, 234, 237, 4, 80, 166, 42, 86, 174, + 69, 3, 79, 6, 166, 148, 5, 79, 195, 142, 10, 65, 10, 154, 247, 9, 83, + 230, 208, 1, 65, 187, 151, 3, 86, 24, 158, 233, 4, 80, 166, 42, 86, 174, 183, 6, 65, 38, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 4, 162, 48, - 68, 175, 180, 14, 80, 4, 206, 165, 15, 83, 15, 72, 254, 4, 216, 1, 3, 71, + 68, 227, 175, 14, 80, 4, 130, 161, 15, 83, 15, 72, 254, 4, 216, 1, 3, 71, 65, 84, 192, 7, 6, 73, 84, 72, 69, 82, 32, 194, 3, 83, 136, 1, 2, 85, 84, - 242, 1, 87, 148, 16, 3, 88, 84, 32, 180, 191, 8, 4, 80, 84, 85, 78, 148, + 242, 1, 87, 148, 16, 3, 88, 84, 32, 232, 186, 8, 4, 80, 84, 85, 78, 148, 144, 3, 2, 67, 75, 166, 163, 2, 82, 235, 146, 1, 76, 162, 1, 152, 1, 4, - 73, 86, 69, 32, 129, 249, 12, 27, 69, 68, 32, 68, 79, 85, 66, 76, 69, 32, + 73, 86, 69, 32, 181, 244, 12, 27, 69, 68, 32, 68, 79, 85, 66, 76, 69, 32, 86, 69, 82, 84, 73, 67, 65, 76, 32, 66, 65, 82, 32, 68, 79, 85, 66, 160, 1, 152, 1, 8, 67, 73, 82, 67, 76, 69, 68, 32, 224, 1, 9, 68, 73, 65, 71, - 79, 78, 65, 76, 32, 184, 1, 8, 83, 81, 85, 65, 82, 69, 68, 32, 143, 212, + 79, 78, 65, 76, 32, 184, 1, 8, 83, 81, 85, 65, 82, 69, 68, 32, 195, 207, 8, 65, 78, 112, 5, 68, 73, 71, 73, 84, 28, 7, 78, 85, 77, 66, 69, 82, 32, - 180, 3, 2, 76, 65, 234, 245, 13, 84, 151, 4, 83, 2, 157, 174, 13, 2, 32, - 90, 20, 50, 84, 194, 133, 2, 69, 46, 70, 42, 78, 31, 83, 6, 130, 135, 2, - 72, 47, 87, 6, 38, 77, 238, 219, 13, 67, 183, 4, 68, 2, 49, 10, 73, 68, + 180, 3, 2, 76, 65, 158, 241, 13, 84, 151, 4, 83, 2, 209, 169, 13, 2, 32, + 90, 20, 50, 84, 246, 128, 2, 69, 46, 70, 42, 78, 31, 83, 6, 182, 130, 2, + 72, 47, 87, 6, 38, 77, 162, 215, 13, 67, 183, 4, 68, 2, 49, 10, 73, 68, 68, 76, 69, 32, 82, 73, 71, 72, 2, 17, 2, 84, 32, 2, 41, 8, 84, 79, 32, - 76, 79, 87, 69, 82, 2, 249, 152, 12, 2, 32, 67, 74, 142, 1, 76, 70, 85, - 202, 170, 12, 68, 138, 29, 81, 140, 131, 1, 2, 67, 82, 226, 19, 65, 234, - 19, 73, 2, 87, 150, 8, 82, 198, 159, 1, 80, 3, 83, 54, 26, 65, 199, 247, - 10, 69, 52, 217, 250, 8, 5, 84, 73, 78, 32, 67, 2, 219, 250, 13, 80, 18, + 76, 79, 87, 69, 82, 2, 173, 148, 12, 2, 32, 67, 74, 142, 1, 76, 70, 85, + 254, 165, 12, 68, 138, 29, 81, 140, 131, 1, 2, 67, 82, 226, 19, 65, 234, + 19, 73, 2, 87, 150, 8, 82, 198, 159, 1, 80, 3, 83, 54, 26, 65, 251, 242, + 10, 69, 52, 141, 246, 8, 5, 84, 73, 78, 32, 67, 2, 143, 246, 13, 80, 18, 158, 1, 65, 216, 1, 17, 71, 82, 69, 65, 84, 69, 82, 45, 84, 72, 65, 78, 32, 78, 79, 82, 32, 37, 14, 76, 69, 83, 83, 45, 84, 72, 65, 78, 32, 78, 79, 82, 32, 6, 92, 3, 32, 83, 85, 85, 16, 80, 80, 82, 79, 88, 73, 77, 65, - 84, 69, 76, 89, 32, 78, 79, 82, 4, 30, 66, 1, 3, 80, 69, 82, 2, 245, 250, - 6, 8, 83, 69, 84, 32, 79, 70, 32, 78, 2, 237, 48, 5, 32, 65, 67, 84, 85, - 6, 178, 150, 8, 69, 167, 237, 4, 76, 6, 142, 150, 8, 69, 131, 237, 4, 71, - 6, 26, 84, 227, 143, 13, 83, 4, 76, 5, 73, 78, 71, 32, 68, 145, 221, 10, - 8, 32, 87, 73, 84, 72, 32, 69, 71, 2, 217, 129, 8, 2, 79, 76, 64, 40, 4, - 82, 65, 76, 32, 211, 222, 14, 69, 62, 48, 6, 67, 72, 69, 83, 83, 32, 243, - 217, 14, 70, 60, 74, 75, 238, 182, 13, 66, 38, 69, 150, 5, 80, 22, 81, - 38, 82, 131, 2, 84, 20, 44, 5, 78, 73, 71, 72, 84, 147, 184, 13, 73, 15, - 191, 184, 13, 32, 246, 2, 70, 32, 184, 8, 2, 65, 32, 252, 6, 3, 76, 73, - 78, 155, 224, 3, 83, 174, 1, 90, 77, 64, 4, 83, 72, 69, 81, 20, 8, 84, - 65, 73, 32, 76, 85, 69, 32, 175, 248, 13, 76, 4, 25, 4, 79, 79, 78, 32, - 4, 190, 148, 8, 87, 183, 234, 5, 83, 2, 223, 199, 9, 69, 166, 1, 160, 1, + 84, 69, 76, 89, 32, 78, 79, 82, 4, 30, 66, 1, 3, 80, 69, 82, 2, 169, 246, + 6, 8, 83, 69, 84, 32, 79, 70, 32, 78, 2, 233, 48, 5, 32, 65, 67, 84, 85, + 6, 230, 145, 8, 69, 167, 237, 4, 76, 6, 194, 145, 8, 69, 131, 237, 4, 71, + 6, 26, 84, 151, 139, 13, 83, 4, 76, 5, 73, 78, 71, 32, 68, 197, 216, 10, + 8, 32, 87, 73, 84, 72, 32, 69, 71, 2, 141, 253, 7, 2, 79, 76, 64, 40, 4, + 82, 65, 76, 32, 135, 218, 14, 69, 62, 48, 6, 67, 72, 69, 83, 83, 32, 167, + 213, 14, 70, 60, 74, 75, 162, 178, 13, 66, 38, 69, 150, 5, 80, 22, 81, + 38, 82, 131, 2, 84, 20, 44, 5, 78, 73, 71, 72, 84, 199, 179, 13, 73, 15, + 243, 179, 13, 32, 246, 2, 70, 32, 184, 8, 2, 65, 32, 252, 6, 3, 76, 73, + 78, 207, 219, 3, 83, 174, 1, 90, 77, 64, 4, 83, 72, 69, 81, 20, 8, 84, + 65, 73, 32, 76, 85, 69, 32, 227, 243, 13, 76, 4, 25, 4, 79, 79, 78, 32, + 4, 242, 143, 8, 87, 183, 234, 5, 83, 2, 147, 195, 9, 69, 166, 1, 160, 1, 7, 76, 69, 84, 84, 69, 82, 32, 244, 2, 8, 83, 73, 71, 78, 32, 76, 65, 69, - 22, 84, 76, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 231, 154, 13, + 22, 84, 76, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 155, 150, 13, 68, 102, 76, 6, 70, 73, 78, 65, 76, 32, 68, 4, 72, 73, 71, 72, 1, 3, 76, - 79, 87, 14, 238, 147, 13, 78, 130, 254, 1, 66, 2, 68, 2, 75, 2, 77, 3, - 86, 44, 11, 32, 44, 146, 1, 75, 2, 88, 34, 83, 234, 153, 11, 78, 246, + 79, 87, 14, 162, 143, 13, 78, 130, 254, 1, 66, 2, 68, 2, 75, 2, 77, 3, + 86, 44, 11, 32, 44, 146, 1, 75, 2, 88, 34, 83, 158, 149, 11, 78, 246, 173, 3, 84, 82, 80, 138, 69, 66, 2, 68, 2, 70, 2, 72, 2, 76, 2, 77, 2, - 81, 2, 86, 3, 89, 4, 210, 141, 15, 86, 187, 2, 65, 4, 178, 141, 15, 85, - 187, 2, 65, 5, 203, 143, 15, 86, 6, 168, 160, 7, 3, 79, 78, 69, 221, 80, + 81, 2, 86, 3, 89, 4, 134, 137, 15, 86, 187, 2, 65, 4, 230, 136, 15, 85, + 187, 2, 65, 5, 255, 138, 15, 86, 6, 220, 155, 7, 3, 79, 78, 69, 221, 80, 8, 72, 65, 77, 32, 68, 73, 71, 73, 34, 110, 65, 46, 73, 30, 79, 38, 85, - 188, 191, 12, 11, 86, 79, 87, 69, 76, 32, 83, 72, 79, 82, 84, 215, 205, - 2, 69, 8, 222, 252, 10, 65, 158, 145, 4, 69, 3, 89, 4, 206, 141, 15, 73, - 3, 89, 9, 150, 252, 10, 65, 159, 145, 4, 89, 11, 242, 251, 10, 69, 158, + 240, 186, 12, 11, 86, 79, 87, 69, 76, 32, 83, 72, 79, 82, 84, 215, 205, + 2, 69, 8, 146, 248, 10, 65, 158, 145, 4, 69, 3, 89, 4, 130, 137, 15, 73, + 3, 89, 9, 202, 247, 10, 65, 159, 145, 4, 89, 11, 166, 247, 10, 69, 158, 145, 4, 85, 3, 89, 194, 1, 182, 1, 68, 106, 71, 72, 7, 76, 69, 84, 84, - 69, 82, 32, 214, 2, 83, 198, 23, 80, 190, 139, 1, 86, 210, 240, 7, 65, + 69, 82, 32, 214, 2, 83, 194, 23, 80, 246, 134, 1, 86, 210, 240, 7, 65, 180, 238, 1, 5, 73, 78, 83, 69, 82, 206, 175, 1, 67, 255, 196, 2, 79, 26, - 64, 6, 79, 85, 66, 76, 69, 32, 238, 170, 11, 65, 255, 235, 1, 73, 4, 222, - 170, 11, 68, 179, 138, 1, 67, 2, 11, 65, 2, 11, 80, 2, 17, 2, 32, 70, 2, - 189, 156, 11, 2, 73, 76, 108, 218, 1, 78, 62, 86, 238, 169, 11, 65, 38, + 64, 6, 79, 85, 66, 76, 69, 32, 162, 166, 11, 65, 255, 235, 1, 73, 4, 146, + 166, 11, 68, 179, 138, 1, 67, 2, 11, 65, 2, 11, 80, 2, 17, 2, 32, 70, 2, + 241, 151, 11, 2, 73, 76, 108, 218, 1, 78, 62, 86, 162, 165, 11, 65, 38, 68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 182, 196, 1, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 138, 69, 72, 2, 87, 2, - 89, 186, 2, 69, 3, 79, 14, 218, 192, 14, 71, 2, 89, 138, 69, 72, 2, 78, - 187, 2, 65, 10, 26, 69, 235, 176, 11, 79, 2, 157, 206, 12, 3, 68, 73, 67, - 22, 26, 73, 131, 202, 4, 65, 20, 44, 3, 71, 78, 32, 225, 174, 9, 2, 68, - 68, 18, 246, 232, 10, 67, 98, 78, 190, 66, 65, 190, 158, 1, 74, 228, 2, - 5, 70, 73, 78, 65, 76, 50, 85, 235, 245, 1, 86, 4, 219, 218, 14, 69, 4, - 178, 246, 9, 80, 231, 243, 3, 76, 6, 70, 78, 233, 237, 13, 11, 71, 72, - 84, 32, 87, 73, 84, 72, 32, 83, 84, 4, 252, 246, 7, 7, 69, 32, 80, 79, + 89, 186, 2, 69, 3, 79, 14, 142, 188, 14, 71, 2, 89, 138, 69, 72, 2, 78, + 187, 2, 65, 10, 26, 69, 159, 172, 11, 79, 2, 209, 201, 12, 3, 68, 73, 67, + 22, 26, 73, 183, 197, 4, 65, 20, 44, 3, 71, 78, 32, 149, 170, 9, 2, 68, + 68, 18, 170, 228, 10, 67, 98, 78, 190, 66, 65, 190, 158, 1, 74, 228, 2, + 5, 70, 73, 78, 65, 76, 50, 85, 235, 245, 1, 86, 4, 143, 214, 14, 69, 4, + 230, 241, 9, 80, 231, 243, 3, 76, 6, 70, 78, 157, 233, 13, 11, 71, 72, + 84, 32, 87, 73, 84, 72, 32, 83, 84, 4, 176, 242, 7, 7, 69, 32, 80, 79, 73, 78, 84, 179, 139, 7, 74, 124, 152, 1, 3, 67, 79, 77, 130, 3, 68, 78, - 76, 156, 4, 4, 72, 73, 71, 72, 72, 7, 83, 89, 77, 66, 79, 76, 32, 134, - 223, 7, 69, 229, 193, 1, 3, 84, 65, 77, 20, 52, 7, 66, 73, 78, 73, 78, - 71, 32, 159, 128, 15, 77, 18, 88, 3, 68, 79, 85, 32, 5, 76, 79, 78, 71, - 32, 78, 78, 33, 6, 83, 72, 79, 82, 84, 32, 2, 149, 129, 14, 3, 66, 76, - 69, 8, 142, 1, 72, 34, 76, 198, 138, 11, 82, 21, 7, 68, 69, 83, 67, 69, - 78, 68, 2, 11, 65, 2, 187, 216, 10, 83, 6, 34, 72, 34, 76, 199, 138, 11, - 82, 2, 141, 139, 11, 3, 73, 71, 72, 2, 237, 138, 11, 2, 79, 87, 24, 152, - 1, 4, 65, 78, 84, 65, 232, 222, 12, 4, 79, 82, 79, 77, 143, 44, 73, 70, + 76, 156, 4, 4, 72, 73, 71, 72, 72, 7, 83, 89, 77, 66, 79, 76, 32, 186, + 218, 7, 69, 229, 193, 1, 3, 84, 65, 77, 20, 52, 7, 66, 73, 78, 73, 78, + 71, 32, 211, 251, 14, 77, 18, 88, 3, 68, 79, 85, 32, 5, 76, 79, 78, 71, + 32, 78, 78, 33, 6, 83, 72, 79, 82, 84, 32, 2, 201, 252, 13, 3, 66, 76, + 69, 8, 142, 1, 72, 34, 76, 250, 133, 11, 82, 21, 7, 68, 69, 83, 67, 69, + 78, 68, 2, 11, 65, 2, 239, 211, 10, 83, 6, 34, 72, 34, 76, 251, 133, 11, + 82, 2, 193, 134, 11, 3, 73, 71, 72, 2, 161, 134, 11, 2, 79, 87, 24, 152, + 1, 4, 65, 78, 84, 65, 156, 218, 12, 4, 79, 82, 79, 77, 143, 44, 73, 70, 76, 4, 65, 74, 65, 78, 32, 6, 69, 84, 84, 69, 82, 32, 173, 3, 2, 79, 87, - 2, 209, 178, 13, 3, 89, 65, 76, 66, 228, 1, 2, 68, 65, 42, 74, 90, 78, - 234, 158, 11, 82, 210, 147, 1, 79, 138, 76, 67, 138, 189, 1, 69, 250, 18, + 2, 133, 174, 13, 3, 89, 65, 76, 66, 228, 1, 2, 68, 65, 42, 74, 90, 78, + 158, 154, 11, 82, 210, 147, 1, 79, 138, 76, 67, 138, 189, 1, 69, 250, 18, 71, 242, 42, 66, 2, 70, 2, 72, 2, 75, 2, 76, 2, 77, 2, 80, 2, 83, 2, 84, - 2, 87, 2, 89, 186, 2, 65, 2, 73, 3, 85, 5, 165, 194, 11, 5, 71, 66, 65, - 83, 73, 8, 40, 4, 79, 78, 65, 32, 151, 252, 14, 65, 6, 234, 254, 12, 67, - 242, 250, 1, 74, 3, 82, 11, 26, 65, 1, 2, 89, 65, 5, 169, 141, 8, 5, 32, - 87, 79, 76, 79, 2, 29, 5, 32, 84, 79, 78, 69, 2, 17, 2, 32, 65, 2, 223, - 211, 8, 80, 4, 68, 7, 71, 66, 65, 75, 85, 82, 85, 1, 6, 79, 79, 32, 68, - 69, 78, 2, 143, 164, 13, 78, 186, 1, 94, 32, 156, 3, 2, 77, 73, 118, 78, - 150, 1, 82, 238, 7, 84, 206, 213, 6, 83, 223, 215, 7, 45, 18, 202, 1, 66, - 96, 5, 69, 78, 84, 82, 89, 22, 80, 224, 186, 2, 15, 79, 78, 69, 32, 85, + 2, 87, 2, 89, 186, 2, 65, 2, 73, 3, 85, 5, 217, 189, 11, 5, 71, 66, 65, + 83, 73, 8, 40, 4, 79, 78, 65, 32, 203, 247, 14, 65, 6, 158, 250, 12, 67, + 242, 250, 1, 74, 3, 82, 11, 26, 65, 1, 2, 89, 65, 5, 221, 136, 8, 5, 32, + 87, 79, 76, 79, 2, 29, 5, 32, 84, 79, 78, 69, 2, 17, 2, 32, 65, 2, 147, + 207, 8, 80, 4, 68, 7, 71, 66, 65, 75, 85, 82, 85, 1, 6, 79, 79, 32, 68, + 69, 78, 2, 195, 159, 13, 78, 186, 1, 94, 32, 156, 3, 2, 77, 73, 118, 78, + 150, 1, 82, 234, 7, 84, 134, 209, 6, 83, 223, 215, 7, 45, 18, 202, 1, 66, + 96, 5, 69, 78, 84, 82, 89, 22, 80, 148, 182, 2, 15, 79, 78, 69, 32, 85, 78, 68, 69, 82, 32, 69, 73, 71, 72, 84, 164, 134, 4, 9, 77, 79, 66, 73, 76, 69, 32, 80, 72, 189, 30, 3, 83, 77, 79, 4, 52, 4, 82, 69, 65, 75, - 173, 137, 2, 3, 73, 67, 89, 2, 17, 2, 32, 72, 2, 199, 212, 13, 69, 5, - 251, 239, 13, 32, 4, 60, 6, 69, 68, 69, 83, 84, 82, 193, 212, 9, 3, 73, - 82, 65, 2, 237, 174, 11, 2, 73, 65, 4, 36, 5, 78, 65, 76, 32, 68, 59, 83, - 2, 209, 223, 13, 9, 73, 71, 73, 84, 32, 83, 72, 65, 80, 2, 139, 160, 11, - 77, 6, 38, 45, 221, 228, 9, 3, 70, 79, 82, 4, 76, 8, 66, 82, 69, 65, 75, - 73, 78, 71, 181, 169, 2, 5, 80, 79, 84, 65, 66, 2, 161, 227, 6, 2, 32, - 72, 97, 56, 2, 84, 72, 146, 11, 77, 181, 244, 10, 3, 68, 73, 67, 88, 42, - 32, 225, 210, 6, 4, 69, 65, 83, 84, 86, 96, 5, 69, 65, 83, 84, 32, 148, - 2, 6, 73, 78, 68, 73, 67, 32, 221, 1, 5, 87, 69, 83, 84, 32, 32, 82, 65, - 150, 248, 6, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68, 18, 83, 251, 58, - 87, 14, 40, 4, 82, 82, 79, 87, 255, 243, 6, 78, 13, 11, 32, 10, 96, 9, - 67, 82, 79, 83, 83, 73, 78, 71, 32, 248, 2, 2, 65, 78, 202, 243, 6, 87, - 131, 145, 5, 70, 4, 190, 198, 3, 83, 187, 175, 3, 78, 20, 54, 80, 60, 3, - 81, 85, 65, 66, 82, 199, 132, 1, 70, 2, 37, 7, 76, 65, 67, 69, 72, 79, - 76, 2, 251, 180, 4, 68, 4, 228, 180, 4, 2, 82, 84, 249, 248, 9, 5, 78, - 84, 73, 84, 89, 2, 17, 2, 85, 80, 2, 179, 167, 4, 69, 34, 82, 65, 166, - 244, 6, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68, 18, 83, 251, 58, 87, 16, - 34, 78, 33, 4, 82, 82, 79, 87, 2, 197, 195, 3, 3, 68, 32, 83, 15, 11, 32, - 12, 84, 3, 84, 79, 32, 182, 239, 6, 67, 40, 3, 65, 78, 68, 234, 2, 87, - 131, 145, 5, 70, 4, 190, 240, 6, 67, 173, 216, 6, 4, 76, 79, 78, 71, 56, - 54, 32, 236, 5, 5, 67, 72, 69, 68, 32, 207, 2, 69, 38, 162, 1, 65, 132, - 2, 4, 78, 79, 82, 77, 78, 80, 46, 83, 170, 1, 84, 154, 227, 7, 69, 196, - 33, 7, 73, 68, 69, 78, 84, 73, 67, 190, 203, 4, 71, 38, 76, 135, 80, 67, - 10, 88, 3, 32, 83, 85, 52, 7, 78, 32, 69, 76, 69, 77, 69, 28, 2, 83, 89, - 171, 134, 8, 76, 4, 30, 66, 1, 3, 80, 69, 82, 2, 29, 2, 83, 69, 2, 11, - 78, 2, 211, 125, 84, 2, 37, 7, 77, 80, 84, 79, 84, 73, 67, 2, 17, 2, 65, - 76, 2, 233, 134, 8, 2, 76, 89, 4, 149, 201, 6, 14, 65, 76, 32, 83, 85, - 66, 71, 82, 79, 85, 80, 32, 79, 70, 2, 185, 134, 8, 6, 65, 82, 65, 76, - 76, 69, 6, 48, 6, 81, 85, 65, 82, 69, 32, 167, 224, 13, 73, 4, 68, 5, 73, - 77, 65, 71, 69, 1, 8, 79, 82, 73, 71, 73, 78, 65, 76, 2, 21, 3, 32, 79, - 70, 2, 151, 199, 6, 32, 4, 174, 214, 10, 82, 207, 242, 1, 73, 8, 58, 76, - 40, 4, 82, 73, 71, 72, 133, 1, 3, 85, 80, 80, 4, 36, 2, 69, 70, 133, 1, - 2, 79, 87, 2, 89, 20, 84, 32, 83, 69, 77, 73, 67, 73, 82, 67, 76, 69, 32, - 87, 73, 84, 72, 32, 84, 72, 2, 17, 2, 82, 69, 2, 187, 145, 13, 69, 2, 11, - 69, 2, 41, 8, 82, 32, 82, 73, 71, 72, 84, 45, 2, 205, 148, 3, 6, 83, 72, - 65, 68, 79, 87, 11, 34, 32, 53, 4, 66, 79, 79, 75, 4, 17, 2, 80, 65, 4, - 142, 204, 14, 71, 215, 22, 68, 5, 81, 18, 32, 87, 73, 84, 72, 32, 68, 69, - 67, 79, 82, 65, 84, 73, 86, 69, 32, 67, 2, 179, 142, 4, 79, 186, 6, 102, - 77, 176, 3, 4, 83, 72, 85, 32, 216, 183, 5, 8, 84, 32, 65, 78, 68, 32, - 66, 79, 191, 169, 8, 76, 26, 36, 4, 66, 69, 82, 32, 247, 2, 69, 24, 58, - 69, 50, 70, 42, 83, 66, 84, 57, 4, 78, 73, 78, 69, 4, 204, 1, 3, 73, 71, - 72, 21, 3, 76, 69, 86, 4, 144, 1, 2, 79, 85, 13, 2, 73, 70, 6, 34, 73, - 85, 4, 69, 86, 69, 78, 4, 82, 88, 223, 142, 14, 71, 8, 40, 2, 72, 73, 46, - 69, 21, 2, 87, 69, 2, 11, 82, 2, 17, 2, 84, 69, 2, 11, 69, 2, 203, 204, - 7, 78, 4, 180, 204, 7, 3, 76, 86, 69, 1, 3, 78, 84, 89, 2, 255, 247, 6, - 82, 154, 6, 72, 12, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 215, - 182, 12, 73, 152, 6, 18, 49, 87, 50, 160, 2, 222, 1, 55, 2, 56, 2, 57, 2, - 65, 2, 66, 2, 67, 2, 68, 2, 69, 3, 70, 248, 3, 138, 1, 48, 2, 49, 2, 50, - 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, - 68, 2, 69, 143, 1, 70, 32, 242, 218, 14, 48, 2, 49, 2, 50, 2, 51, 2, 52, - 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, 68, 2, 69, 3, - 70, 24, 230, 217, 14, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, - 55, 2, 56, 2, 57, 2, 65, 3, 66, 142, 1, 118, 76, 226, 3, 83, 164, 2, 5, - 84, 79, 78, 69, 45, 196, 230, 7, 8, 67, 73, 82, 67, 76, 69, 68, 32, 179, - 247, 4, 68, 92, 88, 6, 69, 84, 84, 69, 82, 32, 173, 163, 1, 10, 79, 71, - 79, 71, 82, 65, 77, 32, 78, 89, 90, 130, 2, 78, 90, 84, 166, 220, 7, 88, - 182, 230, 2, 65, 144, 1, 2, 72, 65, 226, 51, 82, 210, 147, 1, 79, 150, - 61, 68, 2, 77, 2, 80, 254, 203, 1, 69, 234, 61, 67, 2, 70, 2, 71, 2, 75, - 2, 76, 2, 81, 2, 83, 2, 86, 2, 89, 2, 90, 186, 2, 73, 2, 85, 3, 87, 22, - 86, 84, 174, 200, 12, 80, 230, 137, 2, 67, 2, 75, 2, 81, 2, 82, 2, 89, - 187, 2, 65, 6, 142, 210, 14, 83, 2, 88, 187, 2, 65, 14, 64, 4, 73, 71, - 78, 32, 189, 1, 7, 89, 76, 76, 65, 66, 76, 69, 12, 56, 4, 70, 79, 82, 32, - 129, 213, 13, 4, 88, 87, 32, 88, 10, 204, 9, 2, 76, 79, 230, 164, 3, 84, - 156, 94, 8, 73, 78, 86, 69, 82, 84, 69, 66, 232, 144, 4, 3, 65, 78, 73, - 195, 177, 2, 80, 2, 177, 132, 12, 4, 32, 76, 69, 78, 14, 250, 209, 14, - 66, 2, 68, 2, 71, 2, 74, 2, 77, 2, 83, 3, 86, 254, 14, 226, 2, 66, 226, - 1, 67, 226, 5, 71, 244, 6, 4, 73, 76, 32, 68, 22, 76, 198, 69, 78, 150, - 5, 80, 234, 7, 82, 242, 10, 83, 188, 8, 2, 84, 84, 154, 8, 85, 248, 1, 3, - 86, 69, 82, 254, 170, 2, 89, 148, 151, 4, 14, 70, 70, 73, 67, 69, 32, 66, - 85, 73, 76, 68, 73, 78, 71, 154, 185, 1, 72, 146, 132, 2, 75, 210, 250, - 1, 68, 194, 64, 77, 246, 9, 87, 211, 139, 1, 88, 10, 132, 1, 6, 76, 73, - 81, 85, 69, 32, 252, 158, 2, 9, 83, 69, 82, 86, 69, 82, 32, 69, 89, 189, - 29, 8, 74, 69, 67, 84, 32, 82, 69, 80, 6, 172, 203, 4, 13, 65, 78, 71, - 76, 69, 32, 79, 80, 69, 78, 73, 78, 71, 171, 241, 1, 72, 28, 56, 2, 82, - 32, 234, 4, 84, 225, 198, 5, 3, 67, 85, 76, 22, 156, 1, 11, 65, 77, 79, - 85, 78, 84, 32, 79, 70, 32, 67, 22, 66, 198, 1, 67, 118, 68, 106, 70, 0, - 10, 73, 78, 86, 69, 82, 84, 69, 68, 32, 70, 243, 241, 12, 72, 2, 203, - 184, 5, 72, 6, 136, 1, 15, 82, 65, 78, 67, 72, 32, 66, 65, 78, 75, 32, - 73, 68, 69, 78, 156, 131, 5, 5, 69, 76, 84, 32, 66, 205, 144, 6, 3, 79, - 87, 32, 2, 21, 3, 84, 73, 70, 2, 11, 73, 2, 131, 132, 11, 67, 4, 92, 17, - 85, 83, 84, 79, 77, 69, 82, 32, 65, 67, 67, 79, 85, 78, 84, 32, 78, 243, - 201, 1, 72, 2, 159, 161, 6, 85, 4, 44, 5, 79, 85, 66, 76, 69, 147, 221, - 12, 65, 2, 11, 32, 2, 11, 66, 2, 157, 163, 7, 3, 65, 67, 75, 2, 191, 134, - 14, 79, 4, 160, 251, 8, 4, 65, 71, 79, 78, 197, 195, 3, 2, 79, 80, 60, - 48, 4, 72, 65, 77, 32, 185, 195, 14, 2, 79, 78, 58, 122, 70, 0, 10, 82, - 69, 86, 69, 82, 83, 69, 68, 32, 70, 36, 7, 76, 69, 84, 84, 69, 82, 32, - 149, 254, 3, 3, 83, 80, 65, 2, 161, 139, 4, 4, 69, 65, 84, 72, 52, 196, - 1, 2, 65, 73, 22, 66, 2, 80, 34, 67, 36, 2, 69, 65, 64, 2, 70, 69, 22, - 71, 22, 73, 58, 76, 2, 82, 22, 78, 46, 79, 34, 83, 46, 85, 222, 184, 1, - 77, 170, 9, 68, 189, 227, 11, 3, 84, 73, 78, 2, 155, 179, 14, 76, 2, 11, - 69, 2, 219, 190, 12, 73, 4, 226, 151, 8, 69, 183, 161, 4, 79, 6, 138, 1, - 66, 2, 68, 153, 143, 4, 6, 77, 72, 65, 78, 67, 72, 2, 247, 175, 9, 65, 2, - 183, 187, 13, 79, 4, 32, 2, 79, 68, 191, 194, 13, 70, 2, 195, 137, 8, 72, - 2, 243, 154, 12, 85, 4, 132, 172, 13, 3, 71, 69, 65, 247, 69, 73, 4, 218, - 241, 13, 78, 227, 79, 82, 4, 202, 225, 12, 65, 229, 93, 3, 84, 82, 65, 6, - 60, 5, 73, 76, 76, 69, 65, 186, 187, 12, 65, 251, 132, 2, 82, 2, 207, - 240, 13, 78, 2, 247, 148, 13, 82, 182, 8, 38, 32, 142, 11, 68, 255, 183, - 13, 73, 184, 1, 64, 6, 67, 72, 73, 75, 73, 32, 205, 6, 5, 79, 78, 65, 76, - 32, 96, 132, 1, 7, 76, 69, 84, 84, 69, 82, 32, 148, 3, 2, 77, 85, 62, 71, - 74, 80, 164, 216, 3, 2, 82, 69, 202, 237, 8, 68, 211, 173, 1, 65, 60, 50, - 65, 98, 69, 54, 73, 50, 76, 62, 79, 51, 85, 16, 50, 65, 210, 188, 14, 78, - 86, 71, 2, 76, 3, 84, 8, 162, 189, 14, 74, 2, 75, 2, 77, 3, 87, 8, 214, - 246, 13, 68, 198, 13, 82, 222, 56, 78, 3, 80, 8, 250, 170, 14, 78, 202, - 17, 72, 2, 82, 3, 83, 12, 162, 170, 10, 65, 242, 145, 4, 69, 2, 73, 2, - 79, 3, 85, 8, 170, 159, 14, 84, 174, 28, 66, 2, 72, 3, 86, 8, 198, 235, - 13, 78, 226, 79, 67, 2, 68, 3, 89, 4, 56, 2, 45, 71, 209, 206, 12, 6, 32, - 84, 84, 85, 68, 68, 2, 205, 206, 12, 13, 65, 65, 72, 76, 65, 65, 32, 84, - 84, 85, 68, 68, 65, 6, 84, 11, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, - 32, 177, 224, 6, 4, 72, 65, 65, 82, 4, 48, 8, 68, 79, 85, 66, 76, 69, 32, - 77, 3, 77, 2, 185, 242, 13, 3, 85, 67, 65, 88, 100, 7, 76, 69, 84, 84, - 69, 82, 32, 192, 2, 5, 83, 73, 71, 78, 32, 206, 193, 8, 65, 207, 255, 3, - 68, 60, 42, 65, 54, 69, 58, 73, 54, 79, 59, 85, 13, 178, 183, 14, 66, 2, - 68, 2, 72, 2, 76, 3, 87, 13, 158, 231, 13, 78, 226, 79, 67, 2, 71, 2, 72, - 3, 83, 13, 238, 205, 8, 84, 218, 232, 5, 68, 2, 78, 3, 80, 13, 182, 253, - 13, 82, 138, 56, 78, 86, 77, 2, 79, 3, 89, 13, 186, 239, 13, 68, 218, 52, - 78, 202, 17, 74, 2, 75, 3, 82, 6, 58, 73, 144, 246, 12, 4, 72, 79, 68, - 68, 239, 153, 1, 77, 2, 131, 182, 1, 75, 252, 6, 34, 32, 165, 57, 3, 69, - 82, 32, 246, 6, 240, 2, 8, 67, 72, 73, 78, 69, 83, 69, 32, 44, 10, 72, - 85, 78, 71, 65, 82, 73, 65, 78, 32, 128, 7, 7, 73, 84, 65, 76, 73, 67, - 32, 212, 4, 14, 78, 79, 82, 84, 72, 32, 65, 82, 65, 66, 73, 65, 78, 32, - 196, 4, 3, 80, 69, 82, 216, 13, 2, 83, 79, 144, 13, 14, 84, 85, 82, 75, - 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 132, 7, 7, 85, 89, 71, 72, 85, - 82, 32, 171, 225, 11, 75, 4, 146, 139, 12, 73, 241, 96, 3, 72, 79, 79, - 216, 1, 96, 6, 67, 65, 80, 73, 84, 65, 0, 4, 83, 77, 65, 76, 233, 5, 7, - 78, 85, 77, 66, 69, 82, 32, 102, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, - 32, 102, 214, 1, 65, 54, 69, 168, 2, 10, 78, 73, 75, 79, 76, 83, 66, 85, - 82, 71, 0, 9, 82, 85, 68, 73, 77, 69, 78, 84, 65, 42, 79, 32, 5, 83, 72, - 79, 82, 84, 22, 85, 168, 242, 3, 5, 67, 76, 79, 83, 69, 243, 171, 8, 73, - 11, 154, 240, 12, 77, 218, 119, 78, 162, 70, 65, 3, 75, 63, 178, 1, 77, - 22, 78, 78, 83, 182, 130, 10, 67, 254, 23, 71, 2, 76, 2, 84, 198, 135, 2, - 90, 218, 137, 2, 66, 2, 68, 2, 69, 2, 70, 2, 72, 2, 74, 2, 75, 2, 80, 2, - 82, 3, 86, 5, 171, 172, 14, 80, 11, 34, 84, 246, 171, 14, 67, 3, 89, 5, - 197, 149, 2, 5, 45, 83, 72, 65, 80, 5, 203, 171, 14, 90, 4, 11, 32, 4, - 214, 148, 14, 79, 3, 85, 7, 186, 148, 14, 69, 215, 22, 79, 2, 131, 237, - 13, 32, 9, 194, 167, 14, 78, 154, 3, 83, 3, 85, 12, 210, 4, 70, 242, 131, - 6, 79, 239, 203, 6, 84, 78, 80, 7, 76, 69, 84, 84, 69, 82, 32, 169, 3, 8, - 78, 85, 77, 69, 82, 65, 76, 32, 70, 190, 1, 69, 90, 75, 50, 83, 36, 3, - 78, 79, 82, 202, 207, 10, 85, 186, 202, 1, 73, 166, 140, 1, 80, 2, 84, - 150, 83, 67, 186, 22, 66, 2, 68, 2, 72, 2, 86, 2, 89, 2, 90, 214, 22, 65, - 3, 79, 23, 214, 254, 9, 83, 194, 159, 2, 82, 254, 203, 1, 75, 222, 61, - 70, 2, 76, 2, 77, 3, 78, 8, 194, 144, 14, 72, 214, 22, 65, 2, 69, 3, 85, - 4, 32, 2, 79, 85, 243, 143, 14, 72, 2, 29, 5, 84, 72, 69, 82, 78, 2, 253, - 154, 13, 2, 32, 84, 8, 38, 70, 222, 207, 12, 84, 215, 58, 79, 4, 11, 73, - 4, 242, 181, 12, 70, 143, 217, 1, 86, 64, 76, 7, 76, 69, 84, 84, 69, 82, - 32, 209, 3, 7, 78, 85, 77, 66, 69, 82, 32, 58, 210, 1, 65, 38, 71, 38, - 72, 30, 75, 38, 84, 74, 90, 234, 106, 77, 140, 158, 3, 2, 69, 83, 238, - 162, 3, 66, 2, 70, 2, 82, 2, 89, 182, 203, 3, 78, 154, 237, 1, 76, 210, - 58, 68, 146, 1, 81, 134, 3, 87, 131, 56, 83, 4, 134, 194, 3, 76, 167, - 145, 10, 73, 4, 254, 243, 12, 72, 191, 156, 1, 69, 4, 178, 161, 14, 65, - 3, 69, 4, 166, 180, 7, 72, 223, 236, 5, 65, 8, 34, 72, 210, 160, 14, 65, - 3, 69, 4, 142, 150, 13, 65, 195, 138, 1, 69, 4, 11, 65, 4, 206, 209, 13, - 73, 227, 79, 72, 6, 190, 153, 6, 84, 163, 236, 6, 79, 180, 1, 64, 11, 77, - 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 183, 5, 83, 76, 228, 1, 2, 67, - 72, 22, 68, 66, 69, 22, 73, 30, 77, 2, 78, 30, 80, 22, 83, 70, 84, 50, - 86, 38, 89, 94, 90, 254, 195, 6, 76, 2, 82, 214, 227, 2, 71, 150, 170, 2, - 79, 222, 208, 1, 66, 246, 40, 65, 254, 31, 75, 174, 45, 72, 187, 2, 85, - 2, 215, 216, 7, 69, 6, 26, 90, 183, 138, 14, 79, 4, 134, 167, 9, 72, 187, - 210, 4, 73, 5, 231, 157, 14, 70, 7, 210, 157, 14, 65, 3, 69, 2, 213, 134, - 14, 2, 69, 78, 2, 131, 198, 6, 69, 6, 26, 72, 151, 137, 14, 73, 4, 228, - 165, 9, 3, 67, 72, 79, 3, 79, 4, 26, 83, 211, 136, 14, 65, 2, 191, 247, - 13, 73, 4, 142, 165, 9, 79, 171, 190, 4, 69, 14, 60, 2, 69, 82, 218, 178, - 8, 65, 146, 215, 5, 82, 203, 17, 85, 7, 174, 155, 14, 73, 3, 85, 4, 142, - 164, 9, 72, 187, 210, 4, 65, 104, 88, 4, 73, 65, 78, 32, 241, 5, 13, 79, - 78, 65, 76, 32, 67, 79, 77, 80, 85, 84, 69, 82, 100, 80, 7, 78, 85, 77, - 66, 69, 82, 32, 80, 5, 83, 73, 71, 78, 32, 251, 222, 10, 87, 10, 42, 84, - 234, 188, 8, 72, 255, 192, 4, 79, 6, 238, 230, 1, 87, 199, 226, 11, 69, - 88, 210, 1, 65, 86, 66, 62, 68, 98, 74, 2, 86, 30, 84, 42, 88, 182, 111, - 71, 2, 75, 2, 78, 2, 82, 150, 206, 9, 77, 146, 143, 3, 83, 218, 69, 67, - 2, 70, 2, 72, 2, 76, 2, 80, 2, 89, 2, 90, 186, 2, 73, 3, 85, 9, 45, 9, - 85, 82, 65, 77, 65, 90, 68, 65, 65, 7, 170, 239, 6, 45, 139, 165, 7, 72, - 6, 38, 65, 213, 177, 10, 3, 85, 85, 77, 5, 231, 147, 14, 71, 10, 34, 65, - 234, 149, 14, 73, 3, 85, 7, 37, 7, 72, 89, 65, 65, 85, 83, 72, 5, 255, - 237, 6, 45, 4, 170, 149, 14, 65, 3, 73, 6, 214, 146, 14, 72, 186, 2, 65, - 3, 85, 4, 152, 220, 11, 8, 83, 72, 65, 65, 89, 65, 84, 72, 207, 184, 2, - 65, 5, 181, 147, 5, 31, 32, 87, 73, 84, 72, 32, 77, 79, 78, 73, 84, 79, - 82, 32, 73, 78, 32, 80, 79, 82, 84, 82, 65, 73, 84, 32, 79, 82, 73, 69, - 78, 144, 1, 92, 6, 71, 68, 73, 65, 78, 32, 141, 7, 12, 85, 84, 72, 32, - 65, 82, 65, 66, 73, 65, 78, 32, 80, 58, 70, 74, 76, 145, 5, 7, 78, 85, - 77, 66, 69, 82, 32, 2, 11, 82, 2, 201, 237, 11, 10, 65, 67, 84, 73, 79, - 78, 32, 79, 78, 69, 60, 76, 6, 69, 84, 84, 69, 82, 32, 149, 4, 8, 73, 71, - 65, 84, 85, 82, 69, 32, 58, 234, 1, 65, 96, 6, 70, 73, 78, 65, 76, 32, - 200, 1, 5, 82, 69, 83, 72, 45, 162, 216, 1, 76, 194, 170, 4, 71, 90, 90, - 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, - 78, 134, 2, 84, 2, 87, 218, 103, 80, 171, 4, 77, 6, 26, 76, 131, 143, 13, - 89, 4, 192, 133, 6, 8, 84, 69, 82, 78, 65, 84, 69, 32, 155, 214, 1, 69, - 18, 116, 3, 78, 85, 78, 0, 5, 83, 65, 68, 72, 69, 0, 3, 84, 65, 87, 190, - 216, 1, 65, 134, 211, 6, 66, 135, 203, 5, 72, 5, 41, 8, 32, 87, 73, 84, - 72, 32, 86, 69, 2, 133, 220, 5, 4, 82, 84, 73, 67, 2, 253, 215, 1, 6, 65, - 89, 73, 78, 45, 68, 18, 42, 84, 234, 131, 6, 79, 255, 148, 6, 70, 10, 42, - 72, 162, 217, 1, 87, 199, 226, 11, 69, 4, 162, 153, 12, 82, 159, 2, 73, - 64, 60, 7, 76, 69, 84, 84, 69, 82, 32, 245, 3, 3, 78, 85, 77, 58, 202, 1, - 65, 38, 68, 74, 71, 34, 75, 34, 83, 78, 84, 254, 43, 90, 254, 166, 1, 76, - 50, 81, 214, 205, 1, 82, 246, 221, 2, 89, 198, 207, 1, 72, 150, 87, 66, - 170, 225, 4, 78, 134, 2, 87, 218, 103, 70, 171, 4, 77, 4, 146, 168, 3, - 76, 167, 145, 10, 89, 6, 32, 2, 72, 65, 151, 212, 1, 65, 4, 246, 166, 8, - 76, 207, 180, 5, 68, 4, 134, 45, 72, 203, 209, 5, 73, 4, 146, 213, 7, 65, - 163, 81, 72, 8, 26, 65, 255, 135, 13, 72, 6, 218, 198, 7, 77, 234, 147, - 6, 68, 143, 45, 84, 8, 230, 90, 72, 194, 167, 11, 69, 219, 134, 1, 65, 6, - 56, 4, 66, 69, 82, 32, 145, 205, 13, 4, 69, 82, 73, 67, 4, 26, 70, 235, - 234, 12, 79, 2, 139, 149, 12, 73, 146, 1, 80, 7, 79, 82, 75, 72, 79, 78, - 32, 197, 3, 8, 89, 69, 78, 73, 83, 69, 73, 32, 84, 54, 65, 202, 1, 69, - 122, 73, 30, 79, 135, 151, 12, 66, 45, 106, 69, 170, 243, 9, 83, 226, - 144, 4, 66, 2, 68, 2, 71, 2, 76, 2, 78, 2, 81, 2, 82, 2, 84, 3, 89, 20, - 134, 132, 14, 66, 2, 68, 2, 71, 2, 75, 2, 76, 2, 78, 2, 82, 2, 83, 2, 84, - 3, 89, 20, 74, 78, 182, 230, 13, 76, 158, 27, 83, 146, 1, 67, 2, 77, 2, - 80, 3, 90, 8, 222, 130, 14, 67, 2, 71, 2, 84, 3, 89, 7, 178, 130, 14, 67, - 3, 81, 13, 130, 3, 69, 150, 255, 13, 80, 2, 81, 3, 84, 62, 38, 65, 170, - 1, 69, 86, 73, 23, 79, 39, 98, 69, 206, 255, 13, 83, 62, 78, 86, 66, 2, - 68, 2, 71, 2, 76, 2, 81, 2, 82, 2, 84, 3, 89, 17, 218, 130, 12, 78, 130, - 254, 1, 66, 2, 71, 2, 75, 2, 84, 3, 89, 15, 46, 78, 218, 254, 13, 83, - 146, 1, 67, 3, 90, 6, 230, 255, 13, 67, 2, 84, 3, 89, 5, 195, 255, 13, - 81, 6, 26, 69, 151, 255, 13, 81, 5, 147, 255, 13, 75, 52, 148, 1, 10, 67, - 79, 77, 66, 73, 78, 73, 78, 71, 32, 36, 7, 76, 69, 84, 84, 69, 82, 32, - 233, 1, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 8, 222, 241, - 5, 84, 243, 231, 3, 68, 36, 230, 200, 1, 65, 186, 206, 1, 82, 222, 220, - 2, 76, 58, 90, 34, 83, 66, 89, 168, 210, 1, 6, 70, 73, 78, 65, 76, 32, 0, - 6, 71, 73, 77, 69, 76, 45, 134, 3, 75, 174, 81, 66, 170, 225, 4, 78, 134, - 2, 84, 2, 87, 218, 103, 80, 171, 4, 77, 8, 56, 4, 84, 87, 79, 32, 174, - 212, 11, 70, 187, 131, 1, 66, 4, 158, 228, 12, 66, 75, 68, 6, 146, 181, - 1, 87, 136, 160, 3, 3, 65, 68, 85, 207, 217, 7, 77, 22, 212, 1, 34, 32, - 87, 73, 84, 72, 32, 69, 88, 67, 76, 65, 77, 65, 84, 73, 79, 78, 32, 77, - 65, 82, 75, 32, 87, 73, 84, 72, 32, 76, 69, 70, 84, 32, 82, 44, 7, 67, - 79, 77, 73, 78, 71, 32, 194, 1, 69, 151, 167, 13, 73, 2, 21, 3, 73, 71, - 72, 2, 203, 250, 9, 84, 10, 148, 1, 6, 65, 85, 84, 79, 77, 79, 20, 7, 70, - 73, 82, 69, 32, 69, 78, 144, 225, 2, 2, 84, 65, 148, 247, 8, 6, 80, 79, - 76, 73, 67, 69, 143, 22, 66, 2, 223, 206, 11, 66, 2, 215, 219, 12, 71, 8, - 70, 32, 229, 191, 12, 11, 45, 80, 73, 69, 67, 69, 32, 83, 87, 73, 77, 6, - 40, 4, 68, 79, 84, 32, 175, 173, 10, 66, 4, 26, 79, 135, 175, 10, 76, 2, - 129, 234, 2, 11, 86, 69, 82, 32, 84, 87, 79, 32, 68, 79, 84, 46, 82, 69, - 188, 6, 2, 84, 73, 188, 229, 11, 5, 72, 73, 85, 67, 72, 147, 183, 1, 80, - 36, 70, 78, 201, 5, 12, 82, 65, 84, 73, 78, 71, 32, 83, 89, 83, 84, 69, - 34, 22, 32, 139, 4, 45, 28, 108, 2, 66, 79, 32, 7, 67, 69, 78, 84, 82, - 69, 32, 114, 70, 70, 72, 42, 77, 142, 139, 7, 83, 135, 244, 3, 76, 4, - 242, 239, 13, 79, 155, 3, 88, 8, 50, 84, 174, 216, 11, 66, 222, 2, 65, - 135, 84, 67, 2, 37, 7, 69, 65, 82, 68, 82, 79, 80, 2, 143, 218, 11, 45, - 4, 44, 5, 73, 76, 69, 32, 70, 243, 131, 2, 79, 2, 239, 131, 2, 79, 2, 17, - 2, 65, 78, 2, 151, 191, 10, 68, 4, 57, 12, 65, 73, 76, 66, 79, 88, 32, - 87, 73, 84, 72, 32, 4, 44, 3, 76, 79, 87, 21, 4, 82, 65, 73, 83, 2, 17, - 2, 69, 82, 2, 129, 132, 12, 2, 69, 68, 6, 108, 15, 67, 73, 82, 67, 85, - 73, 84, 45, 79, 85, 84, 80, 85, 84, 32, 221, 204, 12, 6, 79, 85, 84, 76, - 73, 78, 4, 18, 72, 3, 76, 2, 161, 192, 1, 4, 45, 84, 89, 80, 2, 169, 222, - 12, 6, 77, 32, 67, 79, 77, 77, 6, 64, 2, 79, 78, 253, 177, 1, 8, 67, 65, - 76, 32, 68, 73, 83, 67, 2, 247, 207, 11, 32, 208, 1, 104, 3, 65, 78, 71, - 66, 67, 34, 73, 212, 8, 5, 78, 65, 84, 69, 32, 32, 3, 84, 72, 79, 199, - 176, 5, 32, 6, 28, 2, 69, 32, 167, 22, 85, 4, 198, 150, 12, 66, 203, 78, - 72, 4, 186, 174, 13, 85, 223, 61, 65, 188, 1, 48, 5, 71, 73, 78, 65, 76, - 21, 3, 89, 65, 32, 2, 183, 133, 1, 32, 186, 1, 106, 65, 30, 70, 250, 1, - 73, 32, 7, 76, 69, 84, 84, 69, 82, 32, 142, 2, 83, 218, 1, 86, 159, 240, - 11, 68, 4, 182, 137, 10, 73, 3, 85, 12, 41, 8, 82, 65, 67, 84, 73, 79, - 78, 32, 12, 56, 4, 79, 78, 69, 32, 81, 6, 84, 72, 82, 69, 69, 32, 8, 42, - 83, 206, 226, 11, 69, 46, 72, 47, 81, 2, 217, 227, 11, 4, 73, 88, 84, 69, - 4, 26, 83, 227, 228, 11, 81, 2, 145, 136, 8, 4, 73, 88, 84, 69, 2, 233, - 196, 12, 3, 83, 83, 72, 104, 226, 1, 82, 130, 238, 6, 89, 178, 154, 3, - 65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 186, 202, 1, 73, 42, 76, 226, - 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, - 72, 2, 77, 2, 87, 186, 2, 69, 3, 79, 6, 234, 227, 13, 72, 2, 82, 187, 2, - 65, 18, 112, 20, 69, 81, 85, 69, 78, 67, 69, 32, 70, 79, 82, 32, 76, 69, - 84, 84, 69, 82, 32, 82, 29, 4, 73, 71, 78, 32, 4, 206, 226, 13, 72, 3, - 82, 14, 138, 199, 9, 67, 98, 78, 190, 66, 65, 250, 239, 1, 79, 195, 167, - 1, 86, 26, 49, 10, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 26, 206, 140, - 10, 65, 38, 85, 22, 86, 166, 202, 1, 73, 198, 140, 2, 69, 3, 79, 4, 194, - 220, 6, 76, 243, 30, 82, 4, 240, 245, 3, 2, 68, 79, 139, 183, 2, 71, 226, - 1, 76, 4, 65, 71, 69, 32, 140, 4, 6, 77, 65, 78, 89, 65, 32, 251, 221, - 13, 67, 144, 1, 56, 6, 67, 65, 80, 73, 84, 65, 1, 4, 83, 77, 65, 76, 72, - 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 72, 194, 1, 65, 38, 69, 90, - 75, 42, 79, 22, 84, 246, 229, 6, 72, 254, 250, 4, 67, 2, 68, 2, 71, 234, - 181, 1, 83, 2, 90, 130, 3, 66, 138, 66, 76, 2, 77, 2, 78, 2, 80, 2, 87, - 186, 2, 73, 3, 85, 9, 226, 225, 11, 73, 239, 253, 1, 72, 15, 26, 72, 179, - 143, 13, 73, 10, 134, 202, 9, 84, 226, 151, 2, 67, 242, 250, 1, 75, 3, - 80, 6, 154, 220, 13, 72, 2, 89, 187, 2, 65, 5, 203, 142, 13, 73, 6, 214, - 150, 13, 83, 195, 71, 65, 80, 52, 7, 76, 69, 84, 84, 69, 82, 32, 187, - 233, 11, 68, 60, 246, 1, 65, 38, 67, 22, 68, 38, 75, 34, 83, 30, 77, 162, - 241, 2, 81, 226, 159, 8, 79, 148, 125, 2, 76, 65, 236, 75, 2, 78, 85, - 134, 2, 87, 142, 62, 69, 234, 61, 66, 2, 70, 2, 71, 2, 72, 2, 74, 2, 82, - 2, 84, 2, 88, 2, 89, 186, 2, 73, 3, 85, 7, 194, 250, 2, 76, 135, 225, 10, - 65, 2, 183, 221, 12, 65, 4, 222, 197, 8, 69, 251, 146, 5, 72, 4, 186, - 217, 12, 65, 251, 126, 72, 4, 26, 72, 179, 218, 13, 65, 2, 219, 218, 12, - 73, 124, 68, 11, 79, 77, 65, 78, 32, 83, 73, 89, 65, 81, 32, 251, 160, - 13, 69, 122, 172, 1, 17, 65, 76, 84, 69, 82, 78, 65, 84, 69, 32, 78, 85, - 77, 66, 69, 82, 32, 200, 1, 13, 70, 82, 65, 67, 84, 73, 79, 78, 32, 79, - 78, 69, 32, 48, 3, 77, 65, 82, 47, 78, 26, 54, 70, 50, 83, 46, 84, 214, - 187, 12, 78, 239, 112, 69, 6, 248, 207, 5, 3, 79, 85, 82, 159, 139, 7, - 73, 6, 200, 207, 5, 2, 73, 88, 155, 149, 6, 69, 10, 226, 184, 2, 69, 12, - 2, 87, 79, 247, 171, 9, 72, 4, 26, 83, 175, 208, 11, 72, 2, 155, 209, 11, - 73, 2, 11, 82, 2, 11, 65, 2, 247, 137, 12, 84, 90, 33, 6, 85, 77, 66, 69, - 82, 32, 90, 58, 69, 66, 70, 94, 78, 26, 83, 78, 84, 179, 177, 5, 79, 10, - 25, 4, 73, 71, 72, 84, 11, 226, 182, 2, 89, 227, 193, 5, 32, 20, 18, 73, - 35, 79, 10, 166, 2, 70, 195, 176, 5, 86, 10, 134, 2, 82, 205, 176, 5, 2, - 85, 82, 10, 65, 3, 73, 78, 69, 20, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, - 11, 166, 1, 84, 219, 245, 7, 32, 24, 34, 72, 50, 87, 163, 180, 2, 69, 10, - 34, 73, 245, 176, 5, 2, 82, 69, 4, 51, 82, 10, 26, 69, 219, 176, 5, 79, - 4, 11, 78, 4, 11, 84, 4, 247, 179, 2, 89, 84, 34, 84, 217, 177, 11, 2, - 78, 67, 82, 42, 66, 37, 6, 76, 73, 78, 69, 68, 32, 2, 133, 195, 12, 4, - 79, 88, 32, 84, 80, 92, 7, 76, 65, 84, 73, 78, 32, 67, 242, 194, 6, 87, - 182, 243, 4, 66, 234, 14, 71, 159, 23, 68, 54, 186, 174, 7, 65, 215, 222, - 4, 82, 12, 18, 72, 43, 76, 2, 17, 2, 69, 65, 2, 239, 188, 12, 84, 10, 32, - 2, 65, 80, 255, 179, 12, 73, 9, 29, 5, 80, 73, 78, 71, 32, 6, 40, 6, 87, - 72, 73, 84, 69, 32, 51, 66, 4, 44, 5, 65, 78, 68, 32, 66, 151, 138, 10, - 83, 2, 253, 137, 10, 4, 76, 65, 67, 75, 152, 13, 150, 1, 65, 206, 65, 68, - 30, 69, 134, 13, 72, 138, 25, 73, 202, 4, 76, 160, 15, 2, 78, 80, 54, 79, - 238, 8, 82, 210, 15, 83, 186, 6, 85, 239, 177, 12, 77, 158, 6, 134, 2, - 68, 38, 71, 212, 1, 11, 72, 65, 87, 72, 32, 72, 77, 79, 78, 71, 32, 134, - 23, 76, 130, 6, 78, 58, 82, 196, 22, 2, 83, 83, 132, 2, 10, 85, 32, 67, - 73, 78, 32, 72, 65, 85, 32, 176, 7, 3, 87, 32, 80, 152, 252, 7, 2, 67, - 75, 233, 141, 5, 4, 80, 69, 82, 67, 5, 253, 185, 1, 4, 68, 73, 78, 71, - 14, 26, 69, 163, 165, 13, 79, 13, 34, 32, 130, 202, 13, 82, 3, 83, 6, 72, - 6, 87, 73, 84, 72, 32, 67, 181, 159, 4, 6, 70, 65, 67, 73, 78, 71, 4, 50, - 85, 145, 237, 7, 6, 73, 82, 67, 76, 69, 68, 2, 175, 189, 12, 82, 254, 1, - 190, 1, 67, 160, 6, 9, 77, 65, 82, 75, 32, 67, 73, 77, 32, 160, 1, 7, 78, - 85, 77, 66, 69, 82, 32, 244, 1, 5, 83, 73, 71, 78, 32, 144, 10, 7, 86, - 79, 87, 69, 76, 32, 75, 223, 191, 11, 68, 78, 92, 9, 76, 65, 78, 32, 83, - 73, 71, 78, 32, 137, 3, 9, 79, 78, 83, 79, 78, 65, 78, 84, 32, 38, 132, - 1, 2, 72, 65, 38, 75, 46, 76, 34, 84, 82, 86, 30, 89, 148, 9, 2, 88, 89, - 172, 5, 2, 80, 72, 174, 1, 70, 165, 2, 2, 77, 85, 4, 170, 198, 2, 87, - 151, 255, 10, 77, 6, 246, 15, 72, 178, 150, 13, 79, 159, 14, 87, 4, 210, - 12, 65, 195, 250, 12, 73, 8, 22, 83, 247, 9, 72, 6, 160, 197, 2, 3, 72, - 69, 69, 158, 193, 9, 65, 3, 87, 4, 234, 196, 2, 65, 3, 87, 4, 206, 196, - 2, 65, 175, 185, 10, 69, 40, 122, 67, 38, 72, 46, 78, 60, 2, 80, 76, 2, - 81, 222, 222, 2, 76, 2, 77, 2, 82, 2, 86, 2, 88, 2, 89, 247, 189, 10, 65, - 4, 230, 223, 2, 72, 247, 189, 10, 65, 6, 194, 223, 2, 76, 2, 78, 247, - 189, 10, 65, 12, 58, 67, 22, 84, 202, 222, 2, 75, 2, 76, 247, 189, 10, - 65, 2, 219, 222, 2, 72, 4, 198, 222, 2, 72, 3, 83, 14, 42, 75, 50, 83, - 38, 84, 167, 175, 13, 72, 4, 26, 72, 231, 130, 13, 69, 2, 175, 162, 6, - 65, 4, 154, 131, 12, 85, 147, 189, 1, 79, 4, 142, 130, 12, 85, 215, 18, - 65, 14, 52, 7, 72, 85, 78, 68, 82, 69, 68, 38, 84, 79, 77, 4, 108, 2, 32, - 77, 195, 190, 13, 83, 8, 24, 2, 69, 78, 51, 82, 6, 26, 32, 215, 190, 13, - 83, 4, 18, 66, 35, 84, 2, 253, 213, 4, 3, 73, 76, 76, 2, 11, 72, 2, 213, - 251, 9, 3, 79, 85, 83, 72, 188, 1, 4, 67, 73, 77, 32, 246, 2, 72, 32, 3, - 73, 66, 32, 22, 77, 86, 78, 50, 84, 124, 4, 86, 79, 83, 32, 198, 1, 88, - 208, 1, 6, 90, 87, 74, 32, 84, 72, 142, 178, 1, 76, 223, 227, 4, 65, 16, - 174, 1, 67, 84, 5, 78, 82, 69, 83, 32, 22, 84, 164, 252, 11, 7, 80, 85, - 66, 32, 68, 65, 87, 153, 189, 1, 16, 72, 65, 73, 83, 32, 76, 85, 83, 32, - 78, 84, 79, 71, 32, 78, 84, 4, 48, 7, 85, 65, 77, 32, 84, 83, 72, 255, 3, - 72, 2, 11, 79, 2, 175, 187, 2, 79, 2, 195, 184, 1, 84, 6, 52, 3, 88, 87, - 86, 161, 151, 10, 4, 83, 79, 86, 32, 5, 209, 155, 6, 4, 32, 67, 72, 87, - 4, 190, 72, 78, 171, 221, 12, 76, 2, 143, 252, 11, 89, 6, 40, 4, 69, 69, - 74, 32, 135, 251, 12, 85, 4, 128, 3, 2, 84, 83, 57, 2, 83, 85, 4, 26, 84, - 187, 252, 8, 81, 2, 135, 185, 2, 85, 6, 196, 1, 7, 88, 72, 69, 69, 74, - 32, 67, 224, 178, 8, 12, 72, 73, 82, 68, 45, 83, 84, 65, 71, 69, 32, 72, - 251, 222, 4, 65, 14, 54, 70, 22, 83, 30, 84, 166, 69, 76, 195, 251, 7, - 78, 2, 167, 164, 13, 69, 2, 173, 152, 6, 2, 69, 69, 6, 42, 72, 29, 6, 83, - 72, 65, 66, 32, 67, 4, 82, 73, 207, 164, 13, 79, 2, 175, 209, 5, 69, 14, - 34, 73, 22, 89, 175, 172, 11, 65, 2, 171, 247, 11, 65, 10, 40, 4, 69, 69, - 77, 32, 243, 149, 13, 79, 8, 84, 3, 78, 84, 88, 252, 149, 6, 2, 84, 79, - 154, 173, 2, 82, 245, 178, 3, 2, 70, 65, 2, 251, 149, 6, 73, 2, 227, 180, - 2, 65, 56, 50, 65, 66, 69, 38, 73, 2, 85, 38, 79, 39, 87, 20, 170, 1, 65, - 2, 73, 2, 85, 2, 87, 134, 178, 13, 66, 3, 86, 8, 106, 69, 134, 178, 13, - 66, 3, 86, 8, 70, 65, 134, 178, 13, 66, 3, 86, 8, 34, 79, 134, 178, 13, - 66, 3, 86, 4, 130, 178, 13, 66, 3, 86, 76, 18, 76, 23, 77, 2, 247, 243, - 12, 65, 74, 74, 32, 104, 6, 89, 82, 69, 78, 69, 32, 141, 142, 4, 4, 83, - 32, 85, 80, 8, 80, 3, 66, 82, 65, 246, 189, 11, 84, 248, 97, 4, 68, 79, - 87, 78, 1, 2, 85, 80, 2, 247, 141, 13, 78, 64, 80, 2, 76, 69, 40, 4, 82, - 73, 71, 72, 253, 2, 7, 78, 85, 77, 66, 69, 82, 32, 48, 38, 70, 89, 5, 84, - 84, 69, 82, 32, 2, 57, 12, 84, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, - 70, 2, 229, 231, 5, 2, 76, 69, 46, 224, 1, 5, 70, 73, 78, 65, 76, 30, 84, - 242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82, 142, 220, 2, 65, 50, 71, - 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, - 225, 4, 78, 134, 2, 87, 218, 103, 80, 171, 4, 77, 2, 161, 172, 12, 2, 32, - 78, 4, 190, 167, 11, 69, 219, 134, 1, 65, 14, 194, 121, 84, 198, 191, 10, - 70, 223, 87, 79, 4, 32, 2, 67, 65, 147, 236, 12, 68, 2, 191, 149, 12, 75, - 188, 2, 94, 65, 220, 1, 11, 69, 78, 84, 72, 69, 83, 73, 90, 69, 68, 32, - 242, 16, 84, 203, 199, 12, 82, 14, 80, 5, 71, 82, 65, 80, 72, 52, 5, 76, - 76, 69, 76, 32, 209, 163, 6, 2, 67, 72, 6, 186, 248, 9, 32, 250, 223, 1, - 85, 235, 147, 1, 79, 6, 44, 5, 87, 73, 84, 72, 32, 163, 138, 13, 84, 4, - 222, 198, 6, 84, 175, 186, 4, 72, 150, 2, 252, 1, 7, 72, 65, 78, 71, 85, - 76, 32, 188, 4, 10, 73, 68, 69, 79, 71, 82, 65, 80, 72, 32, 188, 7, 18, - 75, 79, 82, 69, 65, 78, 32, 67, 72, 65, 82, 65, 67, 84, 69, 82, 32, 79, - 44, 7, 78, 85, 77, 66, 69, 82, 32, 250, 206, 4, 68, 145, 169, 2, 2, 76, - 65, 58, 102, 67, 110, 72, 30, 75, 66, 77, 34, 78, 34, 80, 62, 82, 30, 83, - 26, 84, 73, 5, 73, 69, 85, 78, 71, 10, 34, 72, 33, 4, 73, 69, 85, 67, 4, - 141, 3, 4, 73, 69, 85, 67, 7, 11, 32, 4, 178, 165, 13, 65, 3, 85, 4, 197, - 2, 3, 73, 69, 85, 8, 168, 2, 5, 72, 73, 69, 85, 75, 13, 5, 73, 89, 69, - 79, 75, 4, 245, 1, 4, 73, 69, 85, 77, 4, 213, 1, 4, 73, 69, 85, 78, 8, - 168, 1, 5, 72, 73, 69, 85, 80, 13, 4, 73, 69, 85, 80, 4, 121, 4, 73, 69, - 85, 76, 4, 93, 3, 73, 79, 83, 8, 56, 5, 72, 73, 69, 85, 84, 13, 5, 73, - 75, 69, 85, 84, 4, 11, 72, 5, 139, 160, 13, 32, 72, 148, 1, 2, 65, 76, - 30, 67, 74, 69, 82, 70, 112, 2, 76, 65, 22, 77, 38, 78, 32, 2, 82, 69, - 78, 83, 138, 2, 84, 50, 87, 254, 172, 11, 72, 239, 82, 79, 2, 237, 144, - 8, 2, 76, 73, 4, 32, 2, 79, 78, 179, 150, 11, 65, 2, 181, 251, 7, 4, 71, - 82, 65, 84, 6, 42, 78, 174, 179, 9, 65, 155, 194, 3, 73, 2, 169, 4, 5, - 84, 69, 82, 80, 82, 10, 58, 73, 204, 147, 12, 5, 69, 83, 84, 73, 86, 139, - 19, 79, 6, 208, 2, 3, 78, 65, 78, 130, 134, 13, 82, 3, 86, 2, 139, 230, - 12, 66, 4, 226, 198, 10, 69, 147, 136, 2, 79, 4, 138, 131, 12, 73, 195, - 1, 65, 8, 38, 83, 218, 139, 12, 80, 247, 111, 65, 4, 190, 214, 6, 79, - 183, 199, 6, 84, 18, 58, 69, 34, 79, 22, 80, 34, 84, 50, 85, 211, 141, - 12, 73, 4, 142, 199, 11, 86, 227, 84, 76, 2, 239, 251, 7, 67, 2, 11, 69, - 2, 227, 181, 4, 67, 4, 26, 85, 163, 234, 11, 79, 2, 219, 138, 13, 68, 4, - 26, 80, 247, 155, 13, 78, 2, 21, 3, 69, 82, 86, 2, 183, 144, 12, 73, 6, - 154, 169, 11, 72, 206, 162, 1, 69, 239, 48, 87, 4, 234, 224, 9, 79, 163, - 128, 2, 65, 4, 170, 164, 8, 32, 221, 166, 4, 2, 74, 69, 22, 42, 69, 46, - 70, 42, 78, 30, 83, 51, 84, 4, 216, 1, 3, 73, 71, 72, 131, 246, 4, 76, 4, - 160, 1, 2, 79, 85, 13, 2, 73, 70, 2, 133, 1, 3, 73, 78, 69, 4, 34, 73, - 73, 4, 69, 86, 69, 78, 2, 71, 88, 8, 34, 72, 46, 87, 207, 200, 12, 69, 2, - 11, 73, 2, 11, 82, 2, 175, 194, 11, 84, 4, 11, 69, 4, 190, 168, 11, 78, - 143, 115, 76, 22, 164, 1, 3, 73, 65, 76, 216, 1, 3, 89, 32, 80, 224, 206, - 6, 5, 72, 69, 78, 79, 80, 180, 229, 1, 6, 78, 69, 82, 83, 72, 73, 225, - 219, 3, 6, 32, 65, 76, 84, 69, 82, 12, 62, 32, 173, 124, 10, 76, 89, 45, - 82, 69, 67, 89, 67, 76, 69, 10, 38, 68, 41, 5, 76, 73, 78, 69, 32, 2, - 229, 174, 4, 5, 73, 70, 70, 69, 82, 8, 254, 205, 3, 68, 226, 45, 70, 20, - 4, 66, 65, 67, 75, 203, 153, 9, 85, 2, 223, 242, 3, 79, 10, 98, 69, 52, - 9, 73, 86, 69, 45, 80, 85, 76, 76, 45, 89, 9, 80, 79, 82, 84, 32, 67, 79, - 78, 84, 4, 176, 242, 9, 4, 78, 71, 69, 82, 147, 140, 2, 68, 4, 40, 4, 68, - 79, 87, 78, 1, 2, 85, 80, 2, 213, 176, 5, 6, 45, 79, 85, 84, 80, 85, 2, - 239, 253, 11, 82, 114, 192, 1, 12, 71, 76, 79, 84, 84, 65, 76, 32, 83, - 84, 79, 80, 62, 76, 156, 3, 3, 82, 73, 83, 36, 14, 77, 73, 68, 45, 76, - 69, 86, 69, 76, 32, 84, 79, 78, 69, 57, 7, 83, 65, 78, 68, 72, 73, 32, 7, - 11, 32, 4, 202, 5, 70, 213, 255, 11, 4, 86, 65, 82, 73, 82, 72, 6, 69, - 84, 84, 69, 82, 32, 209, 2, 7, 79, 87, 45, 70, 65, 76, 76, 74, 202, 1, - 70, 226, 252, 8, 73, 2, 85, 238, 27, 78, 198, 174, 3, 67, 2, 75, 2, 80, - 2, 84, 138, 69, 66, 2, 68, 2, 71, 2, 72, 2, 76, 2, 77, 2, 82, 2, 83, 2, - 86, 2, 90, 186, 2, 65, 2, 69, 3, 79, 20, 44, 5, 73, 78, 65, 76, 32, 163, - 142, 13, 65, 18, 158, 144, 11, 78, 130, 254, 1, 75, 2, 76, 2, 77, 2, 80, - 2, 84, 2, 87, 3, 89, 8, 157, 1, 5, 73, 78, 71, 32, 84, 7, 11, 32, 4, 192, - 1, 5, 76, 79, 78, 71, 32, 15, 70, 12, 66, 84, 73, 12, 71, 76, 79, 84, 84, - 65, 76, 32, 83, 84, 79, 80, 8, 21, 3, 79, 78, 69, 9, 11, 32, 6, 32, 4, - 76, 79, 78, 71, 27, 70, 5, 11, 32, 2, 11, 70, 2, 131, 201, 3, 73, 2, 171, - 181, 4, 82, 4, 162, 139, 13, 70, 3, 73, 80, 130, 1, 65, 122, 78, 162, 1, - 82, 162, 9, 83, 44, 3, 84, 82, 73, 130, 17, 68, 157, 156, 12, 9, 79, 80, - 76, 69, 32, 72, 85, 71, 71, 12, 50, 67, 50, 78, 138, 239, 6, 32, 155, - 154, 6, 82, 6, 202, 215, 11, 79, 194, 28, 69, 199, 149, 1, 72, 2, 227, - 128, 12, 85, 10, 118, 71, 20, 3, 83, 73, 86, 222, 179, 1, 84, 156, 188, - 4, 10, 32, 79, 86, 69, 82, 32, 83, 84, 65, 77, 187, 184, 5, 67, 2, 191, - 136, 12, 85, 2, 223, 202, 12, 69, 48, 186, 1, 32, 116, 10, 80, 69, 78, - 68, 73, 67, 85, 76, 65, 82, 42, 83, 130, 176, 7, 67, 252, 9, 10, 77, 65, - 78, 69, 78, 84, 32, 80, 65, 80, 237, 133, 2, 8, 70, 79, 82, 77, 73, 78, - 71, 32, 6, 34, 77, 30, 84, 139, 255, 11, 83, 2, 129, 242, 1, 2, 73, 76, - 2, 149, 154, 11, 8, 69, 78, 32, 84, 72, 79, 85, 83, 5, 213, 139, 9, 5, - 32, 87, 73, 84, 72, 32, 60, 2, 79, 78, 154, 75, 80, 157, 177, 11, 4, 69, - 86, 69, 82, 28, 38, 32, 237, 133, 10, 3, 65, 76, 32, 26, 216, 2, 10, 68, - 79, 73, 78, 71, 32, 67, 65, 82, 84, 32, 3, 73, 78, 32, 92, 5, 87, 73, 84, - 72, 32, 184, 224, 7, 4, 70, 82, 79, 87, 204, 13, 27, 82, 65, 73, 83, 73, - 78, 71, 32, 66, 79, 84, 72, 32, 72, 65, 78, 68, 83, 32, 73, 78, 32, 67, - 69, 76, 69, 66, 204, 193, 4, 5, 67, 76, 73, 77, 66, 213, 45, 11, 66, 79, - 87, 73, 78, 71, 32, 68, 69, 69, 80, 2, 11, 87, 2, 159, 189, 3, 72, 4, - 204, 175, 12, 6, 76, 79, 84, 85, 83, 32, 253, 64, 9, 83, 84, 69, 65, 77, - 89, 32, 82, 79, 12, 154, 1, 66, 180, 146, 2, 3, 80, 79, 85, 188, 165, 1, - 2, 67, 82, 244, 132, 6, 6, 70, 79, 76, 68, 69, 68, 177, 193, 2, 8, 72, - 69, 65, 68, 83, 67, 65, 82, 4, 36, 3, 76, 79, 78, 235, 244, 10, 65, 2, - 11, 68, 2, 11, 32, 2, 11, 72, 2, 11, 65, 2, 131, 198, 12, 73, 4, 180, - 169, 9, 2, 69, 84, 151, 206, 2, 79, 2, 209, 153, 9, 2, 32, 68, 140, 2, - 66, 65, 184, 19, 9, 73, 76, 73, 80, 80, 73, 78, 69, 32, 47, 79, 204, 1, - 108, 6, 71, 83, 45, 80, 65, 32, 189, 7, 16, 73, 83, 84, 79, 83, 32, 68, - 73, 83, 67, 32, 83, 73, 71, 78, 32, 112, 100, 7, 76, 69, 84, 84, 69, 82, - 32, 248, 4, 5, 77, 65, 82, 75, 32, 30, 83, 33, 4, 68, 79, 85, 66, 96, - 138, 2, 65, 138, 1, 67, 50, 68, 42, 83, 64, 5, 86, 79, 73, 67, 69, 178, - 129, 9, 71, 202, 173, 3, 78, 82, 84, 46, 75, 2, 80, 2, 90, 162, 7, 69, - 234, 61, 66, 2, 70, 2, 72, 2, 74, 2, 76, 2, 77, 2, 81, 2, 82, 2, 87, 2, - 88, 2, 89, 186, 2, 73, 2, 79, 3, 85, 7, 80, 8, 76, 84, 69, 82, 78, 65, - 84, 69, 21, 8, 83, 80, 73, 82, 65, 84, 69, 68, 2, 163, 246, 12, 32, 2, - 11, 32, 2, 167, 246, 12, 70, 6, 26, 65, 251, 245, 12, 72, 5, 231, 218, 8, - 78, 6, 226, 245, 12, 68, 2, 90, 187, 2, 65, 6, 244, 174, 8, 4, 77, 65, - 76, 76, 198, 198, 4, 72, 187, 2, 65, 4, 34, 68, 21, 4, 76, 69, 83, 83, 2, - 231, 249, 10, 32, 2, 171, 187, 9, 32, 4, 246, 175, 12, 68, 59, 83, 10, - 28, 3, 73, 78, 71, 31, 85, 2, 229, 169, 12, 2, 76, 69, 8, 58, 66, 213, - 170, 12, 8, 80, 69, 82, 70, 73, 88, 69, 68, 6, 209, 189, 8, 13, 74, 79, - 73, 78, 69, 68, 32, 76, 69, 84, 84, 69, 82, 92, 238, 1, 66, 146, 1, 67, - 172, 2, 2, 68, 79, 38, 71, 66, 72, 64, 2, 76, 73, 32, 2, 77, 65, 70, 80, - 162, 1, 82, 38, 83, 150, 1, 84, 70, 87, 200, 228, 5, 2, 70, 76, 176, 238, - 1, 2, 79, 88, 252, 240, 3, 2, 69, 65, 138, 10, 65, 135, 1, 86, 10, 52, 2, - 69, 69, 22, 79, 145, 41, 4, 85, 76, 76, 83, 5, 147, 182, 7, 72, 4, 32, 2, - 79, 77, 175, 242, 12, 87, 2, 11, 69, 2, 203, 153, 12, 82, 16, 34, 65, 86, - 72, 22, 76, 23, 79, 6, 130, 224, 5, 80, 208, 240, 3, 8, 82, 80, 69, 78, - 84, 82, 89, 32, 151, 161, 3, 84, 2, 199, 193, 2, 73, 2, 135, 179, 11, 85, - 6, 26, 76, 33, 2, 77, 66, 2, 11, 85, 2, 227, 160, 12, 77, 5, 37, 7, 73, - 78, 73, 78, 71, 32, 79, 2, 169, 255, 9, 5, 66, 76, 73, 81, 85, 4, 174, - 196, 11, 76, 223, 148, 1, 86, 4, 42, 82, 137, 141, 11, 4, 65, 85, 78, 84, - 2, 131, 181, 11, 65, 6, 42, 69, 238, 219, 7, 79, 243, 255, 2, 73, 2, 171, - 185, 12, 76, 4, 242, 220, 12, 76, 203, 17, 68, 4, 34, 78, 249, 251, 9, 2, - 84, 84, 2, 11, 65, 2, 211, 172, 9, 67, 8, 52, 2, 69, 68, 50, 76, 181, - 176, 7, 3, 65, 80, 89, 2, 25, 4, 69, 83, 84, 82, 2, 231, 160, 11, 73, 4, - 192, 187, 4, 2, 85, 77, 209, 231, 2, 3, 65, 78, 69, 4, 230, 218, 10, 79, - 251, 128, 2, 65, 12, 108, 2, 72, 73, 134, 237, 11, 65, 158, 45, 76, 128, - 19, 3, 84, 82, 65, 177, 39, 7, 77, 65, 76, 76, 32, 65, 88, 4, 214, 187, - 2, 69, 207, 175, 10, 80, 6, 208, 185, 4, 5, 65, 84, 84, 79, 79, 226, 236, - 7, 73, 207, 36, 85, 4, 146, 236, 7, 79, 137, 238, 3, 5, 65, 86, 89, 32, - 66, 4, 250, 244, 1, 83, 25, 4, 68, 79, 85, 66, 60, 56, 8, 69, 78, 73, 67, - 73, 65, 78, 32, 187, 224, 10, 76, 58, 92, 7, 76, 69, 84, 84, 69, 82, 32, - 160, 3, 7, 78, 85, 77, 66, 69, 82, 32, 231, 155, 6, 87, 44, 234, 1, 65, - 34, 68, 22, 72, 22, 81, 22, 83, 58, 84, 226, 130, 2, 87, 154, 239, 5, 90, - 154, 185, 1, 89, 164, 207, 1, 2, 82, 79, 184, 95, 3, 71, 65, 77, 162, 10, - 75, 130, 1, 78, 144, 58, 3, 76, 65, 77, 138, 17, 66, 198, 30, 80, 171, 4, - 77, 4, 170, 229, 11, 76, 199, 49, 73, 2, 199, 192, 3, 69, 4, 195, 253, 6, - 69, 2, 227, 228, 11, 79, 6, 254, 210, 10, 65, 162, 147, 1, 72, 189, 124, - 2, 69, 77, 4, 210, 192, 12, 65, 191, 8, 69, 12, 202, 50, 84, 203, 170, 4, - 79, 40, 104, 2, 67, 75, 66, 71, 62, 76, 90, 78, 178, 1, 83, 28, 7, 84, - 67, 72, 70, 79, 82, 75, 243, 224, 12, 69, 5, 17, 2, 85, 80, 2, 21, 3, 32, - 84, 82, 2, 223, 177, 11, 85, 7, 11, 32, 4, 26, 78, 163, 166, 12, 70, 2, - 131, 216, 11, 79, 6, 52, 4, 69, 32, 79, 70, 246, 92, 67, 235, 133, 12, - 76, 2, 11, 32, 2, 215, 151, 10, 80, 14, 68, 2, 67, 72, 46, 69, 194, 169, - 4, 87, 206, 176, 7, 75, 243, 98, 65, 4, 196, 160, 3, 2, 69, 68, 231, 176, - 8, 73, 4, 28, 2, 32, 68, 239, 73, 65, 2, 253, 134, 5, 2, 69, 67, 4, 134, - 203, 11, 67, 123, 84, 5, 245, 139, 10, 10, 32, 87, 73, 84, 72, 32, 84, - 69, 69, 32, 218, 1, 38, 65, 230, 9, 85, 167, 214, 12, 68, 176, 1, 78, 67, - 128, 1, 12, 78, 67, 75, 32, 67, 79, 78, 83, 84, 65, 78, 84, 83, 89, 6, - 44, 5, 69, 32, 79, 70, 32, 151, 198, 11, 65, 4, 56, 6, 73, 78, 84, 69, - 82, 69, 173, 137, 12, 2, 87, 79, 2, 251, 146, 7, 83, 5, 45, 9, 32, 79, - 86, 69, 82, 32, 84, 87, 79, 2, 11, 32, 2, 159, 202, 12, 80, 166, 1, 80, - 7, 71, 82, 79, 85, 78, 68, 32, 29, 9, 73, 78, 71, 32, 67, 65, 82, 68, 32, - 2, 173, 171, 4, 2, 83, 76, 164, 1, 182, 1, 66, 44, 3, 82, 69, 68, 0, 5, - 87, 72, 73, 84, 69, 42, 70, 74, 75, 38, 69, 34, 83, 36, 3, 81, 85, 69, - 14, 84, 92, 2, 65, 67, 0, 3, 78, 73, 78, 13, 4, 74, 65, 67, 75, 4, 40, 4, - 76, 65, 67, 75, 135, 169, 11, 65, 2, 17, 2, 32, 74, 2, 219, 237, 1, 79, - 18, 30, 79, 249, 1, 2, 73, 86, 10, 128, 2, 2, 85, 82, 239, 204, 11, 79, - 16, 34, 78, 185, 1, 3, 73, 78, 71, 8, 181, 1, 4, 73, 71, 72, 84, 16, 32, - 2, 69, 86, 117, 2, 73, 88, 8, 91, 69, 66, 78, 69, 12, 3, 72, 82, 69, 12, - 2, 87, 79, 161, 1, 5, 82, 85, 77, 80, 45, 8, 23, 78, 8, 11, 69, 8, 25, 4, - 32, 79, 70, 32, 8, 88, 3, 67, 76, 85, 20, 3, 83, 80, 65, 250, 145, 9, 72, - 137, 3, 5, 68, 73, 65, 77, 79, 2, 231, 153, 12, 66, 2, 171, 193, 11, 68, - 42, 90, 50, 190, 146, 10, 49, 134, 196, 2, 51, 2, 52, 2, 53, 2, 54, 2, - 55, 2, 56, 3, 57, 7, 190, 214, 12, 48, 3, 49, 41, 46, 83, 160, 4, 2, 84, - 79, 175, 128, 9, 78, 26, 52, 5, 32, 83, 73, 71, 78, 141, 163, 9, 2, 45, - 77, 25, 11, 32, 22, 64, 3, 73, 78, 32, 124, 5, 87, 73, 84, 72, 32, 215, - 255, 3, 65, 6, 34, 76, 22, 82, 195, 173, 11, 84, 2, 41, 2, 69, 70, 2, 21, - 3, 73, 71, 72, 2, 233, 255, 10, 6, 84, 32, 72, 65, 76, 70, 14, 162, 1, - 68, 34, 83, 140, 176, 10, 4, 84, 73, 76, 68, 152, 123, 5, 66, 76, 65, 67, - 75, 201, 38, 16, 67, 73, 82, 67, 85, 77, 70, 76, 69, 88, 32, 65, 67, 67, - 69, 78, 2, 11, 79, 2, 167, 161, 10, 84, 4, 54, 77, 173, 181, 5, 7, 85, - 66, 83, 67, 82, 73, 80, 2, 197, 170, 9, 3, 65, 76, 76, 11, 33, 6, 32, 70, - 79, 82, 77, 32, 8, 162, 222, 10, 70, 71, 84, 2, 157, 152, 12, 8, 32, 84, - 82, 65, 78, 83, 73, 83, 58, 232, 1, 5, 76, 73, 67, 69, 32, 122, 80, 140, - 1, 11, 82, 84, 65, 66, 76, 69, 32, 83, 84, 69, 82, 22, 83, 158, 1, 84, - 146, 1, 85, 196, 1, 4, 87, 69, 82, 32, 210, 142, 7, 79, 157, 129, 5, 11, - 67, 75, 69, 84, 32, 67, 65, 76, 67, 85, 76, 6, 52, 3, 67, 65, 82, 217, - 253, 3, 4, 79, 70, 70, 73, 5, 217, 177, 10, 11, 83, 32, 82, 69, 86, 79, - 76, 86, 73, 78, 71, 6, 76, 13, 32, 68, 73, 82, 69, 67, 84, 73, 79, 78, - 65, 76, 32, 159, 215, 1, 67, 4, 158, 128, 1, 73, 169, 190, 6, 6, 70, 79, - 82, 77, 65, 84, 2, 251, 173, 12, 69, 12, 40, 2, 69, 73, 22, 84, 243, 140, - 5, 73, 2, 195, 252, 11, 68, 8, 36, 3, 65, 76, 32, 171, 189, 11, 66, 6, - 226, 213, 1, 72, 213, 206, 6, 4, 77, 65, 82, 75, 8, 66, 65, 238, 135, 2, - 32, 153, 183, 9, 6, 84, 69, 68, 32, 80, 76, 4, 26, 66, 239, 171, 12, 84, - 2, 29, 5, 76, 69, 32, 87, 65, 2, 243, 48, 84, 12, 108, 4, 76, 84, 82, 89, - 28, 7, 82, 73, 78, 71, 32, 76, 73, 28, 2, 84, 73, 202, 221, 10, 78, 179, - 234, 1, 67, 2, 213, 131, 12, 2, 32, 76, 2, 205, 179, 5, 2, 81, 85, 4, - 149, 223, 10, 2, 78, 71, 8, 24, 2, 79, 78, 47, 83, 4, 136, 179, 11, 4, - 45, 79, 70, 70, 15, 32, 4, 156, 152, 9, 3, 76, 69, 69, 231, 154, 2, 89, - 140, 1, 74, 69, 162, 10, 73, 230, 2, 79, 237, 221, 9, 6, 65, 89, 69, 82, - 32, 66, 102, 132, 1, 6, 71, 78, 65, 78, 84, 32, 66, 83, 252, 191, 5, 4, - 67, 69, 68, 69, 192, 207, 1, 5, 86, 73, 79, 85, 83, 241, 32, 2, 84, 90, - 6, 42, 87, 202, 193, 8, 80, 143, 184, 2, 77, 2, 199, 199, 7, 79, 70, 176, - 1, 27, 69, 78, 84, 65, 84, 73, 79, 78, 32, 70, 79, 82, 77, 32, 70, 79, - 82, 32, 86, 69, 82, 84, 73, 67, 65, 76, 32, 129, 216, 8, 10, 67, 82, 73, - 80, 84, 73, 79, 78, 32, 84, 68, 198, 1, 67, 22, 69, 46, 72, 50, 73, 94, - 76, 188, 1, 6, 82, 73, 71, 72, 84, 32, 192, 2, 6, 87, 65, 86, 89, 32, 76, - 178, 156, 4, 83, 252, 217, 4, 9, 84, 87, 79, 32, 68, 79, 84, 32, 76, 139, - 114, 81, 4, 191, 190, 2, 79, 6, 158, 158, 6, 88, 182, 227, 2, 77, 3, 78, - 2, 173, 154, 9, 7, 79, 82, 73, 90, 79, 78, 84, 4, 49, 10, 68, 69, 79, 71, - 82, 65, 80, 72, 73, 67, 4, 11, 32, 4, 218, 235, 9, 67, 35, 70, 22, 40, 4, - 69, 70, 84, 32, 143, 214, 10, 79, 20, 112, 6, 87, 72, 73, 84, 69, 32, - 142, 1, 66, 42, 68, 186, 100, 67, 166, 7, 65, 222, 203, 7, 80, 238, 7, - 83, 39, 84, 4, 162, 2, 67, 255, 99, 76, 22, 110, 66, 42, 68, 36, 6, 87, - 72, 73, 84, 69, 32, 150, 100, 67, 166, 7, 65, 222, 203, 7, 80, 238, 7, - 83, 39, 84, 2, 145, 101, 6, 76, 65, 67, 75, 32, 76, 2, 197, 107, 5, 79, - 85, 66, 76, 69, 6, 74, 67, 17, 14, 76, 69, 78, 84, 73, 67, 85, 76, 65, - 82, 32, 66, 82, 65, 2, 227, 99, 79, 4, 246, 234, 11, 67, 177, 29, 2, 75, - 67, 2, 187, 210, 10, 79, 22, 46, 78, 156, 1, 2, 86, 65, 231, 164, 12, 77, - 10, 34, 84, 133, 211, 6, 2, 67, 69, 6, 26, 32, 53, 2, 69, 82, 2, 21, 3, - 83, 67, 82, 2, 205, 193, 10, 2, 69, 69, 5, 17, 2, 32, 73, 2, 223, 235, - 11, 67, 10, 60, 5, 67, 89, 32, 77, 69, 29, 6, 84, 69, 32, 85, 83, 69, 2, - 213, 171, 7, 2, 83, 83, 8, 26, 32, 231, 180, 8, 45, 4, 134, 166, 10, 84, - 139, 121, 79, 14, 98, 74, 30, 80, 90, 83, 156, 34, 5, 72, 73, 66, 73, 84, - 173, 245, 8, 6, 66, 73, 78, 71, 32, 67, 2, 213, 167, 5, 2, 69, 67, 6, 64, - 6, 79, 82, 84, 73, 79, 78, 137, 157, 11, 4, 69, 82, 84, 89, 5, 183, 215, - 5, 65, 2, 173, 250, 10, 4, 69, 82, 80, 73, 60, 76, 14, 65, 76, 84, 69, - 82, 32, 80, 65, 72, 76, 65, 86, 73, 32, 215, 5, 89, 58, 172, 1, 15, 70, - 79, 85, 82, 32, 68, 79, 84, 83, 32, 87, 73, 84, 72, 32, 32, 7, 76, 69, - 84, 84, 69, 82, 32, 230, 2, 78, 154, 32, 83, 1, 8, 84, 85, 82, 78, 69, - 68, 32, 83, 4, 246, 242, 10, 67, 247, 114, 68, 36, 166, 1, 65, 22, 68, - 34, 76, 22, 77, 50, 87, 254, 169, 4, 71, 90, 90, 34, 83, 66, 89, 198, - 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 84, 219, - 103, 80, 2, 223, 170, 4, 76, 2, 11, 65, 2, 227, 210, 6, 76, 2, 251, 170, - 4, 65, 2, 25, 4, 69, 77, 45, 81, 2, 255, 128, 6, 79, 2, 37, 7, 65, 87, - 45, 65, 89, 73, 78, 2, 149, 205, 1, 2, 45, 82, 14, 33, 6, 85, 77, 66, 69, - 82, 32, 14, 42, 84, 202, 170, 4, 79, 191, 236, 2, 70, 8, 42, 87, 250, - 191, 10, 72, 207, 162, 1, 69, 4, 182, 194, 10, 69, 239, 239, 1, 79, 2, - 243, 132, 12, 67, 18, 252, 1, 4, 78, 67, 84, 85, 94, 82, 56, 19, 84, 32, - 76, 73, 84, 84, 69, 82, 32, 73, 78, 32, 73, 84, 83, 32, 80, 76, 65, 178, - 151, 1, 83, 132, 42, 20, 66, 76, 73, 67, 32, 65, 68, 68, 82, 69, 83, 83, - 32, 76, 79, 85, 68, 83, 80, 69, 166, 237, 10, 49, 3, 50, 4, 164, 222, 10, - 9, 83, 32, 69, 76, 69, 86, 65, 84, 85, 129, 147, 1, 5, 65, 84, 73, 79, - 78, 4, 32, 2, 80, 76, 155, 152, 12, 83, 2, 175, 167, 11, 69, 2, 11, 67, - 2, 135, 153, 11, 69, 40, 98, 65, 180, 6, 6, 69, 83, 84, 73, 79, 78, 254, - 136, 6, 79, 229, 143, 5, 5, 73, 78, 67, 85, 78, 30, 104, 2, 68, 82, 240, - 4, 9, 84, 69, 82, 78, 73, 79, 78, 32, 73, 48, 4, 82, 84, 69, 82, 143, - 132, 11, 79, 24, 56, 4, 65, 78, 84, 32, 157, 4, 5, 85, 80, 76, 69, 32, - 20, 44, 6, 85, 80, 80, 69, 82, 32, 131, 2, 76, 16, 56, 4, 76, 69, 70, 84, - 249, 1, 5, 82, 73, 71, 72, 84, 11, 29, 5, 32, 65, 78, 68, 32, 8, 108, 6, - 76, 79, 87, 69, 82, 32, 53, 17, 85, 80, 80, 69, 82, 32, 82, 73, 71, 72, - 84, 32, 65, 78, 68, 32, 76, 4, 192, 1, 5, 76, 69, 70, 84, 32, 159, 254, - 11, 82, 4, 11, 79, 4, 11, 87, 4, 213, 254, 11, 2, 69, 82, 7, 65, 14, 32, - 65, 78, 68, 32, 76, 79, 87, 69, 82, 32, 76, 69, 70, 4, 11, 84, 5, 11, 32, - 2, 21, 3, 65, 78, 68, 2, 17, 2, 32, 76, 2, 17, 2, 79, 87, 2, 137, 213, - 10, 2, 69, 82, 4, 22, 73, 239, 37, 80, 2, 177, 228, 8, 7, 78, 84, 69, 71, - 82, 65, 76, 2, 17, 2, 32, 78, 2, 159, 222, 10, 79, 6, 34, 32, 161, 197, - 5, 2, 69, 68, 4, 162, 139, 5, 69, 175, 218, 6, 77, 220, 9, 114, 65, 142, - 8, 69, 220, 27, 6, 72, 73, 78, 79, 67, 69, 34, 73, 250, 87, 76, 46, 79, - 198, 19, 85, 243, 149, 11, 83, 62, 110, 67, 104, 2, 68, 73, 130, 1, 73, - 162, 5, 84, 172, 246, 7, 4, 66, 66, 73, 84, 214, 238, 3, 90, 235, 56, 77, - 6, 40, 4, 73, 78, 71, 32, 159, 250, 8, 67, 4, 192, 208, 10, 7, 77, 79, - 84, 79, 82, 67, 89, 199, 48, 67, 8, 66, 79, 141, 180, 8, 10, 67, 65, 76, - 32, 83, 89, 77, 66, 79, 76, 7, 168, 184, 6, 4, 65, 67, 84, 73, 229, 181, - 4, 2, 32, 66, 36, 60, 5, 76, 87, 65, 89, 32, 46, 78, 21, 4, 83, 69, 68, - 32, 4, 240, 131, 9, 2, 84, 82, 155, 251, 1, 67, 5, 243, 133, 11, 66, 28, - 152, 1, 3, 68, 79, 84, 34, 73, 48, 4, 72, 65, 78, 68, 182, 1, 77, 38, 83, - 166, 177, 7, 70, 206, 151, 2, 67, 161, 197, 1, 7, 66, 65, 67, 75, 32, 79, - 70, 5, 29, 5, 84, 69, 68, 32, 73, 2, 209, 40, 8, 78, 84, 69, 82, 80, 79, - 76, 65, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 214, 27, 70, 245, 194, 2, - 28, 80, 65, 82, 84, 32, 66, 69, 84, 87, 69, 69, 78, 32, 77, 73, 68, 68, - 76, 69, 32, 65, 78, 68, 32, 82, 73, 78, 71, 6, 230, 151, 11, 67, 2, 68, - 3, 82, 4, 60, 9, 77, 65, 76, 76, 32, 76, 69, 70, 84, 179, 251, 10, 81, 2, - 229, 158, 8, 2, 32, 83, 5, 243, 254, 11, 73, 250, 1, 226, 1, 67, 132, 4, - 2, 68, 32, 64, 2, 71, 73, 144, 1, 5, 74, 65, 78, 71, 32, 202, 4, 76, 32, - 8, 77, 73, 78, 68, 69, 82, 32, 82, 34, 80, 106, 83, 136, 1, 5, 84, 85, - 82, 78, 32, 42, 86, 209, 199, 1, 5, 70, 69, 82, 69, 78, 26, 114, 69, 60, - 3, 89, 67, 76, 146, 209, 5, 79, 205, 155, 4, 13, 82, 69, 65, 84, 73, 79, - 78, 65, 76, 32, 86, 69, 72, 4, 38, 73, 209, 198, 10, 3, 80, 84, 65, 2, - 163, 254, 11, 80, 18, 78, 69, 53, 15, 73, 78, 71, 32, 83, 89, 77, 66, 79, - 76, 32, 70, 79, 82, 32, 2, 29, 5, 68, 32, 80, 65, 80, 2, 211, 179, 10, - 69, 16, 100, 5, 84, 89, 80, 69, 45, 173, 130, 5, 14, 71, 69, 78, 69, 82, - 73, 67, 32, 77, 65, 84, 69, 82, 73, 14, 58, 49, 2, 50, 2, 51, 2, 52, 2, - 53, 2, 54, 3, 55, 2, 133, 210, 5, 6, 32, 80, 76, 65, 83, 84, 4, 42, 65, - 205, 255, 4, 4, 71, 73, 70, 84, 2, 231, 190, 3, 80, 54, 120, 4, 83, 84, - 69, 82, 213, 244, 5, 20, 79, 78, 65, 76, 32, 73, 78, 68, 73, 67, 65, 84, - 79, 82, 32, 83, 89, 77, 66, 79, 2, 235, 170, 10, 69, 74, 128, 1, 15, 67, - 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 44, 7, 76, 69, - 84, 84, 69, 82, 32, 226, 1, 83, 35, 86, 8, 146, 151, 10, 78, 130, 254, 1, - 72, 3, 82, 46, 162, 1, 78, 186, 253, 7, 77, 214, 147, 4, 66, 2, 67, 2, - 68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, 80, 2, 82, 2, 83, 2, 84, 2, 87, - 2, 89, 187, 2, 65, 12, 154, 254, 7, 89, 166, 31, 71, 206, 243, 3, 68, - 187, 2, 65, 2, 11, 69, 2, 211, 169, 11, 67, 18, 64, 10, 79, 87, 69, 76, - 32, 83, 73, 71, 78, 32, 139, 214, 9, 73, 16, 54, 69, 182, 209, 11, 65, - 186, 64, 73, 2, 79, 3, 85, 7, 234, 145, 12, 65, 3, 85, 2, 217, 254, 10, - 3, 73, 69, 86, 2, 193, 193, 11, 3, 73, 66, 66, 2, 41, 8, 76, 65, 67, 69, - 77, 69, 78, 84, 2, 17, 2, 32, 67, 2, 193, 214, 10, 5, 72, 65, 82, 65, 67, - 8, 32, 2, 84, 82, 231, 254, 6, 80, 6, 152, 138, 8, 16, 73, 67, 84, 69, - 68, 32, 76, 69, 70, 84, 32, 69, 78, 84, 82, 89, 135, 245, 3, 79, 6, 242, - 249, 10, 83, 194, 106, 76, 31, 82, 70, 64, 4, 69, 82, 83, 69, 197, 246, - 3, 6, 79, 76, 86, 73, 78, 71, 68, 30, 32, 169, 3, 2, 68, 32, 20, 184, 1, - 6, 67, 72, 69, 67, 75, 69, 28, 2, 76, 73, 108, 7, 83, 79, 76, 73, 68, 85, - 83, 232, 229, 7, 16, 84, 73, 76, 68, 69, 32, 79, 80, 69, 82, 65, 84, 79, - 82, 32, 65, 195, 253, 2, 73, 2, 197, 243, 10, 2, 82, 32, 4, 152, 212, 3, - 18, 71, 72, 84, 32, 70, 79, 85, 82, 32, 80, 79, 73, 78, 84, 69, 68, 32, - 80, 135, 237, 1, 78, 9, 11, 32, 6, 240, 166, 5, 9, 80, 82, 69, 67, 69, - 68, 73, 78, 71, 166, 161, 3, 79, 251, 154, 1, 87, 48, 248, 2, 5, 65, 78, - 71, 76, 69, 20, 7, 68, 79, 85, 66, 76, 69, 32, 118, 78, 20, 5, 70, 79, - 82, 75, 69, 70, 80, 82, 82, 214, 1, 83, 106, 84, 236, 238, 6, 30, 72, 65, - 78, 68, 32, 87, 73, 84, 72, 32, 77, 73, 68, 68, 76, 69, 32, 70, 73, 78, - 71, 69, 82, 32, 69, 88, 84, 69, 78, 68, 198, 190, 2, 67, 114, 81, 180, - 102, 6, 69, 77, 80, 84, 89, 32, 253, 93, 7, 86, 73, 67, 84, 79, 82, 89, - 5, 247, 231, 3, 32, 6, 40, 3, 80, 82, 73, 41, 3, 83, 84, 82, 4, 17, 2, - 77, 69, 5, 195, 184, 3, 32, 2, 29, 5, 79, 75, 69, 32, 78, 2, 155, 187, 6, - 79, 2, 49, 10, 68, 32, 80, 65, 82, 65, 71, 82, 65, 80, 2, 179, 4, 72, 4, - 36, 3, 73, 76, 67, 239, 235, 10, 82, 2, 11, 82, 2, 217, 254, 10, 2, 79, - 87, 6, 156, 1, 17, 65, 73, 83, 69, 68, 32, 72, 65, 78, 68, 32, 87, 73, - 84, 72, 32, 70, 148, 107, 8, 79, 84, 65, 84, 69, 68, 32, 70, 253, 176, 6, - 4, 73, 71, 72, 84, 2, 209, 112, 9, 73, 78, 71, 69, 82, 83, 32, 83, 80, 4, - 156, 134, 1, 17, 65, 78, 83, 45, 83, 69, 82, 73, 70, 32, 67, 65, 80, 73, - 84, 65, 76, 191, 174, 7, 69, 10, 88, 4, 73, 76, 68, 69, 28, 7, 82, 73, - 80, 76, 69, 32, 80, 225, 160, 7, 3, 72, 85, 77, 5, 237, 235, 4, 2, 32, - 69, 2, 143, 232, 10, 82, 2, 11, 82, 2, 143, 196, 11, 79, 147, 4, 228, 1, - 4, 66, 66, 79, 78, 152, 1, 3, 67, 69, 32, 60, 3, 71, 72, 84, 188, 81, 2, - 78, 71, 252, 1, 23, 83, 73, 78, 71, 32, 68, 73, 65, 71, 79, 78, 65, 76, - 32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 198, 222, 5, 65, 227, 165, 4, 70, - 19, 37, 7, 32, 65, 82, 82, 79, 87, 32, 16, 88, 3, 76, 69, 70, 0, 4, 82, - 73, 71, 72, 178, 197, 4, 85, 161, 142, 7, 3, 68, 79, 87, 4, 207, 252, 1, - 84, 4, 26, 67, 135, 244, 9, 66, 2, 157, 145, 1, 3, 82, 65, 67, 224, 3, - 110, 32, 190, 36, 45, 152, 12, 11, 72, 65, 78, 68, 32, 73, 78, 84, 69, - 82, 73, 29, 6, 87, 65, 82, 68, 83, 32, 202, 1, 166, 2, 65, 132, 6, 2, 66, - 76, 62, 67, 184, 1, 2, 68, 79, 242, 1, 70, 60, 2, 72, 65, 176, 5, 13, 74, - 85, 83, 84, 73, 70, 73, 69, 68, 32, 76, 69, 70, 20, 2, 76, 79, 66, 78, - 82, 79, 122, 80, 148, 1, 2, 82, 65, 58, 83, 154, 6, 84, 160, 5, 9, 86, - 69, 82, 84, 73, 67, 65, 76, 32, 147, 1, 87, 28, 22, 78, 163, 4, 82, 22, - 24, 2, 68, 32, 39, 71, 4, 170, 50, 76, 21, 3, 85, 80, 80, 18, 26, 69, 17, - 2, 76, 69, 2, 203, 26, 82, 17, 11, 32, 14, 154, 1, 66, 44, 8, 68, 79, 84, - 84, 69, 68, 32, 83, 2, 83, 112, 5, 87, 73, 84, 72, 32, 189, 212, 10, 12, - 86, 65, 82, 73, 65, 78, 84, 32, 87, 73, 84, 72, 4, 173, 210, 10, 6, 82, - 65, 67, 75, 69, 84, 2, 37, 7, 85, 66, 83, 84, 73, 84, 85, 2, 25, 4, 84, - 73, 79, 78, 2, 21, 3, 32, 77, 65, 2, 171, 138, 1, 82, 4, 68, 11, 68, 79, - 87, 78, 87, 65, 82, 68, 83, 32, 90, 139, 247, 8, 65, 2, 141, 218, 10, 5, - 73, 71, 90, 65, 71, 6, 18, 67, 79, 82, 2, 41, 8, 32, 71, 82, 69, 65, 84, - 69, 82, 2, 249, 24, 4, 45, 84, 72, 65, 4, 41, 8, 79, 87, 32, 87, 73, 84, - 72, 32, 4, 144, 234, 7, 7, 67, 73, 82, 67, 76, 69, 68, 207, 182, 2, 83, - 4, 25, 4, 65, 67, 75, 32, 4, 130, 27, 76, 223, 218, 7, 84, 12, 38, 85, - 166, 26, 79, 243, 235, 2, 69, 8, 53, 11, 82, 76, 89, 32, 66, 82, 65, 67, - 75, 69, 84, 9, 11, 32, 6, 44, 4, 77, 73, 68, 68, 250, 10, 76, 27, 85, 2, - 221, 186, 10, 2, 76, 69, 12, 38, 84, 41, 5, 85, 66, 76, 69, 32, 2, 137, - 17, 6, 84, 69, 68, 32, 83, 85, 10, 50, 65, 94, 87, 214, 162, 3, 81, 199, - 199, 4, 80, 4, 162, 31, 78, 173, 161, 3, 15, 82, 82, 79, 87, 32, 87, 73, - 84, 72, 32, 82, 79, 85, 78, 68, 2, 139, 24, 73, 6, 26, 73, 155, 131, 3, - 76, 4, 238, 215, 8, 86, 191, 97, 83, 28, 32, 3, 76, 70, 32, 187, 4, 78, - 26, 128, 1, 8, 65, 78, 68, 32, 76, 69, 70, 84, 62, 66, 90, 70, 82, 72, - 50, 82, 58, 84, 70, 87, 246, 13, 76, 22, 85, 175, 227, 8, 77, 2, 29, 5, - 32, 72, 65, 76, 70, 2, 201, 217, 8, 2, 32, 87, 6, 11, 76, 6, 40, 4, 65, - 67, 75, 32, 183, 188, 10, 79, 4, 158, 154, 10, 67, 207, 11, 83, 4, 58, - 79, 237, 156, 3, 8, 76, 89, 73, 78, 71, 32, 83, 65, 2, 131, 202, 9, 76, - 2, 209, 216, 8, 7, 79, 82, 73, 90, 79, 78, 84, 2, 33, 6, 85, 78, 78, 73, - 78, 71, 2, 203, 238, 6, 32, 2, 153, 173, 5, 12, 82, 73, 80, 76, 69, 32, - 68, 65, 83, 72, 32, 72, 2, 209, 167, 10, 4, 72, 73, 84, 69, 2, 173, 152, - 1, 16, 68, 32, 84, 69, 76, 69, 80, 72, 79, 78, 69, 32, 82, 69, 67, 69, 4, - 187, 231, 7, 84, 2, 145, 152, 11, 11, 87, 32, 80, 65, 82, 65, 80, 72, 82, - 65, 83, 2, 177, 4, 16, 79, 82, 77, 65, 76, 32, 70, 65, 67, 84, 79, 82, - 32, 83, 69, 77, 8, 74, 85, 166, 221, 8, 78, 225, 189, 1, 8, 80, 69, 78, - 32, 83, 81, 85, 65, 2, 221, 233, 10, 6, 84, 69, 82, 32, 74, 79, 8, 49, - 10, 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 9, 11, 32, 6, 34, 76, 26, 85, - 255, 196, 9, 69, 2, 157, 37, 2, 79, 87, 2, 133, 37, 2, 80, 80, 2, 217, - 10, 10, 73, 83, 69, 68, 32, 79, 77, 73, 83, 83, 40, 62, 45, 70, 69, 78, - 73, 68, 2, 80, 69, 126, 81, 227, 2, 85, 2, 173, 128, 8, 12, 83, 72, 65, - 80, 69, 68, 32, 66, 65, 71, 32, 68, 4, 26, 77, 191, 236, 8, 86, 2, 217, - 212, 10, 7, 73, 68, 73, 82, 69, 67, 84, 4, 210, 150, 3, 78, 169, 252, 7, - 8, 68, 69, 87, 65, 89, 83, 32, 85, 8, 32, 4, 65, 75, 69, 82, 67, 69, 7, - 33, 6, 32, 87, 73, 84, 72, 32, 4, 246, 252, 3, 79, 55, 84, 2, 137, 5, 2, - 67, 72, 20, 57, 12, 85, 65, 82, 69, 32, 66, 82, 65, 67, 75, 69, 84, 21, - 11, 32, 18, 84, 3, 76, 79, 87, 0, 3, 85, 80, 80, 28, 5, 87, 73, 84, 72, - 32, 227, 191, 9, 69, 2, 245, 230, 3, 2, 69, 82, 12, 96, 8, 84, 73, 67, - 75, 32, 73, 78, 32, 230, 6, 81, 166, 236, 7, 85, 134, 126, 68, 135, 193, - 2, 83, 4, 244, 229, 3, 6, 66, 79, 84, 84, 79, 77, 1, 3, 84, 79, 80, 2, - 165, 4, 6, 66, 83, 84, 73, 84, 85, 26, 54, 72, 130, 3, 82, 130, 223, 7, - 79, 235, 204, 2, 65, 14, 62, 73, 116, 5, 79, 85, 71, 72, 84, 45, 4, 82, - 69, 69, 32, 4, 21, 3, 82, 68, 32, 4, 68, 4, 73, 78, 68, 85, 221, 211, 1, - 7, 87, 72, 73, 84, 69, 32, 82, 2, 215, 166, 11, 67, 2, 11, 32, 2, 213, - 136, 3, 3, 66, 85, 66, 8, 60, 9, 81, 85, 65, 82, 84, 69, 82, 83, 32, 151, - 230, 8, 69, 6, 34, 76, 22, 85, 139, 236, 8, 66, 2, 37, 2, 79, 87, 2, 17, - 2, 80, 80, 2, 227, 230, 8, 69, 8, 34, 65, 89, 4, 73, 65, 78, 71, 2, 33, - 6, 78, 83, 80, 79, 83, 73, 2, 11, 84, 2, 17, 2, 73, 79, 2, 147, 138, 11, - 78, 6, 32, 2, 76, 69, 159, 229, 8, 85, 5, 41, 8, 32, 65, 66, 79, 86, 69, - 32, 76, 2, 181, 178, 9, 2, 69, 70, 6, 18, 66, 95, 82, 4, 68, 9, 65, 82, - 32, 87, 73, 84, 72, 32, 81, 213, 191, 10, 2, 79, 88, 2, 211, 223, 8, 85, - 2, 189, 188, 9, 3, 85, 76, 69, 14, 22, 72, 203, 1, 73, 12, 25, 4, 73, 84, - 69, 32, 12, 54, 67, 54, 76, 206, 210, 7, 80, 238, 7, 83, 39, 84, 4, 26, - 79, 163, 207, 7, 85, 2, 65, 3, 82, 78, 69, 2, 41, 8, 69, 78, 84, 73, 67, - 85, 76, 65, 2, 183, 134, 11, 82, 2, 225, 199, 6, 6, 71, 71, 76, 89, 32, - 70, 62, 118, 70, 226, 2, 72, 128, 1, 9, 80, 79, 73, 78, 84, 73, 78, 71, - 32, 214, 4, 83, 197, 1, 6, 84, 79, 45, 76, 69, 70, 18, 33, 6, 65, 67, 73, - 78, 71, 32, 18, 116, 14, 65, 82, 77, 69, 78, 73, 65, 78, 32, 69, 84, 69, - 82, 78, 20, 4, 66, 65, 83, 83, 16, 3, 70, 73, 83, 87, 83, 2, 255, 159, 8, - 73, 2, 175, 43, 73, 6, 26, 72, 151, 214, 11, 84, 5, 11, 32, 2, 233, 176, - 8, 6, 87, 73, 84, 72, 32, 79, 8, 140, 208, 3, 10, 86, 65, 83, 84, 73, 32, - 83, 73, 71, 78, 195, 223, 4, 78, 2, 81, 18, 65, 78, 68, 69, 68, 32, 73, - 78, 84, 69, 82, 76, 65, 67, 69, 68, 32, 80, 2, 21, 3, 69, 78, 84, 2, 251, - 150, 10, 65, 30, 90, 65, 30, 67, 94, 68, 58, 77, 58, 82, 182, 1, 83, 74, - 84, 210, 172, 8, 69, 179, 124, 71, 4, 90, 78, 159, 175, 8, 84, 2, 29, 5, - 85, 82, 86, 69, 68, 2, 17, 2, 32, 65, 2, 11, 78, 2, 217, 255, 10, 2, 71, - 76, 4, 136, 131, 3, 5, 79, 85, 66, 76, 69, 179, 188, 6, 73, 2, 165, 184, - 10, 9, 65, 71, 78, 73, 70, 89, 73, 78, 71, 10, 38, 79, 154, 178, 9, 65, - 235, 29, 73, 6, 92, 5, 67, 75, 69, 84, 32, 213, 177, 9, 12, 76, 76, 69, - 82, 32, 67, 79, 65, 83, 84, 69, 82, 4, 176, 43, 3, 66, 79, 79, 143, 208, - 10, 83, 2, 11, 84, 2, 21, 3, 73, 67, 75, 2, 185, 187, 6, 4, 32, 70, 73, - 71, 2, 239, 234, 7, 65, 4, 46, 72, 85, 7, 73, 68, 69, 32, 65, 82, 67, 2, - 17, 2, 65, 68, 2, 17, 2, 69, 68, 2, 209, 172, 10, 6, 32, 87, 72, 73, 84, - 69, 2, 11, 32, 2, 201, 239, 8, 8, 67, 76, 79, 67, 75, 87, 73, 83, 8, 17, - 2, 84, 32, 8, 86, 73, 40, 4, 79, 86, 69, 82, 176, 134, 5, 5, 69, 77, 66, - 69, 68, 139, 133, 6, 77, 2, 17, 2, 83, 79, 2, 131, 135, 1, 76, 2, 135, - 155, 3, 82, 2, 141, 187, 10, 2, 79, 82, 214, 1, 160, 1, 5, 65, 82, 82, - 79, 87, 130, 9, 66, 86, 68, 210, 1, 70, 122, 72, 178, 6, 76, 26, 79, 34, - 80, 50, 82, 70, 83, 94, 84, 206, 8, 87, 202, 197, 8, 67, 47, 81, 75, 26, - 32, 195, 147, 9, 45, 70, 94, 65, 170, 2, 70, 110, 84, 184, 1, 5, 87, 73, - 84, 72, 32, 129, 160, 1, 4, 79, 86, 69, 82, 12, 40, 5, 66, 79, 86, 69, - 32, 143, 1, 78, 10, 70, 82, 216, 163, 1, 5, 83, 72, 79, 82, 84, 222, 194, - 3, 65, 55, 84, 4, 37, 7, 69, 86, 69, 82, 83, 69, 32, 4, 138, 230, 4, 65, - 55, 84, 2, 61, 13, 68, 32, 85, 80, 80, 69, 82, 32, 65, 78, 68, 32, 76, 2, - 17, 2, 79, 87, 2, 129, 213, 8, 2, 69, 82, 6, 25, 4, 82, 79, 77, 32, 6, - 36, 3, 66, 65, 82, 187, 213, 8, 68, 5, 189, 1, 6, 32, 84, 79, 32, 66, 76, - 10, 56, 7, 72, 82, 79, 85, 71, 72, 32, 65, 3, 79, 32, 66, 6, 224, 224, 4, - 3, 83, 85, 80, 234, 207, 4, 71, 247, 149, 2, 88, 4, 26, 76, 139, 141, 11, - 65, 2, 153, 247, 9, 3, 65, 67, 75, 40, 140, 1, 6, 67, 79, 82, 78, 69, 82, - 26, 68, 98, 76, 86, 80, 30, 83, 38, 84, 138, 210, 8, 77, 38, 78, 122, 69, - 150, 153, 1, 72, 171, 165, 1, 86, 2, 209, 18, 2, 32, 68, 4, 11, 79, 4, - 40, 4, 84, 84, 69, 68, 203, 219, 7, 85, 2, 17, 2, 32, 83, 2, 163, 177, - 11, 84, 6, 26, 79, 231, 210, 8, 65, 4, 26, 87, 251, 194, 11, 79, 2, 157, - 201, 3, 2, 69, 82, 2, 193, 145, 9, 2, 76, 85, 6, 146, 211, 8, 77, 203, - 191, 2, 84, 10, 154, 16, 73, 171, 3, 65, 8, 58, 65, 204, 11, 5, 79, 84, - 84, 79, 77, 187, 199, 8, 76, 2, 145, 2, 2, 67, 75, 14, 48, 6, 79, 85, 66, - 76, 69, 32, 167, 225, 8, 65, 12, 40, 5, 65, 82, 82, 79, 87, 211, 18, 68, - 11, 26, 32, 143, 137, 9, 45, 6, 26, 87, 167, 215, 8, 70, 4, 25, 4, 73, - 84, 72, 32, 4, 186, 143, 11, 86, 79, 83, 4, 40, 4, 82, 79, 78, 84, 195, - 210, 8, 73, 2, 193, 209, 8, 14, 45, 84, 73, 76, 84, 69, 68, 32, 83, 72, - 65, 68, 79, 87, 30, 26, 65, 251, 213, 8, 69, 26, 48, 6, 82, 80, 79, 79, - 78, 32, 131, 248, 10, 78, 24, 80, 10, 87, 73, 84, 72, 32, 66, 65, 82, 66, - 32, 197, 152, 1, 4, 79, 86, 69, 82, 22, 44, 4, 68, 79, 87, 78, 173, 1, 2, - 85, 80, 10, 26, 32, 231, 219, 8, 87, 8, 76, 8, 65, 66, 79, 86, 69, 32, - 76, 69, 18, 66, 166, 211, 8, 70, 179, 5, 84, 2, 227, 2, 70, 2, 253, 222, - 4, 7, 69, 76, 79, 87, 32, 76, 79, 12, 26, 32, 187, 218, 8, 87, 10, 60, 6, - 65, 66, 79, 86, 69, 32, 154, 210, 8, 70, 179, 5, 84, 6, 22, 76, 155, 1, - 82, 4, 32, 2, 69, 70, 187, 221, 4, 79, 2, 213, 144, 2, 24, 84, 87, 65, - 82, 68, 83, 32, 72, 65, 82, 80, 79, 79, 78, 32, 87, 73, 84, 72, 32, 66, - 65, 82, 66, 2, 21, 3, 73, 71, 72, 2, 105, 24, 84, 87, 65, 82, 68, 83, 32, - 72, 65, 82, 80, 79, 79, 78, 32, 87, 73, 84, 72, 32, 66, 65, 82, 66, 2, - 11, 32, 2, 139, 241, 1, 68, 2, 141, 1, 2, 69, 70, 2, 201, 212, 8, 3, 80, - 69, 78, 4, 202, 216, 8, 65, 233, 206, 1, 3, 85, 83, 72, 4, 36, 3, 73, 71, - 72, 223, 228, 10, 79, 2, 11, 84, 2, 171, 1, 45, 6, 32, 2, 81, 85, 215, - 207, 8, 65, 4, 26, 73, 239, 207, 8, 65, 2, 229, 215, 8, 2, 71, 71, 54, - 38, 79, 60, 2, 82, 73, 227, 4, 87, 2, 11, 80, 2, 11, 32, 2, 253, 199, 8, - 4, 83, 72, 65, 68, 34, 40, 5, 65, 78, 71, 76, 69, 255, 3, 80, 30, 56, 8, - 45, 72, 69, 65, 68, 69, 68, 32, 251, 219, 8, 32, 28, 52, 5, 65, 82, 82, - 79, 87, 202, 212, 8, 68, 39, 80, 25, 11, 32, 22, 64, 8, 79, 86, 69, 82, - 32, 76, 69, 70, 22, 87, 135, 208, 8, 84, 2, 183, 207, 8, 84, 18, 25, 4, - 73, 84, 72, 32, 18, 128, 1, 7, 68, 79, 85, 66, 76, 69, 32, 36, 7, 76, 79, - 78, 71, 32, 84, 73, 230, 207, 8, 66, 158, 1, 77, 34, 78, 34, 86, 35, 72, - 4, 166, 138, 9, 72, 195, 247, 1, 86, 4, 11, 80, 4, 11, 32, 4, 18, 68, 35, - 85, 2, 181, 208, 8, 3, 79, 87, 78, 2, 151, 208, 8, 80, 4, 21, 3, 76, 69, - 32, 4, 138, 3, 68, 203, 145, 10, 65, 18, 11, 79, 18, 56, 8, 45, 72, 69, - 65, 68, 69, 68, 32, 175, 210, 8, 32, 16, 76, 6, 65, 82, 82, 79, 87, 32, - 213, 1, 8, 84, 82, 73, 80, 76, 69, 32, 68, 14, 44, 5, 87, 73, 84, 72, 32, - 179, 198, 8, 70, 12, 42, 84, 210, 198, 7, 68, 235, 183, 3, 86, 8, 26, 65, - 243, 209, 8, 82, 6, 17, 2, 73, 76, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, - 250, 197, 7, 68, 235, 183, 3, 86, 2, 249, 132, 1, 2, 65, 83, 8, 58, 65, - 21, 10, 72, 73, 84, 69, 32, 65, 82, 82, 79, 87, 2, 207, 206, 8, 86, 7, - 11, 32, 4, 216, 193, 2, 4, 70, 82, 79, 77, 219, 145, 6, 87, 19, 66, 32, - 136, 1, 6, 69, 68, 32, 80, 76, 65, 21, 3, 73, 78, 71, 12, 82, 66, 22, 80, - 212, 201, 4, 2, 73, 78, 26, 69, 154, 158, 3, 79, 195, 198, 2, 65, 2, 239, - 153, 11, 85, 2, 11, 79, 2, 135, 232, 10, 73, 2, 247, 245, 10, 78, 2, 209, - 199, 3, 2, 32, 66, 4, 24, 2, 70, 65, 75, 83, 2, 17, 2, 76, 76, 2, 21, 3, - 73, 78, 71, 2, 177, 231, 1, 2, 32, 68, 2, 189, 173, 3, 2, 79, 85, 8, 222, - 169, 11, 69, 2, 73, 2, 77, 3, 79, 126, 136, 2, 2, 67, 75, 20, 2, 76, 76, - 188, 2, 4, 77, 65, 78, 32, 194, 8, 79, 80, 2, 83, 69, 20, 6, 84, 65, 84, - 69, 68, 32, 152, 3, 3, 85, 78, 68, 170, 178, 3, 87, 252, 213, 3, 15, 65, - 83, 84, 69, 68, 32, 83, 87, 69, 69, 84, 32, 80, 79, 84, 185, 166, 2, 2, - 66, 79, 5, 251, 138, 11, 69, 10, 130, 1, 69, 64, 4, 32, 79, 70, 32, 101, - 21, 73, 78, 71, 32, 79, 78, 32, 84, 72, 69, 32, 70, 76, 79, 79, 82, 32, - 76, 65, 85, 71, 6, 60, 9, 68, 45, 85, 80, 32, 78, 69, 87, 83, 33, 2, 82, - 32, 2, 11, 80, 2, 175, 131, 2, 65, 4, 28, 3, 67, 79, 65, 23, 83, 2, 131, - 235, 9, 83, 2, 135, 95, 75, 2, 231, 211, 10, 72, 72, 140, 1, 6, 67, 69, - 78, 84, 85, 82, 22, 68, 100, 3, 81, 85, 73, 28, 8, 78, 85, 77, 69, 82, - 65, 76, 32, 182, 4, 83, 114, 85, 135, 235, 7, 65, 2, 159, 215, 5, 73, 6, - 98, 69, 232, 5, 5, 85, 80, 79, 78, 68, 61, 12, 73, 77, 73, 68, 73, 65, - 32, 83, 69, 88, 84, 85, 2, 229, 5, 3, 78, 65, 82, 48, 142, 1, 70, 136, 1, - 3, 79, 78, 69, 134, 1, 83, 66, 84, 232, 14, 10, 82, 69, 86, 69, 82, 83, - 69, 68, 32, 79, 150, 237, 2, 69, 163, 135, 7, 78, 14, 26, 73, 183, 168, - 10, 79, 12, 36, 3, 70, 84, 89, 255, 254, 2, 86, 7, 11, 32, 4, 194, 196, - 5, 84, 177, 221, 4, 5, 69, 65, 82, 76, 89, 11, 11, 32, 8, 50, 72, 41, 8, - 84, 72, 79, 85, 83, 65, 78, 68, 4, 185, 1, 6, 85, 78, 68, 82, 69, 68, 5, - 141, 130, 4, 2, 32, 67, 6, 32, 2, 73, 88, 159, 172, 9, 69, 5, 241, 159, - 10, 2, 32, 76, 10, 42, 69, 150, 253, 2, 87, 239, 174, 6, 72, 4, 11, 78, - 5, 11, 32, 2, 131, 194, 5, 84, 10, 46, 69, 189, 200, 7, 5, 73, 76, 73, - 81, 85, 8, 60, 2, 77, 85, 40, 5, 83, 84, 69, 82, 84, 21, 2, 88, 84, 2, - 17, 2, 78, 67, 2, 231, 199, 7, 73, 2, 207, 234, 7, 73, 4, 18, 65, 23, 85, - 2, 179, 234, 7, 78, 2, 151, 199, 7, 76, 4, 48, 6, 84, 32, 86, 69, 71, 69, - 219, 225, 9, 83, 2, 141, 197, 2, 2, 84, 65, 5, 179, 210, 9, 84, 10, 166, - 2, 70, 32, 11, 72, 69, 65, 86, 89, 32, 66, 76, 65, 67, 75, 52, 24, 76, - 73, 71, 72, 84, 32, 70, 79, 85, 82, 32, 80, 79, 73, 78, 84, 69, 68, 32, - 66, 76, 65, 67, 75, 0, 18, 87, 72, 73, 84, 69, 32, 70, 79, 85, 82, 32, - 80, 79, 73, 78, 84, 69, 68, 161, 53, 8, 67, 65, 80, 73, 84, 65, 76, 32, - 2, 29, 5, 76, 79, 82, 65, 76, 2, 201, 182, 9, 8, 32, 72, 69, 65, 82, 84, - 32, 66, 2, 213, 207, 9, 2, 32, 67, 16, 74, 32, 89, 14, 69, 68, 32, 83, - 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 4, 24, 2, 80, 85, 43, 84, 2, 11, - 83, 2, 209, 151, 10, 2, 72, 80, 2, 147, 222, 3, 65, 12, 68, 2, 83, 72, - 238, 162, 6, 67, 222, 206, 4, 70, 2, 76, 147, 17, 88, 4, 40, 4, 85, 65, - 78, 71, 159, 241, 10, 79, 2, 171, 130, 11, 88, 136, 2, 226, 1, 66, 20, 3, - 71, 66, 89, 40, 5, 76, 69, 45, 68, 69, 40, 3, 77, 73, 32, 154, 5, 78, - 156, 26, 26, 83, 83, 73, 65, 78, 32, 65, 83, 84, 82, 79, 76, 79, 71, 73, - 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 203, 152, 5, 80, 2, 255, 243, - 8, 76, 2, 177, 137, 9, 5, 32, 70, 79, 79, 84, 2, 11, 76, 2, 165, 255, 5, - 2, 65, 89, 62, 68, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, 102, 78, 171, - 198, 2, 68, 8, 40, 4, 79, 78, 69, 32, 187, 175, 9, 84, 6, 34, 84, 250, - 139, 9, 72, 47, 81, 2, 167, 141, 9, 72, 36, 33, 6, 85, 77, 66, 69, 82, - 32, 36, 76, 5, 69, 73, 71, 72, 84, 38, 70, 92, 2, 78, 73, 22, 79, 18, 83, - 83, 84, 4, 158, 137, 3, 32, 231, 135, 8, 89, 8, 18, 73, 35, 79, 4, 130, - 2, 86, 235, 158, 9, 70, 4, 136, 2, 2, 85, 82, 195, 158, 9, 82, 4, 77, 2, - 78, 69, 2, 167, 1, 78, 8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 4, 206, - 135, 3, 32, 159, 246, 7, 84, 10, 34, 72, 50, 87, 223, 190, 10, 69, 4, 32, - 2, 82, 69, 199, 158, 9, 73, 2, 39, 69, 4, 26, 79, 183, 158, 9, 69, 2, - 187, 134, 3, 32, 182, 1, 32, 3, 73, 67, 32, 147, 25, 78, 178, 1, 220, 1, - 6, 66, 69, 76, 71, 84, 72, 20, 4, 67, 82, 79, 83, 20, 7, 76, 69, 84, 84, - 69, 82, 32, 210, 22, 83, 24, 6, 77, 85, 76, 84, 73, 80, 216, 196, 7, 5, - 65, 82, 76, 65, 85, 161, 202, 1, 7, 84, 86, 73, 77, 65, 68, 85, 2, 135, - 166, 9, 79, 2, 235, 197, 7, 83, 166, 1, 202, 4, 65, 110, 67, 98, 68, 126, - 69, 82, 70, 222, 1, 71, 104, 2, 72, 65, 50, 73, 220, 1, 5, 74, 69, 82, - 65, 78, 34, 75, 58, 76, 234, 1, 79, 128, 1, 13, 82, 65, 73, 68, 79, 32, - 82, 65, 68, 32, 82, 69, 73, 34, 83, 176, 2, 16, 66, 69, 82, 75, 65, 78, - 65, 78, 32, 66, 69, 79, 82, 67, 32, 66, 144, 1, 12, 78, 65, 85, 68, 73, - 90, 32, 78, 89, 68, 32, 78, 110, 84, 194, 1, 87, 128, 91, 7, 85, 82, 85, - 90, 32, 85, 82, 196, 189, 2, 10, 77, 65, 78, 78, 65, 90, 32, 77, 65, 78, - 168, 63, 13, 80, 69, 82, 84, 72, 79, 32, 80, 69, 79, 82, 84, 72, 206, - 199, 3, 89, 158, 214, 3, 81, 2, 86, 2, 88, 3, 90, 8, 222, 4, 69, 174, - 185, 6, 67, 0, 4, 78, 83, 85, 90, 189, 186, 3, 9, 76, 71, 73, 90, 32, 69, - 79, 76, 72, 11, 46, 69, 30, 65, 245, 152, 7, 3, 87, 69, 79, 4, 26, 65, - 211, 133, 11, 78, 2, 191, 219, 9, 76, 11, 84, 6, 79, 84, 84, 69, 68, 45, - 193, 231, 3, 9, 65, 71, 65, 90, 32, 68, 65, 69, 71, 6, 226, 132, 11, 76, - 2, 78, 3, 80, 11, 136, 76, 7, 72, 87, 65, 90, 32, 69, 72, 218, 255, 9, - 65, 206, 55, 84, 63, 78, 12, 120, 13, 82, 65, 78, 75, 83, 32, 67, 65, 83, - 75, 69, 84, 32, 145, 180, 7, 11, 69, 72, 85, 32, 70, 69, 79, 72, 32, 70, - 69, 10, 46, 65, 234, 196, 10, 73, 2, 79, 207, 60, 69, 4, 26, 69, 171, - 130, 11, 67, 2, 151, 216, 9, 83, 9, 26, 69, 159, 201, 10, 65, 4, 52, 7, - 66, 79, 32, 71, 89, 70, 85, 195, 129, 11, 82, 2, 235, 128, 11, 32, 4, - 236, 8, 2, 69, 71, 13, 4, 71, 76, 65, 90, 12, 156, 1, 2, 78, 71, 20, 9, - 83, 65, 90, 32, 73, 83, 32, 73, 83, 20, 5, 87, 65, 90, 32, 69, 216, 198, - 10, 10, 67, 69, 76, 65, 78, 68, 73, 67, 45, 89, 3, 79, 5, 199, 211, 6, - 87, 2, 183, 191, 10, 83, 2, 163, 254, 10, 79, 2, 11, 32, 2, 147, 255, 10, - 74, 7, 21, 3, 65, 85, 78, 4, 206, 251, 10, 32, 155, 3, 65, 12, 120, 15, - 65, 85, 75, 65, 90, 32, 76, 65, 71, 85, 32, 76, 79, 71, 82, 21, 11, 79, - 78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 2, 251, 241, 9, 32, 10, 64, 3, - 65, 82, 32, 158, 4, 72, 62, 77, 66, 79, 131, 191, 10, 89, 2, 159, 230, - 10, 65, 15, 150, 5, 83, 0, 12, 84, 72, 65, 76, 65, 78, 32, 69, 84, 72, - 69, 76, 188, 247, 10, 4, 80, 69, 78, 45, 14, 69, 2, 78, 3, 79, 2, 11, 68, - 2, 247, 194, 10, 32, 26, 150, 1, 72, 244, 2, 18, 73, 71, 69, 76, 32, 76, - 79, 78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 83, 208, 253, 6, 5, 79, 87, - 73, 76, 79, 203, 173, 2, 84, 21, 45, 9, 79, 82, 84, 45, 84, 87, 73, 71, - 45, 18, 102, 66, 58, 72, 62, 77, 30, 78, 38, 79, 42, 83, 186, 1, 84, 128, - 173, 6, 2, 65, 82, 163, 144, 4, 89, 2, 33, 6, 74, 65, 82, 75, 65, 78, 2, - 243, 186, 9, 32, 2, 25, 4, 65, 71, 65, 76, 2, 11, 76, 2, 159, 247, 10, - 32, 2, 253, 154, 3, 2, 65, 68, 2, 157, 168, 10, 4, 65, 85, 68, 32, 2, 17, - 2, 83, 83, 2, 211, 216, 10, 32, 2, 11, 79, 2, 195, 253, 6, 76, 4, 116, - 15, 72, 85, 82, 73, 83, 65, 90, 32, 84, 72, 85, 82, 83, 32, 84, 33, 10, - 73, 87, 65, 90, 32, 84, 73, 82, 32, 84, 2, 11, 72, 2, 171, 227, 5, 79, 2, - 17, 2, 89, 82, 2, 187, 217, 10, 32, 5, 41, 8, 85, 78, 74, 79, 32, 87, 89, - 78, 2, 11, 78, 2, 251, 246, 9, 32, 2, 21, 3, 73, 78, 71, 2, 237, 174, 7, - 2, 76, 69, 4, 188, 137, 9, 16, 73, 78, 71, 32, 83, 72, 73, 82, 84, 32, - 87, 73, 84, 72, 32, 83, 187, 178, 1, 69, 12, 120, 3, 66, 73, 78, 2, 78, - 28, 2, 81, 85, 0, 3, 86, 73, 71, 174, 160, 7, 83, 229, 169, 1, 6, 84, 82, - 69, 68, 69, 67, 2, 169, 202, 8, 2, 79, 86, 2, 129, 202, 8, 2, 73, 78, - 200, 40, 244, 1, 2, 32, 73, 22, 65, 162, 26, 67, 138, 5, 69, 166, 11, 72, - 242, 36, 73, 162, 233, 1, 75, 154, 2, 76, 142, 9, 77, 166, 21, 78, 190, - 2, 79, 158, 39, 80, 172, 12, 2, 81, 85, 138, 70, 83, 38, 84, 138, 17, 85, - 150, 43, 87, 186, 1, 89, 247, 178, 5, 71, 2, 183, 201, 9, 78, 198, 2, - 132, 2, 5, 70, 69, 84, 89, 32, 36, 4, 71, 73, 84, 84, 30, 76, 112, 8, 77, - 65, 82, 73, 84, 65, 78, 32, 146, 14, 78, 190, 3, 84, 102, 85, 204, 244, - 2, 2, 73, 76, 242, 91, 88, 144, 148, 6, 15, 75, 69, 32, 66, 79, 84, 84, - 76, 69, 32, 65, 78, 68, 32, 67, 159, 98, 82, 4, 254, 251, 6, 86, 207, - 242, 2, 80, 2, 201, 213, 3, 2, 65, 82, 6, 18, 84, 75, 85, 4, 36, 3, 32, - 83, 72, 235, 202, 9, 73, 2, 11, 65, 2, 171, 175, 10, 75, 2, 227, 228, 9, - 84, 122, 184, 1, 7, 76, 69, 84, 84, 69, 82, 32, 198, 3, 77, 248, 2, 12, - 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 136, 4, 11, 86, 79, 87, - 69, 76, 32, 83, 73, 71, 78, 32, 203, 159, 4, 65, 44, 202, 1, 66, 32, 2, - 68, 65, 22, 73, 38, 75, 22, 76, 34, 83, 46, 84, 182, 2, 65, 212, 231, 5, - 2, 71, 65, 222, 153, 1, 82, 202, 142, 2, 90, 182, 83, 77, 172, 1, 2, 81, - 85, 118, 78, 226, 6, 89, 251, 101, 70, 4, 186, 205, 10, 73, 247, 25, 65, - 2, 151, 224, 9, 76, 6, 178, 233, 10, 78, 2, 84, 3, 89, 2, 223, 231, 9, - 65, 2, 11, 65, 2, 191, 223, 9, 66, 4, 156, 7, 3, 73, 78, 71, 163, 149, 9, - 72, 6, 254, 230, 9, 65, 134, 101, 73, 229, 10, 5, 83, 65, 65, 68, 73, 18, - 96, 4, 65, 82, 75, 32, 165, 1, 15, 79, 68, 73, 70, 73, 69, 82, 32, 76, - 69, 84, 84, 69, 82, 32, 12, 82, 68, 40, 2, 73, 78, 90, 69, 242, 2, 78, - 213, 191, 8, 5, 79, 67, 67, 76, 85, 2, 17, 2, 65, 71, 2, 155, 251, 8, 69, - 5, 17, 2, 45, 65, 2, 203, 228, 9, 76, 6, 46, 69, 184, 6, 2, 83, 72, 131, - 223, 10, 73, 2, 229, 235, 9, 11, 80, 69, 78, 84, 72, 69, 84, 73, 67, 32, - 89, 28, 130, 1, 65, 154, 1, 66, 22, 78, 30, 83, 134, 1, 90, 250, 166, 3, - 84, 156, 149, 7, 9, 77, 69, 76, 79, 68, 73, 67, 32, 81, 3, 81, 10, 76, 3, - 70, 83, 65, 34, 78, 28, 2, 84, 77, 245, 189, 10, 4, 82, 75, 65, 65, 2, - 11, 65, 2, 151, 227, 10, 81, 4, 26, 78, 211, 206, 5, 71, 2, 11, 65, 2, - 243, 189, 10, 65, 2, 165, 143, 3, 2, 69, 81, 4, 64, 4, 72, 73, 89, 89, - 45, 8, 79, 70, 32, 77, 65, 83, 72, 70, 2, 11, 65, 2, 11, 65, 2, 155, 236, - 8, 76, 2, 139, 216, 9, 65, 4, 34, 65, 209, 235, 8, 2, 73, 81, 2, 223, - 223, 9, 69, 30, 92, 5, 76, 79, 78, 71, 32, 54, 79, 66, 83, 174, 205, 6, - 65, 242, 145, 4, 69, 2, 73, 3, 85, 10, 158, 206, 6, 65, 242, 145, 4, 69, - 2, 73, 3, 85, 7, 41, 8, 86, 69, 82, 76, 79, 78, 71, 32, 4, 191, 205, 6, - 65, 4, 26, 72, 183, 219, 5, 85, 2, 129, 150, 6, 3, 79, 82, 84, 10, 68, 8, - 83, 45, 83, 69, 82, 73, 70, 32, 241, 187, 10, 3, 68, 87, 73, 8, 44, 6, - 72, 69, 65, 86, 89, 32, 139, 2, 73, 6, 48, 3, 68, 79, 85, 81, 5, 76, 79, - 87, 32, 68, 4, 11, 66, 4, 21, 3, 76, 69, 32, 4, 84, 6, 84, 85, 82, 78, - 69, 68, 23, 67, 2, 21, 3, 79, 85, 66, 2, 17, 2, 76, 69, 2, 17, 2, 32, 67, - 2, 33, 6, 79, 77, 77, 65, 32, 81, 2, 145, 144, 9, 3, 85, 79, 84, 2, 253, - 151, 10, 10, 78, 84, 69, 82, 82, 79, 66, 65, 78, 71, 6, 48, 6, 69, 76, - 76, 73, 84, 69, 143, 200, 5, 85, 5, 25, 4, 32, 65, 78, 84, 2, 147, 160, - 7, 69, 168, 1, 50, 82, 225, 141, 5, 6, 68, 73, 32, 82, 73, 89, 166, 1, - 52, 7, 65, 83, 72, 84, 82, 65, 32, 183, 191, 4, 79, 164, 1, 180, 1, 7, - 76, 69, 84, 84, 69, 82, 32, 212, 1, 5, 83, 73, 71, 78, 32, 194, 21, 68, - 176, 250, 2, 16, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, - 32, 72, 211, 155, 2, 86, 100, 154, 250, 6, 65, 38, 68, 114, 84, 46, 86, - 186, 5, 85, 206, 141, 1, 79, 238, 60, 73, 42, 76, 226, 195, 1, 78, 46, - 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 162, 7, 69, 234, 61, 72, - 2, 77, 2, 82, 3, 89, 8, 218, 184, 6, 67, 234, 216, 3, 65, 239, 1, 86, 52, - 66, 65, 32, 4, 72, 79, 79, 76, 46, 79, 74, 82, 183, 212, 10, 73, 4, 194, - 191, 9, 76, 227, 20, 82, 5, 245, 191, 5, 6, 32, 83, 65, 84, 67, 72, 6, - 36, 3, 82, 80, 73, 203, 154, 9, 79, 4, 242, 132, 10, 79, 135, 18, 85, 36, - 66, 69, 72, 4, 73, 80, 84, 32, 214, 250, 1, 85, 175, 206, 6, 79, 4, 36, - 3, 87, 68, 82, 235, 131, 10, 69, 2, 11, 73, 2, 207, 149, 10, 86, 28, 80, - 8, 67, 65, 80, 73, 84, 65, 76, 32, 86, 76, 81, 6, 83, 77, 65, 76, 76, 32, - 18, 210, 210, 10, 66, 2, 69, 2, 70, 2, 72, 2, 73, 2, 76, 2, 77, 2, 80, 3, - 82, 2, 37, 7, 73, 71, 65, 84, 85, 82, 69, 2, 11, 32, 2, 233, 141, 10, 2, - 69, 84, 8, 174, 209, 10, 69, 2, 71, 2, 76, 3, 79, 220, 1, 130, 2, 65, 30, - 67, 74, 69, 36, 5, 71, 77, 69, 78, 84, 28, 2, 77, 73, 172, 1, 8, 80, 65, - 82, 65, 84, 69, 68, 32, 138, 4, 82, 158, 1, 83, 68, 2, 84, 32, 168, 140, - 5, 8, 87, 73, 78, 71, 32, 78, 69, 69, 202, 145, 3, 88, 190, 106, 68, 233, - 162, 1, 2, 76, 70, 4, 250, 206, 10, 76, 3, 84, 6, 34, 84, 245, 226, 5, 2, - 79, 78, 4, 178, 201, 6, 73, 175, 204, 3, 79, 4, 166, 224, 1, 68, 191, - 132, 1, 45, 23, 189, 191, 4, 2, 69, 68, 6, 212, 84, 28, 68, 73, 82, 69, - 67, 84, 32, 80, 82, 79, 68, 85, 67, 84, 32, 87, 73, 84, 72, 32, 66, 79, - 84, 84, 79, 77, 32, 67, 172, 208, 7, 3, 83, 69, 88, 211, 216, 1, 67, 158, - 1, 48, 6, 66, 76, 79, 67, 75, 32, 203, 182, 9, 83, 156, 1, 88, 9, 81, 85, - 65, 68, 82, 65, 78, 84, 45, 129, 1, 8, 83, 69, 88, 84, 65, 78, 84, 45, - 30, 42, 49, 38, 50, 30, 51, 171, 202, 10, 52, 17, 34, 50, 30, 51, 171, - 202, 10, 52, 9, 26, 51, 171, 202, 10, 52, 5, 167, 202, 10, 52, 126, 58, - 49, 54, 50, 46, 51, 38, 52, 30, 53, 187, 200, 10, 54, 65, 50, 50, 46, 51, - 38, 52, 30, 53, 187, 200, 10, 54, 33, 42, 51, 38, 52, 30, 53, 187, 200, - 10, 54, 17, 34, 52, 30, 53, 187, 200, 10, 54, 9, 26, 53, 187, 200, 10, - 54, 5, 183, 200, 10, 54, 4, 120, 2, 86, 73, 129, 175, 2, 22, 73, 79, 85, - 83, 32, 70, 65, 67, 69, 32, 87, 73, 84, 72, 32, 83, 89, 77, 66, 79, 76, - 83, 2, 11, 67, 2, 215, 133, 10, 69, 4, 52, 7, 81, 85, 73, 81, 85, 65, 68, - 239, 141, 9, 65, 2, 91, 82, 4, 64, 10, 84, 82, 65, 78, 83, 77, 73, 84, - 32, 83, 151, 187, 6, 77, 2, 11, 84, 2, 223, 252, 8, 65, 134, 3, 102, 65, - 218, 20, 73, 102, 79, 214, 13, 69, 70, 82, 224, 143, 9, 5, 85, 70, 70, - 76, 69, 195, 145, 1, 89, 192, 2, 164, 1, 12, 68, 79, 87, 69, 68, 32, 87, - 72, 73, 84, 69, 32, 56, 9, 76, 76, 79, 87, 32, 80, 65, 78, 32, 62, 82, - 182, 10, 86, 160, 198, 7, 2, 77, 82, 227, 233, 1, 75, 6, 174, 239, 8, 67, - 206, 11, 83, 245, 4, 3, 76, 65, 84, 2, 17, 2, 79, 70, 2, 17, 2, 32, 70, - 2, 187, 136, 7, 79, 210, 1, 40, 4, 65, 68, 65, 32, 167, 194, 10, 75, 208, - 1, 162, 1, 68, 46, 69, 110, 72, 34, 76, 246, 1, 83, 212, 2, 6, 86, 79, - 87, 69, 76, 32, 170, 199, 4, 65, 188, 211, 1, 7, 67, 79, 78, 84, 73, 78, - 85, 195, 143, 4, 79, 24, 194, 224, 6, 79, 66, 65, 255, 235, 1, 73, 4, 84, - 15, 88, 84, 82, 65, 32, 83, 72, 79, 82, 84, 32, 86, 79, 87, 69, 235, 130, - 9, 75, 2, 179, 254, 9, 76, 2, 217, 143, 10, 3, 69, 65, 68, 96, 33, 6, 69, - 84, 84, 69, 82, 32, 96, 170, 225, 6, 65, 38, 68, 114, 84, 46, 86, 186, 5, - 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, - 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 89, 186, 2, 69, 3, - 79, 30, 70, 65, 38, 69, 56, 4, 73, 71, 78, 32, 145, 183, 9, 3, 85, 84, - 82, 2, 193, 251, 9, 4, 78, 68, 72, 73, 6, 212, 205, 2, 5, 67, 84, 73, 79, - 78, 243, 189, 4, 80, 20, 106, 73, 154, 144, 5, 83, 202, 141, 1, 67, 98, - 78, 190, 66, 65, 190, 158, 1, 74, 150, 3, 85, 235, 245, 1, 86, 2, 37, 7, - 78, 86, 69, 82, 84, 69, 68, 2, 181, 157, 6, 2, 32, 67, 46, 60, 6, 77, 79, - 68, 73, 70, 73, 21, 5, 83, 73, 71, 78, 32, 2, 155, 146, 6, 69, 44, 110, - 67, 42, 79, 34, 80, 162, 183, 4, 85, 194, 229, 1, 83, 242, 68, 65, 58, - 86, 166, 202, 1, 73, 199, 140, 2, 69, 4, 193, 157, 6, 5, 65, 78, 68, 82, - 65, 7, 186, 162, 10, 79, 215, 22, 69, 2, 57, 12, 82, 73, 83, 72, 84, 72, - 65, 77, 65, 84, 82, 65, 2, 223, 161, 10, 32, 98, 72, 3, 69, 68, 32, 21, - 11, 73, 65, 78, 32, 76, 69, 84, 84, 69, 82, 32, 2, 215, 250, 9, 73, 96, - 158, 2, 65, 120, 3, 67, 72, 85, 22, 69, 70, 72, 46, 73, 46, 76, 22, 77, - 38, 79, 94, 80, 18, 82, 22, 83, 38, 84, 64, 2, 87, 79, 36, 2, 89, 69, - 212, 243, 4, 2, 74, 85, 166, 228, 2, 68, 202, 13, 90, 218, 88, 70, 182, - 6, 71, 234, 45, 66, 246, 11, 75, 234, 21, 86, 250, 27, 78, 167, 128, 1, - 85, 16, 82, 82, 242, 251, 9, 73, 234, 25, 68, 162, 8, 71, 2, 87, 198, 21, - 83, 147, 1, 72, 4, 170, 166, 9, 82, 163, 142, 1, 69, 2, 255, 145, 10, 82, - 8, 38, 65, 146, 251, 9, 82, 139, 56, 71, 4, 234, 179, 10, 82, 3, 84, 4, - 164, 182, 8, 2, 65, 45, 179, 172, 1, 85, 6, 194, 227, 9, 65, 142, 57, 67, - 215, 22, 70, 2, 207, 168, 8, 79, 4, 146, 158, 5, 69, 227, 250, 3, 73, 12, - 70, 79, 170, 166, 9, 73, 166, 111, 85, 150, 25, 65, 154, 3, 78, 3, 82, 2, - 163, 155, 10, 90, 2, 255, 15, 69, 2, 151, 142, 9, 79, 4, 130, 143, 9, 85, - 191, 162, 1, 79, 6, 26, 72, 215, 148, 10, 79, 4, 218, 131, 6, 73, 223, - 155, 4, 69, 4, 138, 165, 9, 79, 211, 139, 1, 69, 4, 182, 176, 10, 65, 3, - 87, 10, 78, 69, 186, 232, 3, 70, 148, 126, 6, 78, 84, 79, 32, 83, 72, - 131, 201, 5, 80, 2, 171, 233, 9, 76, 50, 252, 1, 2, 79, 84, 32, 6, 80, - 80, 73, 78, 71, 32, 72, 2, 82, 84, 128, 11, 7, 85, 76, 68, 69, 82, 69, - 68, 184, 240, 1, 24, 67, 75, 69, 68, 32, 70, 65, 67, 69, 32, 87, 73, 84, - 72, 32, 69, 88, 80, 76, 79, 68, 73, 78, 71, 234, 155, 3, 86, 199, 215, 4, - 87, 2, 197, 147, 8, 3, 73, 78, 71, 4, 36, 3, 84, 82, 79, 131, 242, 5, 66, - 2, 11, 76, 2, 139, 143, 8, 76, 36, 102, 32, 200, 8, 12, 72, 65, 78, 68, - 32, 70, 79, 82, 77, 65, 84, 32, 250, 182, 6, 67, 171, 236, 3, 83, 24, - 242, 1, 66, 92, 11, 83, 76, 65, 78, 84, 69, 68, 32, 78, 79, 82, 196, 1, - 4, 76, 69, 70, 84, 156, 1, 11, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, - 32, 248, 1, 7, 85, 80, 32, 84, 65, 67, 75, 129, 161, 2, 9, 68, 79, 87, - 78, 32, 84, 65, 67, 75, 4, 88, 14, 65, 67, 75, 83, 76, 65, 78, 84, 69, - 68, 32, 83, 79, 85, 33, 4, 69, 78, 84, 32, 2, 11, 84, 2, 179, 140, 9, 72, - 2, 221, 40, 37, 65, 82, 82, 79, 87, 32, 80, 79, 73, 78, 84, 73, 78, 71, - 32, 68, 79, 87, 78, 87, 65, 82, 68, 83, 32, 84, 72, 69, 78, 32, 78, 79, - 82, 84, 72, 32, 69, 4, 116, 24, 87, 65, 82, 68, 83, 32, 72, 65, 82, 80, - 79, 79, 78, 32, 65, 66, 79, 86, 69, 32, 76, 79, 78, 71, 171, 3, 32, 2, - 237, 1, 5, 32, 82, 73, 71, 72, 4, 112, 11, 65, 82, 82, 79, 87, 32, 65, - 66, 79, 86, 69, 29, 13, 72, 65, 82, 80, 79, 79, 78, 32, 65, 66, 79, 86, - 69, 2, 157, 128, 6, 2, 32, 76, 2, 29, 5, 32, 76, 79, 78, 71, 2, 25, 4, - 32, 76, 69, 70, 2, 153, 250, 6, 6, 84, 87, 65, 82, 68, 83, 7, 11, 32, 4, - 76, 13, 65, 66, 79, 86, 69, 32, 83, 72, 79, 82, 84, 32, 68, 251, 131, 2, - 87, 2, 11, 79, 2, 11, 87, 2, 11, 78, 2, 11, 32, 2, 223, 132, 7, 84, 8, - 120, 10, 67, 79, 78, 84, 73, 78, 85, 73, 78, 71, 0, 6, 76, 69, 84, 84, - 69, 82, 40, 4, 68, 79, 87, 78, 1, 2, 85, 80, 2, 193, 179, 3, 5, 32, 79, - 86, 69, 82, 2, 21, 3, 32, 83, 84, 2, 215, 161, 10, 69, 2, 25, 4, 32, 79, - 80, 69, 2, 207, 146, 9, 78, 4, 26, 73, 179, 160, 10, 85, 2, 247, 160, 10, - 77, 211, 14, 174, 1, 68, 152, 20, 2, 71, 78, 184, 181, 1, 6, 77, 73, 76, - 65, 82, 32, 158, 2, 78, 202, 24, 88, 237, 238, 6, 15, 76, 72, 79, 85, 69, - 84, 84, 69, 32, 79, 70, 32, 74, 65, 80, 252, 1, 40, 5, 68, 72, 65, 77, - 32, 135, 17, 69, 184, 1, 202, 1, 69, 68, 7, 76, 69, 84, 84, 69, 82, 32, - 176, 4, 15, 82, 69, 80, 69, 84, 73, 84, 73, 79, 78, 32, 77, 65, 82, 75, - 50, 83, 164, 8, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 171, 175, - 6, 68, 2, 37, 7, 78, 68, 32, 79, 70, 32, 84, 2, 201, 210, 9, 2, 69, 88, - 102, 214, 1, 65, 98, 84, 242, 188, 6, 68, 158, 1, 86, 186, 5, 85, 186, - 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, - 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 89, 186, 2, 69, 3, 79, 11, - 72, 8, 76, 84, 69, 82, 78, 65, 84, 69, 214, 154, 10, 65, 2, 73, 3, 85, 2, - 235, 245, 9, 32, 14, 134, 1, 72, 252, 231, 5, 19, 87, 79, 45, 67, 73, 82, - 67, 76, 69, 32, 65, 76, 84, 69, 82, 78, 65, 84, 69, 254, 233, 3, 84, 195, - 71, 65, 4, 164, 217, 9, 20, 82, 69, 69, 45, 67, 73, 82, 67, 76, 69, 32, - 65, 76, 84, 69, 82, 78, 65, 84, 69, 147, 64, 65, 6, 11, 45, 6, 186, 152, - 10, 49, 2, 50, 3, 51, 44, 38, 69, 181, 7, 4, 73, 71, 78, 32, 32, 96, 11, - 67, 84, 73, 79, 78, 32, 77, 65, 82, 75, 32, 177, 6, 8, 80, 65, 82, 65, - 84, 79, 82, 32, 28, 80, 11, 68, 79, 85, 66, 76, 69, 32, 82, 73, 78, 71, - 57, 5, 87, 73, 84, 72, 32, 5, 11, 32, 2, 249, 231, 8, 6, 87, 73, 84, 72, - 32, 82, 24, 212, 1, 12, 67, 73, 82, 67, 76, 69, 83, 32, 65, 78, 68, 32, - 116, 5, 81, 85, 65, 68, 82, 0, 4, 83, 69, 80, 84, 12, 16, 82, 65, 89, 83, - 32, 65, 78, 68, 32, 68, 79, 84, 84, 69, 68, 32, 46, 68, 45, 3, 84, 82, - 73, 6, 60, 4, 70, 79, 85, 82, 0, 3, 84, 87, 79, 187, 229, 8, 82, 2, 225, - 207, 6, 8, 32, 69, 78, 67, 76, 79, 83, 85, 2, 83, 85, 6, 42, 68, 28, 3, - 84, 82, 73, 215, 1, 67, 2, 197, 1, 3, 79, 85, 66, 2, 171, 1, 80, 6, 52, - 9, 68, 69, 78, 84, 32, 65, 78, 68, 32, 103, 80, 4, 116, 6, 68, 79, 84, - 84, 69, 68, 49, 14, 85, 45, 83, 72, 65, 80, 69, 68, 32, 79, 82, 78, 65, - 77, 2, 17, 2, 76, 69, 2, 17, 2, 32, 67, 2, 25, 4, 82, 69, 83, 67, 2, 239, - 186, 1, 69, 4, 158, 237, 8, 66, 135, 83, 68, 12, 146, 229, 4, 83, 202, - 141, 1, 67, 98, 78, 138, 216, 3, 65, 239, 1, 86, 26, 74, 65, 94, 86, 210, - 183, 6, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 10, 168, 184, 6, 10, - 76, 84, 69, 82, 78, 65, 84, 69, 32, 85, 254, 214, 3, 65, 2, 73, 3, 85, 4, - 11, 79, 4, 33, 6, 67, 65, 76, 73, 67, 32, 4, 255, 183, 6, 82, 68, 84, 12, - 84, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 78, 49, 5, 87, 65, 89, 83, - 32, 52, 178, 156, 1, 50, 222, 176, 3, 48, 131, 2, 49, 16, 56, 5, 66, 76, - 65, 67, 75, 1, 5, 87, 72, 73, 84, 69, 8, 11, 32, 8, 70, 82, 24, 3, 76, - 69, 70, 12, 4, 68, 79, 87, 78, 1, 2, 85, 80, 2, 21, 3, 73, 71, 72, 2, 11, - 84, 2, 225, 92, 6, 32, 80, 79, 73, 78, 84, 194, 10, 96, 8, 87, 82, 73, - 84, 73, 78, 71, 32, 241, 238, 1, 10, 32, 79, 70, 32, 84, 72, 69, 32, 72, - 79, 192, 10, 136, 3, 4, 65, 73, 82, 32, 192, 1, 2, 66, 82, 102, 67, 138, - 1, 68, 218, 4, 69, 242, 6, 70, 244, 3, 4, 87, 65, 76, 76, 138, 1, 72, - 234, 77, 76, 212, 6, 2, 77, 79, 222, 42, 78, 218, 1, 82, 182, 7, 83, 162, - 5, 84, 180, 10, 5, 71, 82, 65, 83, 80, 184, 5, 30, 85, 80, 80, 69, 82, - 32, 66, 79, 68, 89, 32, 84, 73, 76, 84, 73, 78, 71, 32, 70, 82, 79, 77, - 32, 72, 73, 80, 32, 74, 79, 135, 207, 4, 80, 8, 48, 4, 66, 76, 79, 87, - 29, 4, 83, 85, 67, 75, 4, 58, 32, 211, 226, 4, 73, 4, 30, 32, 61, 3, 73, - 78, 71, 2, 237, 157, 1, 10, 83, 77, 65, 76, 76, 32, 82, 79, 84, 65, 2, - 171, 134, 9, 32, 10, 52, 5, 69, 65, 84, 72, 32, 229, 169, 1, 2, 85, 83, - 4, 140, 164, 2, 2, 69, 88, 1, 2, 73, 78, 10, 40, 6, 72, 69, 69, 75, 83, - 32, 63, 79, 6, 154, 107, 83, 146, 38, 78, 153, 223, 3, 4, 80, 85, 70, 70, - 4, 178, 180, 9, 76, 223, 46, 77, 28, 108, 15, 82, 69, 65, 77, 89, 32, 69, - 89, 69, 66, 82, 79, 87, 83, 32, 165, 1, 7, 89, 78, 65, 77, 73, 67, 32, 8, - 64, 4, 68, 79, 87, 78, 0, 2, 85, 80, 29, 4, 78, 69, 85, 84, 2, 153, 143, - 1, 2, 32, 78, 4, 21, 3, 82, 65, 76, 4, 11, 32, 4, 194, 58, 68, 191, 199, - 9, 85, 20, 180, 1, 11, 69, 86, 69, 82, 89, 32, 79, 84, 72, 69, 82, 30, - 70, 22, 83, 128, 122, 9, 65, 82, 82, 79, 87, 72, 69, 65, 68, 234, 38, 82, - 136, 206, 3, 2, 84, 69, 21, 4, 71, 82, 65, 68, 2, 181, 230, 8, 2, 32, 84, - 2, 163, 146, 6, 65, 6, 68, 11, 73, 77, 85, 76, 84, 65, 78, 69, 79, 85, - 83, 151, 227, 8, 76, 5, 203, 151, 1, 32, 54, 64, 2, 89, 69, 172, 227, 4, - 4, 88, 67, 73, 84, 203, 138, 4, 65, 50, 166, 1, 32, 56, 15, 66, 82, 79, - 87, 83, 32, 83, 84, 82, 65, 73, 71, 72, 84, 32, 44, 5, 71, 65, 90, 69, - 45, 140, 2, 7, 76, 65, 83, 72, 69, 83, 32, 65, 2, 83, 32, 6, 220, 150, 1, - 5, 66, 76, 73, 78, 75, 243, 129, 5, 87, 6, 186, 53, 68, 154, 84, 78, 167, - 243, 8, 85, 18, 100, 11, 70, 76, 79, 79, 82, 80, 76, 65, 78, 69, 32, 25, - 10, 87, 65, 76, 76, 80, 76, 65, 78, 69, 32, 8, 82, 83, 207, 45, 67, 10, - 18, 67, 43, 83, 4, 254, 45, 85, 213, 95, 3, 73, 82, 67, 6, 37, 7, 84, 82, - 65, 73, 71, 72, 84, 7, 11, 32, 4, 202, 163, 1, 65, 55, 68, 6, 130, 51, - 68, 180, 173, 4, 4, 70, 76, 85, 84, 139, 154, 5, 85, 14, 112, 5, 72, 65, - 76, 70, 32, 26, 67, 28, 4, 87, 73, 68, 69, 230, 92, 79, 233, 135, 4, 6, - 83, 81, 85, 69, 69, 90, 4, 22, 67, 131, 93, 79, 2, 213, 232, 2, 2, 76, - 79, 4, 162, 67, 32, 217, 61, 4, 78, 73, 78, 71, 38, 204, 1, 28, 65, 67, - 69, 32, 68, 73, 82, 69, 67, 84, 73, 79, 78, 32, 80, 79, 83, 73, 84, 73, - 79, 78, 32, 78, 79, 83, 69, 32, 138, 1, 73, 82, 76, 176, 1, 8, 79, 82, - 69, 72, 69, 65, 68, 32, 187, 158, 7, 85, 6, 88, 10, 85, 80, 32, 79, 82, - 32, 68, 79, 87, 78, 13, 8, 70, 79, 82, 87, 65, 82, 68, 32, 5, 11, 32, 2, - 153, 231, 4, 3, 84, 73, 76, 12, 180, 225, 3, 11, 76, 76, 32, 77, 79, 68, - 73, 70, 73, 69, 82, 131, 195, 2, 78, 12, 44, 4, 73, 67, 75, 32, 29, 3, - 79, 79, 82, 10, 254, 140, 1, 76, 35, 83, 2, 225, 247, 8, 20, 80, 76, 65, - 78, 69, 32, 83, 72, 79, 85, 76, 68, 69, 82, 32, 72, 73, 80, 32, 77, 6, - 166, 89, 87, 222, 38, 67, 47, 78, 156, 4, 34, 65, 133, 75, 3, 69, 65, 68, - 140, 4, 36, 3, 78, 68, 45, 143, 186, 9, 73, 138, 4, 92, 5, 65, 78, 71, - 76, 69, 138, 5, 67, 150, 10, 70, 186, 42, 72, 241, 12, 4, 79, 86, 65, 76, - 37, 11, 32, 34, 188, 1, 5, 73, 78, 68, 69, 88, 176, 1, 7, 76, 73, 84, 84, - 76, 69, 32, 136, 1, 5, 82, 73, 78, 71, 32, 173, 66, 18, 77, 73, 68, 68, - 76, 69, 32, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 69, 17, 11, 32, 14, - 128, 1, 7, 77, 73, 68, 68, 76, 69, 32, 228, 24, 11, 82, 73, 78, 71, 32, - 76, 73, 84, 84, 76, 69, 241, 42, 5, 84, 72, 85, 77, 66, 4, 174, 70, 76, - 247, 215, 8, 82, 8, 44, 5, 73, 78, 68, 69, 88, 207, 238, 9, 85, 7, 145, - 24, 18, 32, 84, 72, 85, 77, 66, 32, 73, 78, 68, 69, 88, 32, 84, 72, 85, - 77, 66, 4, 108, 22, 68, 79, 87, 78, 32, 77, 73, 68, 68, 76, 69, 32, 84, - 72, 85, 77, 66, 32, 73, 78, 68, 69, 155, 68, 76, 2, 207, 169, 8, 88, 88, - 64, 5, 73, 82, 67, 76, 69, 184, 3, 3, 76, 65, 87, 183, 2, 85, 35, 11, 32, - 32, 116, 5, 73, 78, 68, 69, 88, 200, 1, 7, 76, 73, 84, 84, 76, 69, 32, - 36, 7, 77, 73, 68, 68, 76, 69, 32, 163, 64, 82, 21, 11, 32, 18, 72, 6, - 77, 73, 68, 68, 76, 69, 198, 26, 72, 242, 38, 82, 131, 230, 8, 66, 13, - 11, 32, 10, 64, 5, 67, 82, 79, 83, 83, 198, 64, 84, 82, 76, 247, 215, 8, - 82, 4, 134, 65, 32, 231, 226, 8, 69, 4, 194, 193, 8, 73, 159, 168, 1, 85, - 6, 252, 47, 10, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 191, 185, 9, 85, - 17, 11, 32, 14, 144, 2, 28, 77, 73, 68, 68, 76, 69, 32, 82, 73, 78, 71, - 32, 76, 73, 84, 84, 76, 69, 32, 67, 79, 78, 74, 79, 73, 78, 69, 68, 176, - 49, 2, 70, 79, 198, 11, 78, 162, 1, 84, 197, 118, 23, 73, 78, 68, 69, 88, - 32, 84, 72, 85, 77, 66, 32, 67, 85, 82, 86, 69, 32, 84, 72, 85, 77, 66, - 5, 247, 180, 1, 32, 38, 46, 80, 149, 2, 6, 82, 76, 73, 67, 85, 69, 31, - 11, 32, 28, 188, 1, 5, 73, 78, 68, 69, 88, 56, 19, 70, 73, 86, 69, 32, - 70, 73, 78, 71, 69, 82, 83, 32, 83, 80, 82, 69, 65, 68, 196, 50, 7, 77, - 73, 68, 68, 76, 69, 32, 18, 79, 218, 7, 78, 163, 1, 84, 9, 11, 32, 6, 40, - 5, 84, 72, 85, 77, 66, 243, 58, 82, 5, 215, 46, 32, 9, 11, 32, 6, 72, 5, - 73, 78, 68, 69, 88, 0, 6, 77, 73, 68, 68, 76, 69, 179, 71, 79, 2, 193, - 147, 9, 13, 32, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 69, 32, 172, 2, - 44, 3, 73, 83, 84, 177, 33, 3, 76, 65, 84, 247, 1, 11, 32, 244, 1, 160, - 2, 5, 73, 78, 68, 69, 88, 192, 16, 7, 76, 73, 84, 84, 76, 69, 32, 196, 2, - 7, 77, 73, 68, 68, 76, 69, 32, 200, 4, 5, 82, 73, 78, 71, 32, 132, 2, 5, - 84, 72, 85, 77, 66, 138, 2, 72, 205, 9, 22, 70, 79, 85, 82, 32, 70, 73, - 78, 71, 69, 82, 83, 32, 67, 79, 78, 74, 79, 73, 78, 69, 68, 137, 1, 11, - 32, 134, 1, 232, 1, 4, 66, 69, 78, 84, 36, 6, 72, 73, 78, 71, 69, 68, 76, - 6, 77, 73, 68, 68, 76, 69, 168, 7, 2, 67, 85, 64, 6, 84, 72, 85, 77, 66, - 32, 160, 5, 16, 85, 80, 32, 77, 73, 68, 68, 76, 69, 32, 72, 73, 78, 71, - 69, 68, 151, 4, 82, 5, 217, 45, 5, 32, 79, 86, 69, 82, 9, 11, 32, 6, 252, - 20, 8, 77, 73, 68, 68, 76, 69, 32, 85, 167, 172, 8, 76, 71, 11, 32, 68, - 236, 1, 4, 66, 69, 78, 84, 42, 67, 244, 1, 10, 85, 80, 32, 83, 80, 82, - 69, 65, 68, 32, 100, 6, 72, 73, 78, 71, 69, 68, 46, 82, 80, 5, 84, 72, - 85, 77, 66, 188, 28, 14, 83, 84, 82, 65, 73, 71, 72, 84, 32, 84, 72, 85, - 77, 66, 227, 17, 76, 5, 213, 92, 6, 32, 84, 72, 85, 77, 66, 28, 68, 8, - 79, 78, 74, 79, 73, 78, 69, 68, 233, 1, 4, 82, 79, 83, 83, 23, 11, 32, - 20, 144, 1, 6, 67, 85, 80, 80, 69, 68, 28, 6, 84, 72, 85, 77, 66, 32, 68, - 5, 72, 73, 78, 71, 69, 166, 22, 73, 165, 7, 6, 77, 73, 68, 68, 76, 69, 5, - 11, 32, 2, 203, 27, 84, 8, 160, 1, 4, 83, 73, 68, 69, 219, 61, 70, 6, 22, - 69, 159, 47, 32, 4, 223, 15, 68, 5, 241, 30, 7, 32, 83, 80, 82, 69, 65, - 68, 8, 32, 3, 73, 78, 71, 247, 19, 65, 7, 11, 32, 4, 138, 36, 67, 131, - 240, 8, 66, 19, 11, 32, 16, 64, 6, 65, 78, 71, 76, 69, 68, 22, 67, 106, - 72, 163, 146, 9, 66, 5, 167, 221, 5, 32, 6, 74, 85, 230, 7, 73, 241, 25, - 10, 79, 78, 74, 79, 73, 78, 69, 68, 32, 72, 2, 201, 193, 4, 2, 80, 80, 4, + 225, 132, 2, 3, 73, 67, 89, 2, 17, 2, 32, 72, 2, 251, 207, 13, 69, 5, + 175, 235, 13, 32, 4, 60, 6, 69, 68, 69, 83, 84, 82, 245, 207, 9, 3, 73, + 82, 65, 2, 161, 170, 11, 2, 73, 65, 4, 36, 5, 78, 65, 76, 32, 68, 59, 83, + 2, 133, 219, 13, 9, 73, 71, 73, 84, 32, 83, 72, 65, 80, 2, 191, 155, 11, + 77, 6, 38, 45, 145, 224, 9, 3, 70, 79, 82, 4, 76, 8, 66, 82, 69, 65, 75, + 73, 78, 71, 233, 164, 2, 5, 80, 79, 84, 65, 66, 2, 213, 222, 6, 2, 32, + 72, 97, 56, 2, 84, 72, 142, 11, 77, 237, 239, 10, 3, 68, 73, 67, 88, 42, + 32, 149, 206, 6, 4, 69, 65, 83, 84, 86, 96, 5, 69, 65, 83, 84, 32, 148, + 2, 6, 73, 78, 68, 73, 67, 32, 217, 1, 5, 87, 69, 83, 84, 32, 32, 82, 65, + 202, 243, 6, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68, 18, 83, 251, 58, + 87, 14, 40, 4, 82, 82, 79, 87, 179, 239, 6, 78, 13, 11, 32, 10, 96, 9, + 67, 82, 79, 83, 83, 73, 78, 71, 32, 244, 2, 2, 65, 78, 130, 239, 6, 87, + 131, 145, 5, 70, 4, 242, 193, 3, 83, 187, 175, 3, 78, 20, 50, 80, 60, 3, + 81, 85, 65, 66, 82, 255, 127, 70, 2, 37, 7, 76, 65, 67, 69, 72, 79, 76, + 2, 179, 176, 4, 68, 4, 156, 176, 4, 2, 82, 84, 249, 248, 9, 5, 78, 84, + 73, 84, 89, 2, 17, 2, 85, 80, 2, 235, 162, 4, 69, 34, 82, 65, 222, 239, + 6, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68, 18, 83, 251, 58, 87, 16, 34, + 78, 33, 4, 82, 82, 79, 87, 2, 253, 190, 3, 3, 68, 32, 83, 15, 11, 32, 12, + 84, 3, 84, 79, 32, 238, 234, 6, 67, 40, 3, 65, 78, 68, 234, 2, 87, 131, + 145, 5, 70, 4, 246, 235, 6, 67, 173, 216, 6, 4, 76, 79, 78, 71, 56, 54, + 32, 236, 5, 5, 67, 72, 69, 68, 32, 207, 2, 69, 38, 162, 1, 65, 132, 2, 4, + 78, 79, 82, 77, 78, 80, 46, 83, 170, 1, 84, 210, 222, 7, 69, 196, 33, 7, + 73, 68, 69, 78, 84, 73, 67, 190, 203, 4, 71, 38, 76, 135, 80, 67, 10, 88, + 3, 32, 83, 85, 52, 7, 78, 32, 69, 76, 69, 77, 69, 28, 2, 83, 89, 227, + 129, 8, 76, 4, 30, 66, 1, 3, 80, 69, 82, 2, 29, 2, 83, 69, 2, 11, 78, 2, + 139, 121, 84, 2, 37, 7, 77, 80, 84, 79, 84, 73, 67, 2, 17, 2, 65, 76, 2, + 161, 130, 8, 2, 76, 89, 4, 205, 196, 6, 14, 65, 76, 32, 83, 85, 66, 71, + 82, 79, 85, 80, 32, 79, 70, 2, 241, 129, 8, 6, 65, 82, 65, 76, 76, 69, 6, + 48, 6, 81, 85, 65, 82, 69, 32, 223, 219, 13, 73, 4, 68, 5, 73, 77, 65, + 71, 69, 1, 8, 79, 82, 73, 71, 73, 78, 65, 76, 2, 21, 3, 32, 79, 70, 2, + 207, 194, 6, 32, 4, 230, 209, 10, 82, 207, 242, 1, 73, 8, 58, 76, 40, 4, + 82, 73, 71, 72, 133, 1, 3, 85, 80, 80, 4, 36, 2, 69, 70, 133, 1, 2, 79, + 87, 2, 89, 20, 84, 32, 83, 69, 77, 73, 67, 73, 82, 67, 76, 69, 32, 87, + 73, 84, 72, 32, 84, 72, 2, 17, 2, 82, 69, 2, 243, 140, 13, 69, 2, 11, 69, + 2, 41, 8, 82, 32, 82, 73, 71, 72, 84, 45, 2, 133, 144, 3, 6, 83, 72, 65, + 68, 79, 87, 11, 34, 32, 53, 4, 66, 79, 79, 75, 4, 17, 2, 80, 65, 4, 198, + 199, 14, 71, 215, 22, 68, 5, 81, 18, 32, 87, 73, 84, 72, 32, 68, 69, 67, + 79, 82, 65, 84, 73, 86, 69, 32, 67, 2, 235, 137, 4, 79, 34, 102, 77, 196, + 182, 5, 8, 84, 32, 65, 78, 68, 32, 66, 79, 184, 255, 6, 3, 83, 72, 85, + 135, 170, 1, 76, 26, 36, 4, 66, 69, 82, 32, 247, 2, 69, 24, 58, 69, 50, + 70, 42, 83, 66, 84, 57, 4, 78, 73, 78, 69, 4, 204, 1, 3, 73, 71, 72, 21, + 3, 76, 69, 86, 4, 144, 1, 2, 79, 85, 13, 2, 73, 70, 6, 34, 73, 85, 4, 69, + 86, 69, 78, 4, 82, 88, 155, 138, 14, 71, 8, 40, 2, 72, 73, 46, 69, 21, 2, + 87, 69, 2, 11, 82, 2, 17, 2, 84, 69, 2, 11, 69, 2, 135, 200, 7, 78, 4, + 240, 199, 7, 3, 76, 86, 69, 1, 3, 78, 84, 89, 2, 187, 243, 6, 82, 142, 1, + 118, 76, 226, 3, 83, 164, 2, 5, 84, 79, 78, 69, 45, 196, 230, 7, 8, 67, + 73, 82, 67, 76, 69, 68, 32, 179, 247, 4, 68, 92, 88, 6, 69, 84, 84, 69, + 82, 32, 173, 163, 1, 10, 79, 71, 79, 71, 82, 65, 77, 32, 78, 89, 90, 130, + 2, 78, 90, 84, 166, 220, 7, 88, 182, 230, 2, 65, 144, 1, 2, 72, 65, 226, + 51, 82, 210, 147, 1, 79, 150, 61, 68, 2, 77, 2, 80, 254, 203, 1, 69, 234, + 61, 67, 2, 70, 2, 71, 2, 75, 2, 76, 2, 81, 2, 83, 2, 86, 2, 89, 2, 90, + 186, 2, 73, 2, 85, 3, 87, 22, 86, 84, 174, 200, 12, 80, 230, 137, 2, 67, + 2, 75, 2, 81, 2, 82, 2, 89, 187, 2, 65, 6, 142, 210, 14, 83, 2, 88, 187, + 2, 65, 14, 64, 4, 73, 71, 78, 32, 189, 1, 7, 89, 76, 76, 65, 66, 76, 69, + 12, 56, 4, 70, 79, 82, 32, 129, 213, 13, 4, 88, 87, 32, 88, 10, 204, 9, + 2, 76, 79, 230, 164, 3, 84, 156, 94, 8, 73, 78, 86, 69, 82, 84, 69, 66, + 232, 144, 4, 3, 65, 78, 73, 195, 177, 2, 80, 2, 177, 132, 12, 4, 32, 76, + 69, 78, 14, 250, 209, 14, 66, 2, 68, 2, 71, 2, 74, 2, 77, 2, 83, 3, 86, + 254, 14, 226, 2, 66, 226, 1, 67, 226, 5, 71, 244, 6, 4, 73, 76, 32, 68, + 22, 76, 198, 69, 78, 150, 5, 80, 234, 7, 82, 242, 10, 83, 188, 8, 2, 84, + 84, 154, 8, 85, 248, 1, 3, 86, 69, 82, 254, 170, 2, 89, 148, 151, 4, 14, + 70, 70, 73, 67, 69, 32, 66, 85, 73, 76, 68, 73, 78, 71, 154, 185, 1, 72, + 146, 132, 2, 75, 210, 250, 1, 68, 194, 64, 77, 246, 9, 87, 211, 139, 1, + 88, 10, 132, 1, 6, 76, 73, 81, 85, 69, 32, 252, 158, 2, 9, 83, 69, 82, + 86, 69, 82, 32, 69, 89, 189, 29, 8, 74, 69, 67, 84, 32, 82, 69, 80, 6, + 172, 203, 4, 13, 65, 78, 71, 76, 69, 32, 79, 80, 69, 78, 73, 78, 71, 171, + 241, 1, 72, 28, 56, 2, 82, 32, 234, 4, 84, 225, 198, 5, 3, 67, 85, 76, + 22, 156, 1, 11, 65, 77, 79, 85, 78, 84, 32, 79, 70, 32, 67, 22, 66, 198, + 1, 67, 118, 68, 106, 70, 0, 10, 73, 78, 86, 69, 82, 84, 69, 68, 32, 70, + 243, 241, 12, 72, 2, 203, 184, 5, 72, 6, 136, 1, 15, 82, 65, 78, 67, 72, + 32, 66, 65, 78, 75, 32, 73, 68, 69, 78, 156, 131, 5, 5, 69, 76, 84, 32, + 66, 205, 144, 6, 3, 79, 87, 32, 2, 21, 3, 84, 73, 70, 2, 11, 73, 2, 131, + 132, 11, 67, 4, 92, 17, 85, 83, 84, 79, 77, 69, 82, 32, 65, 67, 67, 79, + 85, 78, 84, 32, 78, 243, 201, 1, 72, 2, 159, 161, 6, 85, 4, 44, 5, 79, + 85, 66, 76, 69, 147, 221, 12, 65, 2, 11, 32, 2, 11, 66, 2, 157, 163, 7, + 3, 65, 67, 75, 2, 191, 134, 14, 79, 4, 160, 251, 8, 4, 65, 71, 79, 78, + 197, 195, 3, 2, 79, 80, 60, 48, 4, 72, 65, 77, 32, 185, 195, 14, 2, 79, + 78, 58, 122, 70, 0, 10, 82, 69, 86, 69, 82, 83, 69, 68, 32, 70, 36, 7, + 76, 69, 84, 84, 69, 82, 32, 149, 254, 3, 3, 83, 80, 65, 2, 161, 139, 4, + 4, 69, 65, 84, 72, 52, 196, 1, 2, 65, 73, 22, 66, 2, 80, 34, 67, 36, 2, + 69, 65, 64, 2, 70, 69, 22, 71, 22, 73, 58, 76, 2, 82, 22, 78, 46, 79, 34, + 83, 46, 85, 222, 184, 1, 77, 170, 9, 68, 189, 227, 11, 3, 84, 73, 78, 2, + 155, 179, 14, 76, 2, 11, 69, 2, 219, 190, 12, 73, 4, 226, 151, 8, 69, + 183, 161, 4, 79, 6, 138, 1, 66, 2, 68, 153, 143, 4, 6, 77, 72, 65, 78, + 67, 72, 2, 247, 175, 9, 65, 2, 183, 187, 13, 79, 4, 32, 2, 79, 68, 191, + 194, 13, 70, 2, 195, 137, 8, 72, 2, 243, 154, 12, 85, 4, 132, 172, 13, 3, + 71, 69, 65, 247, 69, 73, 4, 218, 241, 13, 78, 227, 79, 82, 4, 202, 225, + 12, 65, 229, 93, 3, 84, 82, 65, 6, 60, 5, 73, 76, 76, 69, 65, 186, 187, + 12, 65, 251, 132, 2, 82, 2, 207, 240, 13, 78, 2, 247, 148, 13, 82, 182, + 8, 38, 32, 142, 11, 68, 255, 183, 13, 73, 184, 1, 64, 6, 67, 72, 73, 75, + 73, 32, 205, 6, 5, 79, 78, 65, 76, 32, 96, 132, 1, 7, 76, 69, 84, 84, 69, + 82, 32, 148, 3, 2, 77, 85, 62, 71, 74, 80, 164, 216, 3, 2, 82, 69, 202, + 237, 8, 68, 211, 173, 1, 65, 60, 50, 65, 98, 69, 54, 73, 50, 76, 62, 79, + 51, 85, 16, 50, 65, 210, 188, 14, 78, 86, 71, 2, 76, 3, 84, 8, 162, 189, + 14, 74, 2, 75, 2, 77, 3, 87, 8, 214, 246, 13, 68, 198, 13, 82, 222, 56, + 78, 3, 80, 8, 250, 170, 14, 78, 202, 17, 72, 2, 82, 3, 83, 12, 162, 170, + 10, 65, 242, 145, 4, 69, 2, 73, 2, 79, 3, 85, 8, 170, 159, 14, 84, 174, + 28, 66, 2, 72, 3, 86, 8, 198, 235, 13, 78, 226, 79, 67, 2, 68, 3, 89, 4, + 56, 2, 45, 71, 209, 206, 12, 6, 32, 84, 84, 85, 68, 68, 2, 205, 206, 12, + 13, 65, 65, 72, 76, 65, 65, 32, 84, 84, 85, 68, 68, 65, 6, 84, 11, 85, + 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 177, 224, 6, 4, 72, 65, 65, 82, + 4, 48, 8, 68, 79, 85, 66, 76, 69, 32, 77, 3, 77, 2, 185, 242, 13, 3, 85, + 67, 65, 88, 100, 7, 76, 69, 84, 84, 69, 82, 32, 192, 2, 5, 83, 73, 71, + 78, 32, 206, 193, 8, 65, 207, 255, 3, 68, 60, 42, 65, 54, 69, 58, 73, 54, + 79, 59, 85, 13, 178, 183, 14, 66, 2, 68, 2, 72, 2, 76, 3, 87, 13, 158, + 231, 13, 78, 226, 79, 67, 2, 71, 2, 72, 3, 83, 13, 238, 205, 8, 84, 218, + 232, 5, 68, 2, 78, 3, 80, 13, 182, 253, 13, 82, 138, 56, 78, 86, 77, 2, + 79, 3, 89, 13, 186, 239, 13, 68, 218, 52, 78, 202, 17, 74, 2, 75, 3, 82, + 6, 58, 73, 144, 246, 12, 4, 72, 79, 68, 68, 239, 153, 1, 77, 2, 131, 182, + 1, 75, 252, 6, 34, 32, 165, 57, 3, 69, 82, 32, 246, 6, 240, 2, 8, 67, 72, + 73, 78, 69, 83, 69, 32, 44, 10, 72, 85, 78, 71, 65, 82, 73, 65, 78, 32, + 128, 7, 7, 73, 84, 65, 76, 73, 67, 32, 212, 4, 14, 78, 79, 82, 84, 72, + 32, 65, 82, 65, 66, 73, 65, 78, 32, 196, 4, 3, 80, 69, 82, 216, 13, 2, + 83, 79, 144, 13, 14, 84, 85, 82, 75, 73, 67, 32, 76, 69, 84, 84, 69, 82, + 32, 132, 7, 7, 85, 89, 71, 72, 85, 82, 32, 171, 225, 11, 75, 4, 146, 139, + 12, 73, 241, 96, 3, 72, 79, 79, 216, 1, 96, 6, 67, 65, 80, 73, 84, 65, 0, + 4, 83, 77, 65, 76, 233, 5, 7, 78, 85, 77, 66, 69, 82, 32, 102, 45, 9, 76, + 32, 76, 69, 84, 84, 69, 82, 32, 102, 214, 1, 65, 54, 69, 168, 2, 10, 78, + 73, 75, 79, 76, 83, 66, 85, 82, 71, 0, 9, 82, 85, 68, 73, 77, 69, 78, 84, + 65, 42, 79, 32, 5, 83, 72, 79, 82, 84, 22, 85, 168, 242, 3, 5, 67, 76, + 79, 83, 69, 243, 171, 8, 73, 11, 154, 240, 12, 77, 218, 119, 78, 162, 70, + 65, 3, 75, 63, 178, 1, 77, 22, 78, 78, 83, 182, 130, 10, 67, 254, 23, 71, + 2, 76, 2, 84, 198, 135, 2, 90, 218, 137, 2, 66, 2, 68, 2, 69, 2, 70, 2, + 72, 2, 74, 2, 75, 2, 80, 2, 82, 3, 86, 5, 171, 172, 14, 80, 11, 34, 84, + 246, 171, 14, 67, 3, 89, 5, 197, 149, 2, 5, 45, 83, 72, 65, 80, 5, 203, + 171, 14, 90, 4, 11, 32, 4, 214, 148, 14, 79, 3, 85, 7, 186, 148, 14, 69, + 215, 22, 79, 2, 131, 237, 13, 32, 9, 194, 167, 14, 78, 154, 3, 83, 3, 85, + 12, 210, 4, 70, 242, 131, 6, 79, 239, 203, 6, 84, 78, 80, 7, 76, 69, 84, + 84, 69, 82, 32, 169, 3, 8, 78, 85, 77, 69, 82, 65, 76, 32, 70, 190, 1, + 69, 90, 75, 50, 83, 36, 3, 78, 79, 82, 202, 207, 10, 85, 186, 202, 1, 73, + 166, 140, 1, 80, 2, 84, 150, 83, 67, 186, 22, 66, 2, 68, 2, 72, 2, 86, 2, + 89, 2, 90, 214, 22, 65, 3, 79, 23, 214, 254, 9, 83, 194, 159, 2, 82, 254, + 203, 1, 75, 222, 61, 70, 2, 76, 2, 77, 3, 78, 8, 194, 144, 14, 72, 214, + 22, 65, 2, 69, 3, 85, 4, 32, 2, 79, 85, 243, 143, 14, 72, 2, 29, 5, 84, + 72, 69, 82, 78, 2, 253, 154, 13, 2, 32, 84, 8, 38, 70, 222, 207, 12, 84, + 215, 58, 79, 4, 11, 73, 4, 242, 181, 12, 70, 143, 217, 1, 86, 64, 76, 7, + 76, 69, 84, 84, 69, 82, 32, 209, 3, 7, 78, 85, 77, 66, 69, 82, 32, 58, + 210, 1, 65, 38, 71, 38, 72, 30, 75, 38, 84, 74, 90, 234, 106, 77, 140, + 158, 3, 2, 69, 83, 238, 162, 3, 66, 2, 70, 2, 82, 2, 89, 182, 203, 3, 78, + 154, 237, 1, 76, 210, 58, 68, 146, 1, 81, 134, 3, 87, 131, 56, 83, 4, + 134, 194, 3, 76, 167, 145, 10, 73, 4, 254, 243, 12, 72, 191, 156, 1, 69, + 4, 178, 161, 14, 65, 3, 69, 4, 166, 180, 7, 72, 223, 236, 5, 65, 8, 34, + 72, 210, 160, 14, 65, 3, 69, 4, 142, 150, 13, 65, 195, 138, 1, 69, 4, 11, + 65, 4, 206, 209, 13, 73, 227, 79, 72, 6, 190, 153, 6, 84, 163, 236, 6, + 79, 180, 1, 64, 11, 77, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 183, 5, + 83, 76, 228, 1, 2, 67, 72, 22, 68, 66, 69, 22, 73, 30, 77, 2, 78, 30, 80, + 22, 83, 70, 84, 50, 86, 38, 89, 94, 90, 254, 195, 6, 76, 2, 82, 214, 227, + 2, 71, 150, 170, 2, 79, 222, 208, 1, 66, 246, 40, 65, 254, 31, 75, 174, + 45, 72, 187, 2, 85, 2, 215, 216, 7, 69, 6, 26, 90, 183, 138, 14, 79, 4, + 134, 167, 9, 72, 187, 210, 4, 73, 5, 231, 157, 14, 70, 7, 210, 157, 14, + 65, 3, 69, 2, 213, 134, 14, 2, 69, 78, 2, 131, 198, 6, 69, 6, 26, 72, + 151, 137, 14, 73, 4, 228, 165, 9, 3, 67, 72, 79, 3, 79, 4, 26, 83, 211, + 136, 14, 65, 2, 191, 247, 13, 73, 4, 142, 165, 9, 79, 171, 190, 4, 69, + 14, 60, 2, 69, 82, 218, 178, 8, 65, 146, 215, 5, 82, 203, 17, 85, 7, 174, + 155, 14, 73, 3, 85, 4, 142, 164, 9, 72, 187, 210, 4, 65, 104, 88, 4, 73, + 65, 78, 32, 241, 5, 13, 79, 78, 65, 76, 32, 67, 79, 77, 80, 85, 84, 69, + 82, 100, 80, 7, 78, 85, 77, 66, 69, 82, 32, 80, 5, 83, 73, 71, 78, 32, + 251, 222, 10, 87, 10, 42, 84, 234, 188, 8, 72, 255, 192, 4, 79, 6, 238, + 230, 1, 87, 199, 226, 11, 69, 88, 210, 1, 65, 86, 66, 62, 68, 98, 74, 2, + 86, 30, 84, 42, 88, 182, 111, 71, 2, 75, 2, 78, 2, 82, 150, 206, 9, 77, + 146, 143, 3, 83, 218, 69, 67, 2, 70, 2, 72, 2, 76, 2, 80, 2, 89, 2, 90, + 186, 2, 73, 3, 85, 9, 45, 9, 85, 82, 65, 77, 65, 90, 68, 65, 65, 7, 170, + 239, 6, 45, 139, 165, 7, 72, 6, 38, 65, 213, 177, 10, 3, 85, 85, 77, 5, + 231, 147, 14, 71, 10, 34, 65, 234, 149, 14, 73, 3, 85, 7, 37, 7, 72, 89, + 65, 65, 85, 83, 72, 5, 255, 237, 6, 45, 4, 170, 149, 14, 65, 3, 73, 6, + 214, 146, 14, 72, 186, 2, 65, 3, 85, 4, 152, 220, 11, 8, 83, 72, 65, 65, + 89, 65, 84, 72, 207, 184, 2, 65, 5, 181, 147, 5, 31, 32, 87, 73, 84, 72, + 32, 77, 79, 78, 73, 84, 79, 82, 32, 73, 78, 32, 80, 79, 82, 84, 82, 65, + 73, 84, 32, 79, 82, 73, 69, 78, 144, 1, 92, 6, 71, 68, 73, 65, 78, 32, + 141, 7, 12, 85, 84, 72, 32, 65, 82, 65, 66, 73, 65, 78, 32, 80, 58, 70, + 74, 76, 145, 5, 7, 78, 85, 77, 66, 69, 82, 32, 2, 11, 82, 2, 201, 237, + 11, 10, 65, 67, 84, 73, 79, 78, 32, 79, 78, 69, 60, 76, 6, 69, 84, 84, + 69, 82, 32, 149, 4, 8, 73, 71, 65, 84, 85, 82, 69, 32, 58, 234, 1, 65, + 96, 6, 70, 73, 78, 65, 76, 32, 200, 1, 5, 82, 69, 83, 72, 45, 162, 216, + 1, 76, 194, 170, 4, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, + 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 84, 2, 87, 218, 103, 80, 171, + 4, 77, 6, 26, 76, 131, 143, 13, 89, 4, 192, 133, 6, 8, 84, 69, 82, 78, + 65, 84, 69, 32, 155, 214, 1, 69, 18, 116, 3, 78, 85, 78, 0, 5, 83, 65, + 68, 72, 69, 0, 3, 84, 65, 87, 190, 216, 1, 65, 134, 211, 6, 66, 135, 203, + 5, 72, 5, 41, 8, 32, 87, 73, 84, 72, 32, 86, 69, 2, 133, 220, 5, 4, 82, + 84, 73, 67, 2, 253, 215, 1, 6, 65, 89, 73, 78, 45, 68, 18, 42, 84, 234, + 131, 6, 79, 255, 148, 6, 70, 10, 42, 72, 162, 217, 1, 87, 199, 226, 11, + 69, 4, 162, 153, 12, 82, 159, 2, 73, 64, 60, 7, 76, 69, 84, 84, 69, 82, + 32, 245, 3, 3, 78, 85, 77, 58, 202, 1, 65, 38, 68, 74, 71, 34, 75, 34, + 83, 78, 84, 254, 43, 90, 254, 166, 1, 76, 50, 81, 214, 205, 1, 82, 246, + 221, 2, 89, 198, 207, 1, 72, 150, 87, 66, 170, 225, 4, 78, 134, 2, 87, + 218, 103, 70, 171, 4, 77, 4, 146, 168, 3, 76, 167, 145, 10, 89, 6, 32, 2, + 72, 65, 151, 212, 1, 65, 4, 246, 166, 8, 76, 207, 180, 5, 68, 4, 134, 45, + 72, 203, 209, 5, 73, 4, 146, 213, 7, 65, 163, 81, 72, 8, 26, 65, 255, + 135, 13, 72, 6, 218, 198, 7, 77, 234, 147, 6, 68, 143, 45, 84, 8, 230, + 90, 72, 194, 167, 11, 69, 219, 134, 1, 65, 6, 56, 4, 66, 69, 82, 32, 145, + 205, 13, 4, 69, 82, 73, 67, 4, 26, 70, 235, 234, 12, 79, 2, 139, 149, 12, + 73, 146, 1, 80, 7, 79, 82, 75, 72, 79, 78, 32, 197, 3, 8, 89, 69, 78, 73, + 83, 69, 73, 32, 84, 54, 65, 202, 1, 69, 122, 73, 30, 79, 135, 151, 12, + 66, 45, 106, 69, 170, 243, 9, 83, 226, 144, 4, 66, 2, 68, 2, 71, 2, 76, + 2, 78, 2, 81, 2, 82, 2, 84, 3, 89, 20, 134, 132, 14, 66, 2, 68, 2, 71, 2, + 75, 2, 76, 2, 78, 2, 82, 2, 83, 2, 84, 3, 89, 20, 74, 78, 182, 230, 13, + 76, 158, 27, 83, 146, 1, 67, 2, 77, 2, 80, 3, 90, 8, 222, 130, 14, 67, 2, + 71, 2, 84, 3, 89, 7, 178, 130, 14, 67, 3, 81, 13, 130, 3, 69, 150, 255, + 13, 80, 2, 81, 3, 84, 62, 38, 65, 170, 1, 69, 86, 73, 23, 79, 39, 98, 69, + 206, 255, 13, 83, 62, 78, 86, 66, 2, 68, 2, 71, 2, 76, 2, 81, 2, 82, 2, + 84, 3, 89, 17, 218, 130, 12, 78, 130, 254, 1, 66, 2, 71, 2, 75, 2, 84, 3, + 89, 15, 46, 78, 218, 254, 13, 83, 146, 1, 67, 3, 90, 6, 230, 255, 13, 67, + 2, 84, 3, 89, 5, 195, 255, 13, 81, 6, 26, 69, 151, 255, 13, 81, 5, 147, + 255, 13, 75, 52, 148, 1, 10, 67, 79, 77, 66, 73, 78, 73, 78, 71, 32, 36, + 7, 76, 69, 84, 84, 69, 82, 32, 233, 1, 12, 80, 85, 78, 67, 84, 85, 65, + 84, 73, 79, 78, 32, 8, 222, 241, 5, 84, 243, 231, 3, 68, 36, 230, 200, 1, + 65, 186, 206, 1, 82, 222, 220, 2, 76, 58, 90, 34, 83, 66, 89, 168, 210, + 1, 6, 70, 73, 78, 65, 76, 32, 0, 6, 71, 73, 77, 69, 76, 45, 134, 3, 75, + 174, 81, 66, 170, 225, 4, 78, 134, 2, 84, 2, 87, 218, 103, 80, 171, 4, + 77, 8, 56, 4, 84, 87, 79, 32, 174, 212, 11, 70, 187, 131, 1, 66, 4, 158, + 228, 12, 66, 75, 68, 6, 146, 181, 1, 87, 136, 160, 3, 3, 65, 68, 85, 207, + 217, 7, 77, 22, 212, 1, 34, 32, 87, 73, 84, 72, 32, 69, 88, 67, 76, 65, + 77, 65, 84, 73, 79, 78, 32, 77, 65, 82, 75, 32, 87, 73, 84, 72, 32, 76, + 69, 70, 84, 32, 82, 44, 7, 67, 79, 77, 73, 78, 71, 32, 194, 1, 69, 151, + 167, 13, 73, 2, 21, 3, 73, 71, 72, 2, 203, 250, 9, 84, 10, 148, 1, 6, 65, + 85, 84, 79, 77, 79, 20, 7, 70, 73, 82, 69, 32, 69, 78, 144, 225, 2, 2, + 84, 65, 148, 247, 8, 6, 80, 79, 76, 73, 67, 69, 143, 22, 66, 2, 223, 206, + 11, 66, 2, 215, 219, 12, 71, 8, 70, 32, 229, 191, 12, 11, 45, 80, 73, 69, + 67, 69, 32, 83, 87, 73, 77, 6, 40, 4, 68, 79, 84, 32, 175, 173, 10, 66, + 4, 26, 79, 135, 175, 10, 76, 2, 129, 234, 2, 11, 86, 69, 82, 32, 84, 87, + 79, 32, 68, 79, 84, 46, 82, 69, 188, 6, 2, 84, 73, 188, 229, 11, 5, 72, + 73, 85, 67, 72, 147, 183, 1, 80, 36, 70, 78, 201, 5, 12, 82, 65, 84, 73, + 78, 71, 32, 83, 89, 83, 84, 69, 34, 22, 32, 139, 4, 45, 28, 108, 2, 66, + 79, 32, 7, 67, 69, 78, 84, 82, 69, 32, 114, 70, 70, 72, 42, 77, 142, 139, + 7, 83, 135, 244, 3, 76, 4, 242, 239, 13, 79, 155, 3, 88, 8, 50, 84, 174, + 216, 11, 66, 222, 2, 65, 135, 84, 67, 2, 37, 7, 69, 65, 82, 68, 82, 79, + 80, 2, 143, 218, 11, 45, 4, 44, 5, 73, 76, 69, 32, 70, 243, 131, 2, 79, + 2, 239, 131, 2, 79, 2, 17, 2, 65, 78, 2, 151, 191, 10, 68, 4, 57, 12, 65, + 73, 76, 66, 79, 88, 32, 87, 73, 84, 72, 32, 4, 44, 3, 76, 79, 87, 21, 4, + 82, 65, 73, 83, 2, 17, 2, 69, 82, 2, 129, 132, 12, 2, 69, 68, 6, 108, 15, + 67, 73, 82, 67, 85, 73, 84, 45, 79, 85, 84, 80, 85, 84, 32, 221, 204, 12, + 6, 79, 85, 84, 76, 73, 78, 4, 18, 72, 3, 76, 2, 161, 192, 1, 4, 45, 84, + 89, 80, 2, 169, 222, 12, 6, 77, 32, 67, 79, 77, 77, 6, 64, 2, 79, 78, + 253, 177, 1, 8, 67, 65, 76, 32, 68, 73, 83, 67, 2, 247, 207, 11, 32, 208, + 1, 104, 3, 65, 78, 71, 66, 67, 34, 73, 212, 8, 5, 78, 65, 84, 69, 32, 32, + 3, 84, 72, 79, 199, 176, 5, 32, 6, 28, 2, 69, 32, 167, 22, 85, 4, 198, + 150, 12, 66, 203, 78, 72, 4, 186, 174, 13, 85, 223, 61, 65, 188, 1, 48, + 5, 71, 73, 78, 65, 76, 21, 3, 89, 65, 32, 2, 183, 133, 1, 32, 186, 1, + 106, 65, 30, 70, 250, 1, 73, 32, 7, 76, 69, 84, 84, 69, 82, 32, 142, 2, + 83, 218, 1, 86, 159, 240, 11, 68, 4, 182, 137, 10, 73, 3, 85, 12, 41, 8, + 82, 65, 67, 84, 73, 79, 78, 32, 12, 56, 4, 79, 78, 69, 32, 81, 6, 84, 72, + 82, 69, 69, 32, 8, 42, 83, 206, 226, 11, 69, 46, 72, 47, 81, 2, 217, 227, + 11, 4, 73, 88, 84, 69, 4, 26, 83, 227, 228, 11, 81, 2, 145, 136, 8, 4, + 73, 88, 84, 69, 2, 233, 196, 12, 3, 83, 83, 72, 104, 226, 1, 82, 130, + 238, 6, 89, 178, 154, 3, 65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 186, + 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, + 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 87, 186, 2, 69, 3, 79, 6, 234, 227, + 13, 72, 2, 82, 187, 2, 65, 18, 112, 20, 69, 81, 85, 69, 78, 67, 69, 32, + 70, 79, 82, 32, 76, 69, 84, 84, 69, 82, 32, 82, 29, 4, 73, 71, 78, 32, 4, + 206, 226, 13, 72, 3, 82, 14, 138, 199, 9, 67, 98, 78, 190, 66, 65, 250, + 239, 1, 79, 195, 167, 1, 86, 26, 49, 10, 79, 87, 69, 76, 32, 83, 73, 71, + 78, 32, 26, 206, 140, 10, 65, 38, 85, 22, 86, 166, 202, 1, 73, 198, 140, + 2, 69, 3, 79, 4, 194, 220, 6, 76, 243, 30, 82, 4, 240, 245, 3, 2, 68, 79, + 139, 183, 2, 71, 226, 1, 76, 4, 65, 71, 69, 32, 140, 4, 6, 77, 65, 78, + 89, 65, 32, 251, 221, 13, 67, 144, 1, 56, 6, 67, 65, 80, 73, 84, 65, 1, + 4, 83, 77, 65, 76, 72, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 72, + 194, 1, 65, 38, 69, 90, 75, 42, 79, 22, 84, 246, 229, 6, 72, 254, 250, 4, + 67, 2, 68, 2, 71, 234, 181, 1, 83, 2, 90, 130, 3, 66, 138, 66, 76, 2, 77, + 2, 78, 2, 80, 2, 87, 186, 2, 73, 3, 85, 9, 226, 225, 11, 73, 239, 253, 1, + 72, 15, 26, 72, 179, 143, 13, 73, 10, 134, 202, 9, 84, 226, 151, 2, 67, + 242, 250, 1, 75, 3, 80, 6, 154, 220, 13, 72, 2, 89, 187, 2, 65, 5, 203, + 142, 13, 73, 6, 214, 150, 13, 83, 195, 71, 65, 80, 52, 7, 76, 69, 84, 84, + 69, 82, 32, 187, 233, 11, 68, 60, 246, 1, 65, 38, 67, 22, 68, 38, 75, 34, + 83, 30, 77, 162, 241, 2, 81, 226, 159, 8, 79, 148, 125, 2, 76, 65, 236, + 75, 2, 78, 85, 134, 2, 87, 142, 62, 69, 234, 61, 66, 2, 70, 2, 71, 2, 72, + 2, 74, 2, 82, 2, 84, 2, 88, 2, 89, 186, 2, 73, 3, 85, 7, 194, 250, 2, 76, + 135, 225, 10, 65, 2, 183, 221, 12, 65, 4, 222, 197, 8, 69, 251, 146, 5, + 72, 4, 186, 217, 12, 65, 251, 126, 72, 4, 26, 72, 179, 218, 13, 65, 2, + 219, 218, 12, 73, 124, 68, 11, 79, 77, 65, 78, 32, 83, 73, 89, 65, 81, + 32, 251, 160, 13, 69, 122, 172, 1, 17, 65, 76, 84, 69, 82, 78, 65, 84, + 69, 32, 78, 85, 77, 66, 69, 82, 32, 200, 1, 13, 70, 82, 65, 67, 84, 73, + 79, 78, 32, 79, 78, 69, 32, 48, 3, 77, 65, 82, 47, 78, 26, 54, 70, 50, + 83, 46, 84, 214, 187, 12, 78, 239, 112, 69, 6, 248, 207, 5, 3, 79, 85, + 82, 159, 139, 7, 73, 6, 200, 207, 5, 2, 73, 88, 155, 149, 6, 69, 10, 226, + 184, 2, 69, 12, 2, 87, 79, 247, 171, 9, 72, 4, 26, 83, 175, 208, 11, 72, + 2, 155, 209, 11, 73, 2, 11, 82, 2, 11, 65, 2, 247, 137, 12, 84, 90, 33, + 6, 85, 77, 66, 69, 82, 32, 90, 58, 69, 66, 70, 94, 78, 26, 83, 78, 84, + 179, 177, 5, 79, 10, 25, 4, 73, 71, 72, 84, 11, 226, 182, 2, 89, 227, + 193, 5, 32, 20, 18, 73, 35, 79, 10, 166, 2, 70, 195, 176, 5, 86, 10, 134, + 2, 82, 205, 176, 5, 2, 85, 82, 10, 65, 3, 73, 78, 69, 20, 40, 4, 69, 86, + 69, 78, 1, 2, 73, 88, 11, 166, 1, 84, 219, 245, 7, 32, 24, 34, 72, 50, + 87, 163, 180, 2, 69, 10, 34, 73, 245, 176, 5, 2, 82, 69, 4, 51, 82, 10, + 26, 69, 219, 176, 5, 79, 4, 11, 78, 4, 11, 84, 4, 247, 179, 2, 89, 84, + 34, 84, 217, 177, 11, 2, 78, 67, 82, 42, 66, 37, 6, 76, 73, 78, 69, 68, + 32, 2, 133, 195, 12, 4, 79, 88, 32, 84, 80, 92, 7, 76, 65, 84, 73, 78, + 32, 67, 242, 194, 6, 87, 182, 243, 4, 66, 234, 14, 71, 159, 23, 68, 54, + 186, 174, 7, 65, 215, 222, 4, 82, 12, 18, 72, 43, 76, 2, 17, 2, 69, 65, + 2, 239, 188, 12, 84, 10, 32, 2, 65, 80, 255, 179, 12, 73, 9, 29, 5, 80, + 73, 78, 71, 32, 6, 40, 6, 87, 72, 73, 84, 69, 32, 51, 66, 4, 44, 5, 65, + 78, 68, 32, 66, 151, 138, 10, 83, 2, 253, 137, 10, 4, 76, 65, 67, 75, + 152, 13, 150, 1, 65, 206, 65, 68, 30, 69, 134, 13, 72, 138, 25, 73, 202, + 4, 76, 160, 15, 2, 78, 80, 54, 79, 238, 8, 82, 210, 15, 83, 186, 6, 85, + 239, 177, 12, 77, 158, 6, 134, 2, 68, 38, 71, 212, 1, 11, 72, 65, 87, 72, + 32, 72, 77, 79, 78, 71, 32, 134, 23, 76, 130, 6, 78, 58, 82, 196, 22, 2, + 83, 83, 132, 2, 10, 85, 32, 67, 73, 78, 32, 72, 65, 85, 32, 176, 7, 3, + 87, 32, 80, 152, 252, 7, 2, 67, 75, 233, 141, 5, 4, 80, 69, 82, 67, 5, + 253, 185, 1, 4, 68, 73, 78, 71, 14, 26, 69, 163, 165, 13, 79, 13, 34, 32, + 130, 202, 13, 82, 3, 83, 6, 72, 6, 87, 73, 84, 72, 32, 67, 181, 159, 4, + 6, 70, 65, 67, 73, 78, 71, 4, 50, 85, 145, 237, 7, 6, 73, 82, 67, 76, 69, + 68, 2, 175, 189, 12, 82, 254, 1, 190, 1, 67, 160, 6, 9, 77, 65, 82, 75, + 32, 67, 73, 77, 32, 160, 1, 7, 78, 85, 77, 66, 69, 82, 32, 244, 1, 5, 83, + 73, 71, 78, 32, 144, 10, 7, 86, 79, 87, 69, 76, 32, 75, 223, 191, 11, 68, + 78, 92, 9, 76, 65, 78, 32, 83, 73, 71, 78, 32, 137, 3, 9, 79, 78, 83, 79, + 78, 65, 78, 84, 32, 38, 132, 1, 2, 72, 65, 38, 75, 46, 76, 34, 84, 82, + 86, 30, 89, 148, 9, 2, 88, 89, 172, 5, 2, 80, 72, 174, 1, 70, 165, 2, 2, + 77, 85, 4, 170, 198, 2, 87, 151, 255, 10, 77, 6, 246, 15, 72, 178, 150, + 13, 79, 159, 14, 87, 4, 210, 12, 65, 195, 250, 12, 73, 8, 22, 83, 247, 9, + 72, 6, 160, 197, 2, 3, 72, 69, 69, 158, 193, 9, 65, 3, 87, 4, 234, 196, + 2, 65, 3, 87, 4, 206, 196, 2, 65, 175, 185, 10, 69, 40, 122, 67, 38, 72, + 46, 78, 60, 2, 80, 76, 2, 81, 222, 222, 2, 76, 2, 77, 2, 82, 2, 86, 2, + 88, 2, 89, 247, 189, 10, 65, 4, 230, 223, 2, 72, 247, 189, 10, 65, 6, + 194, 223, 2, 76, 2, 78, 247, 189, 10, 65, 12, 58, 67, 22, 84, 202, 222, + 2, 75, 2, 76, 247, 189, 10, 65, 2, 219, 222, 2, 72, 4, 198, 222, 2, 72, + 3, 83, 14, 42, 75, 50, 83, 38, 84, 167, 175, 13, 72, 4, 26, 72, 231, 130, + 13, 69, 2, 175, 162, 6, 65, 4, 154, 131, 12, 85, 147, 189, 1, 79, 4, 142, + 130, 12, 85, 215, 18, 65, 14, 52, 7, 72, 85, 78, 68, 82, 69, 68, 38, 84, + 79, 77, 4, 108, 2, 32, 77, 195, 190, 13, 83, 8, 24, 2, 69, 78, 51, 82, 6, + 26, 32, 215, 190, 13, 83, 4, 18, 66, 35, 84, 2, 253, 213, 4, 3, 73, 76, + 76, 2, 11, 72, 2, 213, 251, 9, 3, 79, 85, 83, 72, 188, 1, 4, 67, 73, 77, + 32, 246, 2, 72, 32, 3, 73, 66, 32, 22, 77, 86, 78, 50, 84, 124, 4, 86, + 79, 83, 32, 198, 1, 88, 208, 1, 6, 90, 87, 74, 32, 84, 72, 142, 178, 1, + 76, 223, 227, 4, 65, 16, 174, 1, 67, 84, 5, 78, 82, 69, 83, 32, 22, 84, + 164, 252, 11, 7, 80, 85, 66, 32, 68, 65, 87, 153, 189, 1, 16, 72, 65, 73, + 83, 32, 76, 85, 83, 32, 78, 84, 79, 71, 32, 78, 84, 4, 48, 7, 85, 65, 77, + 32, 84, 83, 72, 255, 3, 72, 2, 11, 79, 2, 175, 187, 2, 79, 2, 195, 184, + 1, 84, 6, 52, 3, 88, 87, 86, 161, 151, 10, 4, 83, 79, 86, 32, 5, 209, + 155, 6, 4, 32, 67, 72, 87, 4, 190, 72, 78, 171, 221, 12, 76, 2, 143, 252, + 11, 89, 6, 40, 4, 69, 69, 74, 32, 135, 251, 12, 85, 4, 128, 3, 2, 84, 83, + 57, 2, 83, 85, 4, 26, 84, 187, 252, 8, 81, 2, 135, 185, 2, 85, 6, 196, 1, + 7, 88, 72, 69, 69, 74, 32, 67, 224, 178, 8, 12, 72, 73, 82, 68, 45, 83, + 84, 65, 71, 69, 32, 72, 251, 222, 4, 65, 14, 54, 70, 22, 83, 30, 84, 166, + 69, 76, 195, 251, 7, 78, 2, 167, 164, 13, 69, 2, 173, 152, 6, 2, 69, 69, + 6, 42, 72, 29, 6, 83, 72, 65, 66, 32, 67, 4, 82, 73, 207, 164, 13, 79, 2, + 175, 209, 5, 69, 14, 34, 73, 22, 89, 175, 172, 11, 65, 2, 171, 247, 11, + 65, 10, 40, 4, 69, 69, 77, 32, 243, 149, 13, 79, 8, 84, 3, 78, 84, 88, + 252, 149, 6, 2, 84, 79, 154, 173, 2, 82, 245, 178, 3, 2, 70, 65, 2, 251, + 149, 6, 73, 2, 227, 180, 2, 65, 56, 50, 65, 66, 69, 38, 73, 2, 85, 38, + 79, 39, 87, 20, 170, 1, 65, 2, 73, 2, 85, 2, 87, 134, 178, 13, 66, 3, 86, + 8, 106, 69, 134, 178, 13, 66, 3, 86, 8, 70, 65, 134, 178, 13, 66, 3, 86, + 8, 34, 79, 134, 178, 13, 66, 3, 86, 4, 130, 178, 13, 66, 3, 86, 76, 18, + 76, 23, 77, 2, 247, 243, 12, 65, 74, 74, 32, 104, 6, 89, 82, 69, 78, 69, + 32, 141, 142, 4, 4, 83, 32, 85, 80, 8, 80, 3, 66, 82, 65, 246, 189, 11, + 84, 248, 97, 4, 68, 79, 87, 78, 1, 2, 85, 80, 2, 247, 141, 13, 78, 64, + 80, 2, 76, 69, 40, 4, 82, 73, 71, 72, 253, 2, 7, 78, 85, 77, 66, 69, 82, + 32, 48, 38, 70, 89, 5, 84, 84, 69, 82, 32, 2, 57, 12, 84, 45, 80, 79, 73, + 78, 84, 73, 78, 71, 32, 70, 2, 229, 231, 5, 2, 76, 69, 46, 224, 1, 5, 70, + 73, 78, 65, 76, 30, 84, 242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82, + 142, 220, 2, 65, 50, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, + 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 87, 218, 103, 80, 171, 4, 77, + 2, 161, 172, 12, 2, 32, 78, 4, 190, 167, 11, 69, 219, 134, 1, 65, 14, + 194, 121, 84, 198, 191, 10, 70, 223, 87, 79, 4, 32, 2, 67, 65, 147, 236, + 12, 68, 2, 191, 149, 12, 75, 188, 2, 94, 65, 220, 1, 11, 69, 78, 84, 72, + 69, 83, 73, 90, 69, 68, 32, 242, 16, 84, 203, 199, 12, 82, 14, 80, 5, 71, + 82, 65, 80, 72, 52, 5, 76, 76, 69, 76, 32, 209, 163, 6, 2, 67, 72, 6, + 186, 248, 9, 32, 250, 223, 1, 85, 235, 147, 1, 79, 6, 44, 5, 87, 73, 84, + 72, 32, 163, 138, 13, 84, 4, 222, 198, 6, 84, 175, 186, 4, 72, 150, 2, + 252, 1, 7, 72, 65, 78, 71, 85, 76, 32, 188, 4, 10, 73, 68, 69, 79, 71, + 82, 65, 80, 72, 32, 188, 7, 18, 75, 79, 82, 69, 65, 78, 32, 67, 72, 65, + 82, 65, 67, 84, 69, 82, 32, 79, 44, 7, 78, 85, 77, 66, 69, 82, 32, 250, + 206, 4, 68, 145, 169, 2, 2, 76, 65, 58, 102, 67, 110, 72, 30, 75, 66, 77, + 34, 78, 34, 80, 62, 82, 30, 83, 26, 84, 73, 5, 73, 69, 85, 78, 71, 10, + 34, 72, 33, 4, 73, 69, 85, 67, 4, 141, 3, 4, 73, 69, 85, 67, 7, 11, 32, + 4, 178, 165, 13, 65, 3, 85, 4, 197, 2, 3, 73, 69, 85, 8, 168, 2, 5, 72, + 73, 69, 85, 75, 13, 5, 73, 89, 69, 79, 75, 4, 245, 1, 4, 73, 69, 85, 77, + 4, 213, 1, 4, 73, 69, 85, 78, 8, 168, 1, 5, 72, 73, 69, 85, 80, 13, 4, + 73, 69, 85, 80, 4, 121, 4, 73, 69, 85, 76, 4, 93, 3, 73, 79, 83, 8, 56, + 5, 72, 73, 69, 85, 84, 13, 5, 73, 75, 69, 85, 84, 4, 11, 72, 5, 139, 160, + 13, 32, 72, 148, 1, 2, 65, 76, 30, 67, 74, 69, 82, 70, 112, 2, 76, 65, + 22, 77, 38, 78, 32, 2, 82, 69, 78, 83, 138, 2, 84, 50, 87, 254, 172, 11, + 72, 239, 82, 79, 2, 237, 144, 8, 2, 76, 73, 4, 32, 2, 79, 78, 179, 150, + 11, 65, 2, 181, 251, 7, 4, 71, 82, 65, 84, 6, 42, 78, 174, 179, 9, 65, + 155, 194, 3, 73, 2, 169, 4, 5, 84, 69, 82, 80, 82, 10, 58, 73, 204, 147, + 12, 5, 69, 83, 84, 73, 86, 139, 19, 79, 6, 208, 2, 3, 78, 65, 78, 130, + 134, 13, 82, 3, 86, 2, 139, 230, 12, 66, 4, 226, 198, 10, 69, 147, 136, + 2, 79, 4, 138, 131, 12, 73, 195, 1, 65, 8, 38, 83, 218, 139, 12, 80, 247, + 111, 65, 4, 190, 214, 6, 79, 183, 199, 6, 84, 18, 58, 69, 34, 79, 22, 80, + 34, 84, 50, 85, 211, 141, 12, 73, 4, 142, 199, 11, 86, 227, 84, 76, 2, + 239, 251, 7, 67, 2, 11, 69, 2, 227, 181, 4, 67, 4, 26, 85, 163, 234, 11, + 79, 2, 219, 138, 13, 68, 4, 26, 80, 247, 155, 13, 78, 2, 21, 3, 69, 82, + 86, 2, 183, 144, 12, 73, 6, 154, 169, 11, 72, 206, 162, 1, 69, 239, 48, + 87, 4, 234, 224, 9, 79, 163, 128, 2, 65, 4, 170, 164, 8, 32, 221, 166, 4, + 2, 74, 69, 22, 42, 69, 46, 70, 42, 78, 30, 83, 51, 84, 4, 216, 1, 3, 73, + 71, 72, 131, 246, 4, 76, 4, 160, 1, 2, 79, 85, 13, 2, 73, 70, 2, 133, 1, + 3, 73, 78, 69, 4, 34, 73, 73, 4, 69, 86, 69, 78, 2, 71, 88, 8, 34, 72, + 46, 87, 207, 200, 12, 69, 2, 11, 73, 2, 11, 82, 2, 175, 194, 11, 84, 4, + 11, 69, 4, 190, 168, 11, 78, 143, 115, 76, 22, 164, 1, 3, 73, 65, 76, + 216, 1, 3, 89, 32, 80, 224, 206, 6, 5, 72, 69, 78, 79, 80, 180, 229, 1, + 6, 78, 69, 82, 83, 72, 73, 225, 219, 3, 6, 32, 65, 76, 84, 69, 82, 12, + 62, 32, 173, 124, 10, 76, 89, 45, 82, 69, 67, 89, 67, 76, 69, 10, 38, 68, + 41, 5, 76, 73, 78, 69, 32, 2, 229, 174, 4, 5, 73, 70, 70, 69, 82, 8, 254, + 205, 3, 68, 226, 45, 70, 20, 4, 66, 65, 67, 75, 203, 153, 9, 85, 2, 223, + 242, 3, 79, 10, 98, 69, 52, 9, 73, 86, 69, 45, 80, 85, 76, 76, 45, 89, 9, + 80, 79, 82, 84, 32, 67, 79, 78, 84, 4, 176, 242, 9, 4, 78, 71, 69, 82, + 147, 140, 2, 68, 4, 40, 4, 68, 79, 87, 78, 1, 2, 85, 80, 2, 213, 176, 5, + 6, 45, 79, 85, 84, 80, 85, 2, 239, 253, 11, 82, 114, 192, 1, 12, 71, 76, + 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 62, 76, 156, 3, 3, 82, 73, 83, + 36, 14, 77, 73, 68, 45, 76, 69, 86, 69, 76, 32, 84, 79, 78, 69, 57, 7, + 83, 65, 78, 68, 72, 73, 32, 7, 11, 32, 4, 202, 5, 70, 213, 255, 11, 4, + 86, 65, 82, 73, 82, 72, 6, 69, 84, 84, 69, 82, 32, 209, 2, 7, 79, 87, 45, + 70, 65, 76, 76, 74, 202, 1, 70, 226, 252, 8, 73, 2, 85, 238, 27, 78, 198, + 174, 3, 67, 2, 75, 2, 80, 2, 84, 138, 69, 66, 2, 68, 2, 71, 2, 72, 2, 76, + 2, 77, 2, 82, 2, 83, 2, 86, 2, 90, 186, 2, 65, 2, 69, 3, 79, 20, 44, 5, + 73, 78, 65, 76, 32, 163, 142, 13, 65, 18, 158, 144, 11, 78, 130, 254, 1, + 75, 2, 76, 2, 77, 2, 80, 2, 84, 2, 87, 3, 89, 8, 157, 1, 5, 73, 78, 71, + 32, 84, 7, 11, 32, 4, 192, 1, 5, 76, 79, 78, 71, 32, 15, 70, 12, 66, 84, + 73, 12, 71, 76, 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 8, 21, 3, 79, 78, + 69, 9, 11, 32, 6, 32, 4, 76, 79, 78, 71, 27, 70, 5, 11, 32, 2, 11, 70, 2, + 131, 201, 3, 73, 2, 171, 181, 4, 82, 4, 162, 139, 13, 70, 3, 73, 80, 130, + 1, 65, 122, 78, 162, 1, 82, 162, 9, 83, 44, 3, 84, 82, 73, 130, 17, 68, + 157, 156, 12, 9, 79, 80, 76, 69, 32, 72, 85, 71, 71, 12, 50, 67, 50, 78, + 138, 239, 6, 32, 155, 154, 6, 82, 6, 202, 215, 11, 79, 194, 28, 69, 199, + 149, 1, 72, 2, 227, 128, 12, 85, 10, 118, 71, 20, 3, 83, 73, 86, 222, + 179, 1, 84, 156, 188, 4, 10, 32, 79, 86, 69, 82, 32, 83, 84, 65, 77, 187, + 184, 5, 67, 2, 191, 136, 12, 85, 2, 223, 202, 12, 69, 48, 186, 1, 32, + 116, 10, 80, 69, 78, 68, 73, 67, 85, 76, 65, 82, 42, 83, 130, 176, 7, 67, + 252, 9, 10, 77, 65, 78, 69, 78, 84, 32, 80, 65, 80, 237, 133, 2, 8, 70, + 79, 82, 77, 73, 78, 71, 32, 6, 34, 77, 30, 84, 139, 255, 11, 83, 2, 129, + 242, 1, 2, 73, 76, 2, 149, 154, 11, 8, 69, 78, 32, 84, 72, 79, 85, 83, 5, + 213, 139, 9, 5, 32, 87, 73, 84, 72, 32, 60, 2, 79, 78, 154, 75, 80, 157, + 177, 11, 4, 69, 86, 69, 82, 28, 38, 32, 237, 133, 10, 3, 65, 76, 32, 26, + 216, 2, 10, 68, 79, 73, 78, 71, 32, 67, 65, 82, 84, 32, 3, 73, 78, 32, + 92, 5, 87, 73, 84, 72, 32, 184, 224, 7, 4, 70, 82, 79, 87, 204, 13, 27, + 82, 65, 73, 83, 73, 78, 71, 32, 66, 79, 84, 72, 32, 72, 65, 78, 68, 83, + 32, 73, 78, 32, 67, 69, 76, 69, 66, 204, 193, 4, 5, 67, 76, 73, 77, 66, + 213, 45, 11, 66, 79, 87, 73, 78, 71, 32, 68, 69, 69, 80, 2, 11, 87, 2, + 159, 189, 3, 72, 4, 204, 175, 12, 6, 76, 79, 84, 85, 83, 32, 253, 64, 9, + 83, 84, 69, 65, 77, 89, 32, 82, 79, 12, 154, 1, 66, 180, 146, 2, 3, 80, + 79, 85, 188, 165, 1, 2, 67, 82, 244, 132, 6, 6, 70, 79, 76, 68, 69, 68, + 177, 193, 2, 8, 72, 69, 65, 68, 83, 67, 65, 82, 4, 36, 3, 76, 79, 78, + 235, 244, 10, 65, 2, 11, 68, 2, 11, 32, 2, 11, 72, 2, 11, 65, 2, 131, + 198, 12, 73, 4, 180, 169, 9, 2, 69, 84, 151, 206, 2, 79, 2, 209, 153, 9, + 2, 32, 68, 140, 2, 66, 65, 184, 19, 9, 73, 76, 73, 80, 80, 73, 78, 69, + 32, 47, 79, 204, 1, 108, 6, 71, 83, 45, 80, 65, 32, 189, 7, 16, 73, 83, + 84, 79, 83, 32, 68, 73, 83, 67, 32, 83, 73, 71, 78, 32, 112, 100, 7, 76, + 69, 84, 84, 69, 82, 32, 248, 4, 5, 77, 65, 82, 75, 32, 30, 83, 33, 4, 68, + 79, 85, 66, 96, 138, 2, 65, 138, 1, 67, 50, 68, 42, 83, 64, 5, 86, 79, + 73, 67, 69, 178, 129, 9, 71, 202, 173, 3, 78, 82, 84, 46, 75, 2, 80, 2, + 90, 162, 7, 69, 234, 61, 66, 2, 70, 2, 72, 2, 74, 2, 76, 2, 77, 2, 81, 2, + 82, 2, 87, 2, 88, 2, 89, 186, 2, 73, 2, 79, 3, 85, 7, 80, 8, 76, 84, 69, + 82, 78, 65, 84, 69, 21, 8, 83, 80, 73, 82, 65, 84, 69, 68, 2, 163, 246, + 12, 32, 2, 11, 32, 2, 167, 246, 12, 70, 6, 26, 65, 251, 245, 12, 72, 5, + 231, 218, 8, 78, 6, 226, 245, 12, 68, 2, 90, 187, 2, 65, 6, 244, 174, 8, + 4, 77, 65, 76, 76, 198, 198, 4, 72, 187, 2, 65, 4, 34, 68, 21, 4, 76, 69, + 83, 83, 2, 231, 249, 10, 32, 2, 171, 187, 9, 32, 4, 246, 175, 12, 68, 59, + 83, 10, 28, 3, 73, 78, 71, 31, 85, 2, 229, 169, 12, 2, 76, 69, 8, 58, 66, + 213, 170, 12, 8, 80, 69, 82, 70, 73, 88, 69, 68, 6, 209, 189, 8, 13, 74, + 79, 73, 78, 69, 68, 32, 76, 69, 84, 84, 69, 82, 92, 238, 1, 66, 146, 1, + 67, 172, 2, 2, 68, 79, 38, 71, 66, 72, 64, 2, 76, 73, 32, 2, 77, 65, 70, + 80, 162, 1, 82, 38, 83, 150, 1, 84, 70, 87, 200, 228, 5, 2, 70, 76, 176, + 238, 1, 2, 79, 88, 252, 240, 3, 2, 69, 65, 138, 10, 65, 135, 1, 86, 10, + 52, 2, 69, 69, 22, 79, 145, 41, 4, 85, 76, 76, 83, 5, 147, 182, 7, 72, 4, + 32, 2, 79, 77, 175, 242, 12, 87, 2, 11, 69, 2, 203, 153, 12, 82, 16, 34, + 65, 86, 72, 22, 76, 23, 79, 6, 130, 224, 5, 80, 208, 240, 3, 8, 82, 80, + 69, 78, 84, 82, 89, 32, 151, 161, 3, 84, 2, 199, 193, 2, 73, 2, 135, 179, + 11, 85, 6, 26, 76, 33, 2, 77, 66, 2, 11, 85, 2, 227, 160, 12, 77, 5, 37, + 7, 73, 78, 73, 78, 71, 32, 79, 2, 169, 255, 9, 5, 66, 76, 73, 81, 85, 4, + 174, 196, 11, 76, 223, 148, 1, 86, 4, 42, 82, 137, 141, 11, 4, 65, 85, + 78, 84, 2, 131, 181, 11, 65, 6, 42, 69, 238, 219, 7, 79, 243, 255, 2, 73, + 2, 171, 185, 12, 76, 4, 242, 220, 12, 76, 203, 17, 68, 4, 34, 78, 249, + 251, 9, 2, 84, 84, 2, 11, 65, 2, 211, 172, 9, 67, 8, 52, 2, 69, 68, 50, + 76, 181, 176, 7, 3, 65, 80, 89, 2, 25, 4, 69, 83, 84, 82, 2, 231, 160, + 11, 73, 4, 192, 187, 4, 2, 85, 77, 209, 231, 2, 3, 65, 78, 69, 4, 230, + 218, 10, 79, 251, 128, 2, 65, 12, 108, 2, 72, 73, 134, 237, 11, 65, 158, + 45, 76, 128, 19, 3, 84, 82, 65, 177, 39, 7, 77, 65, 76, 76, 32, 65, 88, + 4, 214, 187, 2, 69, 207, 175, 10, 80, 6, 208, 185, 4, 5, 65, 84, 84, 79, + 79, 226, 236, 7, 73, 207, 36, 85, 4, 146, 236, 7, 79, 137, 238, 3, 5, 65, + 86, 89, 32, 66, 4, 250, 244, 1, 83, 25, 4, 68, 79, 85, 66, 60, 56, 8, 69, + 78, 73, 67, 73, 65, 78, 32, 187, 224, 10, 76, 58, 92, 7, 76, 69, 84, 84, + 69, 82, 32, 160, 3, 7, 78, 85, 77, 66, 69, 82, 32, 231, 155, 6, 87, 44, + 234, 1, 65, 34, 68, 22, 72, 22, 81, 22, 83, 58, 84, 226, 130, 2, 87, 154, + 239, 5, 90, 154, 185, 1, 89, 164, 207, 1, 2, 82, 79, 184, 95, 3, 71, 65, + 77, 162, 10, 75, 130, 1, 78, 144, 58, 3, 76, 65, 77, 138, 17, 66, 198, + 30, 80, 171, 4, 77, 4, 170, 229, 11, 76, 199, 49, 73, 2, 199, 192, 3, 69, + 4, 195, 253, 6, 69, 2, 227, 228, 11, 79, 6, 254, 210, 10, 65, 162, 147, + 1, 72, 189, 124, 2, 69, 77, 4, 210, 192, 12, 65, 191, 8, 69, 12, 202, 50, + 84, 203, 170, 4, 79, 40, 104, 2, 67, 75, 66, 71, 62, 76, 90, 78, 178, 1, + 83, 28, 7, 84, 67, 72, 70, 79, 82, 75, 243, 224, 12, 69, 5, 17, 2, 85, + 80, 2, 21, 3, 32, 84, 82, 2, 223, 177, 11, 85, 7, 11, 32, 4, 26, 78, 163, + 166, 12, 70, 2, 131, 216, 11, 79, 6, 52, 4, 69, 32, 79, 70, 246, 92, 67, + 235, 133, 12, 76, 2, 11, 32, 2, 215, 151, 10, 80, 14, 68, 2, 67, 72, 46, + 69, 194, 169, 4, 87, 206, 176, 7, 75, 243, 98, 65, 4, 196, 160, 3, 2, 69, + 68, 231, 176, 8, 73, 4, 28, 2, 32, 68, 239, 73, 65, 2, 253, 134, 5, 2, + 69, 67, 4, 134, 203, 11, 67, 123, 84, 5, 245, 139, 10, 10, 32, 87, 73, + 84, 72, 32, 84, 69, 69, 32, 218, 1, 38, 65, 230, 9, 85, 167, 214, 12, 68, + 176, 1, 78, 67, 128, 1, 12, 78, 67, 75, 32, 67, 79, 78, 83, 84, 65, 78, + 84, 83, 89, 6, 44, 5, 69, 32, 79, 70, 32, 151, 198, 11, 65, 4, 56, 6, 73, + 78, 84, 69, 82, 69, 173, 137, 12, 2, 87, 79, 2, 251, 146, 7, 83, 5, 45, + 9, 32, 79, 86, 69, 82, 32, 84, 87, 79, 2, 11, 32, 2, 159, 202, 12, 80, + 166, 1, 80, 7, 71, 82, 79, 85, 78, 68, 32, 29, 9, 73, 78, 71, 32, 67, 65, + 82, 68, 32, 2, 173, 171, 4, 2, 83, 76, 164, 1, 182, 1, 66, 44, 3, 82, 69, + 68, 0, 5, 87, 72, 73, 84, 69, 42, 70, 74, 75, 38, 69, 34, 83, 36, 3, 81, + 85, 69, 14, 84, 92, 2, 65, 67, 0, 3, 78, 73, 78, 13, 4, 74, 65, 67, 75, + 4, 40, 4, 76, 65, 67, 75, 135, 169, 11, 65, 2, 17, 2, 32, 74, 2, 219, + 237, 1, 79, 18, 30, 79, 249, 1, 2, 73, 86, 10, 128, 2, 2, 85, 82, 239, + 204, 11, 79, 16, 34, 78, 185, 1, 3, 73, 78, 71, 8, 181, 1, 4, 73, 71, 72, + 84, 16, 32, 2, 69, 86, 117, 2, 73, 88, 8, 91, 69, 66, 78, 69, 12, 3, 72, + 82, 69, 12, 2, 87, 79, 161, 1, 5, 82, 85, 77, 80, 45, 8, 23, 78, 8, 11, + 69, 8, 25, 4, 32, 79, 70, 32, 8, 88, 3, 67, 76, 85, 20, 3, 83, 80, 65, + 250, 145, 9, 72, 137, 3, 5, 68, 73, 65, 77, 79, 2, 231, 153, 12, 66, 2, + 171, 193, 11, 68, 42, 90, 50, 190, 146, 10, 49, 134, 196, 2, 51, 2, 52, + 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 7, 190, 214, 12, 48, 3, 49, 41, 46, + 83, 160, 4, 2, 84, 79, 175, 128, 9, 78, 26, 52, 5, 32, 83, 73, 71, 78, + 141, 163, 9, 2, 45, 77, 25, 11, 32, 22, 64, 3, 73, 78, 32, 124, 5, 87, + 73, 84, 72, 32, 215, 255, 3, 65, 6, 34, 76, 22, 82, 195, 173, 11, 84, 2, + 41, 2, 69, 70, 2, 21, 3, 73, 71, 72, 2, 233, 255, 10, 6, 84, 32, 72, 65, + 76, 70, 14, 162, 1, 68, 34, 83, 140, 176, 10, 4, 84, 73, 76, 68, 152, + 123, 5, 66, 76, 65, 67, 75, 201, 38, 16, 67, 73, 82, 67, 85, 77, 70, 76, + 69, 88, 32, 65, 67, 67, 69, 78, 2, 11, 79, 2, 167, 161, 10, 84, 4, 54, + 77, 173, 181, 5, 7, 85, 66, 83, 67, 82, 73, 80, 2, 197, 170, 9, 3, 65, + 76, 76, 11, 33, 6, 32, 70, 79, 82, 77, 32, 8, 162, 222, 10, 70, 71, 84, + 2, 157, 152, 12, 8, 32, 84, 82, 65, 78, 83, 73, 83, 58, 232, 1, 5, 76, + 73, 67, 69, 32, 122, 80, 140, 1, 11, 82, 84, 65, 66, 76, 69, 32, 83, 84, + 69, 82, 22, 83, 158, 1, 84, 146, 1, 85, 196, 1, 4, 87, 69, 82, 32, 210, + 142, 7, 79, 157, 129, 5, 11, 67, 75, 69, 84, 32, 67, 65, 76, 67, 85, 76, + 6, 52, 3, 67, 65, 82, 217, 253, 3, 4, 79, 70, 70, 73, 5, 217, 177, 10, + 11, 83, 32, 82, 69, 86, 79, 76, 86, 73, 78, 71, 6, 76, 13, 32, 68, 73, + 82, 69, 67, 84, 73, 79, 78, 65, 76, 32, 159, 215, 1, 67, 4, 158, 128, 1, + 73, 169, 190, 6, 6, 70, 79, 82, 77, 65, 84, 2, 251, 173, 12, 69, 12, 40, + 2, 69, 73, 22, 84, 243, 140, 5, 73, 2, 195, 252, 11, 68, 8, 36, 3, 65, + 76, 32, 171, 189, 11, 66, 6, 226, 213, 1, 72, 213, 206, 6, 4, 77, 65, 82, + 75, 8, 66, 65, 238, 135, 2, 32, 153, 183, 9, 6, 84, 69, 68, 32, 80, 76, + 4, 26, 66, 239, 171, 12, 84, 2, 29, 5, 76, 69, 32, 87, 65, 2, 243, 48, + 84, 12, 108, 4, 76, 84, 82, 89, 28, 7, 82, 73, 78, 71, 32, 76, 73, 28, 2, + 84, 73, 202, 221, 10, 78, 179, 234, 1, 67, 2, 213, 131, 12, 2, 32, 76, 2, + 205, 179, 5, 2, 81, 85, 4, 149, 223, 10, 2, 78, 71, 8, 24, 2, 79, 78, 47, + 83, 4, 136, 179, 11, 4, 45, 79, 70, 70, 15, 32, 4, 156, 152, 9, 3, 76, + 69, 69, 231, 154, 2, 89, 140, 1, 74, 69, 162, 10, 73, 230, 2, 79, 237, + 221, 9, 6, 65, 89, 69, 82, 32, 66, 102, 132, 1, 6, 71, 78, 65, 78, 84, + 32, 66, 83, 252, 191, 5, 4, 67, 69, 68, 69, 192, 207, 1, 5, 86, 73, 79, + 85, 83, 241, 32, 2, 84, 90, 6, 42, 87, 202, 193, 8, 80, 143, 184, 2, 77, + 2, 199, 199, 7, 79, 70, 176, 1, 27, 69, 78, 84, 65, 84, 73, 79, 78, 32, + 70, 79, 82, 77, 32, 70, 79, 82, 32, 86, 69, 82, 84, 73, 67, 65, 76, 32, + 129, 216, 8, 10, 67, 82, 73, 80, 84, 73, 79, 78, 32, 84, 68, 198, 1, 67, + 22, 69, 46, 72, 50, 73, 94, 76, 188, 1, 6, 82, 73, 71, 72, 84, 32, 192, + 2, 6, 87, 65, 86, 89, 32, 76, 178, 156, 4, 83, 252, 217, 4, 9, 84, 87, + 79, 32, 68, 79, 84, 32, 76, 139, 114, 81, 4, 191, 190, 2, 79, 6, 158, + 158, 6, 88, 182, 227, 2, 77, 3, 78, 2, 173, 154, 9, 7, 79, 82, 73, 90, + 79, 78, 84, 4, 49, 10, 68, 69, 79, 71, 82, 65, 80, 72, 73, 67, 4, 11, 32, + 4, 218, 235, 9, 67, 35, 70, 22, 40, 4, 69, 70, 84, 32, 143, 214, 10, 79, + 20, 112, 6, 87, 72, 73, 84, 69, 32, 142, 1, 66, 42, 68, 186, 100, 67, + 166, 7, 65, 222, 203, 7, 80, 238, 7, 83, 39, 84, 4, 162, 2, 67, 255, 99, + 76, 22, 110, 66, 42, 68, 36, 6, 87, 72, 73, 84, 69, 32, 150, 100, 67, + 166, 7, 65, 222, 203, 7, 80, 238, 7, 83, 39, 84, 2, 145, 101, 6, 76, 65, + 67, 75, 32, 76, 2, 197, 107, 5, 79, 85, 66, 76, 69, 6, 74, 67, 17, 14, + 76, 69, 78, 84, 73, 67, 85, 76, 65, 82, 32, 66, 82, 65, 2, 227, 99, 79, + 4, 246, 234, 11, 67, 177, 29, 2, 75, 67, 2, 187, 210, 10, 79, 22, 46, 78, + 156, 1, 2, 86, 65, 231, 164, 12, 77, 10, 34, 84, 133, 211, 6, 2, 67, 69, + 6, 26, 32, 53, 2, 69, 82, 2, 21, 3, 83, 67, 82, 2, 205, 193, 10, 2, 69, + 69, 5, 17, 2, 32, 73, 2, 223, 235, 11, 67, 10, 60, 5, 67, 89, 32, 77, 69, + 29, 6, 84, 69, 32, 85, 83, 69, 2, 213, 171, 7, 2, 83, 83, 8, 26, 32, 231, + 180, 8, 45, 4, 134, 166, 10, 84, 139, 121, 79, 14, 98, 74, 30, 80, 90, + 83, 156, 34, 5, 72, 73, 66, 73, 84, 173, 245, 8, 6, 66, 73, 78, 71, 32, + 67, 2, 213, 167, 5, 2, 69, 67, 6, 64, 6, 79, 82, 84, 73, 79, 78, 137, + 157, 11, 4, 69, 82, 84, 89, 5, 183, 215, 5, 65, 2, 173, 250, 10, 4, 69, + 82, 80, 73, 60, 76, 14, 65, 76, 84, 69, 82, 32, 80, 65, 72, 76, 65, 86, + 73, 32, 215, 5, 89, 58, 172, 1, 15, 70, 79, 85, 82, 32, 68, 79, 84, 83, + 32, 87, 73, 84, 72, 32, 32, 7, 76, 69, 84, 84, 69, 82, 32, 230, 2, 78, + 154, 32, 83, 1, 8, 84, 85, 82, 78, 69, 68, 32, 83, 4, 246, 242, 10, 67, + 247, 114, 68, 36, 166, 1, 65, 22, 68, 34, 76, 22, 77, 50, 87, 254, 169, + 4, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, + 170, 225, 4, 78, 134, 2, 84, 219, 103, 80, 2, 223, 170, 4, 76, 2, 11, 65, + 2, 227, 210, 6, 76, 2, 251, 170, 4, 65, 2, 25, 4, 69, 77, 45, 81, 2, 255, + 128, 6, 79, 2, 37, 7, 65, 87, 45, 65, 89, 73, 78, 2, 149, 205, 1, 2, 45, + 82, 14, 33, 6, 85, 77, 66, 69, 82, 32, 14, 42, 84, 202, 170, 4, 79, 191, + 236, 2, 70, 8, 42, 87, 250, 191, 10, 72, 207, 162, 1, 69, 4, 182, 194, + 10, 69, 239, 239, 1, 79, 2, 243, 132, 12, 67, 18, 252, 1, 4, 78, 67, 84, + 85, 94, 82, 56, 19, 84, 32, 76, 73, 84, 84, 69, 82, 32, 73, 78, 32, 73, + 84, 83, 32, 80, 76, 65, 178, 151, 1, 83, 132, 42, 20, 66, 76, 73, 67, 32, + 65, 68, 68, 82, 69, 83, 83, 32, 76, 79, 85, 68, 83, 80, 69, 166, 237, 10, + 49, 3, 50, 4, 164, 222, 10, 9, 83, 32, 69, 76, 69, 86, 65, 84, 85, 129, + 147, 1, 5, 65, 84, 73, 79, 78, 4, 32, 2, 80, 76, 155, 152, 12, 83, 2, + 175, 167, 11, 69, 2, 11, 67, 2, 135, 153, 11, 69, 40, 98, 65, 180, 6, 6, + 69, 83, 84, 73, 79, 78, 254, 136, 6, 79, 229, 143, 5, 5, 73, 78, 67, 85, + 78, 30, 104, 2, 68, 82, 240, 4, 9, 84, 69, 82, 78, 73, 79, 78, 32, 73, + 48, 4, 82, 84, 69, 82, 143, 132, 11, 79, 24, 56, 4, 65, 78, 84, 32, 157, + 4, 5, 85, 80, 76, 69, 32, 20, 44, 6, 85, 80, 80, 69, 82, 32, 131, 2, 76, + 16, 56, 4, 76, 69, 70, 84, 249, 1, 5, 82, 73, 71, 72, 84, 11, 29, 5, 32, + 65, 78, 68, 32, 8, 108, 6, 76, 79, 87, 69, 82, 32, 53, 17, 85, 80, 80, + 69, 82, 32, 82, 73, 71, 72, 84, 32, 65, 78, 68, 32, 76, 4, 192, 1, 5, 76, + 69, 70, 84, 32, 159, 254, 11, 82, 4, 11, 79, 4, 11, 87, 4, 213, 254, 11, + 2, 69, 82, 7, 65, 14, 32, 65, 78, 68, 32, 76, 79, 87, 69, 82, 32, 76, 69, + 70, 4, 11, 84, 5, 11, 32, 2, 21, 3, 65, 78, 68, 2, 17, 2, 32, 76, 2, 17, + 2, 79, 87, 2, 137, 213, 10, 2, 69, 82, 4, 22, 73, 239, 37, 80, 2, 177, + 228, 8, 7, 78, 84, 69, 71, 82, 65, 76, 2, 17, 2, 32, 78, 2, 159, 222, 10, + 79, 6, 34, 32, 161, 197, 5, 2, 69, 68, 4, 162, 139, 5, 69, 175, 218, 6, + 77, 220, 9, 114, 65, 142, 8, 69, 220, 27, 6, 72, 73, 78, 79, 67, 69, 34, + 73, 250, 87, 76, 46, 79, 198, 19, 85, 243, 149, 11, 83, 62, 110, 67, 104, + 2, 68, 73, 130, 1, 73, 162, 5, 84, 172, 246, 7, 4, 66, 66, 73, 84, 214, + 238, 3, 90, 235, 56, 77, 6, 40, 4, 73, 78, 71, 32, 159, 250, 8, 67, 4, + 192, 208, 10, 7, 77, 79, 84, 79, 82, 67, 89, 199, 48, 67, 8, 66, 79, 141, + 180, 8, 10, 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 7, 168, 184, 6, 4, + 65, 67, 84, 73, 229, 181, 4, 2, 32, 66, 36, 60, 5, 76, 87, 65, 89, 32, + 46, 78, 21, 4, 83, 69, 68, 32, 4, 240, 131, 9, 2, 84, 82, 155, 251, 1, + 67, 5, 243, 133, 11, 66, 28, 152, 1, 3, 68, 79, 84, 34, 73, 48, 4, 72, + 65, 78, 68, 182, 1, 77, 38, 83, 166, 177, 7, 70, 206, 151, 2, 67, 161, + 197, 1, 7, 66, 65, 67, 75, 32, 79, 70, 5, 29, 5, 84, 69, 68, 32, 73, 2, + 209, 40, 8, 78, 84, 69, 82, 80, 79, 76, 65, 7, 33, 6, 32, 87, 73, 84, 72, + 32, 4, 214, 27, 70, 245, 194, 2, 28, 80, 65, 82, 84, 32, 66, 69, 84, 87, + 69, 69, 78, 32, 77, 73, 68, 68, 76, 69, 32, 65, 78, 68, 32, 82, 73, 78, + 71, 6, 230, 151, 11, 67, 2, 68, 3, 82, 4, 60, 9, 77, 65, 76, 76, 32, 76, + 69, 70, 84, 179, 251, 10, 81, 2, 229, 158, 8, 2, 32, 83, 5, 243, 254, 11, + 73, 250, 1, 226, 1, 67, 132, 4, 2, 68, 32, 64, 2, 71, 73, 144, 1, 5, 74, + 65, 78, 71, 32, 202, 4, 76, 32, 8, 77, 73, 78, 68, 69, 82, 32, 82, 34, + 80, 106, 83, 136, 1, 5, 84, 85, 82, 78, 32, 42, 86, 209, 199, 1, 5, 70, + 69, 82, 69, 78, 26, 114, 69, 60, 3, 89, 67, 76, 146, 209, 5, 79, 205, + 155, 4, 13, 82, 69, 65, 84, 73, 79, 78, 65, 76, 32, 86, 69, 72, 4, 38, + 73, 209, 198, 10, 3, 80, 84, 65, 2, 163, 254, 11, 80, 18, 78, 69, 53, 15, + 73, 78, 71, 32, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 2, 29, 5, 68, + 32, 80, 65, 80, 2, 211, 179, 10, 69, 16, 100, 5, 84, 89, 80, 69, 45, 173, + 130, 5, 14, 71, 69, 78, 69, 82, 73, 67, 32, 77, 65, 84, 69, 82, 73, 14, + 58, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3, 55, 2, 133, 210, 5, 6, 32, + 80, 76, 65, 83, 84, 4, 42, 65, 205, 255, 4, 4, 71, 73, 70, 84, 2, 231, + 190, 3, 80, 54, 120, 4, 83, 84, 69, 82, 213, 244, 5, 20, 79, 78, 65, 76, + 32, 73, 78, 68, 73, 67, 65, 84, 79, 82, 32, 83, 89, 77, 66, 79, 2, 235, + 170, 10, 69, 74, 128, 1, 15, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, + 73, 71, 78, 32, 44, 7, 76, 69, 84, 84, 69, 82, 32, 226, 1, 83, 35, 86, 8, + 146, 151, 10, 78, 130, 254, 1, 72, 3, 82, 46, 162, 1, 78, 186, 253, 7, + 77, 214, 147, 4, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, + 80, 2, 82, 2, 83, 2, 84, 2, 87, 2, 89, 187, 2, 65, 12, 154, 254, 7, 89, + 166, 31, 71, 206, 243, 3, 68, 187, 2, 65, 2, 11, 69, 2, 211, 169, 11, 67, + 18, 64, 10, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 139, 214, 9, 73, 16, + 54, 69, 182, 209, 11, 65, 186, 64, 73, 2, 79, 3, 85, 7, 234, 145, 12, 65, + 3, 85, 2, 217, 254, 10, 3, 73, 69, 86, 2, 193, 193, 11, 3, 73, 66, 66, 2, + 41, 8, 76, 65, 67, 69, 77, 69, 78, 84, 2, 17, 2, 32, 67, 2, 193, 214, 10, + 5, 72, 65, 82, 65, 67, 8, 32, 2, 84, 82, 231, 254, 6, 80, 6, 152, 138, 8, + 16, 73, 67, 84, 69, 68, 32, 76, 69, 70, 84, 32, 69, 78, 84, 82, 89, 135, + 245, 3, 79, 6, 242, 249, 10, 83, 194, 106, 76, 31, 82, 70, 64, 4, 69, 82, + 83, 69, 197, 246, 3, 6, 79, 76, 86, 73, 78, 71, 68, 30, 32, 169, 3, 2, + 68, 32, 20, 184, 1, 6, 67, 72, 69, 67, 75, 69, 28, 2, 76, 73, 108, 7, 83, + 79, 76, 73, 68, 85, 83, 232, 229, 7, 16, 84, 73, 76, 68, 69, 32, 79, 80, + 69, 82, 65, 84, 79, 82, 32, 65, 195, 253, 2, 73, 2, 197, 243, 10, 2, 82, + 32, 4, 152, 212, 3, 18, 71, 72, 84, 32, 70, 79, 85, 82, 32, 80, 79, 73, + 78, 84, 69, 68, 32, 80, 135, 237, 1, 78, 9, 11, 32, 6, 240, 166, 5, 9, + 80, 82, 69, 67, 69, 68, 73, 78, 71, 166, 161, 3, 79, 251, 154, 1, 87, 48, + 248, 2, 5, 65, 78, 71, 76, 69, 20, 7, 68, 79, 85, 66, 76, 69, 32, 118, + 78, 20, 5, 70, 79, 82, 75, 69, 70, 80, 82, 82, 214, 1, 83, 106, 84, 236, + 238, 6, 30, 72, 65, 78, 68, 32, 87, 73, 84, 72, 32, 77, 73, 68, 68, 76, + 69, 32, 70, 73, 78, 71, 69, 82, 32, 69, 88, 84, 69, 78, 68, 198, 190, 2, + 67, 114, 81, 180, 102, 6, 69, 77, 80, 84, 89, 32, 253, 93, 7, 86, 73, 67, + 84, 79, 82, 89, 5, 247, 231, 3, 32, 6, 40, 3, 80, 82, 73, 41, 3, 83, 84, + 82, 4, 17, 2, 77, 69, 5, 195, 184, 3, 32, 2, 29, 5, 79, 75, 69, 32, 78, + 2, 155, 187, 6, 79, 2, 49, 10, 68, 32, 80, 65, 82, 65, 71, 82, 65, 80, 2, + 179, 4, 72, 4, 36, 3, 73, 76, 67, 239, 235, 10, 82, 2, 11, 82, 2, 217, + 254, 10, 2, 79, 87, 6, 156, 1, 17, 65, 73, 83, 69, 68, 32, 72, 65, 78, + 68, 32, 87, 73, 84, 72, 32, 70, 148, 107, 8, 79, 84, 65, 84, 69, 68, 32, + 70, 253, 176, 6, 4, 73, 71, 72, 84, 2, 209, 112, 9, 73, 78, 71, 69, 82, + 83, 32, 83, 80, 4, 156, 134, 1, 17, 65, 78, 83, 45, 83, 69, 82, 73, 70, + 32, 67, 65, 80, 73, 84, 65, 76, 191, 174, 7, 69, 10, 88, 4, 73, 76, 68, + 69, 28, 7, 82, 73, 80, 76, 69, 32, 80, 225, 160, 7, 3, 72, 85, 77, 5, + 237, 235, 4, 2, 32, 69, 2, 143, 232, 10, 82, 2, 11, 82, 2, 143, 196, 11, + 79, 147, 4, 228, 1, 4, 66, 66, 79, 78, 152, 1, 3, 67, 69, 32, 60, 3, 71, + 72, 84, 188, 81, 2, 78, 71, 252, 1, 23, 83, 73, 78, 71, 32, 68, 73, 65, + 71, 79, 78, 65, 76, 32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 198, 222, 5, + 65, 227, 165, 4, 70, 19, 37, 7, 32, 65, 82, 82, 79, 87, 32, 16, 88, 3, + 76, 69, 70, 0, 4, 82, 73, 71, 72, 178, 197, 4, 85, 161, 142, 7, 3, 68, + 79, 87, 4, 207, 252, 1, 84, 4, 26, 67, 135, 244, 9, 66, 2, 157, 145, 1, + 3, 82, 65, 67, 224, 3, 110, 32, 190, 36, 45, 152, 12, 11, 72, 65, 78, 68, + 32, 73, 78, 84, 69, 82, 73, 29, 6, 87, 65, 82, 68, 83, 32, 202, 1, 166, + 2, 65, 132, 6, 2, 66, 76, 62, 67, 184, 1, 2, 68, 79, 242, 1, 70, 60, 2, + 72, 65, 176, 5, 13, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32, 76, 69, 70, + 20, 2, 76, 79, 66, 78, 82, 79, 122, 80, 148, 1, 2, 82, 65, 58, 83, 154, + 6, 84, 160, 5, 9, 86, 69, 82, 84, 73, 67, 65, 76, 32, 147, 1, 87, 28, 22, + 78, 163, 4, 82, 22, 24, 2, 68, 32, 39, 71, 4, 170, 50, 76, 21, 3, 85, 80, + 80, 18, 26, 69, 17, 2, 76, 69, 2, 203, 26, 82, 17, 11, 32, 14, 154, 1, + 66, 44, 8, 68, 79, 84, 84, 69, 68, 32, 83, 2, 83, 112, 5, 87, 73, 84, 72, + 32, 189, 212, 10, 12, 86, 65, 82, 73, 65, 78, 84, 32, 87, 73, 84, 72, 4, + 173, 210, 10, 6, 82, 65, 67, 75, 69, 84, 2, 37, 7, 85, 66, 83, 84, 73, + 84, 85, 2, 25, 4, 84, 73, 79, 78, 2, 21, 3, 32, 77, 65, 2, 171, 138, 1, + 82, 4, 68, 11, 68, 79, 87, 78, 87, 65, 82, 68, 83, 32, 90, 139, 247, 8, + 65, 2, 141, 218, 10, 5, 73, 71, 90, 65, 71, 6, 18, 67, 79, 82, 2, 41, 8, + 32, 71, 82, 69, 65, 84, 69, 82, 2, 249, 24, 4, 45, 84, 72, 65, 4, 41, 8, + 79, 87, 32, 87, 73, 84, 72, 32, 4, 144, 234, 7, 7, 67, 73, 82, 67, 76, + 69, 68, 207, 182, 2, 83, 4, 25, 4, 65, 67, 75, 32, 4, 130, 27, 76, 223, + 218, 7, 84, 12, 38, 85, 166, 26, 79, 243, 235, 2, 69, 8, 53, 11, 82, 76, + 89, 32, 66, 82, 65, 67, 75, 69, 84, 9, 11, 32, 6, 44, 4, 77, 73, 68, 68, + 250, 10, 76, 27, 85, 2, 221, 186, 10, 2, 76, 69, 12, 38, 84, 41, 5, 85, + 66, 76, 69, 32, 2, 137, 17, 6, 84, 69, 68, 32, 83, 85, 10, 50, 65, 94, + 87, 214, 162, 3, 81, 199, 199, 4, 80, 4, 162, 31, 78, 173, 161, 3, 15, + 82, 82, 79, 87, 32, 87, 73, 84, 72, 32, 82, 79, 85, 78, 68, 2, 139, 24, + 73, 6, 26, 73, 155, 131, 3, 76, 4, 238, 215, 8, 86, 191, 97, 83, 28, 32, + 3, 76, 70, 32, 187, 4, 78, 26, 128, 1, 8, 65, 78, 68, 32, 76, 69, 70, 84, + 62, 66, 90, 70, 82, 72, 50, 82, 58, 84, 70, 87, 246, 13, 76, 22, 85, 175, + 227, 8, 77, 2, 29, 5, 32, 72, 65, 76, 70, 2, 201, 217, 8, 2, 32, 87, 6, + 11, 76, 6, 40, 4, 65, 67, 75, 32, 183, 188, 10, 79, 4, 158, 154, 10, 67, + 207, 11, 83, 4, 58, 79, 237, 156, 3, 8, 76, 89, 73, 78, 71, 32, 83, 65, + 2, 131, 202, 9, 76, 2, 209, 216, 8, 7, 79, 82, 73, 90, 79, 78, 84, 2, 33, + 6, 85, 78, 78, 73, 78, 71, 2, 203, 238, 6, 32, 2, 153, 173, 5, 12, 82, + 73, 80, 76, 69, 32, 68, 65, 83, 72, 32, 72, 2, 209, 167, 10, 4, 72, 73, + 84, 69, 2, 173, 152, 1, 16, 68, 32, 84, 69, 76, 69, 80, 72, 79, 78, 69, + 32, 82, 69, 67, 69, 4, 187, 231, 7, 84, 2, 145, 152, 11, 11, 87, 32, 80, + 65, 82, 65, 80, 72, 82, 65, 83, 2, 177, 4, 16, 79, 82, 77, 65, 76, 32, + 70, 65, 67, 84, 79, 82, 32, 83, 69, 77, 8, 74, 85, 166, 221, 8, 78, 225, + 189, 1, 8, 80, 69, 78, 32, 83, 81, 85, 65, 2, 221, 233, 10, 6, 84, 69, + 82, 32, 74, 79, 8, 49, 10, 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 9, 11, + 32, 6, 34, 76, 26, 85, 255, 196, 9, 69, 2, 157, 37, 2, 79, 87, 2, 133, + 37, 2, 80, 80, 2, 217, 10, 10, 73, 83, 69, 68, 32, 79, 77, 73, 83, 83, + 40, 62, 45, 70, 69, 78, 73, 68, 2, 80, 69, 126, 81, 227, 2, 85, 2, 173, + 128, 8, 12, 83, 72, 65, 80, 69, 68, 32, 66, 65, 71, 32, 68, 4, 26, 77, + 191, 236, 8, 86, 2, 217, 212, 10, 7, 73, 68, 73, 82, 69, 67, 84, 4, 210, + 150, 3, 78, 169, 252, 7, 8, 68, 69, 87, 65, 89, 83, 32, 85, 8, 32, 4, 65, + 75, 69, 82, 67, 69, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 246, 252, 3, 79, + 55, 84, 2, 137, 5, 2, 67, 72, 20, 57, 12, 85, 65, 82, 69, 32, 66, 82, 65, + 67, 75, 69, 84, 21, 11, 32, 18, 84, 3, 76, 79, 87, 0, 3, 85, 80, 80, 28, + 5, 87, 73, 84, 72, 32, 227, 191, 9, 69, 2, 245, 230, 3, 2, 69, 82, 12, + 96, 8, 84, 73, 67, 75, 32, 73, 78, 32, 230, 6, 81, 166, 236, 7, 85, 134, + 126, 68, 135, 193, 2, 83, 4, 244, 229, 3, 6, 66, 79, 84, 84, 79, 77, 1, + 3, 84, 79, 80, 2, 165, 4, 6, 66, 83, 84, 73, 84, 85, 26, 54, 72, 130, 3, + 82, 130, 223, 7, 79, 235, 204, 2, 65, 14, 62, 73, 116, 5, 79, 85, 71, 72, + 84, 45, 4, 82, 69, 69, 32, 4, 21, 3, 82, 68, 32, 4, 68, 4, 73, 78, 68, + 85, 221, 211, 1, 7, 87, 72, 73, 84, 69, 32, 82, 2, 215, 166, 11, 67, 2, + 11, 32, 2, 213, 136, 3, 3, 66, 85, 66, 8, 60, 9, 81, 85, 65, 82, 84, 69, + 82, 83, 32, 151, 230, 8, 69, 6, 34, 76, 22, 85, 139, 236, 8, 66, 2, 37, + 2, 79, 87, 2, 17, 2, 80, 80, 2, 227, 230, 8, 69, 8, 34, 65, 89, 4, 73, + 65, 78, 71, 2, 33, 6, 78, 83, 80, 79, 83, 73, 2, 11, 84, 2, 17, 2, 73, + 79, 2, 147, 138, 11, 78, 6, 32, 2, 76, 69, 159, 229, 8, 85, 5, 41, 8, 32, + 65, 66, 79, 86, 69, 32, 76, 2, 181, 178, 9, 2, 69, 70, 6, 18, 66, 95, 82, + 4, 68, 9, 65, 82, 32, 87, 73, 84, 72, 32, 81, 213, 191, 10, 2, 79, 88, 2, + 211, 223, 8, 85, 2, 189, 188, 9, 3, 85, 76, 69, 14, 22, 72, 203, 1, 73, + 12, 25, 4, 73, 84, 69, 32, 12, 54, 67, 54, 76, 206, 210, 7, 80, 238, 7, + 83, 39, 84, 4, 26, 79, 163, 207, 7, 85, 2, 65, 3, 82, 78, 69, 2, 41, 8, + 69, 78, 84, 73, 67, 85, 76, 65, 2, 183, 134, 11, 82, 2, 225, 199, 6, 6, + 71, 71, 76, 89, 32, 70, 62, 118, 70, 226, 2, 72, 128, 1, 9, 80, 79, 73, + 78, 84, 73, 78, 71, 32, 214, 4, 83, 197, 1, 6, 84, 79, 45, 76, 69, 70, + 18, 33, 6, 65, 67, 73, 78, 71, 32, 18, 116, 14, 65, 82, 77, 69, 78, 73, + 65, 78, 32, 69, 84, 69, 82, 78, 20, 4, 66, 65, 83, 83, 16, 3, 70, 73, 83, + 87, 83, 2, 255, 159, 8, 73, 2, 175, 43, 73, 6, 26, 72, 151, 214, 11, 84, + 5, 11, 32, 2, 233, 176, 8, 6, 87, 73, 84, 72, 32, 79, 8, 140, 208, 3, 10, + 86, 65, 83, 84, 73, 32, 83, 73, 71, 78, 195, 223, 4, 78, 2, 81, 18, 65, + 78, 68, 69, 68, 32, 73, 78, 84, 69, 82, 76, 65, 67, 69, 68, 32, 80, 2, + 21, 3, 69, 78, 84, 2, 251, 150, 10, 65, 30, 90, 65, 30, 67, 94, 68, 58, + 77, 58, 82, 182, 1, 83, 74, 84, 210, 172, 8, 69, 179, 124, 71, 4, 90, 78, + 159, 175, 8, 84, 2, 29, 5, 85, 82, 86, 69, 68, 2, 17, 2, 32, 65, 2, 11, + 78, 2, 217, 255, 10, 2, 71, 76, 4, 136, 131, 3, 5, 79, 85, 66, 76, 69, + 179, 188, 6, 73, 2, 165, 184, 10, 9, 65, 71, 78, 73, 70, 89, 73, 78, 71, + 10, 38, 79, 154, 178, 9, 65, 235, 29, 73, 6, 92, 5, 67, 75, 69, 84, 32, + 213, 177, 9, 12, 76, 76, 69, 82, 32, 67, 79, 65, 83, 84, 69, 82, 4, 176, + 43, 3, 66, 79, 79, 143, 208, 10, 83, 2, 11, 84, 2, 21, 3, 73, 67, 75, 2, + 185, 187, 6, 4, 32, 70, 73, 71, 2, 239, 234, 7, 65, 4, 46, 72, 85, 7, 73, + 68, 69, 32, 65, 82, 67, 2, 17, 2, 65, 68, 2, 17, 2, 69, 68, 2, 209, 172, + 10, 6, 32, 87, 72, 73, 84, 69, 2, 11, 32, 2, 201, 239, 8, 8, 67, 76, 79, + 67, 75, 87, 73, 83, 8, 17, 2, 84, 32, 8, 86, 73, 40, 4, 79, 86, 69, 82, + 176, 134, 5, 5, 69, 77, 66, 69, 68, 139, 133, 6, 77, 2, 17, 2, 83, 79, 2, + 131, 135, 1, 76, 2, 135, 155, 3, 82, 2, 141, 187, 10, 2, 79, 82, 214, 1, + 160, 1, 5, 65, 82, 82, 79, 87, 130, 9, 66, 86, 68, 210, 1, 70, 122, 72, + 178, 6, 76, 26, 79, 34, 80, 50, 82, 70, 83, 94, 84, 206, 8, 87, 202, 197, + 8, 67, 47, 81, 75, 26, 32, 195, 147, 9, 45, 70, 94, 65, 170, 2, 70, 110, + 84, 184, 1, 5, 87, 73, 84, 72, 32, 129, 160, 1, 4, 79, 86, 69, 82, 12, + 40, 5, 66, 79, 86, 69, 32, 143, 1, 78, 10, 70, 82, 216, 163, 1, 5, 83, + 72, 79, 82, 84, 222, 194, 3, 65, 55, 84, 4, 37, 7, 69, 86, 69, 82, 83, + 69, 32, 4, 138, 230, 4, 65, 55, 84, 2, 61, 13, 68, 32, 85, 80, 80, 69, + 82, 32, 65, 78, 68, 32, 76, 2, 17, 2, 79, 87, 2, 129, 213, 8, 2, 69, 82, + 6, 25, 4, 82, 79, 77, 32, 6, 36, 3, 66, 65, 82, 187, 213, 8, 68, 5, 189, + 1, 6, 32, 84, 79, 32, 66, 76, 10, 56, 7, 72, 82, 79, 85, 71, 72, 32, 65, + 3, 79, 32, 66, 6, 224, 224, 4, 3, 83, 85, 80, 234, 207, 4, 71, 247, 149, + 2, 88, 4, 26, 76, 139, 141, 11, 65, 2, 153, 247, 9, 3, 65, 67, 75, 40, + 140, 1, 6, 67, 79, 82, 78, 69, 82, 26, 68, 98, 76, 86, 80, 30, 83, 38, + 84, 138, 210, 8, 77, 38, 78, 122, 69, 150, 153, 1, 72, 171, 165, 1, 86, + 2, 209, 18, 2, 32, 68, 4, 11, 79, 4, 40, 4, 84, 84, 69, 68, 203, 219, 7, + 85, 2, 17, 2, 32, 83, 2, 163, 177, 11, 84, 6, 26, 79, 231, 210, 8, 65, 4, + 26, 87, 251, 194, 11, 79, 2, 157, 201, 3, 2, 69, 82, 2, 193, 145, 9, 2, + 76, 85, 6, 146, 211, 8, 77, 203, 191, 2, 84, 10, 154, 16, 73, 171, 3, 65, + 8, 58, 65, 204, 11, 5, 79, 84, 84, 79, 77, 187, 199, 8, 76, 2, 145, 2, 2, + 67, 75, 14, 48, 6, 79, 85, 66, 76, 69, 32, 167, 225, 8, 65, 12, 40, 5, + 65, 82, 82, 79, 87, 211, 18, 68, 11, 26, 32, 143, 137, 9, 45, 6, 26, 87, + 167, 215, 8, 70, 4, 25, 4, 73, 84, 72, 32, 4, 186, 143, 11, 86, 79, 83, + 4, 40, 4, 82, 79, 78, 84, 195, 210, 8, 73, 2, 193, 209, 8, 14, 45, 84, + 73, 76, 84, 69, 68, 32, 83, 72, 65, 68, 79, 87, 30, 26, 65, 251, 213, 8, + 69, 26, 48, 6, 82, 80, 79, 79, 78, 32, 131, 248, 10, 78, 24, 80, 10, 87, + 73, 84, 72, 32, 66, 65, 82, 66, 32, 197, 152, 1, 4, 79, 86, 69, 82, 22, + 44, 4, 68, 79, 87, 78, 173, 1, 2, 85, 80, 10, 26, 32, 231, 219, 8, 87, 8, + 76, 8, 65, 66, 79, 86, 69, 32, 76, 69, 18, 66, 166, 211, 8, 70, 179, 5, + 84, 2, 227, 2, 70, 2, 253, 222, 4, 7, 69, 76, 79, 87, 32, 76, 79, 12, 26, + 32, 187, 218, 8, 87, 10, 60, 6, 65, 66, 79, 86, 69, 32, 154, 210, 8, 70, + 179, 5, 84, 6, 22, 76, 155, 1, 82, 4, 32, 2, 69, 70, 187, 221, 4, 79, 2, + 213, 144, 2, 24, 84, 87, 65, 82, 68, 83, 32, 72, 65, 82, 80, 79, 79, 78, + 32, 87, 73, 84, 72, 32, 66, 65, 82, 66, 2, 21, 3, 73, 71, 72, 2, 105, 24, + 84, 87, 65, 82, 68, 83, 32, 72, 65, 82, 80, 79, 79, 78, 32, 87, 73, 84, + 72, 32, 66, 65, 82, 66, 2, 11, 32, 2, 139, 241, 1, 68, 2, 141, 1, 2, 69, + 70, 2, 201, 212, 8, 3, 80, 69, 78, 4, 202, 216, 8, 65, 233, 206, 1, 3, + 85, 83, 72, 4, 36, 3, 73, 71, 72, 223, 228, 10, 79, 2, 11, 84, 2, 171, 1, + 45, 6, 32, 2, 81, 85, 215, 207, 8, 65, 4, 26, 73, 239, 207, 8, 65, 2, + 229, 215, 8, 2, 71, 71, 54, 38, 79, 60, 2, 82, 73, 227, 4, 87, 2, 11, 80, + 2, 11, 32, 2, 253, 199, 8, 4, 83, 72, 65, 68, 34, 40, 5, 65, 78, 71, 76, + 69, 255, 3, 80, 30, 56, 8, 45, 72, 69, 65, 68, 69, 68, 32, 251, 219, 8, + 32, 28, 52, 5, 65, 82, 82, 79, 87, 202, 212, 8, 68, 39, 80, 25, 11, 32, + 22, 64, 8, 79, 86, 69, 82, 32, 76, 69, 70, 22, 87, 135, 208, 8, 84, 2, + 183, 207, 8, 84, 18, 25, 4, 73, 84, 72, 32, 18, 128, 1, 7, 68, 79, 85, + 66, 76, 69, 32, 36, 7, 76, 79, 78, 71, 32, 84, 73, 230, 207, 8, 66, 158, + 1, 77, 34, 78, 34, 86, 35, 72, 4, 166, 138, 9, 72, 195, 247, 1, 86, 4, + 11, 80, 4, 11, 32, 4, 18, 68, 35, 85, 2, 181, 208, 8, 3, 79, 87, 78, 2, + 151, 208, 8, 80, 4, 21, 3, 76, 69, 32, 4, 138, 3, 68, 203, 145, 10, 65, + 18, 11, 79, 18, 56, 8, 45, 72, 69, 65, 68, 69, 68, 32, 175, 210, 8, 32, + 16, 76, 6, 65, 82, 82, 79, 87, 32, 213, 1, 8, 84, 82, 73, 80, 76, 69, 32, + 68, 14, 44, 5, 87, 73, 84, 72, 32, 179, 198, 8, 70, 12, 42, 84, 210, 198, + 7, 68, 235, 183, 3, 86, 8, 26, 65, 243, 209, 8, 82, 6, 17, 2, 73, 76, 7, + 33, 6, 32, 87, 73, 84, 72, 32, 4, 250, 197, 7, 68, 235, 183, 3, 86, 2, + 249, 132, 1, 2, 65, 83, 8, 58, 65, 21, 10, 72, 73, 84, 69, 32, 65, 82, + 82, 79, 87, 2, 207, 206, 8, 86, 7, 11, 32, 4, 216, 193, 2, 4, 70, 82, 79, + 77, 219, 145, 6, 87, 19, 66, 32, 136, 1, 6, 69, 68, 32, 80, 76, 65, 21, + 3, 73, 78, 71, 12, 82, 66, 22, 80, 212, 201, 4, 2, 73, 78, 26, 69, 154, + 158, 3, 79, 195, 198, 2, 65, 2, 239, 153, 11, 85, 2, 11, 79, 2, 135, 232, + 10, 73, 2, 247, 245, 10, 78, 2, 209, 199, 3, 2, 32, 66, 4, 24, 2, 70, 65, + 75, 83, 2, 17, 2, 76, 76, 2, 21, 3, 73, 78, 71, 2, 177, 231, 1, 2, 32, + 68, 2, 189, 173, 3, 2, 79, 85, 8, 222, 169, 11, 69, 2, 73, 2, 77, 3, 79, + 126, 136, 2, 2, 67, 75, 20, 2, 76, 76, 188, 2, 4, 77, 65, 78, 32, 194, 8, + 79, 80, 2, 83, 69, 20, 6, 84, 65, 84, 69, 68, 32, 152, 3, 3, 85, 78, 68, + 170, 178, 3, 87, 252, 213, 3, 15, 65, 83, 84, 69, 68, 32, 83, 87, 69, 69, + 84, 32, 80, 79, 84, 185, 166, 2, 2, 66, 79, 5, 251, 138, 11, 69, 10, 130, + 1, 69, 64, 4, 32, 79, 70, 32, 101, 21, 73, 78, 71, 32, 79, 78, 32, 84, + 72, 69, 32, 70, 76, 79, 79, 82, 32, 76, 65, 85, 71, 6, 60, 9, 68, 45, 85, + 80, 32, 78, 69, 87, 83, 33, 2, 82, 32, 2, 11, 80, 2, 175, 131, 2, 65, 4, + 28, 3, 67, 79, 65, 23, 83, 2, 131, 235, 9, 83, 2, 135, 95, 75, 2, 231, + 211, 10, 72, 72, 140, 1, 6, 67, 69, 78, 84, 85, 82, 22, 68, 100, 3, 81, + 85, 73, 28, 8, 78, 85, 77, 69, 82, 65, 76, 32, 182, 4, 83, 114, 85, 135, + 235, 7, 65, 2, 159, 215, 5, 73, 6, 98, 69, 232, 5, 5, 85, 80, 79, 78, 68, + 61, 12, 73, 77, 73, 68, 73, 65, 32, 83, 69, 88, 84, 85, 2, 229, 5, 3, 78, + 65, 82, 48, 142, 1, 70, 136, 1, 3, 79, 78, 69, 134, 1, 83, 66, 84, 232, + 14, 10, 82, 69, 86, 69, 82, 83, 69, 68, 32, 79, 150, 237, 2, 69, 163, + 135, 7, 78, 14, 26, 73, 183, 168, 10, 79, 12, 36, 3, 70, 84, 89, 255, + 254, 2, 86, 7, 11, 32, 4, 194, 196, 5, 84, 177, 221, 4, 5, 69, 65, 82, + 76, 89, 11, 11, 32, 8, 50, 72, 41, 8, 84, 72, 79, 85, 83, 65, 78, 68, 4, + 185, 1, 6, 85, 78, 68, 82, 69, 68, 5, 141, 130, 4, 2, 32, 67, 6, 32, 2, + 73, 88, 159, 172, 9, 69, 5, 241, 159, 10, 2, 32, 76, 10, 42, 69, 150, + 253, 2, 87, 239, 174, 6, 72, 4, 11, 78, 5, 11, 32, 2, 131, 194, 5, 84, + 10, 46, 69, 189, 200, 7, 5, 73, 76, 73, 81, 85, 8, 60, 2, 77, 85, 40, 5, + 83, 84, 69, 82, 84, 21, 2, 88, 84, 2, 17, 2, 78, 67, 2, 231, 199, 7, 73, + 2, 207, 234, 7, 73, 4, 18, 65, 23, 85, 2, 179, 234, 7, 78, 2, 151, 199, + 7, 76, 4, 48, 6, 84, 32, 86, 69, 71, 69, 219, 225, 9, 83, 2, 141, 197, 2, + 2, 84, 65, 5, 179, 210, 9, 84, 10, 166, 2, 70, 32, 11, 72, 69, 65, 86, + 89, 32, 66, 76, 65, 67, 75, 52, 24, 76, 73, 71, 72, 84, 32, 70, 79, 85, + 82, 32, 80, 79, 73, 78, 84, 69, 68, 32, 66, 76, 65, 67, 75, 0, 18, 87, + 72, 73, 84, 69, 32, 70, 79, 85, 82, 32, 80, 79, 73, 78, 84, 69, 68, 161, + 53, 8, 67, 65, 80, 73, 84, 65, 76, 32, 2, 29, 5, 76, 79, 82, 65, 76, 2, + 201, 182, 9, 8, 32, 72, 69, 65, 82, 84, 32, 66, 2, 213, 207, 9, 2, 32, + 67, 16, 74, 32, 89, 14, 69, 68, 32, 83, 89, 77, 66, 79, 76, 32, 70, 79, + 82, 32, 4, 24, 2, 80, 85, 43, 84, 2, 11, 83, 2, 209, 151, 10, 2, 72, 80, + 2, 147, 222, 3, 65, 12, 68, 2, 83, 72, 238, 162, 6, 67, 222, 206, 4, 70, + 2, 76, 147, 17, 88, 4, 40, 4, 85, 65, 78, 71, 159, 241, 10, 79, 2, 171, + 130, 11, 88, 136, 2, 226, 1, 66, 20, 3, 71, 66, 89, 40, 5, 76, 69, 45, + 68, 69, 40, 3, 77, 73, 32, 154, 5, 78, 156, 26, 26, 83, 83, 73, 65, 78, + 32, 65, 83, 84, 82, 79, 76, 79, 71, 73, 67, 65, 76, 32, 83, 89, 77, 66, + 79, 76, 32, 203, 152, 5, 80, 2, 255, 243, 8, 76, 2, 177, 137, 9, 5, 32, + 70, 79, 79, 84, 2, 11, 76, 2, 165, 255, 5, 2, 65, 89, 62, 68, 9, 70, 82, + 65, 67, 84, 73, 79, 78, 32, 102, 78, 171, 198, 2, 68, 8, 40, 4, 79, 78, + 69, 32, 187, 175, 9, 84, 6, 34, 84, 250, 139, 9, 72, 47, 81, 2, 167, 141, + 9, 72, 36, 33, 6, 85, 77, 66, 69, 82, 32, 36, 76, 5, 69, 73, 71, 72, 84, + 38, 70, 92, 2, 78, 73, 22, 79, 18, 83, 83, 84, 4, 158, 137, 3, 32, 231, + 135, 8, 89, 8, 18, 73, 35, 79, 4, 130, 2, 86, 235, 158, 9, 70, 4, 136, 2, + 2, 85, 82, 195, 158, 9, 82, 4, 77, 2, 78, 69, 2, 167, 1, 78, 8, 40, 4, + 69, 86, 69, 78, 1, 2, 73, 88, 4, 206, 135, 3, 32, 159, 246, 7, 84, 10, + 34, 72, 50, 87, 223, 190, 10, 69, 4, 32, 2, 82, 69, 199, 158, 9, 73, 2, + 39, 69, 4, 26, 79, 183, 158, 9, 69, 2, 187, 134, 3, 32, 182, 1, 32, 3, + 73, 67, 32, 147, 25, 78, 178, 1, 220, 1, 6, 66, 69, 76, 71, 84, 72, 20, + 4, 67, 82, 79, 83, 20, 7, 76, 69, 84, 84, 69, 82, 32, 210, 22, 83, 24, 6, + 77, 85, 76, 84, 73, 80, 216, 196, 7, 5, 65, 82, 76, 65, 85, 161, 202, 1, + 7, 84, 86, 73, 77, 65, 68, 85, 2, 135, 166, 9, 79, 2, 235, 197, 7, 83, + 166, 1, 202, 4, 65, 110, 67, 98, 68, 126, 69, 82, 70, 222, 1, 71, 104, 2, + 72, 65, 50, 73, 220, 1, 5, 74, 69, 82, 65, 78, 34, 75, 58, 76, 234, 1, + 79, 128, 1, 13, 82, 65, 73, 68, 79, 32, 82, 65, 68, 32, 82, 69, 73, 34, + 83, 176, 2, 16, 66, 69, 82, 75, 65, 78, 65, 78, 32, 66, 69, 79, 82, 67, + 32, 66, 144, 1, 12, 78, 65, 85, 68, 73, 90, 32, 78, 89, 68, 32, 78, 110, + 84, 194, 1, 87, 128, 91, 7, 85, 82, 85, 90, 32, 85, 82, 196, 189, 2, 10, + 77, 65, 78, 78, 65, 90, 32, 77, 65, 78, 168, 63, 13, 80, 69, 82, 84, 72, + 79, 32, 80, 69, 79, 82, 84, 72, 206, 199, 3, 89, 158, 214, 3, 81, 2, 86, + 2, 88, 3, 90, 8, 222, 4, 69, 174, 185, 6, 67, 0, 4, 78, 83, 85, 90, 189, + 186, 3, 9, 76, 71, 73, 90, 32, 69, 79, 76, 72, 11, 46, 69, 30, 65, 245, + 152, 7, 3, 87, 69, 79, 4, 26, 65, 211, 133, 11, 78, 2, 191, 219, 9, 76, + 11, 84, 6, 79, 84, 84, 69, 68, 45, 193, 231, 3, 9, 65, 71, 65, 90, 32, + 68, 65, 69, 71, 6, 226, 132, 11, 76, 2, 78, 3, 80, 11, 136, 76, 7, 72, + 87, 65, 90, 32, 69, 72, 218, 255, 9, 65, 206, 55, 84, 63, 78, 12, 120, + 13, 82, 65, 78, 75, 83, 32, 67, 65, 83, 75, 69, 84, 32, 145, 180, 7, 11, + 69, 72, 85, 32, 70, 69, 79, 72, 32, 70, 69, 10, 46, 65, 234, 196, 10, 73, + 2, 79, 207, 60, 69, 4, 26, 69, 171, 130, 11, 67, 2, 151, 216, 9, 83, 9, + 26, 69, 159, 201, 10, 65, 4, 52, 7, 66, 79, 32, 71, 89, 70, 85, 195, 129, + 11, 82, 2, 235, 128, 11, 32, 4, 236, 8, 2, 69, 71, 13, 4, 71, 76, 65, 90, + 12, 156, 1, 2, 78, 71, 20, 9, 83, 65, 90, 32, 73, 83, 32, 73, 83, 20, 5, + 87, 65, 90, 32, 69, 216, 198, 10, 10, 67, 69, 76, 65, 78, 68, 73, 67, 45, + 89, 3, 79, 5, 199, 211, 6, 87, 2, 183, 191, 10, 83, 2, 163, 254, 10, 79, + 2, 11, 32, 2, 147, 255, 10, 74, 7, 21, 3, 65, 85, 78, 4, 206, 251, 10, + 32, 155, 3, 65, 12, 120, 15, 65, 85, 75, 65, 90, 32, 76, 65, 71, 85, 32, + 76, 79, 71, 82, 21, 11, 79, 78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 2, + 251, 241, 9, 32, 10, 64, 3, 65, 82, 32, 158, 4, 72, 62, 77, 66, 79, 131, + 191, 10, 89, 2, 159, 230, 10, 65, 15, 150, 5, 83, 0, 12, 84, 72, 65, 76, + 65, 78, 32, 69, 84, 72, 69, 76, 188, 247, 10, 4, 80, 69, 78, 45, 14, 69, + 2, 78, 3, 79, 2, 11, 68, 2, 247, 194, 10, 32, 26, 150, 1, 72, 244, 2, 18, + 73, 71, 69, 76, 32, 76, 79, 78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 83, + 208, 253, 6, 5, 79, 87, 73, 76, 79, 203, 173, 2, 84, 21, 45, 9, 79, 82, + 84, 45, 84, 87, 73, 71, 45, 18, 102, 66, 58, 72, 62, 77, 30, 78, 38, 79, + 42, 83, 186, 1, 84, 128, 173, 6, 2, 65, 82, 163, 144, 4, 89, 2, 33, 6, + 74, 65, 82, 75, 65, 78, 2, 243, 186, 9, 32, 2, 25, 4, 65, 71, 65, 76, 2, + 11, 76, 2, 159, 247, 10, 32, 2, 253, 154, 3, 2, 65, 68, 2, 157, 168, 10, + 4, 65, 85, 68, 32, 2, 17, 2, 83, 83, 2, 211, 216, 10, 32, 2, 11, 79, 2, + 195, 253, 6, 76, 4, 116, 15, 72, 85, 82, 73, 83, 65, 90, 32, 84, 72, 85, + 82, 83, 32, 84, 33, 10, 73, 87, 65, 90, 32, 84, 73, 82, 32, 84, 2, 11, + 72, 2, 171, 227, 5, 79, 2, 17, 2, 89, 82, 2, 187, 217, 10, 32, 5, 41, 8, + 85, 78, 74, 79, 32, 87, 89, 78, 2, 11, 78, 2, 251, 246, 9, 32, 2, 21, 3, + 73, 78, 71, 2, 237, 174, 7, 2, 76, 69, 4, 188, 137, 9, 16, 73, 78, 71, + 32, 83, 72, 73, 82, 84, 32, 87, 73, 84, 72, 32, 83, 187, 178, 1, 69, 12, + 120, 3, 66, 73, 78, 2, 78, 28, 2, 81, 85, 0, 3, 86, 73, 71, 174, 160, 7, + 83, 229, 169, 1, 6, 84, 82, 69, 68, 69, 67, 2, 169, 202, 8, 2, 79, 86, 2, + 129, 202, 8, 2, 73, 78, 200, 40, 244, 1, 2, 32, 73, 22, 65, 162, 26, 67, + 138, 5, 69, 166, 11, 72, 242, 36, 73, 162, 233, 1, 75, 154, 2, 76, 142, + 9, 77, 166, 21, 78, 190, 2, 79, 158, 39, 80, 172, 12, 2, 81, 85, 138, 70, + 83, 38, 84, 138, 17, 85, 150, 43, 87, 186, 1, 89, 247, 178, 5, 71, 2, + 183, 201, 9, 78, 198, 2, 132, 2, 5, 70, 69, 84, 89, 32, 36, 4, 71, 73, + 84, 84, 30, 76, 112, 8, 77, 65, 82, 73, 84, 65, 78, 32, 146, 14, 78, 190, + 3, 84, 102, 85, 204, 244, 2, 2, 73, 76, 242, 91, 88, 144, 148, 6, 15, 75, + 69, 32, 66, 79, 84, 84, 76, 69, 32, 65, 78, 68, 32, 67, 159, 98, 82, 4, + 254, 251, 6, 86, 207, 242, 2, 80, 2, 201, 213, 3, 2, 65, 82, 6, 18, 84, + 75, 85, 4, 36, 3, 32, 83, 72, 235, 202, 9, 73, 2, 11, 65, 2, 171, 175, + 10, 75, 2, 227, 228, 9, 84, 122, 184, 1, 7, 76, 69, 84, 84, 69, 82, 32, + 198, 3, 77, 248, 2, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, + 136, 4, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 203, 159, 4, 65, + 44, 202, 1, 66, 32, 2, 68, 65, 22, 73, 38, 75, 22, 76, 34, 83, 46, 84, + 182, 2, 65, 212, 231, 5, 2, 71, 65, 222, 153, 1, 82, 202, 142, 2, 90, + 182, 83, 77, 172, 1, 2, 81, 85, 118, 78, 226, 6, 89, 251, 101, 70, 4, + 186, 205, 10, 73, 247, 25, 65, 2, 151, 224, 9, 76, 6, 178, 233, 10, 78, + 2, 84, 3, 89, 2, 223, 231, 9, 65, 2, 11, 65, 2, 191, 223, 9, 66, 4, 156, + 7, 3, 73, 78, 71, 163, 149, 9, 72, 6, 254, 230, 9, 65, 134, 101, 73, 229, + 10, 5, 83, 65, 65, 68, 73, 18, 96, 4, 65, 82, 75, 32, 165, 1, 15, 79, 68, + 73, 70, 73, 69, 82, 32, 76, 69, 84, 84, 69, 82, 32, 12, 82, 68, 40, 2, + 73, 78, 90, 69, 242, 2, 78, 213, 191, 8, 5, 79, 67, 67, 76, 85, 2, 17, 2, + 65, 71, 2, 155, 251, 8, 69, 5, 17, 2, 45, 65, 2, 203, 228, 9, 76, 6, 46, + 69, 184, 6, 2, 83, 72, 131, 223, 10, 73, 2, 229, 235, 9, 11, 80, 69, 78, + 84, 72, 69, 84, 73, 67, 32, 89, 28, 130, 1, 65, 154, 1, 66, 22, 78, 30, + 83, 134, 1, 90, 250, 166, 3, 84, 156, 149, 7, 9, 77, 69, 76, 79, 68, 73, + 67, 32, 81, 3, 81, 10, 76, 3, 70, 83, 65, 34, 78, 28, 2, 84, 77, 245, + 189, 10, 4, 82, 75, 65, 65, 2, 11, 65, 2, 151, 227, 10, 81, 4, 26, 78, + 211, 206, 5, 71, 2, 11, 65, 2, 243, 189, 10, 65, 2, 165, 143, 3, 2, 69, + 81, 4, 64, 4, 72, 73, 89, 89, 45, 8, 79, 70, 32, 77, 65, 83, 72, 70, 2, + 11, 65, 2, 11, 65, 2, 155, 236, 8, 76, 2, 139, 216, 9, 65, 4, 34, 65, + 209, 235, 8, 2, 73, 81, 2, 223, 223, 9, 69, 30, 92, 5, 76, 79, 78, 71, + 32, 54, 79, 66, 83, 174, 205, 6, 65, 242, 145, 4, 69, 2, 73, 3, 85, 10, + 158, 206, 6, 65, 242, 145, 4, 69, 2, 73, 3, 85, 7, 41, 8, 86, 69, 82, 76, + 79, 78, 71, 32, 4, 191, 205, 6, 65, 4, 26, 72, 183, 219, 5, 85, 2, 129, + 150, 6, 3, 79, 82, 84, 10, 68, 8, 83, 45, 83, 69, 82, 73, 70, 32, 241, + 187, 10, 3, 68, 87, 73, 8, 44, 6, 72, 69, 65, 86, 89, 32, 139, 2, 73, 6, + 48, 3, 68, 79, 85, 81, 5, 76, 79, 87, 32, 68, 4, 11, 66, 4, 21, 3, 76, + 69, 32, 4, 84, 6, 84, 85, 82, 78, 69, 68, 23, 67, 2, 21, 3, 79, 85, 66, + 2, 17, 2, 76, 69, 2, 17, 2, 32, 67, 2, 33, 6, 79, 77, 77, 65, 32, 81, 2, + 145, 144, 9, 3, 85, 79, 84, 2, 253, 151, 10, 10, 78, 84, 69, 82, 82, 79, + 66, 65, 78, 71, 6, 48, 6, 69, 76, 76, 73, 84, 69, 143, 200, 5, 85, 5, 25, + 4, 32, 65, 78, 84, 2, 147, 160, 7, 69, 168, 1, 50, 82, 225, 141, 5, 6, + 68, 73, 32, 82, 73, 89, 166, 1, 52, 7, 65, 83, 72, 84, 82, 65, 32, 183, + 191, 4, 79, 164, 1, 180, 1, 7, 76, 69, 84, 84, 69, 82, 32, 212, 1, 5, 83, + 73, 71, 78, 32, 194, 21, 68, 176, 250, 2, 16, 67, 79, 78, 83, 79, 78, 65, + 78, 84, 32, 83, 73, 71, 78, 32, 72, 211, 155, 2, 86, 100, 154, 250, 6, + 65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 206, 141, 1, 79, 238, 60, 73, + 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, + 80, 162, 7, 69, 234, 61, 72, 2, 77, 2, 82, 3, 89, 8, 218, 184, 6, 67, + 234, 216, 3, 65, 239, 1, 86, 52, 66, 65, 32, 4, 72, 79, 79, 76, 46, 79, + 74, 82, 183, 212, 10, 73, 4, 194, 191, 9, 76, 227, 20, 82, 5, 245, 191, + 5, 6, 32, 83, 65, 84, 67, 72, 6, 36, 3, 82, 80, 73, 203, 154, 9, 79, 4, + 242, 132, 10, 79, 135, 18, 85, 36, 66, 69, 72, 4, 73, 80, 84, 32, 214, + 250, 1, 85, 175, 206, 6, 79, 4, 36, 3, 87, 68, 82, 235, 131, 10, 69, 2, + 11, 73, 2, 207, 149, 10, 86, 28, 80, 8, 67, 65, 80, 73, 84, 65, 76, 32, + 86, 76, 81, 6, 83, 77, 65, 76, 76, 32, 18, 210, 210, 10, 66, 2, 69, 2, + 70, 2, 72, 2, 73, 2, 76, 2, 77, 2, 80, 3, 82, 2, 37, 7, 73, 71, 65, 84, + 85, 82, 69, 2, 11, 32, 2, 233, 141, 10, 2, 69, 84, 8, 174, 209, 10, 69, + 2, 71, 2, 76, 3, 79, 220, 1, 130, 2, 65, 30, 67, 74, 69, 36, 5, 71, 77, + 69, 78, 84, 28, 2, 77, 73, 172, 1, 8, 80, 65, 82, 65, 84, 69, 68, 32, + 138, 4, 82, 158, 1, 83, 68, 2, 84, 32, 168, 140, 5, 8, 87, 73, 78, 71, + 32, 78, 69, 69, 202, 145, 3, 88, 190, 106, 68, 233, 162, 1, 2, 76, 70, 4, + 250, 206, 10, 76, 3, 84, 6, 34, 84, 245, 226, 5, 2, 79, 78, 4, 178, 201, + 6, 73, 175, 204, 3, 79, 4, 166, 224, 1, 68, 191, 132, 1, 45, 23, 189, + 191, 4, 2, 69, 68, 6, 212, 84, 28, 68, 73, 82, 69, 67, 84, 32, 80, 82, + 79, 68, 85, 67, 84, 32, 87, 73, 84, 72, 32, 66, 79, 84, 84, 79, 77, 32, + 67, 172, 208, 7, 3, 83, 69, 88, 211, 216, 1, 67, 158, 1, 48, 6, 66, 76, + 79, 67, 75, 32, 203, 182, 9, 83, 156, 1, 88, 9, 81, 85, 65, 68, 82, 65, + 78, 84, 45, 129, 1, 8, 83, 69, 88, 84, 65, 78, 84, 45, 30, 42, 49, 38, + 50, 30, 51, 171, 202, 10, 52, 17, 34, 50, 30, 51, 171, 202, 10, 52, 9, + 26, 51, 171, 202, 10, 52, 5, 167, 202, 10, 52, 126, 58, 49, 54, 50, 46, + 51, 38, 52, 30, 53, 187, 200, 10, 54, 65, 50, 50, 46, 51, 38, 52, 30, 53, + 187, 200, 10, 54, 33, 42, 51, 38, 52, 30, 53, 187, 200, 10, 54, 17, 34, + 52, 30, 53, 187, 200, 10, 54, 9, 26, 53, 187, 200, 10, 54, 5, 183, 200, + 10, 54, 4, 120, 2, 86, 73, 129, 175, 2, 22, 73, 79, 85, 83, 32, 70, 65, + 67, 69, 32, 87, 73, 84, 72, 32, 83, 89, 77, 66, 79, 76, 83, 2, 11, 67, 2, + 215, 133, 10, 69, 4, 52, 7, 81, 85, 73, 81, 85, 65, 68, 239, 141, 9, 65, + 2, 91, 82, 4, 64, 10, 84, 82, 65, 78, 83, 77, 73, 84, 32, 83, 151, 187, + 6, 77, 2, 11, 84, 2, 223, 252, 8, 65, 134, 3, 102, 65, 218, 20, 73, 102, + 79, 214, 13, 69, 70, 82, 224, 143, 9, 5, 85, 70, 70, 76, 69, 195, 145, 1, + 89, 192, 2, 164, 1, 12, 68, 79, 87, 69, 68, 32, 87, 72, 73, 84, 69, 32, + 56, 9, 76, 76, 79, 87, 32, 80, 65, 78, 32, 62, 82, 182, 10, 86, 160, 198, + 7, 2, 77, 82, 227, 233, 1, 75, 6, 174, 239, 8, 67, 206, 11, 83, 245, 4, + 3, 76, 65, 84, 2, 17, 2, 79, 70, 2, 17, 2, 32, 70, 2, 187, 136, 7, 79, + 210, 1, 40, 4, 65, 68, 65, 32, 167, 194, 10, 75, 208, 1, 162, 1, 68, 46, + 69, 110, 72, 34, 76, 246, 1, 83, 212, 2, 6, 86, 79, 87, 69, 76, 32, 170, + 199, 4, 65, 188, 211, 1, 7, 67, 79, 78, 84, 73, 78, 85, 195, 143, 4, 79, + 24, 194, 224, 6, 79, 66, 65, 255, 235, 1, 73, 4, 84, 15, 88, 84, 82, 65, + 32, 83, 72, 79, 82, 84, 32, 86, 79, 87, 69, 235, 130, 9, 75, 2, 179, 254, + 9, 76, 2, 217, 143, 10, 3, 69, 65, 68, 96, 33, 6, 69, 84, 84, 69, 82, 32, + 96, 170, 225, 6, 65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 186, 202, 1, + 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, + 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 89, 186, 2, 69, 3, 79, 30, 70, 65, + 38, 69, 56, 4, 73, 71, 78, 32, 145, 183, 9, 3, 85, 84, 82, 2, 193, 251, + 9, 4, 78, 68, 72, 73, 6, 212, 205, 2, 5, 67, 84, 73, 79, 78, 243, 189, 4, + 80, 20, 106, 73, 154, 144, 5, 83, 202, 141, 1, 67, 98, 78, 190, 66, 65, + 190, 158, 1, 74, 150, 3, 85, 235, 245, 1, 86, 2, 37, 7, 78, 86, 69, 82, + 84, 69, 68, 2, 181, 157, 6, 2, 32, 67, 46, 60, 6, 77, 79, 68, 73, 70, 73, + 21, 5, 83, 73, 71, 78, 32, 2, 155, 146, 6, 69, 44, 110, 67, 42, 79, 34, + 80, 162, 183, 4, 85, 194, 229, 1, 83, 242, 68, 65, 58, 86, 166, 202, 1, + 73, 199, 140, 2, 69, 4, 193, 157, 6, 5, 65, 78, 68, 82, 65, 7, 186, 162, + 10, 79, 215, 22, 69, 2, 57, 12, 82, 73, 83, 72, 84, 72, 65, 77, 65, 84, + 82, 65, 2, 223, 161, 10, 32, 98, 72, 3, 69, 68, 32, 21, 11, 73, 65, 78, + 32, 76, 69, 84, 84, 69, 82, 32, 2, 215, 250, 9, 73, 96, 158, 2, 65, 120, + 3, 67, 72, 85, 22, 69, 70, 72, 46, 73, 46, 76, 22, 77, 38, 79, 94, 80, + 18, 82, 22, 83, 38, 84, 64, 2, 87, 79, 36, 2, 89, 69, 212, 243, 4, 2, 74, + 85, 166, 228, 2, 68, 202, 13, 90, 218, 88, 70, 182, 6, 71, 234, 45, 66, + 246, 11, 75, 234, 21, 86, 250, 27, 78, 167, 128, 1, 85, 16, 82, 82, 242, + 251, 9, 73, 234, 25, 68, 162, 8, 71, 2, 87, 198, 21, 83, 147, 1, 72, 4, + 170, 166, 9, 82, 163, 142, 1, 69, 2, 255, 145, 10, 82, 8, 38, 65, 146, + 251, 9, 82, 139, 56, 71, 4, 234, 179, 10, 82, 3, 84, 4, 164, 182, 8, 2, + 65, 45, 179, 172, 1, 85, 6, 194, 227, 9, 65, 142, 57, 67, 215, 22, 70, 2, + 207, 168, 8, 79, 4, 146, 158, 5, 69, 227, 250, 3, 73, 12, 70, 79, 170, + 166, 9, 73, 166, 111, 85, 150, 25, 65, 154, 3, 78, 3, 82, 2, 163, 155, + 10, 90, 2, 255, 15, 69, 2, 151, 142, 9, 79, 4, 130, 143, 9, 85, 191, 162, + 1, 79, 6, 26, 72, 215, 148, 10, 79, 4, 218, 131, 6, 73, 223, 155, 4, 69, + 4, 138, 165, 9, 79, 211, 139, 1, 69, 4, 182, 176, 10, 65, 3, 87, 10, 78, + 69, 186, 232, 3, 70, 148, 126, 6, 78, 84, 79, 32, 83, 72, 131, 201, 5, + 80, 2, 171, 233, 9, 76, 50, 252, 1, 2, 79, 84, 32, 6, 80, 80, 73, 78, 71, + 32, 72, 2, 82, 84, 128, 11, 7, 85, 76, 68, 69, 82, 69, 68, 184, 240, 1, + 24, 67, 75, 69, 68, 32, 70, 65, 67, 69, 32, 87, 73, 84, 72, 32, 69, 88, + 80, 76, 79, 68, 73, 78, 71, 234, 155, 3, 86, 199, 215, 4, 87, 2, 197, + 147, 8, 3, 73, 78, 71, 4, 36, 3, 84, 82, 79, 131, 242, 5, 66, 2, 11, 76, + 2, 139, 143, 8, 76, 36, 102, 32, 200, 8, 12, 72, 65, 78, 68, 32, 70, 79, + 82, 77, 65, 84, 32, 250, 182, 6, 67, 171, 236, 3, 83, 24, 242, 1, 66, 92, + 11, 83, 76, 65, 78, 84, 69, 68, 32, 78, 79, 82, 196, 1, 4, 76, 69, 70, + 84, 156, 1, 11, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 248, 1, 7, + 85, 80, 32, 84, 65, 67, 75, 129, 161, 2, 9, 68, 79, 87, 78, 32, 84, 65, + 67, 75, 4, 88, 14, 65, 67, 75, 83, 76, 65, 78, 84, 69, 68, 32, 83, 79, + 85, 33, 4, 69, 78, 84, 32, 2, 11, 84, 2, 179, 140, 9, 72, 2, 221, 40, 37, + 65, 82, 82, 79, 87, 32, 80, 79, 73, 78, 84, 73, 78, 71, 32, 68, 79, 87, + 78, 87, 65, 82, 68, 83, 32, 84, 72, 69, 78, 32, 78, 79, 82, 84, 72, 32, + 69, 4, 116, 24, 87, 65, 82, 68, 83, 32, 72, 65, 82, 80, 79, 79, 78, 32, + 65, 66, 79, 86, 69, 32, 76, 79, 78, 71, 171, 3, 32, 2, 237, 1, 5, 32, 82, + 73, 71, 72, 4, 112, 11, 65, 82, 82, 79, 87, 32, 65, 66, 79, 86, 69, 29, + 13, 72, 65, 82, 80, 79, 79, 78, 32, 65, 66, 79, 86, 69, 2, 157, 128, 6, + 2, 32, 76, 2, 29, 5, 32, 76, 79, 78, 71, 2, 25, 4, 32, 76, 69, 70, 2, + 153, 250, 6, 6, 84, 87, 65, 82, 68, 83, 7, 11, 32, 4, 76, 13, 65, 66, 79, + 86, 69, 32, 83, 72, 79, 82, 84, 32, 68, 251, 131, 2, 87, 2, 11, 79, 2, + 11, 87, 2, 11, 78, 2, 11, 32, 2, 223, 132, 7, 84, 8, 120, 10, 67, 79, 78, + 84, 73, 78, 85, 73, 78, 71, 0, 6, 76, 69, 84, 84, 69, 82, 40, 4, 68, 79, + 87, 78, 1, 2, 85, 80, 2, 193, 179, 3, 5, 32, 79, 86, 69, 82, 2, 21, 3, + 32, 83, 84, 2, 215, 161, 10, 69, 2, 25, 4, 32, 79, 80, 69, 2, 207, 146, + 9, 78, 4, 26, 73, 179, 160, 10, 85, 2, 247, 160, 10, 77, 211, 14, 174, 1, + 68, 152, 20, 2, 71, 78, 184, 181, 1, 6, 77, 73, 76, 65, 82, 32, 158, 2, + 78, 202, 24, 88, 237, 238, 6, 15, 76, 72, 79, 85, 69, 84, 84, 69, 32, 79, + 70, 32, 74, 65, 80, 252, 1, 40, 5, 68, 72, 65, 77, 32, 135, 17, 69, 184, + 1, 202, 1, 69, 68, 7, 76, 69, 84, 84, 69, 82, 32, 176, 4, 15, 82, 69, 80, + 69, 84, 73, 84, 73, 79, 78, 32, 77, 65, 82, 75, 50, 83, 164, 8, 11, 86, + 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 171, 175, 6, 68, 2, 37, 7, 78, + 68, 32, 79, 70, 32, 84, 2, 201, 210, 9, 2, 69, 88, 102, 214, 1, 65, 98, + 84, 242, 188, 6, 68, 158, 1, 86, 186, 5, 85, 186, 202, 1, 73, 138, 196, + 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, + 76, 2, 77, 2, 82, 2, 89, 186, 2, 69, 3, 79, 11, 72, 8, 76, 84, 69, 82, + 78, 65, 84, 69, 214, 154, 10, 65, 2, 73, 3, 85, 2, 235, 245, 9, 32, 14, + 134, 1, 72, 252, 231, 5, 19, 87, 79, 45, 67, 73, 82, 67, 76, 69, 32, 65, + 76, 84, 69, 82, 78, 65, 84, 69, 254, 233, 3, 84, 195, 71, 65, 4, 164, + 217, 9, 20, 82, 69, 69, 45, 67, 73, 82, 67, 76, 69, 32, 65, 76, 84, 69, + 82, 78, 65, 84, 69, 147, 64, 65, 6, 11, 45, 6, 186, 152, 10, 49, 2, 50, + 3, 51, 44, 38, 69, 181, 7, 4, 73, 71, 78, 32, 32, 96, 11, 67, 84, 73, 79, + 78, 32, 77, 65, 82, 75, 32, 177, 6, 8, 80, 65, 82, 65, 84, 79, 82, 32, + 28, 80, 11, 68, 79, 85, 66, 76, 69, 32, 82, 73, 78, 71, 57, 5, 87, 73, + 84, 72, 32, 5, 11, 32, 2, 249, 231, 8, 6, 87, 73, 84, 72, 32, 82, 24, + 212, 1, 12, 67, 73, 82, 67, 76, 69, 83, 32, 65, 78, 68, 32, 116, 5, 81, + 85, 65, 68, 82, 0, 4, 83, 69, 80, 84, 12, 16, 82, 65, 89, 83, 32, 65, 78, + 68, 32, 68, 79, 84, 84, 69, 68, 32, 46, 68, 45, 3, 84, 82, 73, 6, 60, 4, + 70, 79, 85, 82, 0, 3, 84, 87, 79, 187, 229, 8, 82, 2, 225, 207, 6, 8, 32, + 69, 78, 67, 76, 79, 83, 85, 2, 83, 85, 6, 42, 68, 28, 3, 84, 82, 73, 215, + 1, 67, 2, 197, 1, 3, 79, 85, 66, 2, 171, 1, 80, 6, 52, 9, 68, 69, 78, 84, + 32, 65, 78, 68, 32, 103, 80, 4, 116, 6, 68, 79, 84, 84, 69, 68, 49, 14, + 85, 45, 83, 72, 65, 80, 69, 68, 32, 79, 82, 78, 65, 77, 2, 17, 2, 76, 69, + 2, 17, 2, 32, 67, 2, 25, 4, 82, 69, 83, 67, 2, 239, 186, 1, 69, 4, 158, + 237, 8, 66, 135, 83, 68, 12, 146, 229, 4, 83, 202, 141, 1, 67, 98, 78, + 138, 216, 3, 65, 239, 1, 86, 26, 74, 65, 94, 86, 210, 183, 6, 85, 186, + 202, 1, 73, 198, 140, 2, 69, 3, 79, 10, 168, 184, 6, 10, 76, 84, 69, 82, + 78, 65, 84, 69, 32, 85, 254, 214, 3, 65, 2, 73, 3, 85, 4, 11, 79, 4, 33, + 6, 67, 65, 76, 73, 67, 32, 4, 255, 183, 6, 82, 68, 84, 12, 84, 73, 67, + 32, 76, 69, 84, 84, 69, 82, 32, 78, 49, 5, 87, 65, 89, 83, 32, 52, 178, + 156, 1, 50, 222, 176, 3, 48, 131, 2, 49, 16, 56, 5, 66, 76, 65, 67, 75, + 1, 5, 87, 72, 73, 84, 69, 8, 11, 32, 8, 70, 82, 24, 3, 76, 69, 70, 12, 4, + 68, 79, 87, 78, 1, 2, 85, 80, 2, 21, 3, 73, 71, 72, 2, 11, 84, 2, 225, + 92, 6, 32, 80, 79, 73, 78, 84, 194, 10, 96, 8, 87, 82, 73, 84, 73, 78, + 71, 32, 241, 238, 1, 10, 32, 79, 70, 32, 84, 72, 69, 32, 72, 79, 192, 10, + 136, 3, 4, 65, 73, 82, 32, 192, 1, 2, 66, 82, 102, 67, 138, 1, 68, 218, + 4, 69, 242, 6, 70, 244, 3, 4, 87, 65, 76, 76, 138, 1, 72, 234, 77, 76, + 212, 6, 2, 77, 79, 222, 42, 78, 218, 1, 82, 182, 7, 83, 162, 5, 84, 180, + 10, 5, 71, 82, 65, 83, 80, 184, 5, 30, 85, 80, 80, 69, 82, 32, 66, 79, + 68, 89, 32, 84, 73, 76, 84, 73, 78, 71, 32, 70, 82, 79, 77, 32, 72, 73, + 80, 32, 74, 79, 135, 207, 4, 80, 8, 48, 4, 66, 76, 79, 87, 29, 4, 83, 85, + 67, 75, 4, 58, 32, 211, 226, 4, 73, 4, 30, 32, 61, 3, 73, 78, 71, 2, 237, + 157, 1, 10, 83, 77, 65, 76, 76, 32, 82, 79, 84, 65, 2, 171, 134, 9, 32, + 10, 52, 5, 69, 65, 84, 72, 32, 229, 169, 1, 2, 85, 83, 4, 140, 164, 2, 2, + 69, 88, 1, 2, 73, 78, 10, 40, 6, 72, 69, 69, 75, 83, 32, 63, 79, 6, 154, + 107, 83, 146, 38, 78, 153, 223, 3, 4, 80, 85, 70, 70, 4, 178, 180, 9, 76, + 223, 46, 77, 28, 108, 15, 82, 69, 65, 77, 89, 32, 69, 89, 69, 66, 82, 79, + 87, 83, 32, 165, 1, 7, 89, 78, 65, 77, 73, 67, 32, 8, 64, 4, 68, 79, 87, + 78, 0, 2, 85, 80, 29, 4, 78, 69, 85, 84, 2, 153, 143, 1, 2, 32, 78, 4, + 21, 3, 82, 65, 76, 4, 11, 32, 4, 194, 58, 68, 191, 199, 9, 85, 20, 180, + 1, 11, 69, 86, 69, 82, 89, 32, 79, 84, 72, 69, 82, 30, 70, 22, 83, 128, + 122, 9, 65, 82, 82, 79, 87, 72, 69, 65, 68, 234, 38, 82, 136, 206, 3, 2, + 84, 69, 21, 4, 71, 82, 65, 68, 2, 181, 230, 8, 2, 32, 84, 2, 163, 146, 6, + 65, 6, 68, 11, 73, 77, 85, 76, 84, 65, 78, 69, 79, 85, 83, 151, 227, 8, + 76, 5, 203, 151, 1, 32, 54, 64, 2, 89, 69, 172, 227, 4, 4, 88, 67, 73, + 84, 203, 138, 4, 65, 50, 166, 1, 32, 56, 15, 66, 82, 79, 87, 83, 32, 83, + 84, 82, 65, 73, 71, 72, 84, 32, 44, 5, 71, 65, 90, 69, 45, 140, 2, 7, 76, + 65, 83, 72, 69, 83, 32, 65, 2, 83, 32, 6, 220, 150, 1, 5, 66, 76, 73, 78, + 75, 243, 129, 5, 87, 6, 186, 53, 68, 154, 84, 78, 167, 243, 8, 85, 18, + 100, 11, 70, 76, 79, 79, 82, 80, 76, 65, 78, 69, 32, 25, 10, 87, 65, 76, + 76, 80, 76, 65, 78, 69, 32, 8, 82, 83, 207, 45, 67, 10, 18, 67, 43, 83, + 4, 254, 45, 85, 213, 95, 3, 73, 82, 67, 6, 37, 7, 84, 82, 65, 73, 71, 72, + 84, 7, 11, 32, 4, 202, 163, 1, 65, 55, 68, 6, 130, 51, 68, 180, 173, 4, + 4, 70, 76, 85, 84, 139, 154, 5, 85, 14, 112, 5, 72, 65, 76, 70, 32, 26, + 67, 28, 4, 87, 73, 68, 69, 230, 92, 79, 233, 135, 4, 6, 83, 81, 85, 69, + 69, 90, 4, 22, 67, 131, 93, 79, 2, 213, 232, 2, 2, 76, 79, 4, 162, 67, + 32, 217, 61, 4, 78, 73, 78, 71, 38, 204, 1, 28, 65, 67, 69, 32, 68, 73, + 82, 69, 67, 84, 73, 79, 78, 32, 80, 79, 83, 73, 84, 73, 79, 78, 32, 78, + 79, 83, 69, 32, 138, 1, 73, 82, 76, 176, 1, 8, 79, 82, 69, 72, 69, 65, + 68, 32, 187, 158, 7, 85, 6, 88, 10, 85, 80, 32, 79, 82, 32, 68, 79, 87, + 78, 13, 8, 70, 79, 82, 87, 65, 82, 68, 32, 5, 11, 32, 2, 153, 231, 4, 3, + 84, 73, 76, 12, 180, 225, 3, 11, 76, 76, 32, 77, 79, 68, 73, 70, 73, 69, + 82, 131, 195, 2, 78, 12, 44, 4, 73, 67, 75, 32, 29, 3, 79, 79, 82, 10, + 254, 140, 1, 76, 35, 83, 2, 225, 247, 8, 20, 80, 76, 65, 78, 69, 32, 83, + 72, 79, 85, 76, 68, 69, 82, 32, 72, 73, 80, 32, 77, 6, 166, 89, 87, 222, + 38, 67, 47, 78, 156, 4, 34, 65, 133, 75, 3, 69, 65, 68, 140, 4, 36, 3, + 78, 68, 45, 143, 186, 9, 73, 138, 4, 92, 5, 65, 78, 71, 76, 69, 138, 5, + 67, 150, 10, 70, 186, 42, 72, 241, 12, 4, 79, 86, 65, 76, 37, 11, 32, 34, + 188, 1, 5, 73, 78, 68, 69, 88, 176, 1, 7, 76, 73, 84, 84, 76, 69, 32, + 136, 1, 5, 82, 73, 78, 71, 32, 173, 66, 18, 77, 73, 68, 68, 76, 69, 32, + 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 69, 17, 11, 32, 14, 128, 1, 7, + 77, 73, 68, 68, 76, 69, 32, 228, 24, 11, 82, 73, 78, 71, 32, 76, 73, 84, + 84, 76, 69, 241, 42, 5, 84, 72, 85, 77, 66, 4, 174, 70, 76, 247, 215, 8, + 82, 8, 44, 5, 73, 78, 68, 69, 88, 207, 238, 9, 85, 7, 145, 24, 18, 32, + 84, 72, 85, 77, 66, 32, 73, 78, 68, 69, 88, 32, 84, 72, 85, 77, 66, 4, + 108, 22, 68, 79, 87, 78, 32, 77, 73, 68, 68, 76, 69, 32, 84, 72, 85, 77, + 66, 32, 73, 78, 68, 69, 155, 68, 76, 2, 207, 169, 8, 88, 88, 64, 5, 73, + 82, 67, 76, 69, 184, 3, 3, 76, 65, 87, 183, 2, 85, 35, 11, 32, 32, 116, + 5, 73, 78, 68, 69, 88, 200, 1, 7, 76, 73, 84, 84, 76, 69, 32, 36, 7, 77, + 73, 68, 68, 76, 69, 32, 163, 64, 82, 21, 11, 32, 18, 72, 6, 77, 73, 68, + 68, 76, 69, 198, 26, 72, 242, 38, 82, 131, 230, 8, 66, 13, 11, 32, 10, + 64, 5, 67, 82, 79, 83, 83, 198, 64, 84, 82, 76, 247, 215, 8, 82, 4, 134, + 65, 32, 231, 226, 8, 69, 4, 194, 193, 8, 73, 159, 168, 1, 85, 6, 252, 47, + 10, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 191, 185, 9, 85, 17, 11, 32, + 14, 144, 2, 28, 77, 73, 68, 68, 76, 69, 32, 82, 73, 78, 71, 32, 76, 73, + 84, 84, 76, 69, 32, 67, 79, 78, 74, 79, 73, 78, 69, 68, 176, 49, 2, 70, + 79, 198, 11, 78, 162, 1, 84, 197, 118, 23, 73, 78, 68, 69, 88, 32, 84, + 72, 85, 77, 66, 32, 67, 85, 82, 86, 69, 32, 84, 72, 85, 77, 66, 5, 247, + 180, 1, 32, 38, 46, 80, 149, 2, 6, 82, 76, 73, 67, 85, 69, 31, 11, 32, + 28, 188, 1, 5, 73, 78, 68, 69, 88, 56, 19, 70, 73, 86, 69, 32, 70, 73, + 78, 71, 69, 82, 83, 32, 83, 80, 82, 69, 65, 68, 196, 50, 7, 77, 73, 68, + 68, 76, 69, 32, 18, 79, 218, 7, 78, 163, 1, 84, 9, 11, 32, 6, 40, 5, 84, + 72, 85, 77, 66, 243, 58, 82, 5, 215, 46, 32, 9, 11, 32, 6, 72, 5, 73, 78, + 68, 69, 88, 0, 6, 77, 73, 68, 68, 76, 69, 179, 71, 79, 2, 193, 147, 9, + 13, 32, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 69, 32, 172, 2, 44, 3, + 73, 83, 84, 177, 33, 3, 76, 65, 84, 247, 1, 11, 32, 244, 1, 160, 2, 5, + 73, 78, 68, 69, 88, 192, 16, 7, 76, 73, 84, 84, 76, 69, 32, 196, 2, 7, + 77, 73, 68, 68, 76, 69, 32, 200, 4, 5, 82, 73, 78, 71, 32, 132, 2, 5, 84, + 72, 85, 77, 66, 138, 2, 72, 205, 9, 22, 70, 79, 85, 82, 32, 70, 73, 78, + 71, 69, 82, 83, 32, 67, 79, 78, 74, 79, 73, 78, 69, 68, 137, 1, 11, 32, + 134, 1, 232, 1, 4, 66, 69, 78, 84, 36, 6, 72, 73, 78, 71, 69, 68, 76, 6, + 77, 73, 68, 68, 76, 69, 168, 7, 2, 67, 85, 64, 6, 84, 72, 85, 77, 66, 32, + 160, 5, 16, 85, 80, 32, 77, 73, 68, 68, 76, 69, 32, 72, 73, 78, 71, 69, + 68, 151, 4, 82, 5, 217, 45, 5, 32, 79, 86, 69, 82, 9, 11, 32, 6, 252, 20, + 8, 77, 73, 68, 68, 76, 69, 32, 85, 167, 172, 8, 76, 71, 11, 32, 68, 236, + 1, 4, 66, 69, 78, 84, 42, 67, 244, 1, 10, 85, 80, 32, 83, 80, 82, 69, 65, + 68, 32, 100, 6, 72, 73, 78, 71, 69, 68, 46, 82, 80, 5, 84, 72, 85, 77, + 66, 188, 28, 14, 83, 84, 82, 65, 73, 71, 72, 84, 32, 84, 72, 85, 77, 66, + 227, 17, 76, 5, 213, 92, 6, 32, 84, 72, 85, 77, 66, 28, 68, 8, 79, 78, + 74, 79, 73, 78, 69, 68, 233, 1, 4, 82, 79, 83, 83, 23, 11, 32, 20, 144, + 1, 6, 67, 85, 80, 80, 69, 68, 28, 6, 84, 72, 85, 77, 66, 32, 68, 5, 72, + 73, 78, 71, 69, 166, 22, 73, 165, 7, 6, 77, 73, 68, 68, 76, 69, 5, 11, + 32, 2, 203, 27, 84, 8, 160, 1, 4, 83, 73, 68, 69, 219, 61, 70, 6, 22, 69, + 159, 47, 32, 4, 223, 15, 68, 5, 241, 30, 7, 32, 83, 80, 82, 69, 65, 68, + 8, 32, 3, 73, 78, 71, 247, 19, 65, 7, 11, 32, 4, 138, 36, 67, 131, 240, + 8, 66, 19, 11, 32, 16, 64, 6, 65, 78, 71, 76, 69, 68, 22, 67, 106, 72, + 163, 146, 9, 66, 5, 167, 221, 5, 32, 6, 74, 85, 230, 7, 73, 241, 25, 10, + 79, 78, 74, 79, 73, 78, 69, 68, 32, 72, 2, 201, 193, 4, 2, 80, 80, 4, 194, 33, 73, 217, 26, 2, 79, 79, 40, 164, 1, 7, 65, 78, 71, 76, 69, 68, 32, 46, 67, 220, 1, 14, 70, 79, 82, 87, 65, 82, 68, 32, 73, 78, 68, 69, 88, 32, 32, 4, 72, 79, 79, 75, 53, 4, 83, 73, 68, 69, 4, 128, 1, 2, 73, @@ -10001,397 +9973,289 @@ static const unsigned int dawg_pos_to_codepoint[] = { 12881, 12885, 12884, 12887, 12886, 12883, 12882, 12889, 12888, 9323, 9330, 10050, 12342, 10679, 10681, 8853, 8858, 10680, 128981, 9098, 8855, 10686, 10026, 127278, 127245, 8860, 10678, 10689, 128983, 11198, 94, - 10768, 127914, 127961, 127750, 195088, 195089, 195090, 195091, 195092, - 195093, 195094, 195095, 195096, 195097, 195098, 195099, 195100, 195101, - 195072, 195073, 195074, 195075, 195076, 195077, 195078, 195079, 195080, - 195081, 195082, 195083, 195084, 195085, 195086, 195087, 194560, 194561, - 194562, 194563, 194564, 194565, 194566, 194567, 194568, 194569, 194570, - 194571, 194572, 194573, 194574, 194575, 194576, 194577, 194578, 194579, - 194580, 194581, 194582, 194583, 194584, 194585, 194586, 194587, 194588, - 194589, 194590, 194591, 194592, 194593, 194594, 194595, 194596, 194597, - 194598, 194599, 194600, 194601, 194602, 194603, 194604, 194605, 194606, - 194607, 194608, 194609, 194610, 194611, 194612, 194613, 194614, 194615, - 194616, 194617, 194618, 194619, 194620, 194621, 194622, 194623, 194624, - 194625, 194626, 194627, 194628, 194629, 194630, 194631, 194632, 194633, - 194634, 194635, 194636, 194637, 194638, 194639, 194640, 194641, 194642, - 194643, 194644, 194645, 194646, 194647, 194648, 194649, 194650, 194651, - 194652, 194653, 194654, 194655, 194656, 194657, 194658, 194659, 194660, - 194661, 194662, 194663, 194664, 194665, 194666, 194667, 194668, 194669, - 194670, 194671, 194672, 194673, 194674, 194675, 194676, 194677, 194678, - 194679, 194680, 194681, 194682, 194683, 194684, 194685, 194686, 194687, - 194688, 194689, 194690, 194691, 194692, 194693, 194694, 194695, 194696, - 194697, 194698, 194699, 194700, 194701, 194702, 194703, 194704, 194705, - 194706, 194707, 194708, 194709, 194710, 194711, 194712, 194713, 194714, - 194715, 194716, 194717, 194718, 194719, 194720, 194721, 194722, 194723, - 194724, 194725, 194726, 194727, 194728, 194729, 194730, 194731, 194732, - 194733, 194734, 194735, 194736, 194737, 194738, 194739, 194740, 194741, - 194742, 194743, 194744, 194745, 194746, 194747, 194748, 194749, 194750, - 194751, 194752, 194753, 194754, 194755, 194756, 194757, 194758, 194759, - 194760, 194761, 194762, 194763, 194764, 194765, 194766, 194767, 194768, - 194769, 194770, 194771, 194772, 194773, 194774, 194775, 194776, 194777, - 194778, 194779, 194780, 194781, 194782, 194783, 194784, 194785, 194786, - 194787, 194788, 194789, 194790, 194791, 194792, 194793, 194794, 194795, - 194796, 194797, 194798, 194799, 194800, 194801, 194802, 194803, 194804, - 194805, 194806, 194807, 194808, 194809, 194810, 194811, 194812, 194813, - 194814, 194815, 194816, 194817, 194818, 194819, 194820, 194821, 194822, - 194823, 194824, 194825, 194826, 194827, 194828, 194829, 194830, 194831, - 194832, 194833, 194834, 194835, 194836, 194837, 194838, 194839, 194840, - 194841, 194842, 194843, 194844, 194845, 194846, 194847, 194848, 194849, - 194850, 194851, 194852, 194853, 194854, 194855, 194856, 194857, 194858, - 194859, 194860, 194861, 194862, 194863, 194864, 194865, 194866, 194867, - 194868, 194869, 194870, 194871, 194872, 194873, 194874, 194875, 194876, - 194877, 194878, 194879, 194880, 194881, 194882, 194883, 194884, 194885, - 194886, 194887, 194888, 194889, 194890, 194891, 194892, 194893, 194894, - 194895, 194896, 194897, 194898, 194899, 194900, 194901, 194902, 194903, - 194904, 194905, 194906, 194907, 194908, 194909, 194910, 194911, 194912, - 194913, 194914, 194915, 194916, 194917, 194918, 194919, 194920, 194921, - 194922, 194923, 194924, 194925, 194926, 194927, 194928, 194929, 194930, - 194931, 194932, 194933, 194934, 194935, 194936, 194937, 194938, 194939, - 194940, 194941, 194942, 194943, 194944, 194945, 194946, 194947, 194948, - 194949, 194950, 194951, 194952, 194953, 194954, 194955, 194956, 194957, - 194958, 194959, 194960, 194961, 194962, 194963, 194964, 194965, 194966, - 194967, 194968, 194969, 194970, 194971, 194972, 194973, 194974, 194975, - 194976, 194977, 194978, 194979, 194980, 194981, 194982, 194983, 194984, - 194985, 194986, 194987, 194988, 194989, 194990, 194991, 194992, 194993, - 194994, 194995, 194996, 194997, 194998, 194999, 195000, 195001, 195002, - 195003, 195004, 195005, 195006, 195007, 195008, 195009, 195010, 195011, - 195012, 195013, 195014, 195015, 195016, 195017, 195018, 195019, 195020, - 195021, 195022, 195023, 195024, 195025, 195026, 195027, 195028, 195029, - 195030, 195031, 195032, 195033, 195034, 195035, 195036, 195037, 195038, - 195039, 195040, 195041, 195042, 195043, 195044, 195045, 195046, 195047, - 195048, 195049, 195050, 195051, 195052, 195053, 195054, 195055, 195056, - 195057, 195058, 195059, 195060, 195061, 195062, 195063, 195064, 195065, - 195066, 195067, 195068, 195069, 195070, 195071, 64096, 64097, 64098, - 64099, 64100, 64101, 64102, 64103, 64104, 64105, 64106, 64107, 64108, - 64109, 64000, 64001, 64002, 64003, 64004, 64005, 64006, 64007, 64008, - 64009, 64010, 64011, 64012, 64013, 64014, 64015, 64016, 64017, 64018, - 64019, 64020, 64021, 64022, 64023, 64024, 64025, 64026, 64027, 64028, - 64029, 64030, 64031, 64032, 64033, 64034, 64035, 64036, 64037, 64038, - 64039, 64040, 64041, 64042, 64043, 64044, 64045, 64046, 64047, 64048, - 64049, 64050, 64051, 64052, 64053, 64054, 64055, 64056, 64057, 64058, - 64059, 64060, 64061, 64062, 64063, 64064, 64065, 64066, 64067, 64068, - 64069, 64070, 64071, 64072, 64073, 64074, 64075, 64076, 64077, 64078, - 64079, 64080, 64081, 64082, 64083, 64084, 64085, 64086, 64087, 64088, - 64089, 64090, 64091, 64092, 64093, 64094, 64095, 64112, 64113, 64114, - 64115, 64116, 64117, 64118, 64119, 64120, 64121, 64122, 64123, 64124, - 64125, 64126, 64127, 64128, 64129, 64130, 64131, 64132, 64133, 64134, - 64135, 64136, 64137, 64138, 64139, 64140, 64141, 64142, 64143, 64144, - 64145, 64146, 64147, 64148, 64149, 64150, 64151, 64152, 64153, 64154, - 64155, 64156, 64157, 64158, 64159, 64160, 64161, 64162, 64163, 64164, - 64165, 64166, 64167, 64168, 64169, 64170, 64171, 64172, 64173, 64174, - 64175, 64176, 64177, 64178, 64179, 64180, 64181, 64182, 64183, 64184, - 64185, 64186, 64187, 64188, 64189, 64190, 64191, 64192, 64193, 64194, - 64195, 64196, 64197, 64198, 64199, 64200, 64201, 64202, 64203, 64204, - 64205, 64206, 64207, 64208, 64209, 64210, 64211, 64212, 64213, 64214, - 64215, 64216, 64217, 63744, 63745, 63746, 63747, 63748, 63749, 63750, - 63751, 63752, 63753, 63754, 63755, 63756, 63757, 63758, 63759, 63760, - 63761, 63762, 63763, 63764, 63765, 63766, 63767, 63768, 63769, 63770, - 63771, 63772, 63773, 63774, 63775, 63776, 63777, 63778, 63779, 63780, - 63781, 63782, 63783, 63784, 63785, 63786, 63787, 63788, 63789, 63790, - 63791, 63792, 63793, 63794, 63795, 63796, 63797, 63798, 63799, 63800, - 63801, 63802, 63803, 63804, 63805, 63806, 63807, 63808, 63809, 63810, - 63811, 63812, 63813, 63814, 63815, 63816, 63817, 63818, 63819, 63820, - 63821, 63822, 63823, 63824, 63825, 63826, 63827, 63828, 63829, 63830, - 63831, 63832, 63833, 63834, 63835, 63836, 63837, 63838, 63839, 63840, - 63841, 63842, 63843, 63844, 63845, 63846, 63847, 63848, 63849, 63850, - 63851, 63852, 63853, 63854, 63855, 63856, 63857, 63858, 63859, 63860, - 63861, 63862, 63863, 63864, 63865, 63866, 63867, 63868, 63869, 63870, - 63871, 63872, 63873, 63874, 63875, 63876, 63877, 63878, 63879, 63880, - 63881, 63882, 63883, 63884, 63885, 63886, 63887, 63888, 63889, 63890, - 63891, 63892, 63893, 63894, 63895, 63896, 63897, 63898, 63899, 63900, - 63901, 63902, 63903, 63904, 63905, 63906, 63907, 63908, 63909, 63910, - 63911, 63912, 63913, 63914, 63915, 63916, 63917, 63918, 63919, 63920, - 63921, 63922, 63923, 63924, 63925, 63926, 63927, 63928, 63929, 63930, - 63931, 63932, 63933, 63934, 63935, 63936, 63937, 63938, 63939, 63940, - 63941, 63942, 63943, 63944, 63945, 63946, 63947, 63948, 63949, 63950, - 63951, 63952, 63953, 63954, 63955, 63956, 63957, 63958, 63959, 63960, - 63961, 63962, 63963, 63964, 63965, 63966, 63967, 63968, 63969, 63970, - 63971, 63972, 63973, 63974, 63975, 63976, 63977, 63978, 63979, 63980, - 63981, 63982, 63983, 63984, 63985, 63986, 63987, 63988, 63989, 63990, - 63991, 63992, 63993, 63994, 63995, 63996, 63997, 63998, 63999, 11946, - 12003, 11910, 11963, 11962, 11950, 11992, 12012, 12000, 12005, 11996, - 12010, 11984, 11988, 11994, 11987, 11952, 12007, 11977, 11976, 11973, - 12019, 11993, 12014, 11995, 12016, 12006, 12002, 11979, 11936, 11983, - 11905, 11970, 11943, 11931, 11914, 11934, 11944, 11999, 11998, 11997, - 11960, 11947, 11939, 11978, 11968, 11967, 11966, 12004, 11927, 11926, - 12001, 11975, 11928, 12018, 12013, 12015, 12011, 11945, 11986, 11985, - 11921, 11920, 11919, 11918, 11964, 11957, 11990, 11989, 11935, 11965, - 11933, 11941, 11940, 11909, 11991, 11959, 11929, 11904, 11908, 11907, - 11906, 11915, 11942, 11974, 11980, 12008, 12009, 11951, 11925, 11924, - 11922, 11949, 11948, 11917, 11916, 11958, 11932, 12017, 11911, 11923, - 11969, 11982, 11981, 11938, 11937, 11972, 11971, 11956, 11955, 11954, - 11953, 11913, 11912, 11961, 12752, 12743, 12748, 12768, 12772, 12757, - 12741, 12750, 12769, 12747, 12749, 12744, 12742, 12746, 12758, 12754, - 12763, 12770, 12764, 12753, 12740, 12767, 12760, 12759, 12745, 12773, - 12766, 12762, 12755, 12761, 12736, 12765, 12739, 12737, 12738, 12756, - 12751, 12771, 128079, 127916, 127963, 128385, 129346, 127867, 128203, - 128346, 128358, 128343, 128355, 128340, 128352, 128339, 128351, 128344, - 128356, 128336, 128348, 128342, 128354, 128341, 128353, 128345, 128357, - 128347, 128359, 128337, 128349, 128338, 128350, 10561, 8754, 128259, - 10227, 128472, 128257, 128258, 8631, 11118, 8635, 8753, 10959, 10961, - 10960, 10962, 127746, 10828, 10832, 128234, 128235, 128272, 128213, - 10829, 8272, 9729, 127786, 127785, 127784, 127783, 129313, 9114, 129715, - 127864, 129381, 58, 8788, 8353, 128165, 6867, 7625, 7623, 769, 791, 833, - 8410, 8404, 8423, 857, 8432, 7677, 844, 774, 7627, 814, 810, 838, 70459, - 780, 812, 784, 8409, 8405, 787, 789, 806, 65062, 65069, 42609, 1160, - 11774, 11744, 11768, 11747, 11757, 11765, 42654, 11751, 11752, 11753, - 11756, 42613, 11775, 11772, 42655, 11767, 11754, 42619, 11763, 11762, - 42618, 42615, 42612, 42617, 11770, 42614, 11771, 11773, 11769, 11759, - 42616, 11760, 11758, 11748, 11749, 11761, 11746, 11764, 11755, 11745, - 11750, 11766, 42621, 1156, 1158, 1159, 1157, 42608, 42610, 1155, 65070, - 65071, 1161, 42620, 123023, 42607, 770, 813, 807, 43248, 43244, 43245, - 43246, 43247, 43242, 43243, 43249, 43237, 43236, 43239, 43238, 43235, - 43234, 43232, 43241, 43233, 43240, 7675, 776, 804, 6876, 6833, 775, 7672, - 856, 803, 7674, 6877, 7617, 7616, 6886, 6887, 779, 861, 860, 865, 7676, - 6863, 7629, 862, 863, 6840, 831, 6858, 6857, 6844, 866, 6891, 858, 864, - 65058, 65059, 8422, 840, 782, 783, 819, 6832, 798, 6875, 6835, 8413, - 8416, 8418, 8414, 8419, 8420, 8415, 839, 6888, 850, 8412, 6874, 122892, - 122884, 122891, 122890, 122921, 122919, 122889, 122916, 122900, 122907, - 122910, 122901, 122908, 122880, 122920, 122881, 122909, 122903, 122922, - 122883, 122895, 122894, 122896, 122898, 122899, 122882, 122885, 122912, - 122911, 122913, 122918, 122915, 122888, 122886, 122904, 122902, 122897, - 122893, 70508, 70507, 70506, 70505, 70504, 70502, 70503, 70515, 70513, - 70514, 70516, 70512, 768, 790, 832, 6865, 7624, 7621, 847, 119363, - 119362, 119364, 835, 834, 837, 836, 777, 843, 795, 785, 815, 826, 6883, - 811, 6855, 6834, 7632, 12442, 12441, 7671, 7670, 7643, 7646, 7647, 7649, - 7650, 867, 7666, 7655, 7636, 7637, 7638, 872, 7639, 868, 7663, 7641, - 7659, 7635, 869, 7640, 6860, 6861, 6862, 7645, 7660, 7653, 870, 7667, - 7661, 871, 7668, 7664, 876, 7651, 7626, 877, 6848, 7652, 7658, 7656, - 7657, 7665, 6847, 873, 7642, 874, 7644, 875, 7648, 7662, 878, 879, 7654, - 6889, 841, 794, 852, 7678, 8430, 8406, 6849, 6851, 796, 849, 8400, 792, - 6880, 845, 8417, 8429, 8426, 65056, 65063, 65057, 65064, 6841, 8427, 824, - 822, 8402, 818, 772, 65060, 65067, 65061, 65068, 817, 6869, 7620, 6872, - 7622, 7628, 800, 6882, 6854, 842, 66424, 66425, 66423, 66426, 66422, - 6839, 808, 7630, 773, 6846, 6845, 6843, 801, 799, 6856, 8421, 788, 802, - 7679, 854, 848, 853, 8431, 8407, 825, 855, 8401, 6850, 6852, 793, 6881, - 8428, 8408, 805, 778, 7631, 859, 823, 821, 8403, 6873, 6853, 827, 6884, - 6842, 7619, 7618, 828, 6885, 8411, 771, 65065, 65066, 820, 816, 6859, - 8424, 6836, 786, 797, 7669, 846, 6890, 7633, 7634, 809, 781, 830, 6864, - 6870, 6866, 6871, 6868, 7673, 8425, 6838, 6837, 851, 829, 8274, 64, 44, - 128476, 9092, 8705, 129517, 9732, 127882, 128533, 128534, 128119, 128679, - 8715, 8883, 8885, 8954, 8955, 8957, 8750, 127899, 983187, 9089, 127978, - 9010, 9740, 10861, 127859, 127850, 127834, 11505, 11504, 11503, 11464, - 11392, 11506, 11499, 11501, 11446, 11452, 11458, 11466, 11442, 11448, - 11450, 11398, 1006, 1002, 11396, 1000, 11406, 998, 11436, 11412, 11420, - 996, 11434, 11472, 11414, 11422, 11478, 11468, 11470, 11476, 11474, - 11482, 11460, 11480, 11454, 11462, 11444, 11486, 11488, 11484, 11490, - 11440, 1004, 994, 11456, 11402, 11428, 11408, 11430, 11404, 11394, 11438, - 11424, 11410, 11426, 11400, 11416, 11418, 11432, 66298, 66289, 66295, - 66286, 66294, 66285, 66299, 66290, 66291, 66297, 66288, 66296, 66287, - 66293, 66284, 66292, 66283, 66282, 66277, 66276, 66279, 66278, 66275, - 66274, 66281, 66273, 66280, 66272, 11517, 11518, 11514, 11515, 11516, - 11513, 11465, 11393, 11507, 11500, 11502, 11447, 11453, 11459, 11467, - 11443, 11449, 11451, 11399, 1007, 1003, 11397, 1001, 11407, 999, 11437, - 11413, 11421, 997, 11435, 11473, 11415, 11423, 11479, 11469, 11471, - 11477, 11475, 11483, 11461, 11481, 11455, 11463, 11445, 11487, 11489, - 11485, 11491, 11441, 1005, 995, 11457, 11403, 11429, 11409, 11431, 11405, - 11395, 11439, 11425, 11411, 11427, 11401, 11417, 11419, 11433, 11497, - 11492, 11493, 11494, 11498, 11495, 11496, 11519, 127279, 169, 11855, - 8792, 129720, 9012, 9013, 119661, 119660, 119663, 119662, 119659, 119658, - 119665, 119657, 119664, 119652, 119651, 119654, 119653, 119650, 119649, - 119656, 119648, 119655, 128715, 128145, 128004, 128046, 9904, 129689, - 129509, 983074, 128179, 127769, 129431, 127951, 9769, 9768, 11856, 11857, - 128322, 128321, 10060, 127370, 127884, 9876, 9932, 128010, 129360, - 128081, 8354, 129660, 128575, 128546, 128302, 129408, 8731, 74794, 74771, - 74861, 74780, 74820, 74821, 74765, 74758, 74853, 74856, 74855, 74854, - 74791, 74801, 74844, 74836, 74837, 74809, 74755, 74829, 74777, 74786, - 74768, 74858, 74762, 74834, 74835, 74808, 74812, 74814, 74815, 74813, - 74754, 74828, 74776, 74785, 74790, 74800, 74767, 74857, 74761, 74839, - 74838, 74822, 74825, 74823, 74824, 74795, 74772, 74862, 74781, 74766, - 74759, 74849, 74850, 74840, 74847, 74848, 74851, 74831, 74804, 74773, - 74782, 74845, 74842, 74796, 74852, 74818, 74819, 74817, 74793, 74770, - 74860, 74779, 74764, 74757, 74802, 74803, 74792, 74756, 74830, 74769, - 74859, 74778, 74816, 74763, 74806, 74807, 74833, 74788, 74789, 74798, - 74799, 74810, 74811, 74753, 74827, 74775, 74784, 74760, 74752, 74826, - 74832, 74805, 74841, 74774, 74783, 74787, 74797, 74846, 74843, 74867, - 74868, 74866, 74865, 74864, 73728, 73734, 73731, 73733, 73735, 73736, - 73730, 73732, 73729, 73738, 73742, 73741, 73744, 73745, 74881, 73747, - 73748, 73740, 73739, 74608, 74880, 73746, 73743, 73749, 73750, 73753, - 73752, 73754, 73755, 73751, 74609, 73756, 74882, 73757, 73759, 73758, - 73760, 73765, 73766, 73762, 73763, 73768, 73761, 73767, 73764, 73770, - 73769, 73771, 74610, 73772, 73773, 73776, 73777, 73775, 73774, 73778, - 73780, 73781, 73782, 73784, 73788, 73789, 73787, 73785, 73786, 73791, - 73790, 73783, 73779, 73737, 73792, 73793, 74883, 73795, 74884, 74885, - 74886, 73796, 73797, 73798, 73799, 73800, 73794, 73801, 73804, 73803, - 73802, 73805, 74887, 73806, 73807, 73808, 73809, 73810, 73811, 73812, - 73813, 73814, 73815, 73816, 73817, 73818, 73819, 73820, 73821, 73822, - 73823, 73825, 73826, 73829, 73830, 73831, 73828, 73836, 74611, 73837, - 73833, 73835, 73827, 73832, 73834, 73824, 74889, 74612, 73839, 73840, - 73841, 74888, 73838, 73842, 73844, 74891, 74890, 73845, 73846, 74892, - 73847, 73848, 73849, 74613, 73843, 73850, 73852, 73853, 73851, 73854, - 73855, 74614, 73856, 73857, 74894, 74895, 74893, 74896, 74897, 74900, - 74901, 74902, 74899, 74908, 74909, 74907, 74906, 74911, 74912, 74910, - 74913, 74914, 74915, 74916, 74920, 74919, 74898, 74905, 74903, 74904, - 74917, 74918, 73858, 73860, 73861, 73862, 73863, 73864, 73865, 73859, - 73866, 73868, 73867, 73869, 73873, 73874, 73870, 73871, 74922, 74921, - 73872, 73875, 73879, 73883, 73884, 73880, 73881, 73882, 73885, 73887, - 74923, 73886, 73888, 74924, 73889, 74927, 74930, 74931, 74925, 74928, - 74929, 74932, 74926, 73890, 73891, 73892, 73893, 73895, 73896, 73900, - 73901, 73902, 73903, 73904, 73905, 73906, 74616, 74933, 73907, 73908, - 73899, 73897, 73898, 74615, 73894, 73877, 73876, 73878, 73909, 73911, - 73912, 73914, 73913, 73916, 74617, 73917, 74618, 73918, 73915, 74934, - 73920, 73919, 73921, 73922, 73924, 73925, 74935, 74936, 74937, 73926, - 73923, 73929, 73930, 73927, 73928, 74938, 74939, 73932, 74941, 74940, - 73931, 73933, 73934, 73935, 73936, 73937, 74942, 73938, 73939, 73941, - 73940, 73943, 73942, 73945, 73944, 73946, 73947, 74943, 73948, 73949, - 74944, 74945, 74946, 73950, 74947, 73951, 74948, 74949, 74950, 73952, - 73953, 73957, 73958, 73959, 74951, 73955, 73956, 73960, 73962, 73963, - 73964, 73961, 74952, 73954, 73965, 73966, 74953, 73967, 73968, 73969, - 73970, 73971, 73972, 73974, 73975, 73978, 73977, 73976, 73910, 73979, - 73980, 73981, 73973, 73982, 73983, 74954, 74619, 73984, 73985, 73986, - 73987, 73988, 73990, 73989, 73994, 73995, 73998, 73996, 73997, 73999, - 73992, 73993, 74001, 74955, 74004, 74003, 74005, 74002, 74000, 73991, - 74620, 74006, 74008, 74009, 74010, 74956, 74012, 74011, 74013, 74014, - 74957, 74015, 74016, 74017, 74019, 74020, 74021, 74024, 74023, 74022, - 74007, 74018, 74025, 74026, 74958, 74027, 74028, 74029, 74030, 74959, - 74031, 74033, 74036, 74035, 74032, 74034, 74037, 74038, 74039, 74040, - 74043, 74044, 74042, 74041, 74045, 74046, 74621, 74047, 74050, 74052, - 74051, 74053, 74054, 74058, 74057, 74055, 74056, 74059, 74060, 74061, - 74062, 74064, 74065, 74063, 74066, 74067, 74048, 74070, 74049, 74068, - 74069, 74071, 74072, 74073, 74074, 74622, 74075, 74623, 74077, 74076, - 74078, 74079, 74960, 74080, 74081, 74082, 74085, 74086, 74084, 74083, - 74087, 74624, 74090, 74089, 74088, 74091, 74092, 74625, 74093, 74094, - 74096, 74097, 74961, 74095, 74099, 74627, 74098, 74100, 74101, 74103, - 74102, 74104, 74105, 74115, 74629, 74114, 74112, 74113, 74110, 74111, - 74117, 74116, 74118, 74630, 74119, 74962, 74963, 74631, 74122, 74123, - 74120, 74121, 74626, 74107, 74106, 74628, 74108, 74109, 74124, 74125, - 74126, 74131, 74132, 74128, 74129, 74130, 74133, 74134, 74135, 74136, - 74137, 983267, 74138, 74139, 74140, 74141, 74142, 74607, 74127, 74144, - 74146, 74147, 74145, 74152, 74153, 74150, 74151, 74148, 74149, 74154, - 74155, 74157, 74158, 74163, 74164, 74165, 74160, 74161, 74156, 74159, - 74162, 74143, 74166, 74167, 74168, 74169, 74170, 74171, 74172, 74175, - 74173, 74174, 74176, 74177, 74182, 74183, 74180, 74181, 74632, 74186, - 74184, 74185, 74188, 74190, 74189, 74187, 74194, 74195, 74193, 74191, - 74192, 74196, 74197, 74198, 74199, 74200, 74201, 74202, 74205, 74206, - 74207, 74208, 74204, 74209, 74211, 74210, 74212, 74213, 74215, 74214, - 74216, 74218, 74217, 74964, 74178, 74179, 74203, 74219, 74220, 74223, - 74224, 74221, 74222, 74966, 74967, 74974, 74973, 74972, 74969, 74970, - 74971, 74975, 74968, 74965, 74977, 74976, 74980, 74981, 74982, 74984, - 74985, 74978, 74979, 74983, 74986, 74987, 74988, 74989, 74990, 74991, - 74993, 74997, 74996, 74998, 74995, 74994, 74992, 74999, 75000, 75003, - 75004, 75005, 75006, 75001, 75002, 75009, 75015, 75016, 75019, 75017, - 75018, 75013, 75012, 75010, 75011, 75014, 75021, 75030, 75029, 75027, - 75024, 75025, 75028, 75022, 75026, 75023, 75008, 75020, 75031, 75032, - 75007, 74226, 74227, 74228, 74229, 74230, 74225, 74231, 74233, 74234, - 74232, 74235, 74237, 74258, 74259, 75033, 74261, 74633, 74260, 74240, - 74634, 74241, 74243, 75035, 74246, 74247, 74245, 74248, 74249, 74250, - 74251, 75036, 75037, 74254, 74255, 74635, 74256, 75038, 74242, 74252, - 74253, 75034, 74238, 74239, 74244, 74257, 74263, 74265, 74264, 74266, - 74269, 74270, 74271, 74236, 74262, 74267, 74268, 74272, 74273, 74274, - 74278, 74279, 74275, 74276, 74277, 74280, 74281, 74636, 74282, 75039, - 74283, 74284, 74290, 74294, 74295, 75041, 75040, 74292, 74293, 74291, - 74296, 74297, 74298, 74299, 74300, 74637, 74301, 74286, 74287, 74285, - 74289, 74288, 74302, 74304, 74307, 74305, 74306, 74308, 74310, 74309, - 74311, 74303, 74638, 74312, 74314, 74313, 74315, 74316, 74319, 74321, - 74320, 74639, 74322, 74324, 74325, 74323, 74642, 75043, 74326, 75044, - 75046, 75047, 74327, 75048, 74329, 74328, 75049, 74330, 74332, 74333, - 74331, 75050, 75051, 74334, 75052, 74335, 75042, 74641, 75045, 74640, - 74317, 74336, 74318, 74337, 74338, 983266, 983265, 74643, 74339, 74347, - 74348, 74342, 74343, 74341, 74344, 74340, 74346, 74345, 74349, 74355, - 74354, 74350, 74352, 74358, 74359, 74353, 74357, 74351, 74356, 74360, - 74361, 74362, 74363, 74364, 74365, 74366, 74644, 74367, 74375, 74376, - 74368, 74369, 74373, 74374, 74370, 74371, 74372, 74377, 74378, 74379, - 74380, 74381, 74382, 74645, 74383, 74384, 74385, 74386, 74387, 74389, - 74408, 75053, 74388, 74646, 74395, 74394, 75055, 74400, 74399, 75056, - 74401, 74406, 74402, 74403, 74404, 74405, 74391, 74392, 74396, 74398, - 75054, 74397, 74393, 74390, 74407, 74409, 74410, 74411, 74412, 74413, - 74414, 74421, 74422, 74419, 74417, 74420, 74416, 74418, 74415, 74423, - 75057, 74424, 74425, 74426, 75058, 74428, 74429, 75059, 75060, 75061, - 74427, 74432, 74434, 74433, 74430, 74431, 74435, 74437, 74436, 74438, - 74441, 74440, 74444, 74445, 74446, 74448, 74447, 74443, 74449, 74442, - 74439, 74451, 74453, 74452, 74450, 74454, 74455, 74456, 74457, 75063, - 75062, 74458, 74459, 75064, 74460, 74461, 74462, 74463, 74465, 74464, - 74466, 74468, 74469, 74471, 74472, 74473, 74474, 74467, 74470, 74475, - 74477, 74478, 74479, 74476, 74480, 74481, 74482, 74483, 74488, 74486, - 74487, 74485, 74489, 74484, 74490, 75065, 74491, 74494, 74497, 74499, - 74500, 74498, 74495, 74647, 74496, 74501, 74504, 75066, 75067, 74505, - 74506, 74502, 74503, 74492, 74493, 74507, 74510, 74512, 74511, 74649, - 74509, 74508, 74515, 74516, 74522, 74523, 74519, 74520, 74517, 74518, - 74521, 74524, 74534, 74535, 74525, 74526, 74648, 74527, 74528, 74529, - 74531, 74532, 74533, 74530, 74536, 74538, 74537, 74539, 75068, 74540, - 74541, 74542, 74545, 74546, 74547, 75069, 74544, 74543, 74549, 74550, - 74551, 74552, 74553, 75070, 74555, 74556, 74558, 74557, 74559, 74560, - 74562, 74564, 74563, 75072, 74566, 75071, 74570, 74569, 74572, 74574, - 74573, 74554, 74567, 74571, 74565, 74561, 74568, 74575, 74576, 74548, - 74577, 74581, 74579, 74580, 74578, 74584, 74583, 74582, 74586, 74587, - 74588, 74585, 74513, 74514, 74589, 74591, 74590, 74593, 75073, 74592, - 74595, 74598, 74599, 74596, 74601, 74597, 74600, 74602, 75074, 74603, - 75075, 74604, 74605, 74606, 74594, 9982, 129380, 11232, 129473, 8911, - 8910, 10160, 9130, 129356, 128177, 164, 127835, 10081, 128707, 127854, - 129362, 129385, 67594, 67595, 67596, 67597, 67598, 67599, 67600, 67601, - 67602, 67603, 67604, 67605, 67606, 67607, 67608, 67609, 67610, 67611, - 67612, 67613, 67614, 67615, 67616, 67617, 67618, 67619, 67620, 67621, - 67622, 67623, 67624, 67625, 67626, 67627, 67628, 67629, 67630, 67631, - 67632, 67633, 67634, 67635, 67636, 67637, 67589, 67592, 67644, 67647, - 67639, 67640, 67584, 67585, 67586, 67587, 67588, 77712, 77713, 77714, - 77715, 77716, 77717, 77718, 77719, 77722, 77723, 77720, 77721, 77724, - 77725, 77726, 77727, 77728, 77729, 77730, 77731, 77732, 77733, 77734, - 77735, 77736, 77737, 77738, 77739, 77740, 77741, 77742, 77743, 77744, - 77745, 77746, 77747, 77748, 77749, 77750, 77751, 77752, 77753, 77754, - 77755, 77756, 77757, 77758, 77773, 77774, 77768, 77769, 77770, 77771, - 77772, 77775, 77776, 77777, 77788, 77789, 77790, 77791, 77792, 77793, - 77794, 77795, 77796, 77759, 77760, 77761, 77762, 77763, 77764, 77765, - 77766, 77767, 77778, 77779, 77780, 77781, 77782, 77783, 77784, 77785, - 77786, 77787, 77797, 77798, 77799, 77800, 77801, 77802, 77803, 77804, - 77805, 77806, 77807, 77808, 77809, 77810, 1126, 1033, 1300, 42574, 1034, - 1055, 1190, 1316, 1136, 1146, 42564, 42592, 42580, 1296, 1302, 1058, - 42634, 1196, 1035, 42640, 42638, 1062, 42642, 7305, 42636, 1059, 1266, - 1264, 1262, 1144, 1028, 1040, 1234, 1232, 1212, 1214, 1248, 1192, 1310, - 1256, 1258, 1184, 42602, 1130, 42572, 42586, 1030, 1041, 1063, 1268, - 1206, 1208, 42584, 42650, 42630, 1026, 42568, 42604, 42648, 1029, 42562, - 1322, 42632, 1039, 42626, 1324, 42624, 1044, 1069, 1051, 1312, 1326, - 1221, 1298, 1053, 1314, 1186, 1320, 1225, 1223, 1056, 1166, 1260, 1057, - 1194, 1052, 1229, 1060, 1043, 1172, 1168, 1270, 1170, 1274, 1027, 1061, - 1202, 1276, 1278, 1066, 42644, 1048, 1252, 1037, 1250, 1045, 1024, 1238, - 1025, 42588, 1128, 1132, 42578, 42582, 1124, 42566, 1140, 1142, 1050, - 1178, 1219, 1180, 1182, 1286, 1282, 1280, 1288, 1290, 1292, 1294, 1284, - 1152, 1227, 1036, 1134, 42600, 42570, 1054, 1120, 1148, 1254, 1150, 1240, - 1242, 1049, 1162, 1038, 1210, 1318, 1065, 42646, 1064, 42596, 42598, - 1068, 42594, 1198, 1200, 1164, 1071, 1304, 1122, 1067, 1272, 42576, 1031, - 42590, 1070, 1047, 1246, 1176, 42560, 1046, 1244, 1174, 1217, 42628, - 1138, 1032, 1042, 1308, 1306, 1236, 1204, 1188, 42622, 42606, 1216, 7467, - 42623, 1072, 1235, 1233, 1213, 1215, 1249, 1193, 1311, 1257, 1259, 1185, - 42603, 1131, 42573, 42587, 1110, 1073, 1095, 1269, 1207, 1209, 42585, - 42651, 42631, 1106, 42569, 42605, 42649, 1109, 42563, 1323, 42633, 1119, - 42627, 1325, 42625, 1076, 1101, 1083, 1313, 1327, 1222, 1299, 1085, 1315, - 1187, 1321, 1226, 1224, 1088, 1167, 1261, 1089, 1195, 1084, 1230, 1092, - 1075, 1173, 1169, 1271, 1171, 1275, 1107, 1093, 1203, 1277, 1279, 1098, - 42645, 1080, 1253, 1117, 1251, 1077, 1104, 1239, 1105, 42589, 1129, 1133, - 42579, 42583, 1125, 42567, 1141, 1143, 1082, 1179, 1220, 1181, 1183, - 1287, 1283, 1281, 1289, 1291, 1293, 1295, 1285, 1153, 1228, 1116, 1135, - 1127, 7297, 1113, 1301, 42601, 42571, 42575, 7298, 1114, 1086, 1121, - 1149, 1255, 1151, 1087, 1191, 1317, 1231, 1137, 42565, 42593, 42581, - 1297, 1147, 7296, 1303, 1241, 1243, 1081, 1163, 1118, 1211, 1319, 1097, - 42647, 1096, 42597, 42599, 1100, 42595, 1199, 1201, 1165, 7302, 7303, - 7300, 1090, 42635, 1197, 1115, 42641, 42639, 1094, 7301, 42643, 7306, - 42637, 1091, 1267, 1265, 1263, 1145, 1108, 7304, 7299, 1309, 1103, 1305, - 1123, 1099, 1273, 42577, 1111, 42591, 1102, 1079, 1247, 1177, 42561, - 1078, 1245, 1175, 1218, 42629, 1139, 1112, 1074, 1307, 1237, 1205, 1189, - 122984, 122962, 122986, 122985, 122965, 122976, 122971, 122974, 122964, - 122983, 122977, 122981, 122982, 122980, 122978, 122967, 122968, 122969, - 122966, 122979, 122973, 122963, 122970, 122961, 122972, 122975, 1154, - 9005, 127744, 983201, 983188, 983172, 8224, 11830, 11831, 128481, 128131, - 127841, 128374, 9619, 11843, 128168, 10143, 65101, 65097, 8504, 983081, - 983084, 983086, 983088, 983090, 983162, 9110, 9192, 127795, 128475, 8451, - 176, 8457, 983120, 128666, 8796, 983119, 9161, 9159, 9153, 9156, 9162, - 9160, 9154, 9157, 9164, 9151, 9163, 9150, 9158, 9152, 9155, 117829, - 117828, 127980, 127962, 9739, 66589, 66591, 66596, 66597, 66587, 66585, - 66594, 66595, 66593, 66599, 66562, 66563, 66564, 66565, 66561, 66560, - 66568, 66569, 66570, 66571, 66567, 66566, 66598, 66573, 66588, 66579, - 66592, 66590, 66581, 66578, 66580, 66582, 66577, 66586, 66575, 66584, - 66583, 66574, 66572, 66576, 66629, 66631, 66636, 66637, 66627, 66625, - 66634, 66635, 66633, 66639, 66602, 66603, 66604, 66605, 66601, 66600, - 66608, 66609, 66610, 66611, 66607, 66606, 66638, 66613, 66628, 66619, - 66632, 66630, 66621, 66618, 66620, 66622, 66617, 66626, 66615, 66624, - 66623, 66614, 66612, 66616, 127964, 127965, 128421, 128468, 2388, 2416, - 43258, 2387, 43257, 72448, 72449, 43259, 2309, 2310, 2320, 2324, 2421, - 43262, 2330, 2418, 2317, 2321, 2331, 2396, 2430, 2338, 2337, 2343, 2342, - 2429, 2394, 2328, 2427, 2327, 2426, 2361, 2350, 2424, 2308, 2318, 2322, - 2358, 2359, 2360, 2431, 2349, 2348, 2393, 2326, 2325, 2397, 2353, 2352, - 2323, 2420, 2419, 2399, 2351, 2313, 2314, 2423, 2422, 2345, 2339, 2329, - 2334, 2344, 2333, 2428, 2332, 2356, 2355, 2354, 2336, 2335, 2341, 2340, - 2315, 2400, 2316, 2401, 2357, 2311, 2312, 2347, 2346, 2425, 2395, 2398, - 2392, 2319, 983644, 983643, 983646, 983647, 983649, 983648, 983642, + 10768, 127914, 127961, 127750, 11946, 12003, 11910, 11963, 11962, 11950, + 11992, 12012, 12000, 12005, 11996, 12010, 11984, 11988, 11994, 11987, + 11952, 12007, 11977, 11976, 11973, 12019, 11993, 12014, 11995, 12016, + 12006, 12002, 11979, 11936, 11983, 11905, 11970, 11943, 11931, 11914, + 11934, 11944, 11999, 11998, 11997, 11960, 11947, 11939, 11978, 11968, + 11967, 11966, 12004, 11927, 11926, 12001, 11975, 11928, 12018, 12013, + 12015, 12011, 11945, 11986, 11985, 11921, 11920, 11919, 11918, 11964, + 11957, 11990, 11989, 11935, 11965, 11933, 11941, 11940, 11909, 11991, + 11959, 11929, 11904, 11908, 11907, 11906, 11915, 11942, 11974, 11980, + 12008, 12009, 11951, 11925, 11924, 11922, 11949, 11948, 11917, 11916, + 11958, 11932, 12017, 11911, 11923, 11969, 11982, 11981, 11938, 11937, + 11972, 11971, 11956, 11955, 11954, 11953, 11913, 11912, 11961, 12752, + 12743, 12748, 12768, 12772, 12757, 12741, 12750, 12769, 12747, 12749, + 12744, 12742, 12746, 12758, 12754, 12763, 12770, 12764, 12753, 12740, + 12767, 12760, 12759, 12745, 12773, 12766, 12762, 12755, 12761, 12736, + 12765, 12739, 12737, 12738, 12756, 12751, 12771, 128079, 127916, 127963, + 128385, 129346, 127867, 128203, 128346, 128358, 128343, 128355, 128340, + 128352, 128339, 128351, 128344, 128356, 128336, 128348, 128342, 128354, + 128341, 128353, 128345, 128357, 128347, 128359, 128337, 128349, 128338, + 128350, 10561, 8754, 128259, 10227, 128472, 128257, 128258, 8631, 11118, + 8635, 8753, 10959, 10961, 10960, 10962, 127746, 10828, 10832, 128234, + 128235, 128272, 128213, 10829, 8272, 9729, 127786, 127785, 127784, + 127783, 129313, 9114, 129715, 127864, 129381, 58, 8788, 8353, 128165, + 6867, 7625, 7623, 769, 791, 833, 8410, 8404, 8423, 857, 8432, 7677, 844, + 774, 7627, 814, 810, 838, 70459, 780, 812, 784, 8409, 8405, 787, 789, + 806, 65062, 65069, 42609, 1160, 11774, 11744, 11768, 11747, 11757, 11765, + 42654, 11751, 11752, 11753, 11756, 42613, 11775, 11772, 42655, 11767, + 11754, 42619, 11763, 11762, 42618, 42615, 42612, 42617, 11770, 42614, + 11771, 11773, 11769, 11759, 42616, 11760, 11758, 11748, 11749, 11761, + 11746, 11764, 11755, 11745, 11750, 11766, 42621, 1156, 1158, 1159, 1157, + 42608, 42610, 1155, 65070, 65071, 1161, 42620, 123023, 42607, 770, 813, + 807, 43248, 43244, 43245, 43246, 43247, 43242, 43243, 43249, 43237, + 43236, 43239, 43238, 43235, 43234, 43232, 43241, 43233, 43240, 7675, 776, + 804, 6876, 6833, 775, 7672, 856, 803, 7674, 6877, 7617, 7616, 6886, 6887, + 779, 861, 860, 865, 7676, 6863, 7629, 862, 863, 6840, 831, 6858, 6857, + 6844, 866, 6891, 858, 864, 65058, 65059, 8422, 840, 782, 783, 819, 6832, + 798, 6875, 6835, 8413, 8416, 8418, 8414, 8419, 8420, 8415, 839, 6888, + 850, 8412, 6874, 122892, 122884, 122891, 122890, 122921, 122919, 122889, + 122916, 122900, 122907, 122910, 122901, 122908, 122880, 122920, 122881, + 122909, 122903, 122922, 122883, 122895, 122894, 122896, 122898, 122899, + 122882, 122885, 122912, 122911, 122913, 122918, 122915, 122888, 122886, + 122904, 122902, 122897, 122893, 70508, 70507, 70506, 70505, 70504, 70502, + 70503, 70515, 70513, 70514, 70516, 70512, 768, 790, 832, 6865, 7624, + 7621, 847, 119363, 119362, 119364, 835, 834, 837, 836, 777, 843, 795, + 785, 815, 826, 6883, 811, 6855, 6834, 7632, 12442, 12441, 7671, 7670, + 7643, 7646, 7647, 7649, 7650, 867, 7666, 7655, 7636, 7637, 7638, 872, + 7639, 868, 7663, 7641, 7659, 7635, 869, 7640, 6860, 6861, 6862, 7645, + 7660, 7653, 870, 7667, 7661, 871, 7668, 7664, 876, 7651, 7626, 877, 6848, + 7652, 7658, 7656, 7657, 7665, 6847, 873, 7642, 874, 7644, 875, 7648, + 7662, 878, 879, 7654, 6889, 841, 794, 852, 7678, 8430, 8406, 6849, 6851, + 796, 849, 8400, 792, 6880, 845, 8417, 8429, 8426, 65056, 65063, 65057, + 65064, 6841, 8427, 824, 822, 8402, 818, 772, 65060, 65067, 65061, 65068, + 817, 6869, 7620, 6872, 7622, 7628, 800, 6882, 6854, 842, 66424, 66425, + 66423, 66426, 66422, 6839, 808, 7630, 773, 6846, 6845, 6843, 801, 799, + 6856, 8421, 788, 802, 7679, 854, 848, 853, 8431, 8407, 825, 855, 8401, + 6850, 6852, 793, 6881, 8428, 8408, 805, 778, 7631, 859, 823, 821, 8403, + 6873, 6853, 827, 6884, 6842, 7619, 7618, 828, 6885, 8411, 771, 65065, + 65066, 820, 816, 6859, 8424, 6836, 786, 797, 7669, 846, 6890, 7633, 7634, + 809, 781, 830, 6864, 6870, 6866, 6871, 6868, 7673, 8425, 6838, 6837, 851, + 829, 8274, 64, 44, 128476, 9092, 8705, 129517, 9732, 127882, 128533, + 128534, 128119, 128679, 8715, 8883, 8885, 8954, 8955, 8957, 8750, 127899, + 983187, 9089, 127978, 9010, 9740, 10861, 127859, 127850, 127834, 11505, + 11504, 11503, 11464, 11392, 11506, 11499, 11501, 11446, 11452, 11458, + 11466, 11442, 11448, 11450, 11398, 1006, 1002, 11396, 1000, 11406, 998, + 11436, 11412, 11420, 996, 11434, 11472, 11414, 11422, 11478, 11468, + 11470, 11476, 11474, 11482, 11460, 11480, 11454, 11462, 11444, 11486, + 11488, 11484, 11490, 11440, 1004, 994, 11456, 11402, 11428, 11408, 11430, + 11404, 11394, 11438, 11424, 11410, 11426, 11400, 11416, 11418, 11432, + 66298, 66289, 66295, 66286, 66294, 66285, 66299, 66290, 66291, 66297, + 66288, 66296, 66287, 66293, 66284, 66292, 66283, 66282, 66277, 66276, + 66279, 66278, 66275, 66274, 66281, 66273, 66280, 66272, 11517, 11518, + 11514, 11515, 11516, 11513, 11465, 11393, 11507, 11500, 11502, 11447, + 11453, 11459, 11467, 11443, 11449, 11451, 11399, 1007, 1003, 11397, 1001, + 11407, 999, 11437, 11413, 11421, 997, 11435, 11473, 11415, 11423, 11479, + 11469, 11471, 11477, 11475, 11483, 11461, 11481, 11455, 11463, 11445, + 11487, 11489, 11485, 11491, 11441, 1005, 995, 11457, 11403, 11429, 11409, + 11431, 11405, 11395, 11439, 11425, 11411, 11427, 11401, 11417, 11419, + 11433, 11497, 11492, 11493, 11494, 11498, 11495, 11496, 11519, 127279, + 169, 11855, 8792, 129720, 9012, 9013, 119661, 119660, 119663, 119662, + 119659, 119658, 119665, 119657, 119664, 119652, 119651, 119654, 119653, + 119650, 119649, 119656, 119648, 119655, 128715, 128145, 128004, 128046, + 9904, 129689, 129509, 983074, 128179, 127769, 129431, 127951, 9769, 9768, + 11856, 11857, 128322, 128321, 10060, 127370, 127884, 9876, 9932, 128010, + 129360, 128081, 8354, 129660, 128575, 128546, 128302, 129408, 8731, + 74794, 74771, 74861, 74780, 74820, 74821, 74765, 74758, 74853, 74856, + 74855, 74854, 74791, 74801, 74844, 74836, 74837, 74809, 74755, 74829, + 74777, 74786, 74768, 74858, 74762, 74834, 74835, 74808, 74812, 74814, + 74815, 74813, 74754, 74828, 74776, 74785, 74790, 74800, 74767, 74857, + 74761, 74839, 74838, 74822, 74825, 74823, 74824, 74795, 74772, 74862, + 74781, 74766, 74759, 74849, 74850, 74840, 74847, 74848, 74851, 74831, + 74804, 74773, 74782, 74845, 74842, 74796, 74852, 74818, 74819, 74817, + 74793, 74770, 74860, 74779, 74764, 74757, 74802, 74803, 74792, 74756, + 74830, 74769, 74859, 74778, 74816, 74763, 74806, 74807, 74833, 74788, + 74789, 74798, 74799, 74810, 74811, 74753, 74827, 74775, 74784, 74760, + 74752, 74826, 74832, 74805, 74841, 74774, 74783, 74787, 74797, 74846, + 74843, 74867, 74868, 74866, 74865, 74864, 73728, 73734, 73731, 73733, + 73735, 73736, 73730, 73732, 73729, 73738, 73742, 73741, 73744, 73745, + 74881, 73747, 73748, 73740, 73739, 74608, 74880, 73746, 73743, 73749, + 73750, 73753, 73752, 73754, 73755, 73751, 74609, 73756, 74882, 73757, + 73759, 73758, 73760, 73765, 73766, 73762, 73763, 73768, 73761, 73767, + 73764, 73770, 73769, 73771, 74610, 73772, 73773, 73776, 73777, 73775, + 73774, 73778, 73780, 73781, 73782, 73784, 73788, 73789, 73787, 73785, + 73786, 73791, 73790, 73783, 73779, 73737, 73792, 73793, 74883, 73795, + 74884, 74885, 74886, 73796, 73797, 73798, 73799, 73800, 73794, 73801, + 73804, 73803, 73802, 73805, 74887, 73806, 73807, 73808, 73809, 73810, + 73811, 73812, 73813, 73814, 73815, 73816, 73817, 73818, 73819, 73820, + 73821, 73822, 73823, 73825, 73826, 73829, 73830, 73831, 73828, 73836, + 74611, 73837, 73833, 73835, 73827, 73832, 73834, 73824, 74889, 74612, + 73839, 73840, 73841, 74888, 73838, 73842, 73844, 74891, 74890, 73845, + 73846, 74892, 73847, 73848, 73849, 74613, 73843, 73850, 73852, 73853, + 73851, 73854, 73855, 74614, 73856, 73857, 74894, 74895, 74893, 74896, + 74897, 74900, 74901, 74902, 74899, 74908, 74909, 74907, 74906, 74911, + 74912, 74910, 74913, 74914, 74915, 74916, 74920, 74919, 74898, 74905, + 74903, 74904, 74917, 74918, 73858, 73860, 73861, 73862, 73863, 73864, + 73865, 73859, 73866, 73868, 73867, 73869, 73873, 73874, 73870, 73871, + 74922, 74921, 73872, 73875, 73879, 73883, 73884, 73880, 73881, 73882, + 73885, 73887, 74923, 73886, 73888, 74924, 73889, 74927, 74930, 74931, + 74925, 74928, 74929, 74932, 74926, 73890, 73891, 73892, 73893, 73895, + 73896, 73900, 73901, 73902, 73903, 73904, 73905, 73906, 74616, 74933, + 73907, 73908, 73899, 73897, 73898, 74615, 73894, 73877, 73876, 73878, + 73909, 73911, 73912, 73914, 73913, 73916, 74617, 73917, 74618, 73918, + 73915, 74934, 73920, 73919, 73921, 73922, 73924, 73925, 74935, 74936, + 74937, 73926, 73923, 73929, 73930, 73927, 73928, 74938, 74939, 73932, + 74941, 74940, 73931, 73933, 73934, 73935, 73936, 73937, 74942, 73938, + 73939, 73941, 73940, 73943, 73942, 73945, 73944, 73946, 73947, 74943, + 73948, 73949, 74944, 74945, 74946, 73950, 74947, 73951, 74948, 74949, + 74950, 73952, 73953, 73957, 73958, 73959, 74951, 73955, 73956, 73960, + 73962, 73963, 73964, 73961, 74952, 73954, 73965, 73966, 74953, 73967, + 73968, 73969, 73970, 73971, 73972, 73974, 73975, 73978, 73977, 73976, + 73910, 73979, 73980, 73981, 73973, 73982, 73983, 74954, 74619, 73984, + 73985, 73986, 73987, 73988, 73990, 73989, 73994, 73995, 73998, 73996, + 73997, 73999, 73992, 73993, 74001, 74955, 74004, 74003, 74005, 74002, + 74000, 73991, 74620, 74006, 74008, 74009, 74010, 74956, 74012, 74011, + 74013, 74014, 74957, 74015, 74016, 74017, 74019, 74020, 74021, 74024, + 74023, 74022, 74007, 74018, 74025, 74026, 74958, 74027, 74028, 74029, + 74030, 74959, 74031, 74033, 74036, 74035, 74032, 74034, 74037, 74038, + 74039, 74040, 74043, 74044, 74042, 74041, 74045, 74046, 74621, 74047, + 74050, 74052, 74051, 74053, 74054, 74058, 74057, 74055, 74056, 74059, + 74060, 74061, 74062, 74064, 74065, 74063, 74066, 74067, 74048, 74070, + 74049, 74068, 74069, 74071, 74072, 74073, 74074, 74622, 74075, 74623, + 74077, 74076, 74078, 74079, 74960, 74080, 74081, 74082, 74085, 74086, + 74084, 74083, 74087, 74624, 74090, 74089, 74088, 74091, 74092, 74625, + 74093, 74094, 74096, 74097, 74961, 74095, 74099, 74627, 74098, 74100, + 74101, 74103, 74102, 74104, 74105, 74115, 74629, 74114, 74112, 74113, + 74110, 74111, 74117, 74116, 74118, 74630, 74119, 74962, 74963, 74631, + 74122, 74123, 74120, 74121, 74626, 74107, 74106, 74628, 74108, 74109, + 74124, 74125, 74126, 74131, 74132, 74128, 74129, 74130, 74133, 74134, + 74135, 74136, 74137, 983267, 74138, 74139, 74140, 74141, 74142, 74607, + 74127, 74144, 74146, 74147, 74145, 74152, 74153, 74150, 74151, 74148, + 74149, 74154, 74155, 74157, 74158, 74163, 74164, 74165, 74160, 74161, + 74156, 74159, 74162, 74143, 74166, 74167, 74168, 74169, 74170, 74171, + 74172, 74175, 74173, 74174, 74176, 74177, 74182, 74183, 74180, 74181, + 74632, 74186, 74184, 74185, 74188, 74190, 74189, 74187, 74194, 74195, + 74193, 74191, 74192, 74196, 74197, 74198, 74199, 74200, 74201, 74202, + 74205, 74206, 74207, 74208, 74204, 74209, 74211, 74210, 74212, 74213, + 74215, 74214, 74216, 74218, 74217, 74964, 74178, 74179, 74203, 74219, + 74220, 74223, 74224, 74221, 74222, 74966, 74967, 74974, 74973, 74972, + 74969, 74970, 74971, 74975, 74968, 74965, 74977, 74976, 74980, 74981, + 74982, 74984, 74985, 74978, 74979, 74983, 74986, 74987, 74988, 74989, + 74990, 74991, 74993, 74997, 74996, 74998, 74995, 74994, 74992, 74999, + 75000, 75003, 75004, 75005, 75006, 75001, 75002, 75009, 75015, 75016, + 75019, 75017, 75018, 75013, 75012, 75010, 75011, 75014, 75021, 75030, + 75029, 75027, 75024, 75025, 75028, 75022, 75026, 75023, 75008, 75020, + 75031, 75032, 75007, 74226, 74227, 74228, 74229, 74230, 74225, 74231, + 74233, 74234, 74232, 74235, 74237, 74258, 74259, 75033, 74261, 74633, + 74260, 74240, 74634, 74241, 74243, 75035, 74246, 74247, 74245, 74248, + 74249, 74250, 74251, 75036, 75037, 74254, 74255, 74635, 74256, 75038, + 74242, 74252, 74253, 75034, 74238, 74239, 74244, 74257, 74263, 74265, + 74264, 74266, 74269, 74270, 74271, 74236, 74262, 74267, 74268, 74272, + 74273, 74274, 74278, 74279, 74275, 74276, 74277, 74280, 74281, 74636, + 74282, 75039, 74283, 74284, 74290, 74294, 74295, 75041, 75040, 74292, + 74293, 74291, 74296, 74297, 74298, 74299, 74300, 74637, 74301, 74286, + 74287, 74285, 74289, 74288, 74302, 74304, 74307, 74305, 74306, 74308, + 74310, 74309, 74311, 74303, 74638, 74312, 74314, 74313, 74315, 74316, + 74319, 74321, 74320, 74639, 74322, 74324, 74325, 74323, 74642, 75043, + 74326, 75044, 75046, 75047, 74327, 75048, 74329, 74328, 75049, 74330, + 74332, 74333, 74331, 75050, 75051, 74334, 75052, 74335, 75042, 74641, + 75045, 74640, 74317, 74336, 74318, 74337, 74338, 983266, 983265, 74643, + 74339, 74347, 74348, 74342, 74343, 74341, 74344, 74340, 74346, 74345, + 74349, 74355, 74354, 74350, 74352, 74358, 74359, 74353, 74357, 74351, + 74356, 74360, 74361, 74362, 74363, 74364, 74365, 74366, 74644, 74367, + 74375, 74376, 74368, 74369, 74373, 74374, 74370, 74371, 74372, 74377, + 74378, 74379, 74380, 74381, 74382, 74645, 74383, 74384, 74385, 74386, + 74387, 74389, 74408, 75053, 74388, 74646, 74395, 74394, 75055, 74400, + 74399, 75056, 74401, 74406, 74402, 74403, 74404, 74405, 74391, 74392, + 74396, 74398, 75054, 74397, 74393, 74390, 74407, 74409, 74410, 74411, + 74412, 74413, 74414, 74421, 74422, 74419, 74417, 74420, 74416, 74418, + 74415, 74423, 75057, 74424, 74425, 74426, 75058, 74428, 74429, 75059, + 75060, 75061, 74427, 74432, 74434, 74433, 74430, 74431, 74435, 74437, + 74436, 74438, 74441, 74440, 74444, 74445, 74446, 74448, 74447, 74443, + 74449, 74442, 74439, 74451, 74453, 74452, 74450, 74454, 74455, 74456, + 74457, 75063, 75062, 74458, 74459, 75064, 74460, 74461, 74462, 74463, + 74465, 74464, 74466, 74468, 74469, 74471, 74472, 74473, 74474, 74467, + 74470, 74475, 74477, 74478, 74479, 74476, 74480, 74481, 74482, 74483, + 74488, 74486, 74487, 74485, 74489, 74484, 74490, 75065, 74491, 74494, + 74497, 74499, 74500, 74498, 74495, 74647, 74496, 74501, 74504, 75066, + 75067, 74505, 74506, 74502, 74503, 74492, 74493, 74507, 74510, 74512, + 74511, 74649, 74509, 74508, 74515, 74516, 74522, 74523, 74519, 74520, + 74517, 74518, 74521, 74524, 74534, 74535, 74525, 74526, 74648, 74527, + 74528, 74529, 74531, 74532, 74533, 74530, 74536, 74538, 74537, 74539, + 75068, 74540, 74541, 74542, 74545, 74546, 74547, 75069, 74544, 74543, + 74549, 74550, 74551, 74552, 74553, 75070, 74555, 74556, 74558, 74557, + 74559, 74560, 74562, 74564, 74563, 75072, 74566, 75071, 74570, 74569, + 74572, 74574, 74573, 74554, 74567, 74571, 74565, 74561, 74568, 74575, + 74576, 74548, 74577, 74581, 74579, 74580, 74578, 74584, 74583, 74582, + 74586, 74587, 74588, 74585, 74513, 74514, 74589, 74591, 74590, 74593, + 75073, 74592, 74595, 74598, 74599, 74596, 74601, 74597, 74600, 74602, + 75074, 74603, 75075, 74604, 74605, 74606, 74594, 9982, 129380, 11232, + 129473, 8911, 8910, 10160, 9130, 129356, 128177, 164, 127835, 10081, + 128707, 127854, 129362, 129385, 67594, 67595, 67596, 67597, 67598, 67599, + 67600, 67601, 67602, 67603, 67604, 67605, 67606, 67607, 67608, 67609, + 67610, 67611, 67612, 67613, 67614, 67615, 67616, 67617, 67618, 67619, + 67620, 67621, 67622, 67623, 67624, 67625, 67626, 67627, 67628, 67629, + 67630, 67631, 67632, 67633, 67634, 67635, 67636, 67637, 67589, 67592, + 67644, 67647, 67639, 67640, 67584, 67585, 67586, 67587, 67588, 77712, + 77713, 77714, 77715, 77716, 77717, 77718, 77719, 77722, 77723, 77720, + 77721, 77724, 77725, 77726, 77727, 77728, 77729, 77730, 77731, 77732, + 77733, 77734, 77735, 77736, 77737, 77738, 77739, 77740, 77741, 77742, + 77743, 77744, 77745, 77746, 77747, 77748, 77749, 77750, 77751, 77752, + 77753, 77754, 77755, 77756, 77757, 77758, 77773, 77774, 77768, 77769, + 77770, 77771, 77772, 77775, 77776, 77777, 77788, 77789, 77790, 77791, + 77792, 77793, 77794, 77795, 77796, 77759, 77760, 77761, 77762, 77763, + 77764, 77765, 77766, 77767, 77778, 77779, 77780, 77781, 77782, 77783, + 77784, 77785, 77786, 77787, 77797, 77798, 77799, 77800, 77801, 77802, + 77803, 77804, 77805, 77806, 77807, 77808, 77809, 77810, 1126, 1033, 1300, + 42574, 1034, 1055, 1190, 1316, 1136, 1146, 42564, 42592, 42580, 1296, + 1302, 1058, 42634, 1196, 1035, 42640, 42638, 1062, 42642, 7305, 42636, + 1059, 1266, 1264, 1262, 1144, 1028, 1040, 1234, 1232, 1212, 1214, 1248, + 1192, 1310, 1256, 1258, 1184, 42602, 1130, 42572, 42586, 1030, 1041, + 1063, 1268, 1206, 1208, 42584, 42650, 42630, 1026, 42568, 42604, 42648, + 1029, 42562, 1322, 42632, 1039, 42626, 1324, 42624, 1044, 1069, 1051, + 1312, 1326, 1221, 1298, 1053, 1314, 1186, 1320, 1225, 1223, 1056, 1166, + 1260, 1057, 1194, 1052, 1229, 1060, 1043, 1172, 1168, 1270, 1170, 1274, + 1027, 1061, 1202, 1276, 1278, 1066, 42644, 1048, 1252, 1037, 1250, 1045, + 1024, 1238, 1025, 42588, 1128, 1132, 42578, 42582, 1124, 42566, 1140, + 1142, 1050, 1178, 1219, 1180, 1182, 1286, 1282, 1280, 1288, 1290, 1292, + 1294, 1284, 1152, 1227, 1036, 1134, 42600, 42570, 1054, 1120, 1148, 1254, + 1150, 1240, 1242, 1049, 1162, 1038, 1210, 1318, 1065, 42646, 1064, 42596, + 42598, 1068, 42594, 1198, 1200, 1164, 1071, 1304, 1122, 1067, 1272, + 42576, 1031, 42590, 1070, 1047, 1246, 1176, 42560, 1046, 1244, 1174, + 1217, 42628, 1138, 1032, 1042, 1308, 1306, 1236, 1204, 1188, 42622, + 42606, 1216, 7467, 42623, 1072, 1235, 1233, 1213, 1215, 1249, 1193, 1311, + 1257, 1259, 1185, 42603, 1131, 42573, 42587, 1110, 1073, 1095, 1269, + 1207, 1209, 42585, 42651, 42631, 1106, 42569, 42605, 42649, 1109, 42563, + 1323, 42633, 1119, 42627, 1325, 42625, 1076, 1101, 1083, 1313, 1327, + 1222, 1299, 1085, 1315, 1187, 1321, 1226, 1224, 1088, 1167, 1261, 1089, + 1195, 1084, 1230, 1092, 1075, 1173, 1169, 1271, 1171, 1275, 1107, 1093, + 1203, 1277, 1279, 1098, 42645, 1080, 1253, 1117, 1251, 1077, 1104, 1239, + 1105, 42589, 1129, 1133, 42579, 42583, 1125, 42567, 1141, 1143, 1082, + 1179, 1220, 1181, 1183, 1287, 1283, 1281, 1289, 1291, 1293, 1295, 1285, + 1153, 1228, 1116, 1135, 1127, 7297, 1113, 1301, 42601, 42571, 42575, + 7298, 1114, 1086, 1121, 1149, 1255, 1151, 1087, 1191, 1317, 1231, 1137, + 42565, 42593, 42581, 1297, 1147, 7296, 1303, 1241, 1243, 1081, 1163, + 1118, 1211, 1319, 1097, 42647, 1096, 42597, 42599, 1100, 42595, 1199, + 1201, 1165, 7302, 7303, 7300, 1090, 42635, 1197, 1115, 42641, 42639, + 1094, 7301, 42643, 7306, 42637, 1091, 1267, 1265, 1263, 1145, 1108, 7304, + 7299, 1309, 1103, 1305, 1123, 1099, 1273, 42577, 1111, 42591, 1102, 1079, + 1247, 1177, 42561, 1078, 1245, 1175, 1218, 42629, 1139, 1112, 1074, 1307, + 1237, 1205, 1189, 122984, 122962, 122986, 122985, 122965, 122976, 122971, + 122974, 122964, 122983, 122977, 122981, 122982, 122980, 122978, 122967, + 122968, 122969, 122966, 122979, 122973, 122963, 122970, 122961, 122972, + 122975, 1154, 9005, 127744, 983201, 983188, 983172, 8224, 11830, 11831, + 128481, 128131, 127841, 128374, 9619, 11843, 128168, 10143, 65101, 65097, + 8504, 983081, 983084, 983086, 983088, 983090, 983162, 9110, 9192, 127795, + 128475, 8451, 176, 8457, 983120, 128666, 8796, 983119, 9161, 9159, 9153, + 9156, 9162, 9160, 9154, 9157, 9164, 9151, 9163, 9150, 9158, 9152, 9155, + 117829, 117828, 127980, 127962, 9739, 66589, 66591, 66596, 66597, 66587, + 66585, 66594, 66595, 66593, 66599, 66562, 66563, 66564, 66565, 66561, + 66560, 66568, 66569, 66570, 66571, 66567, 66566, 66598, 66573, 66588, + 66579, 66592, 66590, 66581, 66578, 66580, 66582, 66577, 66586, 66575, + 66584, 66583, 66574, 66572, 66576, 66629, 66631, 66636, 66637, 66627, + 66625, 66634, 66635, 66633, 66639, 66602, 66603, 66604, 66605, 66601, + 66600, 66608, 66609, 66610, 66611, 66607, 66606, 66638, 66613, 66628, + 66619, 66632, 66630, 66621, 66618, 66620, 66622, 66617, 66626, 66615, + 66624, 66623, 66614, 66612, 66616, 127964, 127965, 128421, 128468, 2388, + 2416, 43258, 2387, 43257, 72448, 72449, 43259, 2309, 2310, 2320, 2324, + 2421, 43262, 2330, 2418, 2317, 2321, 2331, 2396, 2430, 2338, 2337, 2343, + 2342, 2429, 2394, 2328, 2427, 2327, 2426, 2361, 2350, 2424, 2308, 2318, + 2322, 2358, 2359, 2360, 2431, 2349, 2348, 2393, 2326, 2325, 2397, 2353, + 2352, 2323, 2420, 2419, 2399, 2351, 2313, 2314, 2423, 2422, 2345, 2339, + 2329, 2334, 2344, 2333, 2428, 2332, 2356, 2355, 2354, 2336, 2335, 2341, + 2340, 2315, 2400, 2316, 2401, 2357, 2311, 2312, 2347, 2346, 2425, 2395, + 2398, 2392, 2319, 983644, 983643, 983646, 983647, 983649, 983648, 983642, 983645, 72450, 72451, 72452, 72453, 2305, 43255, 43251, 43254, 43253, 72455, 72454, 72456, 43250, 43260, 2304, 72457, 2364, 2365, 2306, 43252, 43256, 2417, 2381, 2307, 2386, 2385, 2366, 2376, 2380, 2383, 43263, 2389, @@ -10582,619 +10446,219 @@ static const unsigned int dawg_pos_to_codepoint[] = { 78845, 78846, 78847, 78848, 78849, 78850, 78851, 78852, 78853, 78854, 78855, 78856, 78857, 78858, 78859, 78860, 78837, 78838, 78839, 78840, 78841, 78235, 78236, 78237, 78238, 78239, 78240, 78241, 78242, 78504, - 78505, 78506, 78507, 78508, 78509, 78510, 78944, 78945, 78946, 78947, - 78948, 78949, 78950, 78951, 78952, 78953, 78954, 78955, 78956, 78957, - 78958, 78959, 78960, 78961, 78962, 78963, 78964, 78965, 78966, 78967, - 78968, 78969, 78970, 78971, 78972, 78973, 78974, 78975, 78976, 78977, - 78978, 78979, 78980, 78981, 78982, 78983, 78984, 78985, 78986, 78987, - 78988, 78989, 78990, 78991, 78992, 78993, 78994, 78995, 78996, 78997, - 78998, 78999, 79000, 79001, 79002, 79003, 79004, 79005, 79006, 79007, - 79008, 79009, 79010, 79011, 79012, 79013, 79014, 79015, 79016, 79017, - 79018, 79019, 79020, 79021, 79022, 79023, 79024, 79025, 79026, 79027, - 79028, 79029, 79030, 79031, 79032, 79033, 79034, 79035, 79036, 79037, - 79038, 79039, 79040, 79041, 79042, 79043, 79044, 79045, 79046, 79047, - 79048, 79049, 79050, 79051, 79052, 79053, 79054, 79055, 79056, 79057, - 79058, 79059, 79060, 79061, 79062, 79063, 79064, 79065, 79066, 79067, - 79068, 79069, 79070, 79071, 79072, 79073, 79074, 79075, 79076, 79077, - 79078, 79079, 79080, 79081, 79082, 79083, 79084, 79085, 79086, 79087, - 79088, 79089, 79090, 79091, 79092, 79093, 79094, 79095, 79096, 79097, - 79098, 79099, 79100, 79101, 79102, 79103, 79104, 79105, 79106, 79107, - 79108, 79109, 79110, 79111, 79112, 79113, 79114, 79115, 79116, 79117, - 79118, 79119, 79120, 79121, 79122, 79123, 79124, 79125, 79126, 79127, - 79128, 79129, 79130, 79131, 79132, 79133, 79134, 79135, 79136, 79137, - 79138, 79139, 79140, 79141, 79142, 79143, 79144, 79145, 79146, 79147, - 79148, 79149, 79150, 79151, 79152, 79153, 79154, 79155, 79156, 79157, - 79158, 79159, 79160, 79161, 79162, 79163, 79164, 79165, 79166, 79167, - 79168, 79169, 79170, 79171, 79172, 79173, 79174, 79175, 79176, 79177, - 79178, 79179, 79180, 79181, 79182, 79183, 79184, 79185, 79186, 79187, - 79188, 79189, 79190, 79191, 79192, 79193, 79194, 79195, 79196, 79197, - 79198, 79199, 79200, 79201, 79202, 79203, 79204, 79205, 79206, 79207, - 79208, 79209, 79210, 79211, 79212, 79213, 79214, 79215, 79216, 79217, - 79218, 79219, 79220, 79221, 79222, 79223, 79224, 79225, 79226, 79227, - 79228, 79229, 79230, 79231, 79232, 79233, 79234, 79235, 79236, 79237, - 79238, 79239, 79240, 79241, 79242, 79243, 79244, 79245, 79246, 79247, - 79248, 79249, 79250, 79251, 79252, 79253, 79254, 79255, 79256, 79257, - 79258, 79259, 79260, 79261, 79262, 79263, 79264, 79265, 79266, 79267, - 79268, 79269, 79270, 79271, 79272, 79273, 79274, 79275, 79276, 79277, - 79278, 79279, 79280, 79281, 79282, 79283, 79284, 79285, 79286, 79287, - 79288, 79289, 79290, 79291, 79292, 79293, 79294, 79295, 79296, 79297, - 79298, 79299, 79300, 79301, 79302, 79303, 79304, 79305, 79306, 79307, - 79308, 79309, 79310, 79311, 79312, 79313, 79314, 79315, 79316, 79317, - 79318, 79319, 79320, 79321, 79322, 79323, 79324, 79325, 79326, 79327, - 79328, 79329, 79330, 79331, 79332, 79333, 79334, 79335, 79336, 79337, - 79338, 79339, 79340, 79341, 79342, 79343, 79344, 79345, 79346, 79347, - 79348, 79349, 79350, 79351, 79352, 79353, 79354, 79355, 79356, 79357, - 79358, 79359, 79360, 79361, 79362, 79363, 79364, 79365, 79366, 79367, - 79368, 79369, 79370, 79371, 79372, 79373, 79374, 79375, 79376, 79377, - 79378, 79379, 79380, 79381, 79382, 79383, 79384, 79385, 79386, 79387, - 79388, 79389, 79390, 79391, 79392, 79393, 79394, 79395, 79396, 79397, - 79398, 79399, 79400, 79401, 79402, 79403, 79404, 79405, 79406, 79407, - 79408, 79409, 79410, 79411, 79412, 79413, 79414, 79415, 79416, 79417, - 79418, 79419, 79420, 79421, 79422, 79423, 79424, 79425, 79426, 79427, - 79428, 79429, 79430, 79431, 79432, 79433, 79434, 79435, 79436, 79437, - 79438, 79439, 79440, 79441, 79442, 79443, 79444, 79445, 79446, 79447, - 79448, 79449, 79450, 79451, 79452, 79453, 79454, 79455, 79456, 79457, - 79458, 79459, 79460, 79461, 79462, 79463, 79464, 79465, 79466, 79467, - 79468, 79469, 79470, 79471, 79472, 79473, 79474, 79475, 79476, 79477, - 79478, 79479, 79480, 79481, 79482, 79483, 79484, 79485, 79486, 79487, - 79488, 79489, 79490, 79491, 79492, 79493, 79494, 79495, 79496, 79497, - 79498, 79499, 79500, 79501, 79502, 79503, 79504, 79505, 79506, 79507, - 79508, 79509, 79510, 79511, 79512, 79513, 79514, 79515, 79516, 79517, - 79518, 79519, 79520, 79521, 79522, 79523, 79524, 79525, 79526, 79527, - 79528, 79529, 79530, 79531, 79532, 79533, 79534, 79535, 79536, 79537, - 79538, 79539, 79540, 79541, 79542, 79543, 79544, 79545, 79546, 79547, - 79548, 79549, 79550, 79551, 79552, 79553, 79554, 79555, 79556, 79557, - 79558, 79559, 79560, 79561, 79562, 79563, 79564, 79565, 79566, 79567, - 79568, 79569, 79570, 79571, 79572, 79573, 79574, 79575, 79576, 79577, - 79578, 79579, 79580, 79581, 79582, 79583, 79584, 79585, 79586, 79587, - 79588, 79589, 79590, 79591, 79592, 79593, 79594, 79595, 79596, 79597, - 79598, 79599, 79600, 79601, 79602, 79603, 79604, 79605, 79606, 79607, - 79608, 79609, 79610, 79611, 79612, 79613, 79614, 79615, 79616, 79617, - 79618, 79619, 79620, 79621, 79622, 79623, 79624, 79625, 79626, 79627, - 79628, 79629, 79630, 79631, 79632, 79633, 79634, 79635, 79636, 79637, - 79638, 79639, 79640, 79641, 79642, 79643, 79644, 79645, 79646, 79647, - 79648, 79649, 79650, 79651, 79652, 79653, 79654, 79655, 79656, 79657, - 79658, 79659, 79660, 79661, 79662, 79663, 79664, 79665, 79666, 79667, - 79668, 79669, 79670, 79671, 79672, 79673, 79674, 79675, 79676, 79677, - 79678, 79679, 79680, 79681, 79682, 79683, 79684, 79685, 79686, 79687, - 79688, 79689, 79690, 79691, 79692, 79693, 79694, 79695, 79696, 79697, - 79698, 79699, 79700, 79701, 79702, 79703, 79704, 79705, 79706, 79707, - 79708, 79709, 79710, 79711, 79712, 79713, 79714, 79715, 79716, 79717, - 79718, 79719, 79720, 79721, 79722, 79723, 79724, 79725, 79726, 79727, - 79728, 79729, 79730, 79731, 79732, 79733, 79734, 79735, 79736, 79737, - 79738, 79739, 79740, 79741, 79742, 79743, 79744, 79745, 79746, 79747, - 79748, 79749, 79750, 79751, 79752, 79753, 79754, 79755, 79756, 79757, - 79758, 79759, 79760, 79761, 79762, 79763, 79764, 79765, 79766, 79767, - 79768, 79769, 79770, 79771, 79772, 79773, 79774, 79775, 79776, 79777, - 79778, 79779, 79780, 79781, 79782, 79783, 79784, 79785, 79786, 79787, - 79788, 79789, 79790, 79791, 79792, 79793, 79794, 79795, 79796, 79797, - 79798, 79799, 79800, 79801, 79802, 79803, 79804, 79805, 79806, 79807, - 79808, 79809, 79810, 79811, 79812, 79813, 79814, 79815, 79816, 79817, - 79818, 79819, 79820, 79821, 79822, 79823, 79824, 79825, 79826, 79827, - 79828, 79829, 79830, 79831, 79832, 79833, 79834, 79835, 79836, 79837, - 79838, 79839, 79840, 79841, 79842, 79843, 79844, 79845, 79846, 79847, - 79848, 79849, 79850, 79851, 79852, 79853, 79854, 79855, 79856, 79857, - 79858, 79859, 79860, 79861, 79862, 79863, 79864, 79865, 79866, 79867, - 79868, 79869, 79870, 79871, 79872, 79873, 79874, 79875, 79876, 79877, - 79878, 79879, 79880, 79881, 79882, 79883, 79884, 79885, 79886, 79887, - 79888, 79889, 79890, 79891, 79892, 79893, 79894, 79895, 79896, 79897, - 79898, 79899, 79900, 79901, 79902, 79903, 79904, 79905, 79906, 79907, - 79908, 79909, 79910, 79911, 79912, 79913, 79914, 79915, 79916, 79917, - 79918, 79919, 79920, 79921, 79922, 79923, 79924, 79925, 79926, 79927, - 79928, 79929, 79930, 79931, 79932, 79933, 79934, 79935, 79936, 79937, - 79938, 79939, 79940, 79941, 79942, 79943, 79944, 79945, 79946, 79947, - 79948, 79949, 79950, 79951, 79952, 79953, 79954, 79955, 79956, 79957, - 79958, 79959, 79960, 79961, 79962, 79963, 79964, 79965, 79966, 79967, - 79968, 79969, 79970, 79971, 79972, 79973, 79974, 79975, 79976, 79977, - 79978, 79979, 79980, 79981, 79982, 79983, 79984, 79985, 79986, 79987, - 79988, 79989, 79990, 79991, 79992, 79993, 79994, 79995, 79996, 79997, - 79998, 79999, 80000, 80001, 80002, 80003, 80004, 80005, 80006, 80007, - 80008, 80009, 80010, 80011, 80012, 80013, 80014, 80015, 80016, 80017, - 80018, 80019, 80020, 80021, 80022, 80023, 80024, 80025, 80026, 80027, - 80028, 80029, 80030, 80031, 80032, 80033, 80034, 80035, 80036, 80037, - 80038, 80039, 80040, 80041, 80042, 80043, 80044, 80045, 80046, 80047, - 80048, 80049, 80050, 80051, 80052, 80053, 80054, 80055, 80056, 80057, - 80058, 80059, 80060, 80061, 80062, 80063, 80064, 80065, 80066, 80067, - 80068, 80069, 80070, 80071, 80072, 80073, 80074, 80075, 80076, 80077, - 80078, 80079, 80080, 80081, 80082, 80083, 80084, 80085, 80086, 80087, - 80088, 80089, 80090, 80091, 80092, 80093, 80094, 80095, 80096, 80097, - 80098, 80099, 80100, 80101, 80102, 80103, 80104, 80105, 80106, 80107, - 80108, 80109, 80110, 80111, 80112, 80113, 80114, 80115, 80116, 80117, - 80118, 80119, 80120, 80121, 80122, 80123, 80124, 80125, 80126, 80127, - 80128, 80129, 80130, 80131, 80132, 80133, 80134, 80135, 80136, 80137, - 80138, 80139, 80140, 80141, 80142, 80143, 80144, 80145, 80146, 80147, - 80148, 80149, 80150, 80151, 80152, 80153, 80154, 80155, 80156, 80157, - 80158, 80159, 80160, 80161, 80162, 80163, 80164, 80165, 80166, 80167, - 80168, 80169, 80170, 80171, 80172, 80173, 80174, 80175, 80176, 80177, - 80178, 80179, 80180, 80181, 80182, 80183, 80184, 80185, 80186, 80187, - 80188, 80189, 80190, 80191, 80192, 80193, 80194, 80195, 80196, 80197, - 80198, 80199, 80200, 80201, 80202, 80203, 80204, 80205, 80206, 80207, - 80208, 80209, 80210, 80211, 80212, 80213, 80214, 80215, 80216, 80217, - 80218, 80219, 80220, 80221, 80222, 80223, 80224, 80225, 80226, 80227, - 80228, 80229, 80230, 80231, 80232, 80233, 80234, 80235, 80236, 80237, - 80238, 80239, 80240, 80241, 80242, 80243, 80244, 80245, 80246, 80247, - 80248, 80249, 80250, 80251, 80252, 80253, 80254, 80255, 80256, 80257, - 80258, 80259, 80260, 80261, 80262, 80263, 80264, 80265, 80266, 80267, - 80268, 80269, 80270, 80271, 80272, 80273, 80274, 80275, 80276, 80277, - 80278, 80279, 80280, 80281, 80282, 80283, 80284, 80285, 80286, 80287, - 80288, 80289, 80290, 80291, 80292, 80293, 80294, 80295, 80296, 80297, - 80298, 80299, 80300, 80301, 80302, 80303, 80304, 80305, 80306, 80307, - 80308, 80309, 80310, 80311, 80312, 80313, 80314, 80315, 80316, 80317, - 80318, 80319, 80320, 80321, 80322, 80323, 80324, 80325, 80326, 80327, - 80328, 80329, 80330, 80331, 80332, 80333, 80334, 80335, 80336, 80337, - 80338, 80339, 80340, 80341, 80342, 80343, 80344, 80345, 80346, 80347, - 80348, 80349, 80350, 80351, 80352, 80353, 80354, 80355, 80356, 80357, - 80358, 80359, 80360, 80361, 80362, 80363, 80364, 80365, 80366, 80367, - 80368, 80369, 80370, 80371, 80372, 80373, 80374, 80375, 80376, 80377, - 80378, 80379, 80380, 80381, 80382, 80383, 80384, 80385, 80386, 80387, - 80388, 80389, 80390, 80391, 80392, 80393, 80394, 80395, 80396, 80397, - 80398, 80399, 80400, 80401, 80402, 80403, 80404, 80405, 80406, 80407, - 80408, 80409, 80410, 80411, 80412, 80413, 80414, 80415, 80416, 80417, - 80418, 80419, 80420, 80421, 80422, 80423, 80424, 80425, 80426, 80427, - 80428, 80429, 80430, 80431, 80432, 80433, 80434, 80435, 80436, 80437, - 80438, 80439, 80440, 80441, 80442, 80443, 80444, 80445, 80446, 80447, - 80448, 80449, 80450, 80451, 80452, 80453, 80454, 80455, 80456, 80457, - 80458, 80459, 80460, 80461, 80462, 80463, 80464, 80465, 80466, 80467, - 80468, 80469, 80470, 80471, 80472, 80473, 80474, 80475, 80476, 80477, - 80478, 80479, 80480, 80481, 80482, 80483, 80484, 80485, 80486, 80487, - 80488, 80489, 80490, 80491, 80492, 80493, 80494, 80495, 80496, 80497, - 80498, 80499, 80500, 80501, 80502, 80503, 80504, 80505, 80506, 80507, - 80508, 80509, 80510, 80511, 80512, 80513, 80514, 80515, 80516, 80517, - 80518, 80519, 80520, 80521, 80522, 80523, 80524, 80525, 80526, 80527, - 80528, 80529, 80530, 80531, 80532, 80533, 80534, 80535, 80536, 80537, - 80538, 80539, 80540, 80541, 80542, 80543, 80544, 80545, 80546, 80547, - 80548, 80549, 80550, 80551, 80552, 80553, 80554, 80555, 80556, 80557, - 80558, 80559, 80560, 80561, 80562, 80563, 80564, 80565, 80566, 80567, - 80568, 80569, 80570, 80571, 80572, 80573, 80574, 80575, 80576, 80577, - 80578, 80579, 80580, 80581, 80582, 80583, 80584, 80585, 80586, 80587, - 80588, 80589, 80590, 80591, 80592, 80593, 80594, 80595, 80596, 80597, - 80598, 80599, 80600, 80601, 80602, 80603, 80604, 80605, 80606, 80607, - 80608, 80609, 80610, 80611, 80612, 80613, 80614, 80615, 80616, 80617, - 80618, 80619, 80620, 80621, 80622, 80623, 80624, 80625, 80626, 80627, - 80628, 80629, 80630, 80631, 80632, 80633, 80634, 80635, 80636, 80637, - 80638, 80639, 80640, 80641, 80642, 80643, 80644, 80645, 80646, 80647, - 80648, 80649, 80650, 80651, 80652, 80653, 80654, 80655, 80656, 80657, - 80658, 80659, 80660, 80661, 80662, 80663, 80664, 80665, 80666, 80667, - 80668, 80669, 80670, 80671, 80672, 80673, 80674, 80675, 80676, 80677, - 80678, 80679, 80680, 80681, 80682, 80683, 80684, 80685, 80686, 80687, - 80688, 80689, 80690, 80691, 80692, 80693, 80694, 80695, 80696, 80697, - 80698, 80699, 80700, 80701, 80702, 80703, 80704, 80705, 80706, 80707, - 80708, 80709, 80710, 80711, 80712, 80713, 80714, 80715, 80716, 80717, - 80718, 80719, 80720, 80721, 80722, 80723, 80724, 80725, 80726, 80727, - 80728, 80729, 80730, 80731, 80732, 80733, 80734, 80735, 80736, 80737, - 80738, 80739, 80740, 80741, 80742, 80743, 80744, 80745, 80746, 80747, - 80748, 80749, 80750, 80751, 80752, 80753, 80754, 80755, 80756, 80757, - 80758, 80759, 80760, 80761, 80762, 80763, 80764, 80765, 80766, 80767, - 80768, 80769, 80770, 80771, 80772, 80773, 80774, 80775, 80776, 80777, - 80778, 80779, 80780, 80781, 80782, 80783, 80784, 80785, 80786, 80787, - 80788, 80789, 80790, 80791, 80792, 80793, 80794, 80795, 80796, 80797, - 80798, 80799, 80800, 80801, 80802, 80803, 80804, 80805, 80806, 80807, - 80808, 80809, 80810, 80811, 80812, 80813, 80814, 80815, 80816, 80817, - 80818, 80819, 80820, 80821, 80822, 80823, 80824, 80825, 80826, 80827, - 80828, 80829, 80830, 80831, 80832, 80833, 80834, 80835, 80836, 80837, - 80838, 80839, 80840, 80841, 80842, 80843, 80844, 80845, 80846, 80847, - 80848, 80849, 80850, 80851, 80852, 80853, 80854, 80855, 80856, 80857, - 80858, 80859, 80860, 80861, 80862, 80863, 80864, 80865, 80866, 80867, - 80868, 80869, 80870, 80871, 80872, 80873, 80874, 80875, 80876, 80877, - 80878, 80879, 80880, 80881, 80882, 80883, 80884, 80885, 80886, 80887, - 80888, 80889, 80890, 80891, 80892, 80893, 80894, 80895, 80896, 80897, - 80898, 80899, 80900, 80901, 80902, 80903, 80904, 80905, 80906, 80907, - 80908, 80909, 80910, 80911, 80912, 80913, 80914, 80915, 80916, 80917, - 80918, 80919, 80920, 80921, 80922, 80923, 80924, 80925, 80926, 80927, - 80928, 80929, 80930, 80931, 80932, 80933, 80934, 80935, 80936, 80937, - 80938, 80939, 80940, 80941, 80942, 80943, 80944, 80945, 80946, 80947, - 80948, 80949, 80950, 80951, 80952, 80953, 80954, 80955, 80956, 80957, - 80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967, - 80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80977, - 80978, 80979, 80980, 80981, 80982, 80983, 80984, 80985, 80986, 80987, - 80988, 80989, 80990, 80991, 80992, 80993, 80994, 80995, 80996, 80997, - 80998, 80999, 81000, 81001, 81002, 81003, 81004, 81005, 81006, 81007, - 81008, 81009, 81010, 81011, 81012, 81013, 81014, 81015, 81016, 81017, - 81018, 81019, 81020, 81021, 81022, 81023, 81024, 81025, 81026, 81027, - 81028, 81029, 81030, 81031, 81032, 81033, 81034, 81035, 81036, 81037, - 81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047, - 81048, 81049, 81050, 81051, 81052, 81053, 81054, 81055, 81056, 81057, - 81058, 81059, 81060, 81061, 81062, 81063, 81064, 81065, 81066, 81067, - 81068, 81069, 81070, 81071, 81072, 81073, 81074, 81075, 81076, 81077, - 81078, 81079, 81080, 81081, 81082, 81083, 81084, 81085, 81086, 81087, - 81088, 81089, 81090, 81091, 81092, 81093, 81094, 81095, 81096, 81097, - 81098, 81099, 81100, 81101, 81102, 81103, 81104, 81105, 81106, 81107, - 81108, 81109, 81110, 81111, 81112, 81113, 81114, 81115, 81116, 81117, - 81118, 81119, 81120, 81121, 81122, 81123, 81124, 81125, 81126, 81127, - 81128, 81129, 81130, 81131, 81132, 81133, 81134, 81135, 81136, 81137, - 81138, 81139, 81140, 81141, 81142, 81143, 81144, 81145, 81146, 81147, - 81148, 81149, 81150, 81151, 81152, 81153, 81154, 81155, 81156, 81157, - 81158, 81159, 81160, 81161, 81162, 81163, 81164, 81165, 81166, 81167, - 81168, 81169, 81170, 81171, 81172, 81173, 81174, 81175, 81176, 81177, - 81178, 81179, 81180, 81181, 81182, 81183, 81184, 81185, 81186, 81187, - 81188, 81189, 81190, 81191, 81192, 81193, 81194, 81195, 81196, 81197, - 81198, 81199, 81200, 81201, 81202, 81203, 81204, 81205, 81206, 81207, - 81208, 81209, 81210, 81211, 81212, 81213, 81214, 81215, 81216, 81217, - 81218, 81219, 81220, 81221, 81222, 81223, 81224, 81225, 81226, 81227, - 81228, 81229, 81230, 81231, 81232, 81233, 81234, 81235, 81236, 81237, - 81238, 81239, 81240, 81241, 81242, 81243, 81244, 81245, 81246, 81247, - 81248, 81249, 81250, 81251, 81252, 81253, 81254, 81255, 81256, 81257, - 81258, 81259, 81260, 81261, 81262, 81263, 81264, 81265, 81266, 81267, - 81268, 81269, 81270, 81271, 81272, 81273, 81274, 81275, 81276, 81277, - 81278, 81279, 81280, 81281, 81282, 81283, 81284, 81285, 81286, 81287, - 81288, 81289, 81290, 81291, 81292, 81293, 81294, 81295, 81296, 81297, - 81298, 81299, 81300, 81301, 81302, 81303, 81304, 81305, 81306, 81307, - 81308, 81309, 81310, 81311, 81312, 81313, 81314, 81315, 81316, 81317, - 81318, 81319, 81320, 81321, 81322, 81323, 81324, 81325, 81326, 81327, - 81328, 81329, 81330, 81331, 81332, 81333, 81334, 81335, 81336, 81337, - 81338, 81339, 81340, 81341, 81342, 81343, 81344, 81345, 81346, 81347, - 81348, 81349, 81350, 81351, 81352, 81353, 81354, 81355, 81356, 81357, - 81358, 81359, 81360, 81361, 81362, 81363, 81364, 81365, 81366, 81367, - 81368, 81369, 81370, 81371, 81372, 81373, 81374, 81375, 81376, 81377, - 81378, 81379, 81380, 81381, 81382, 81383, 81384, 81385, 81386, 81387, - 81388, 81389, 81390, 81391, 81392, 81393, 81394, 81395, 81396, 81397, - 81398, 81399, 81400, 81401, 81402, 81403, 81404, 81405, 81406, 81407, - 81408, 81409, 81410, 81411, 81412, 81413, 81414, 81415, 81416, 81417, - 81418, 81419, 81420, 81421, 81422, 81423, 81424, 81425, 81426, 81427, - 81428, 81429, 81430, 81431, 81432, 81433, 81434, 81435, 81436, 81437, - 81438, 81439, 81440, 81441, 81442, 81443, 81444, 81445, 81446, 81447, - 81448, 81449, 81450, 81451, 81452, 81453, 81454, 81455, 81456, 81457, - 81458, 81459, 81460, 81461, 81462, 81463, 81464, 81465, 81466, 81467, - 81468, 81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477, - 81478, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487, - 81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497, - 81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507, - 81508, 81509, 81510, 81511, 81512, 81513, 81514, 81515, 81516, 81517, - 81518, 81519, 81520, 81521, 81522, 81523, 81524, 81525, 81526, 81527, - 81528, 81529, 81530, 81531, 81532, 81533, 81534, 81535, 81536, 81537, - 81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81546, 81547, - 81548, 81549, 81550, 81551, 81552, 81553, 81554, 81555, 81556, 81557, - 81558, 81559, 81560, 81561, 81562, 81563, 81564, 81565, 81566, 81567, - 81568, 81569, 81570, 81571, 81572, 81573, 81574, 81575, 81576, 81577, - 81578, 81579, 81580, 81581, 81582, 81583, 81584, 81585, 81586, 81587, - 81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81596, 81597, - 81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607, - 81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617, - 81618, 81619, 81620, 81621, 81622, 81623, 81624, 81625, 81626, 81627, - 81628, 81629, 81630, 81631, 81632, 81633, 81634, 81635, 81636, 81637, - 81638, 81639, 81640, 81641, 81642, 81643, 81644, 81645, 81646, 81647, - 81648, 81649, 81650, 81651, 81652, 81653, 81654, 81655, 81656, 81657, - 81658, 81659, 81660, 81661, 81662, 81663, 81664, 81665, 81666, 81667, - 81668, 81669, 81670, 81671, 81672, 81673, 81674, 81675, 81676, 81677, - 81678, 81679, 81680, 81681, 81682, 81683, 81684, 81685, 81686, 81687, - 81688, 81689, 81690, 81691, 81692, 81693, 81694, 81695, 81696, 81697, - 81698, 81699, 81700, 81701, 81702, 81703, 81704, 81705, 81706, 81707, - 81708, 81709, 81710, 81711, 81712, 81713, 81714, 81715, 81716, 81717, - 81718, 81719, 81720, 81721, 81722, 81723, 81724, 81725, 81726, 81727, - 81728, 81729, 81730, 81731, 81732, 81733, 81734, 81735, 81736, 81737, - 81738, 81739, 81740, 81741, 81742, 81743, 81744, 81745, 81746, 81747, - 81748, 81749, 81750, 81751, 81752, 81753, 81754, 81755, 81756, 81757, - 81758, 81759, 81760, 81761, 81762, 81763, 81764, 81765, 81766, 81767, - 81768, 81769, 81770, 81771, 81772, 81773, 81774, 81775, 81776, 81777, - 81778, 81779, 81780, 81781, 81782, 81783, 81784, 81785, 81786, 81787, - 81788, 81789, 81790, 81791, 81792, 81793, 81794, 81795, 81796, 81797, - 81798, 81799, 81800, 81801, 81802, 81803, 81804, 81805, 81806, 81807, - 81808, 81809, 81810, 81811, 81812, 81813, 81814, 81815, 81816, 81817, - 81818, 81819, 81820, 81821, 81822, 81823, 81824, 81825, 81826, 81827, - 81828, 81829, 81830, 81831, 81832, 81833, 81834, 81835, 81836, 81837, - 81838, 81839, 81840, 81841, 81842, 81843, 81844, 81845, 81846, 81847, - 81848, 81849, 81850, 81851, 81852, 81853, 81854, 81855, 81856, 81857, - 81858, 81859, 81860, 81861, 81862, 81863, 81864, 81865, 81866, 81867, - 81868, 81869, 81870, 81871, 81872, 81873, 81874, 81875, 81876, 81877, - 81878, 81879, 81880, 81881, 81882, 81883, 81884, 81885, 81886, 81887, - 81888, 81889, 81890, 81891, 81892, 81893, 81894, 81895, 81896, 81897, - 81898, 81899, 81900, 81901, 81902, 81903, 81904, 81905, 81906, 81907, - 81908, 81909, 81910, 81911, 81912, 81913, 81914, 81915, 81916, 81917, - 81918, 81919, 82928, 82929, 82930, 82931, 82932, 82933, 82934, 82935, - 82936, 82937, 82938, 82688, 82689, 82690, 82691, 82692, 82693, 82694, - 82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704, - 82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714, - 82715, 82716, 82717, 82718, 82719, 82720, 82721, 82722, 82723, 82724, - 82725, 82726, 82727, 82728, 82729, 82730, 82731, 82732, 82733, 82734, - 82735, 82736, 82737, 82738, 82739, 82740, 82741, 82742, 82743, 82744, - 82745, 82746, 82747, 82748, 82749, 82750, 82751, 82752, 82753, 82754, - 82755, 82756, 82757, 82758, 82759, 82760, 82761, 82762, 82763, 82764, - 82765, 82766, 82767, 82768, 82769, 82770, 82771, 82772, 82773, 82774, - 82775, 82776, 82777, 82778, 82779, 82780, 82781, 82782, 82783, 82784, - 82785, 82786, 82787, 82788, 82789, 82790, 82791, 82792, 82793, 82794, - 82795, 82796, 82797, 82798, 82799, 82800, 82801, 82802, 82803, 82804, - 82805, 82806, 82807, 82808, 82809, 82810, 82811, 82812, 82813, 82814, - 82815, 82816, 82817, 82818, 82819, 82820, 82821, 82822, 82823, 82824, - 82825, 82826, 82827, 82828, 82829, 82830, 82831, 82832, 82833, 82834, - 82835, 82836, 82837, 82838, 82839, 82840, 82841, 82842, 82843, 82844, - 82845, 82846, 82847, 82848, 82849, 82850, 82851, 82852, 82853, 82854, - 82855, 82856, 82857, 82858, 82859, 82860, 82861, 82862, 82863, 82864, - 82865, 82866, 82867, 82868, 82869, 82870, 82871, 82872, 82873, 82874, - 82875, 82876, 82877, 82878, 82879, 82880, 82881, 82882, 82883, 82884, - 82885, 82886, 82887, 82888, 82889, 82890, 82891, 82892, 82893, 82894, - 82895, 82896, 82897, 82898, 82899, 82900, 82901, 82902, 82903, 82904, - 82905, 82906, 82907, 82908, 82909, 82910, 82911, 82912, 82913, 82914, - 82915, 82916, 82917, 82918, 82919, 82920, 82921, 82922, 82923, 82924, - 82925, 82926, 82927, 81920, 81921, 81922, 81923, 81924, 81925, 81926, - 81927, 81928, 81929, 81930, 81931, 81932, 81933, 81934, 81935, 81936, - 81937, 81938, 81939, 81940, 81941, 81942, 81943, 81944, 81945, 81946, - 81947, 81948, 81949, 81950, 81951, 81952, 81953, 81954, 81955, 81956, - 81957, 81958, 81959, 81960, 81961, 81962, 81963, 81964, 81965, 81966, - 81967, 81968, 81969, 81970, 81971, 81972, 81973, 81974, 81975, 81976, - 81977, 81978, 81979, 81980, 81981, 81982, 81983, 81984, 81985, 81986, - 81987, 81988, 81989, 81990, 81991, 81992, 81993, 81994, 81995, 81996, - 81997, 81998, 81999, 82000, 82001, 82002, 82003, 82004, 82005, 82006, - 82007, 82008, 82009, 82010, 82011, 82012, 82013, 82014, 82015, 82016, - 82017, 82018, 82019, 82020, 82021, 82022, 82023, 82024, 82025, 82026, - 82027, 82028, 82029, 82030, 82031, 82032, 82033, 82034, 82035, 82036, - 82037, 82038, 82039, 82040, 82041, 82042, 82043, 82044, 82045, 82046, - 82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056, - 82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066, - 82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076, - 82077, 82078, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086, - 82087, 82088, 82089, 82090, 82091, 82092, 82093, 82094, 82095, 82096, - 82097, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106, - 82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116, - 82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82125, 82126, - 82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136, - 82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146, - 82147, 82148, 82149, 82150, 82151, 82152, 82153, 82154, 82155, 82156, - 82157, 82158, 82159, 82160, 82161, 82162, 82163, 82164, 82165, 82166, - 82167, 82168, 82169, 82170, 82171, 82172, 82173, 82174, 82175, 82176, - 82177, 82178, 82179, 82180, 82181, 82182, 82183, 82184, 82185, 82186, - 82187, 82188, 82189, 82190, 82191, 82192, 82193, 82194, 82195, 82196, - 82197, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206, - 82207, 82208, 82209, 82210, 82211, 82212, 82213, 82214, 82215, 82216, - 82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82226, - 82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236, - 82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82245, 82246, - 82247, 82248, 82249, 82250, 82251, 82252, 82253, 82254, 82255, 82256, - 82257, 82258, 82259, 82260, 82261, 82262, 82263, 82264, 82265, 82266, - 82267, 82268, 82269, 82270, 82271, 82272, 82273, 82274, 82275, 82276, - 82277, 82278, 82279, 82280, 82281, 82282, 82283, 82284, 82285, 82286, - 82287, 82288, 82289, 82290, 82291, 82292, 82293, 82294, 82295, 82296, - 82297, 82298, 82299, 82300, 82301, 82302, 82303, 82304, 82305, 82306, - 82307, 82308, 82309, 82310, 82311, 82312, 82313, 82314, 82315, 82316, - 82317, 82318, 82319, 82320, 82321, 82322, 82323, 82324, 82325, 82326, - 82327, 82328, 82329, 82330, 82331, 82332, 82333, 82334, 82335, 82336, - 82337, 82338, 82339, 82340, 82341, 82342, 82343, 82344, 82345, 82346, - 82347, 82348, 82349, 82350, 82351, 82352, 82353, 82354, 82355, 82356, - 82357, 82358, 82359, 82360, 82361, 82362, 82363, 82364, 82365, 82366, - 82367, 82368, 82369, 82370, 82371, 82372, 82373, 82374, 82375, 82376, - 82377, 82378, 82379, 82380, 82381, 82382, 82383, 82384, 82385, 82386, - 82387, 82388, 82389, 82390, 82391, 82392, 82393, 82394, 82395, 82396, - 82397, 82398, 82399, 82400, 82401, 82402, 82403, 82404, 82405, 82406, - 82407, 82408, 82409, 82410, 82411, 82412, 82413, 82414, 82415, 82416, - 82417, 82418, 82419, 82420, 82421, 82422, 82423, 82424, 82425, 82426, - 82427, 82428, 82429, 82430, 82431, 82432, 82433, 82434, 82435, 82436, - 82437, 82438, 82439, 82440, 82441, 82442, 82443, 82444, 82445, 82446, - 82447, 82448, 82449, 82450, 82451, 82452, 82453, 82454, 82455, 82456, - 82457, 82458, 82459, 82460, 82461, 82462, 82463, 82464, 82465, 82466, - 82467, 82468, 82469, 82470, 82471, 82472, 82473, 82474, 82475, 82476, - 82477, 82478, 82479, 82480, 82481, 82482, 82483, 82484, 82485, 82486, - 82487, 82488, 82489, 82490, 82491, 82492, 82493, 82494, 82495, 82496, - 82497, 82498, 82499, 82500, 82501, 82502, 82503, 82504, 82505, 82506, - 82507, 82508, 82509, 82510, 82511, 82512, 82513, 82514, 82515, 82516, - 82517, 82518, 82519, 82520, 82521, 82522, 82523, 82524, 82525, 82526, - 82527, 82528, 82529, 82530, 82531, 82532, 82533, 82534, 82535, 82536, - 82537, 82538, 82539, 82540, 82541, 82542, 82543, 82544, 82545, 82546, - 82547, 82548, 82549, 82550, 82551, 82552, 82553, 82554, 82555, 82556, - 82557, 82558, 82559, 82560, 82561, 82562, 82563, 82564, 82565, 82566, - 82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576, - 82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586, - 82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596, - 82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606, - 82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616, - 82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626, - 82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636, - 82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646, - 82647, 82648, 82649, 82650, 82651, 82652, 82653, 82654, 82655, 82656, - 82657, 82658, 82659, 82660, 82661, 82662, 82663, 82664, 82665, 82666, - 82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676, - 82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686, - 82687, 118470, 129370, 10037, 10039, 10036, 10049, 117865, 117866, 10058, - 10035, 9834, 66854, 66853, 66827, 66826, 66833, 66832, 66821, 66837, - 66836, 66835, 66842, 66841, 66824, 66823, 66819, 66818, 66822, 66820, - 66855, 66831, 66844, 66843, 66846, 66845, 66852, 66851, 66817, 66825, - 66828, 66830, 66834, 66839, 66840, 66848, 66849, 66816, 66829, 66838, - 66847, 66850, 128268, 128294, 128161, 8961, 9191, 8712, 8946, 8953, 8947, - 8952, 8950, 8949, 10969, 10194, 128024, 128727, 69608, 69621, 69603, - 69611, 69618, 69619, 69600, 69615, 69602, 69606, 69614, 69617, 69620, - 69609, 69604, 69607, 69610, 69601, 69613, 69605, 69616, 69612, 69622, - 129501, 983101, 129456, 129457, 129459, 129458, 127995, 127996, 127997, - 127998, 127999, 128453, 128454, 128455, 129721, 128460, 128461, 8709, - 10675, 10676, 10674, 10673, 128459, 9091, 8193, 8212, 8195, 8192, 8211, - 8194, 983179, 8718, 983178, 983135, 983099, 983048, 983095, 983046, - 983064, 128282, 983051, 983050, 9993, 128388, 128233, 9094, 983067, - 983100, 983049, 8926, 8927, 8925, 8924, 8797, 8917, 61, 10865, 10867, - 11072, 10609, 10723, 10724, 10926, 11257, 11158, 10871, 10854, 10862, - 8789, 10872, 8781, 8794, 10738, 10736, 10734, 10739, 10737, 10735, 11249, - 11248, 9003, 8998, 983105, 983104, 8494, 8793, 983136, 4957, 4959, 4958, - 4963, 4965, 4978, 4988, 4980, 4979, 4987, 4985, 4982, 4981, 4986, 4984, - 4983, 4968, 4966, 4964, 4960, 4999, 4998, 4711, 4997, 43816, 43819, - 43821, 43820, 43818, 43822, 43817, 4704, 4707, 4710, 11653, 4709, 4708, - 4706, 4705, 43808, 43811, 43813, 43812, 43810, 43814, 43809, 11704, - 11707, 11709, 11708, 11706, 11710, 11705, 11688, 11691, 11693, 11692, - 11690, 11694, 11689, 4904, 4907, 4910, 11664, 4909, 4908, 4911, 4906, - 4905, 4728, 4731, 4734, 11655, 4733, 4732, 4735, 4730, 4729, 43789, - 43788, 43787, 43786, 43790, 43785, 4856, 4859, 4862, 11661, 4861, 4860, - 4863, 4858, 4857, 43797, 43796, 43795, 43794, 43798, 43793, 4848, 4851, - 4854, 11660, 4853, 4852, 4855, 4850, 4849, 5003, 5002, 4943, 5001, 4936, - 4939, 4941, 4940, 4954, 4938, 4942, 4937, 4873, 124916, 124915, 124924, - 124923, 124910, 124909, 124926, 124925, 124922, 124921, 124920, 124919, - 124918, 124917, 124914, 124913, 124912, 124904, 11667, 4895, 11670, - 11669, 11668, 4888, 4891, 4893, 4892, 4890, 4894, 4889, 4768, 4771, 4774, - 11658, 4773, 4772, 4775, 4770, 4769, 4880, 4883, 4885, 4884, 4882, 11736, - 11739, 11741, 11740, 11738, 11742, 11737, 4872, 4875, 4878, 4879, 4877, - 4876, 4874, 124907, 124906, 4631, 124905, 124896, 124899, 124901, 124900, - 124898, 124902, 124897, 4624, 4627, 4629, 4628, 4626, 4630, 4625, 4608, - 4611, 4614, 4615, 4613, 4612, 4610, 4609, 4800, 4803, 4805, 4804, 4802, - 4792, 4795, 4797, 4796, 4794, 4798, 4793, 4784, 4787, 4789, 4788, 4786, - 11720, 11723, 11725, 11724, 11722, 11726, 11721, 4776, 4779, 4782, 4783, - 4781, 4780, 4778, 4777, 4995, 4994, 4639, 4993, 4632, 4635, 4638, 11649, - 4637, 4636, 4953, 4634, 4633, 4760, 4763, 4766, 11657, 4765, 4764, 4767, - 4762, 4761, 4752, 4755, 4758, 11656, 4757, 4756, 4759, 4754, 4753, 4912, - 4816, 4819, 4821, 4820, 4818, 4822, 4817, 4915, 4918, 11665, 4917, 4916, - 4919, 4914, 4913, 5007, 5006, 4951, 5005, 4944, 4947, 4950, 11666, 4949, - 4948, 4946, 4945, 4696, 4699, 4701, 4700, 4698, 4688, 4691, 4693, 4692, - 4690, 4694, 4689, 4680, 4683, 4685, 4684, 4682, 11712, 11715, 11717, - 11716, 11714, 11718, 11713, 4672, 4675, 4678, 4679, 4677, 4676, 4674, - 4673, 4648, 4651, 4654, 11650, 4653, 4652, 4655, 4952, 4650, 4649, 4661, - 4996, 5000, 4992, 5004, 4660, 4664, 4667, 4670, 11652, 4669, 4668, 4671, - 4666, 4665, 4640, 4643, 4645, 4644, 4647, 4642, 4646, 4641, 11680, 11683, - 11685, 11684, 11682, 11686, 11681, 4656, 4659, 4662, 11651, 4663, 4658, - 4657, 4896, 4899, 4902, 11663, 4901, 4900, 4903, 4898, 4897, 43781, - 43780, 43779, 43778, 43782, 43777, 4928, 4931, 4934, 4935, 4933, 4932, - 4930, 4929, 4920, 4923, 4925, 4924, 4927, 4922, 4926, 4921, 4720, 4723, - 4726, 11654, 4725, 4724, 4727, 4722, 4721, 4864, 4867, 4870, 11662, 4869, - 4868, 4871, 4866, 4865, 4616, 4619, 4622, 11648, 4621, 4620, 4623, 4618, - 4617, 4808, 4811, 4814, 4815, 4813, 4812, 4810, 4809, 4840, 4843, 4846, - 4847, 4845, 4844, 4842, 4841, 4744, 4747, 4749, 4748, 4746, 11728, 11731, - 11733, 11732, 11730, 11734, 11729, 4736, 4739, 4742, 4743, 4741, 4740, - 4738, 4737, 4832, 4835, 4837, 4836, 4839, 4834, 4838, 4833, 11696, 11699, - 11701, 11700, 11698, 11702, 11697, 4824, 4827, 4830, 11659, 4829, 4828, - 4831, 4826, 4825, 4712, 4715, 4717, 4716, 4719, 4714, 4718, 4713, 5009, - 5016, 5012, 5015, 5013, 5017, 5010, 5011, 5014, 5008, 4973, 4972, 4975, - 4974, 4971, 4970, 4977, 4969, 4976, 4962, 4967, 4961, 983096, 983047, - 127984, 127972, 8352, 8364, 118472, 8455, 8265, 33, 8761, 118269, 118270, - 118271, 118274, 128529, 128942, 128954, 128948, 128905, 128915, 128935, - 128125, 1781, 1780, 1783, 1782, 1779, 1778, 1776, 1785, 1777, 1784, - 128065, 128083, 128064, 128231, 9167, 127794, 983180, 128523, 128561, - 129312, 128531, 129301, 128567, 129488, 128582, 128558, 129326, 128560, - 129762, 129320, 128581, 129395, 129763, 129402, 128539, 128540, 128541, - 128514, 129298, 129769, 129323, 128580, 128548, 129764, 129396, 128566, - 129318, 128134, 128536, 129401, 8507, 127981, 10540, 10543, 9950, 127810, - 129478, 128439, 128224, 128106, 9771, 127877, 129498, 128552, 129718, - 170, 9792, 127905, 9972, 129338, 8210, 8199, 129775, 128193, 128452, - 983107, 128253, 127902, 129734, 10765, 128293, 128658, 129519, 127879, - 127878, 129512, 9789, 127771, 127763, 8296, 129351, 128031, 127907, 9673, - 127845, 128074, 8281, 11821, 127953, 129407, 129747, 9189, 117910, 9971, - 129449, 128170, 9884, 118466, 10086, 9880, 8277, 127924, 128190, 128563, - 129672, 129712, 128760, 117834, 117835, 118011, 129359, 128389, 127787, - 127745, 129709, 128448, 129462, 128099, 127860, 127869, 11792, 10972, - 129376, 118476, 983071, 8704, 8873, 10021, 11156, 8280, 8283, 10019, - 127808, 10018, 128966, 8732, 8197, 9970, 129749, 129418, 8260, 8543, - 128444, 128446, 128445, 118458, 127839, 8355, 129398, 10156, 128037, - 8994, 128550, 128056, 127844, 127773, 127765, 10199, 9608, 46, 65342, - 65312, 65292, 65306, 65504, 65375, 65371, 65288, 65339, 65308, 65313, - 65314, 65315, 65316, 65317, 65318, 65319, 65320, 65321, 65322, 65323, - 65324, 65325, 65326, 65327, 65328, 65329, 65330, 65331, 65332, 65333, - 65334, 65335, 65336, 65337, 65338, 65345, 65346, 65347, 65348, 65349, - 65350, 65351, 65352, 65353, 65354, 65355, 65356, 65357, 65358, 65359, - 65360, 65361, 65362, 65363, 65364, 65365, 65366, 65367, 65368, 65369, - 65370, 65343, 65506, 65283, 65505, 65285, 65291, 65376, 65373, 65289, - 65341, 65340, 65307, 65295, 65509, 65507, 65287, 65286, 65290, 65284, - 65301, 65300, 65303, 65302, 65299, 65298, 65296, 65305, 65297, 65304, - 65309, 65281, 65344, 65310, 65293, 65282, 65311, 65510, 65374, 65294, - 65508, 65372, 8289, 9905, 118280, 9981, 9179, 983215, 983216, 983217, - 983219, 983108, 983236, 983072, 68972, 68971, 68973, 68970, 68964, 68965, - 68959, 68961, 68948, 68945, 68954, 68960, 68953, 68963, 68949, 68947, - 68952, 68946, 68962, 68958, 68950, 68957, 68951, 68955, 68956, 68944, - 68996, 68997, 68991, 68993, 68980, 68977, 68986, 68992, 68985, 68995, - 68981, 68979, 68984, 68978, 68994, 68990, 68982, 68989, 68983, 68987, - 68988, 68976, 68943, 68969, 68941, 68938, 68939, 68940, 68942, 68975, - 68974, 69006, 69007, 68933, 68932, 68935, 68934, 68931, 68930, 68928, - 68937, 68929, 68936, 129476, 127922, 9881, 9965, 9966, 128142, 9802, - 118501, 118506, 118498, 118503, 118510, 118505, 118502, 118508, 118499, - 118504, 118497, 118507, 118509, 118496, 118500, 118511, 8782, 8785, 8762, - 4301, 4256, 4288, 4292, 4290, 4293, 4289, 4281, 4285, 4284, 4282, 4278, - 4258, 4287, 4283, 4277, 4265, 4276, 4270, 4280, 4273, 4271, 4262, 4263, - 4274, 4266, 4272, 4257, 4267, 4286, 4268, 4279, 4261, 4259, 4260, 4264, - 4269, 4275, 4295, 4291, 11565, 11520, 11552, 11556, 11554, 11557, 11553, - 11545, 11549, 11548, 11546, 11542, 11522, 11551, 11547, 11541, 11529, - 11540, 11534, 11544, 11537, 11535, 11526, 11527, 11538, 11530, 11536, - 11521, 11531, 11550, 11532, 11543, 11525, 11523, 11524, 11528, 11533, - 11539, 11559, 11555, 983955, 4323, 4349, 4346, 4304, 4329, 4333, 4332, - 4330, 4344, 4308, 4326, 4306, 4340, 4350, 4336, 4338, 4341, 4337, 4335, - 4331, 4325, 4313, 4351, 4314, 4324, 4318, 4328, 4321, 4345, 4311, 4322, - 4319, 4310, 4320, 4305, 4315, 4334, 4316, 4327, 4309, 4307, 4312, 4317, - 4343, 4339, 4342, 7357, 7354, 7312, 7337, 7341, 7340, 7338, 7352, 7316, - 7334, 7314, 7348, 7358, 7344, 7346, 7349, 7345, 7343, 7339, 7333, 7321, - 7359, 7322, 7332, 7326, 7336, 7329, 7353, 7319, 7330, 7327, 7318, 7328, - 7313, 7323, 7342, 7324, 7335, 7317, 7315, 7320, 7325, 7331, 7351, 7347, - 7350, 4347, 8368, 12307, 129502, 8503, 129754, 128103, 128714, 129426, - 11264, 11304, 11265, 11311, 11293, 11276, 11268, 11271, 11287, 11306, - 11267, 11275, 11274, 11305, 11303, 11307, 11273, 11310, 11278, 11279, - 11280, 11281, 11289, 11282, 11290, 11283, 11291, 11308, 11294, 11284, - 11298, 11300, 11301, 11285, 11309, 11292, 11266, 11269, 11296, 11295, - 11297, 11302, 11299, 11272, 11270, 11288, 11286, 11277, 11312, 11352, - 11313, 11359, 11341, 11324, 11316, 11319, 11335, 11354, 11315, 11323, - 11322, 11353, 11351, 11355, 11321, 11358, 11326, 11327, 11328, 11329, - 11337, 11330, 11338, 11331, 11339, 11356, 11342, 11332, 11346, 11348, - 11349, 11333, 11357, 11340, 11314, 11317, 11344, 11343, 11345, 11350, - 11347, 11320, 11318, 11336, 11334, 11325, 129371, 127760, 127775, 129508, - 10726, 129349, 128016, 66356, 66352, 66376, 66359, 66358, 66375, 66378, - 66369, 66365, 66368, 66357, 66370, 66360, 66372, 66373, 66367, 66374, - 66353, 66377, 66355, 66364, 66361, 66363, 66371, 66366, 66354, 66362, - 129421, 129405, 128893, 129727, 127948, 127891, 70495, 70494, 70411, - 70496, 70412, 70497, 70453, 70405, 70406, 70416, 70420, 70434, 70433, - 70439, 70438, 70432, 70431, 70437, 70436, 70409, 70410, 70407, 70408, - 70451, 70450, 70425, 70435, 70430, 70440, 70454, 70455, 70456, 70445, - 70444, 70427, 70426, 70424, 70423, 70429, 70428, 70422, 70421, 70443, - 70442, 70419, 70415, 70457, 70446, 70448, 70447, 70400, 70401, 70460, - 70461, 70402, 70493, 70477, 70403, 70487, 70462, 70472, 70476, 70465, - 70466, 70467, 70468, 70498, 70499, 70463, 70464, 70475, 70471, 70480, 96, - 127815, 10896, 10894, 10900, 10892, 10898, 10616, 10890, 10888, 10917, - 8935, 8809, 10878, 10882, 10884, 10880, 10886, 8819, 8805, 8823, 10916, - 8807, 8923, 10919, 10921, 10874, 10876, 8919, 62, 65860, 65863, 65878, - 65866, 65873, 65859, 65861, 65868, 65875, 65862, 65870, 65864, 65871, - 65867, 65874, 65857, 65869, 65876, 65856, 65858, 65865, 65877, 65872, - 65879, 65903, 65885, 65904, 65907, 65908, 65900, 65883, 65886, 65896, - 65890, 65882, 65880, 65891, 65902, 65906, 65897, 65899, 65893, 65892, - 65884, 65881, 65898, 65905, 65887, 65901, 65894, 65895, 65888, 65889, - 903, 65927, 65926, 913, 7945, 7949, 8077, 7947, 8075, 7951, 8079, 8073, - 7944, 7948, 8076, 7946, 8074, 7950, 8078, 8072, 8124, 8120, 8122, 8123, - 902, 8121, 882, 919, 7977, 7981, 8093, 7979, 8091, 7983, 8095, 8089, - 7976, 7980, 8092, 7978, 8090, 7982, 8094, 8088, 8140, 8139, 8138, 905, - 917, 7961, 7965, 7963, 7960, 7964, 7962, 8137, 8136, 904, 921, 7993, - 7999, 7997, 7995, 938, 7992, 7998, 7996, 7994, 8152, 8154, 8155, 906, - 8153, 937, 8041, 8045, 8109, 8043, 8107, 8047, 8111, 8105, 8040, 8044, - 8108, 8042, 8106, 8046, 8110, 8104, 8188, 8187, 8186, 911, 927, 8009, - 8013, 8011, 8008, 8012, 8010, 8185, 8184, 908, 929, 8172, 931, 1018, - 1015, 933, 8025, 8031, 8029, 8027, 939, 8168, 8170, 8171, 910, 8169, 886, - 934, 936, 928, 920, 932, 916, 922, 915, 935, 914, 880, 918, 923, 895, - 924, 925, 926, 1017, 1023, 1021, 1022, 975, 1012, 8129, 8174, 8173, 901, - 65915, 8190, 8159, 8158, 8157, 65920, 65919, 119325, 119331, 119332, - 119333, 119334, 119335, 119336, 119337, 119326, 119338, 119339, 119340, - 119341, 119342, 119343, 119344, 119345, 119346, 119347, 119348, 119349, - 119327, 119350, 119351, 119352, 119353, 119354, 119355, 119356, 119328, - 119357, 119358, 119359, 119360, 119361, 119329, 119330, 65933, 1008, 983, - 8125, 65922, 7466, 7464, 7462, 43877, 7465, 7463, 992, 986, 984, 990, - 988, 1011, 885, 1010, 1013, 65923, 884, 65921, 119365, 65925, 65909, - 65910, 65931, 8189, 65924, 65916, 8126, 8127, 8143, 8142, 8141, 8128, - 981, 982, 1020, 1009, 1014, 945, 8112, 8048, 8114, 7937, 7941, 8069, - 7943, 8071, 7939, 8067, 8065, 7936, 7940, 8068, 7942, 8070, 7938, 8066, - 8064, 8118, 8119, 8049, 8116, 8115, 940, 8113, 985, 883, 989, 948, 949, - 7953, 7957, 7955, 7952, 7956, 7954, 8051, 8050, 941, 951, 7969, 7973, - 8085, 7975, 8087, 7971, 8083, 8081, 7968, 7972, 8084, 7974, 8086, 7970, - 8082, 8080, 8134, 8135, 8053, 8132, 8052, 8130, 8131, 942, 953, 7985, - 7991, 7989, 7987, 970, 8151, 8147, 8146, 912, 7984, 7990, 7988, 7986, - 8150, 8144, 8054, 8055, 943, 8145, 965, 8017, 8023, 8021, 8019, 971, - 8167, 8163, 8162, 944, 8016, 8022, 8020, 8018, 8166, 8160, 8058, 8059, - 973, 8161, 954, 991, 969, 8033, 8037, 8101, 8039, 8103, 8035, 8099, 8097, - 8032, 8036, 8100, 8038, 8102, 8034, 8098, 8096, 8182, 8183, 8061, 8180, - 8060, 8178, 8179, 974, 959, 8001, 8005, 8003, 8000, 8004, 8002, 8057, - 8056, 972, 887, 966, 968, 960, 961, 8165, 8164, 993, 1019, 987, 963, - 1016, 952, 964, 962, 947, 967, 946, 881, 950, 955, 956, 957, 958, 893, - 891, 892, 7527, 7530, 7529, 7528, 7526, 65952, 65932, 65918, 65912, 977, - 65929, 65917, 65911, 900, 65914, 979, 980, 978, 8175, 119297, 119315, - 119316, 119317, 119318, 119319, 119300, 119320, 119321, 119322, 119323, - 119324, 119296, 119305, 119306, 119307, 119308, 119309, 119310, 119311, - 119312, 119313, 119314, 119298, 119299, 119301, 119302, 119303, 119304, - 890, 65913, 976, 65928, 65930, 894, 127823, 128215, 128154, 129367, - 129654, 128512, 129322, 129321, 128513, 128568, 128556, 983110, 11218, - 128151, 8370, 128130, 127928, 129454, 2693, 2694, 2704, 2708, 2722, 2721, - 2727, 2726, 2720, 2719, 2725, 2724, 2699, 2784, 2700, 2785, 2741, 2697, - 2698, 2695, 2696, 2739, 2738, 2809, 2713, 2723, 2718, 2728, 2742, 2743, - 2744, 2733, 2732, 2715, 2714, 2712, 2711, 2717, 2716, 2710, 2709, 2731, - 2730, 2745, 2734, 2736, 2735, 2703, 2707, 2814, 2689, 2812, 2815, 2813, - 2811, 2810, 2748, 2749, 2690, 2765, 2691, 2757, 2761, 2750, 2760, 2764, - 2753, 2754, 2755, 2756, 2786, 2787, 2751, 2752, 2759, 2763, 2701, 2705, - 2800, 2801, 2795, 2794, 2797, 2796, 2793, 2792, 2790, 2799, 2791, 2798, - 2768, 73092, 73082, 73056, 73057, 73064, 73067, 73091, 73090, 73081, - 73080, 73086, 73085, 73076, 73075, 73060, 73061, 73058, 73059, 73087, - 73077, 73071, 73070, 73084, 73083, 73079, 73078, 73089, 73088, 73074, - 73073, 73094, 73093, 73066, 73063, 73095, 73072, 73096, 73097, 73069, - 73068, 73110, 73109, 73098, 73105, 73108, 73101, 73102, 73099, 73100, - 73107, 73104, 73111, 73125, 73124, 73127, 73126, 73123, 73122, 73120, - 73129, 73121, 73128, 73112, 2678, 2673, 2650, 2584, 2583, 2649, 2582, - 2581, 2565, 2566, 2576, 2580, 2594, 2593, 2599, 2598, 2652, 2608, 2592, - 2591, 2597, 2596, 2569, 2570, 2567, 2568, 2611, 2610, 2585, 2595, 2590, - 2600, 2605, 2604, 2587, 2586, 2589, 2588, 2603, 2602, 2614, 2616, 2579, - 2575, 2654, 2617, 2606, 2613, 2607, 2651, 983656, 983655, 983654, 983653, - 983658, 983657, 2561, 2562, 2641, 2620, 2677, 2637, 2563, 2622, 2632, - 2636, 2625, 2626, 2623, 2624, 2635, 2631, 2672, 2674, 2676, 2667, 2666, - 2669, 2668, 2665, 2664, 2662, 2671, 2663, 2670, 2675, 90412, 90414, + 78505, 78506, 78507, 78508, 78509, 78510, 118470, 129370, 10037, 10039, + 10036, 10049, 117865, 117866, 10058, 10035, 9834, 66854, 66853, 66827, + 66826, 66833, 66832, 66821, 66837, 66836, 66835, 66842, 66841, 66824, + 66823, 66819, 66818, 66822, 66820, 66855, 66831, 66844, 66843, 66846, + 66845, 66852, 66851, 66817, 66825, 66828, 66830, 66834, 66839, 66840, + 66848, 66849, 66816, 66829, 66838, 66847, 66850, 128268, 128294, 128161, + 8961, 9191, 8712, 8946, 8953, 8947, 8952, 8950, 8949, 10969, 10194, + 128024, 128727, 69608, 69621, 69603, 69611, 69618, 69619, 69600, 69615, + 69602, 69606, 69614, 69617, 69620, 69609, 69604, 69607, 69610, 69601, + 69613, 69605, 69616, 69612, 69622, 129501, 983101, 129456, 129457, + 129459, 129458, 127995, 127996, 127997, 127998, 127999, 128453, 128454, + 128455, 129721, 128460, 128461, 8709, 10675, 10676, 10674, 10673, 128459, + 9091, 8193, 8212, 8195, 8192, 8211, 8194, 983179, 8718, 983178, 983135, + 983099, 983048, 983095, 983046, 983064, 128282, 983051, 983050, 9993, + 128388, 128233, 9094, 983067, 983100, 983049, 8926, 8927, 8925, 8924, + 8797, 8917, 61, 10865, 10867, 11072, 10609, 10723, 10724, 10926, 11257, + 11158, 10871, 10854, 10862, 8789, 10872, 8781, 8794, 10738, 10736, 10734, + 10739, 10737, 10735, 11249, 11248, 9003, 8998, 983105, 983104, 8494, + 8793, 983136, 4957, 4959, 4958, 4963, 4965, 4978, 4988, 4980, 4979, 4987, + 4985, 4982, 4981, 4986, 4984, 4983, 4968, 4966, 4964, 4960, 4999, 4998, + 4711, 4997, 43816, 43819, 43821, 43820, 43818, 43822, 43817, 4704, 4707, + 4710, 11653, 4709, 4708, 4706, 4705, 43808, 43811, 43813, 43812, 43810, + 43814, 43809, 11704, 11707, 11709, 11708, 11706, 11710, 11705, 11688, + 11691, 11693, 11692, 11690, 11694, 11689, 4904, 4907, 4910, 11664, 4909, + 4908, 4911, 4906, 4905, 4728, 4731, 4734, 11655, 4733, 4732, 4735, 4730, + 4729, 43789, 43788, 43787, 43786, 43790, 43785, 4856, 4859, 4862, 11661, + 4861, 4860, 4863, 4858, 4857, 43797, 43796, 43795, 43794, 43798, 43793, + 4848, 4851, 4854, 11660, 4853, 4852, 4855, 4850, 4849, 5003, 5002, 4943, + 5001, 4936, 4939, 4941, 4940, 4954, 4938, 4942, 4937, 4873, 124916, + 124915, 124924, 124923, 124910, 124909, 124926, 124925, 124922, 124921, + 124920, 124919, 124918, 124917, 124914, 124913, 124912, 124904, 11667, + 4895, 11670, 11669, 11668, 4888, 4891, 4893, 4892, 4890, 4894, 4889, + 4768, 4771, 4774, 11658, 4773, 4772, 4775, 4770, 4769, 4880, 4883, 4885, + 4884, 4882, 11736, 11739, 11741, 11740, 11738, 11742, 11737, 4872, 4875, + 4878, 4879, 4877, 4876, 4874, 124907, 124906, 4631, 124905, 124896, + 124899, 124901, 124900, 124898, 124902, 124897, 4624, 4627, 4629, 4628, + 4626, 4630, 4625, 4608, 4611, 4614, 4615, 4613, 4612, 4610, 4609, 4800, + 4803, 4805, 4804, 4802, 4792, 4795, 4797, 4796, 4794, 4798, 4793, 4784, + 4787, 4789, 4788, 4786, 11720, 11723, 11725, 11724, 11722, 11726, 11721, + 4776, 4779, 4782, 4783, 4781, 4780, 4778, 4777, 4995, 4994, 4639, 4993, + 4632, 4635, 4638, 11649, 4637, 4636, 4953, 4634, 4633, 4760, 4763, 4766, + 11657, 4765, 4764, 4767, 4762, 4761, 4752, 4755, 4758, 11656, 4757, 4756, + 4759, 4754, 4753, 4912, 4816, 4819, 4821, 4820, 4818, 4822, 4817, 4915, + 4918, 11665, 4917, 4916, 4919, 4914, 4913, 5007, 5006, 4951, 5005, 4944, + 4947, 4950, 11666, 4949, 4948, 4946, 4945, 4696, 4699, 4701, 4700, 4698, + 4688, 4691, 4693, 4692, 4690, 4694, 4689, 4680, 4683, 4685, 4684, 4682, + 11712, 11715, 11717, 11716, 11714, 11718, 11713, 4672, 4675, 4678, 4679, + 4677, 4676, 4674, 4673, 4648, 4651, 4654, 11650, 4653, 4652, 4655, 4952, + 4650, 4649, 4661, 4996, 5000, 4992, 5004, 4660, 4664, 4667, 4670, 11652, + 4669, 4668, 4671, 4666, 4665, 4640, 4643, 4645, 4644, 4647, 4642, 4646, + 4641, 11680, 11683, 11685, 11684, 11682, 11686, 11681, 4656, 4659, 4662, + 11651, 4663, 4658, 4657, 4896, 4899, 4902, 11663, 4901, 4900, 4903, 4898, + 4897, 43781, 43780, 43779, 43778, 43782, 43777, 4928, 4931, 4934, 4935, + 4933, 4932, 4930, 4929, 4920, 4923, 4925, 4924, 4927, 4922, 4926, 4921, + 4720, 4723, 4726, 11654, 4725, 4724, 4727, 4722, 4721, 4864, 4867, 4870, + 11662, 4869, 4868, 4871, 4866, 4865, 4616, 4619, 4622, 11648, 4621, 4620, + 4623, 4618, 4617, 4808, 4811, 4814, 4815, 4813, 4812, 4810, 4809, 4840, + 4843, 4846, 4847, 4845, 4844, 4842, 4841, 4744, 4747, 4749, 4748, 4746, + 11728, 11731, 11733, 11732, 11730, 11734, 11729, 4736, 4739, 4742, 4743, + 4741, 4740, 4738, 4737, 4832, 4835, 4837, 4836, 4839, 4834, 4838, 4833, + 11696, 11699, 11701, 11700, 11698, 11702, 11697, 4824, 4827, 4830, 11659, + 4829, 4828, 4831, 4826, 4825, 4712, 4715, 4717, 4716, 4719, 4714, 4718, + 4713, 5009, 5016, 5012, 5015, 5013, 5017, 5010, 5011, 5014, 5008, 4973, + 4972, 4975, 4974, 4971, 4970, 4977, 4969, 4976, 4962, 4967, 4961, 983096, + 983047, 127984, 127972, 8352, 8364, 118472, 8455, 8265, 33, 8761, 118269, + 118270, 118271, 118274, 128529, 128942, 128954, 128948, 128905, 128915, + 128935, 128125, 1781, 1780, 1783, 1782, 1779, 1778, 1776, 1785, 1777, + 1784, 128065, 128083, 128064, 128231, 9167, 127794, 983180, 128523, + 128561, 129312, 128531, 129301, 128567, 129488, 128582, 128558, 129326, + 128560, 129762, 129320, 128581, 129395, 129763, 129402, 128539, 128540, + 128541, 128514, 129298, 129769, 129323, 128580, 128548, 129764, 129396, + 128566, 129318, 128134, 128536, 129401, 8507, 127981, 10540, 10543, 9950, + 127810, 129478, 128439, 128224, 128106, 9771, 127877, 129498, 128552, + 129718, 170, 9792, 127905, 9972, 129338, 8210, 8199, 129775, 128193, + 128452, 983107, 128253, 127902, 129734, 10765, 128293, 128658, 129519, + 127879, 127878, 129512, 9789, 127771, 127763, 8296, 129351, 128031, + 127907, 9673, 127845, 128074, 8281, 11821, 127953, 129407, 129747, 9189, + 117910, 9971, 129449, 128170, 9884, 118466, 10086, 9880, 8277, 127924, + 128190, 128563, 129672, 129712, 128760, 117834, 117835, 118011, 129359, + 128389, 127787, 127745, 129709, 128448, 129462, 128099, 127860, 127869, + 11792, 10972, 129376, 118476, 983071, 8704, 8873, 10021, 11156, 8280, + 8283, 10019, 127808, 10018, 128966, 8732, 8197, 9970, 129749, 129418, + 8260, 8543, 128444, 128446, 128445, 118458, 127839, 8355, 129398, 10156, + 128037, 8994, 128550, 128056, 127844, 127773, 127765, 10199, 9608, 46, + 65342, 65312, 65292, 65306, 65504, 65375, 65371, 65288, 65339, 65308, + 65313, 65314, 65315, 65316, 65317, 65318, 65319, 65320, 65321, 65322, + 65323, 65324, 65325, 65326, 65327, 65328, 65329, 65330, 65331, 65332, + 65333, 65334, 65335, 65336, 65337, 65338, 65345, 65346, 65347, 65348, + 65349, 65350, 65351, 65352, 65353, 65354, 65355, 65356, 65357, 65358, + 65359, 65360, 65361, 65362, 65363, 65364, 65365, 65366, 65367, 65368, + 65369, 65370, 65343, 65506, 65283, 65505, 65285, 65291, 65376, 65373, + 65289, 65341, 65340, 65307, 65295, 65509, 65507, 65287, 65286, 65290, + 65284, 65301, 65300, 65303, 65302, 65299, 65298, 65296, 65305, 65297, + 65304, 65309, 65281, 65344, 65310, 65293, 65282, 65311, 65510, 65374, + 65294, 65508, 65372, 8289, 9905, 118280, 9981, 9179, 983215, 983216, + 983217, 983219, 983108, 983236, 983072, 68972, 68971, 68973, 68970, + 68964, 68965, 68959, 68961, 68948, 68945, 68954, 68960, 68953, 68963, + 68949, 68947, 68952, 68946, 68962, 68958, 68950, 68957, 68951, 68955, + 68956, 68944, 68996, 68997, 68991, 68993, 68980, 68977, 68986, 68992, + 68985, 68995, 68981, 68979, 68984, 68978, 68994, 68990, 68982, 68989, + 68983, 68987, 68988, 68976, 68943, 68969, 68941, 68938, 68939, 68940, + 68942, 68975, 68974, 69006, 69007, 68933, 68932, 68935, 68934, 68931, + 68930, 68928, 68937, 68929, 68936, 129476, 127922, 9881, 9965, 9966, + 128142, 9802, 118501, 118506, 118498, 118503, 118510, 118505, 118502, + 118508, 118499, 118504, 118497, 118507, 118509, 118496, 118500, 118511, + 8782, 8785, 8762, 4301, 4256, 4288, 4292, 4290, 4293, 4289, 4281, 4285, + 4284, 4282, 4278, 4258, 4287, 4283, 4277, 4265, 4276, 4270, 4280, 4273, + 4271, 4262, 4263, 4274, 4266, 4272, 4257, 4267, 4286, 4268, 4279, 4261, + 4259, 4260, 4264, 4269, 4275, 4295, 4291, 11565, 11520, 11552, 11556, + 11554, 11557, 11553, 11545, 11549, 11548, 11546, 11542, 11522, 11551, + 11547, 11541, 11529, 11540, 11534, 11544, 11537, 11535, 11526, 11527, + 11538, 11530, 11536, 11521, 11531, 11550, 11532, 11543, 11525, 11523, + 11524, 11528, 11533, 11539, 11559, 11555, 983955, 4323, 4349, 4346, 4304, + 4329, 4333, 4332, 4330, 4344, 4308, 4326, 4306, 4340, 4350, 4336, 4338, + 4341, 4337, 4335, 4331, 4325, 4313, 4351, 4314, 4324, 4318, 4328, 4321, + 4345, 4311, 4322, 4319, 4310, 4320, 4305, 4315, 4334, 4316, 4327, 4309, + 4307, 4312, 4317, 4343, 4339, 4342, 7357, 7354, 7312, 7337, 7341, 7340, + 7338, 7352, 7316, 7334, 7314, 7348, 7358, 7344, 7346, 7349, 7345, 7343, + 7339, 7333, 7321, 7359, 7322, 7332, 7326, 7336, 7329, 7353, 7319, 7330, + 7327, 7318, 7328, 7313, 7323, 7342, 7324, 7335, 7317, 7315, 7320, 7325, + 7331, 7351, 7347, 7350, 4347, 8368, 12307, 129502, 8503, 129754, 128103, + 128714, 129426, 11264, 11304, 11265, 11311, 11293, 11276, 11268, 11271, + 11287, 11306, 11267, 11275, 11274, 11305, 11303, 11307, 11273, 11310, + 11278, 11279, 11280, 11281, 11289, 11282, 11290, 11283, 11291, 11308, + 11294, 11284, 11298, 11300, 11301, 11285, 11309, 11292, 11266, 11269, + 11296, 11295, 11297, 11302, 11299, 11272, 11270, 11288, 11286, 11277, + 11312, 11352, 11313, 11359, 11341, 11324, 11316, 11319, 11335, 11354, + 11315, 11323, 11322, 11353, 11351, 11355, 11321, 11358, 11326, 11327, + 11328, 11329, 11337, 11330, 11338, 11331, 11339, 11356, 11342, 11332, + 11346, 11348, 11349, 11333, 11357, 11340, 11314, 11317, 11344, 11343, + 11345, 11350, 11347, 11320, 11318, 11336, 11334, 11325, 129371, 127760, + 127775, 129508, 10726, 129349, 128016, 66356, 66352, 66376, 66359, 66358, + 66375, 66378, 66369, 66365, 66368, 66357, 66370, 66360, 66372, 66373, + 66367, 66374, 66353, 66377, 66355, 66364, 66361, 66363, 66371, 66366, + 66354, 66362, 129421, 129405, 128893, 129727, 127948, 127891, 70495, + 70494, 70411, 70496, 70412, 70497, 70453, 70405, 70406, 70416, 70420, + 70434, 70433, 70439, 70438, 70432, 70431, 70437, 70436, 70409, 70410, + 70407, 70408, 70451, 70450, 70425, 70435, 70430, 70440, 70454, 70455, + 70456, 70445, 70444, 70427, 70426, 70424, 70423, 70429, 70428, 70422, + 70421, 70443, 70442, 70419, 70415, 70457, 70446, 70448, 70447, 70400, + 70401, 70460, 70461, 70402, 70493, 70477, 70403, 70487, 70462, 70472, + 70476, 70465, 70466, 70467, 70468, 70498, 70499, 70463, 70464, 70475, + 70471, 70480, 96, 127815, 10896, 10894, 10900, 10892, 10898, 10616, + 10890, 10888, 10917, 8935, 8809, 10878, 10882, 10884, 10880, 10886, 8819, + 8805, 8823, 10916, 8807, 8923, 10919, 10921, 10874, 10876, 8919, 62, + 65860, 65863, 65878, 65866, 65873, 65859, 65861, 65868, 65875, 65862, + 65870, 65864, 65871, 65867, 65874, 65857, 65869, 65876, 65856, 65858, + 65865, 65877, 65872, 65879, 65903, 65885, 65904, 65907, 65908, 65900, + 65883, 65886, 65896, 65890, 65882, 65880, 65891, 65902, 65906, 65897, + 65899, 65893, 65892, 65884, 65881, 65898, 65905, 65887, 65901, 65894, + 65895, 65888, 65889, 903, 65927, 65926, 913, 7945, 7949, 8077, 7947, + 8075, 7951, 8079, 8073, 7944, 7948, 8076, 7946, 8074, 7950, 8078, 8072, + 8124, 8120, 8122, 8123, 902, 8121, 882, 919, 7977, 7981, 8093, 7979, + 8091, 7983, 8095, 8089, 7976, 7980, 8092, 7978, 8090, 7982, 8094, 8088, + 8140, 8139, 8138, 905, 917, 7961, 7965, 7963, 7960, 7964, 7962, 8137, + 8136, 904, 921, 7993, 7999, 7997, 7995, 938, 7992, 7998, 7996, 7994, + 8152, 8154, 8155, 906, 8153, 937, 8041, 8045, 8109, 8043, 8107, 8047, + 8111, 8105, 8040, 8044, 8108, 8042, 8106, 8046, 8110, 8104, 8188, 8187, + 8186, 911, 927, 8009, 8013, 8011, 8008, 8012, 8010, 8185, 8184, 908, 929, + 8172, 931, 1018, 1015, 933, 8025, 8031, 8029, 8027, 939, 8168, 8170, + 8171, 910, 8169, 886, 934, 936, 928, 920, 932, 916, 922, 915, 935, 914, + 880, 918, 923, 895, 924, 925, 926, 1017, 1023, 1021, 1022, 975, 1012, + 8129, 8174, 8173, 901, 65915, 8190, 8159, 8158, 8157, 65920, 65919, + 119325, 119331, 119332, 119333, 119334, 119335, 119336, 119337, 119326, + 119338, 119339, 119340, 119341, 119342, 119343, 119344, 119345, 119346, + 119347, 119348, 119349, 119327, 119350, 119351, 119352, 119353, 119354, + 119355, 119356, 119328, 119357, 119358, 119359, 119360, 119361, 119329, + 119330, 65933, 1008, 983, 8125, 65922, 7466, 7464, 7462, 43877, 7465, + 7463, 992, 986, 984, 990, 988, 1011, 885, 1010, 1013, 65923, 884, 65921, + 119365, 65925, 65909, 65910, 65931, 8189, 65924, 65916, 8126, 8127, 8143, + 8142, 8141, 8128, 981, 982, 1020, 1009, 1014, 945, 8112, 8048, 8114, + 7937, 7941, 8069, 7943, 8071, 7939, 8067, 8065, 7936, 7940, 8068, 7942, + 8070, 7938, 8066, 8064, 8118, 8119, 8049, 8116, 8115, 940, 8113, 985, + 883, 989, 948, 949, 7953, 7957, 7955, 7952, 7956, 7954, 8051, 8050, 941, + 951, 7969, 7973, 8085, 7975, 8087, 7971, 8083, 8081, 7968, 7972, 8084, + 7974, 8086, 7970, 8082, 8080, 8134, 8135, 8053, 8132, 8052, 8130, 8131, + 942, 953, 7985, 7991, 7989, 7987, 970, 8151, 8147, 8146, 912, 7984, 7990, + 7988, 7986, 8150, 8144, 8054, 8055, 943, 8145, 965, 8017, 8023, 8021, + 8019, 971, 8167, 8163, 8162, 944, 8016, 8022, 8020, 8018, 8166, 8160, + 8058, 8059, 973, 8161, 954, 991, 969, 8033, 8037, 8101, 8039, 8103, 8035, + 8099, 8097, 8032, 8036, 8100, 8038, 8102, 8034, 8098, 8096, 8182, 8183, + 8061, 8180, 8060, 8178, 8179, 974, 959, 8001, 8005, 8003, 8000, 8004, + 8002, 8057, 8056, 972, 887, 966, 968, 960, 961, 8165, 8164, 993, 1019, + 987, 963, 1016, 952, 964, 962, 947, 967, 946, 881, 950, 955, 956, 957, + 958, 893, 891, 892, 7527, 7530, 7529, 7528, 7526, 65952, 65932, 65918, + 65912, 977, 65929, 65917, 65911, 900, 65914, 979, 980, 978, 8175, 119297, + 119315, 119316, 119317, 119318, 119319, 119300, 119320, 119321, 119322, + 119323, 119324, 119296, 119305, 119306, 119307, 119308, 119309, 119310, + 119311, 119312, 119313, 119314, 119298, 119299, 119301, 119302, 119303, + 119304, 890, 65913, 976, 65928, 65930, 894, 127823, 128215, 128154, + 129367, 129654, 128512, 129322, 129321, 128513, 128568, 128556, 983110, + 11218, 128151, 8370, 128130, 127928, 129454, 2693, 2694, 2704, 2708, + 2722, 2721, 2727, 2726, 2720, 2719, 2725, 2724, 2699, 2784, 2700, 2785, + 2741, 2697, 2698, 2695, 2696, 2739, 2738, 2809, 2713, 2723, 2718, 2728, + 2742, 2743, 2744, 2733, 2732, 2715, 2714, 2712, 2711, 2717, 2716, 2710, + 2709, 2731, 2730, 2745, 2734, 2736, 2735, 2703, 2707, 2814, 2689, 2812, + 2815, 2813, 2811, 2810, 2748, 2749, 2690, 2765, 2691, 2757, 2761, 2750, + 2760, 2764, 2753, 2754, 2755, 2756, 2786, 2787, 2751, 2752, 2759, 2763, + 2701, 2705, 2800, 2801, 2795, 2794, 2797, 2796, 2793, 2792, 2790, 2799, + 2791, 2798, 2768, 73092, 73082, 73056, 73057, 73064, 73067, 73091, 73090, + 73081, 73080, 73086, 73085, 73076, 73075, 73060, 73061, 73058, 73059, + 73087, 73077, 73071, 73070, 73084, 73083, 73079, 73078, 73089, 73088, + 73074, 73073, 73094, 73093, 73066, 73063, 73095, 73072, 73096, 73097, + 73069, 73068, 73110, 73109, 73098, 73105, 73108, 73101, 73102, 73099, + 73100, 73107, 73104, 73111, 73125, 73124, 73127, 73126, 73123, 73122, + 73120, 73129, 73121, 73128, 73112, 2678, 2673, 2650, 2584, 2583, 2649, + 2582, 2581, 2565, 2566, 2576, 2580, 2594, 2593, 2599, 2598, 2652, 2608, + 2592, 2591, 2597, 2596, 2569, 2570, 2567, 2568, 2611, 2610, 2585, 2595, + 2590, 2600, 2605, 2604, 2587, 2586, 2589, 2588, 2603, 2602, 2614, 2616, + 2579, 2575, 2654, 2617, 2606, 2613, 2607, 2651, 983656, 983655, 983654, + 983653, 983658, 983657, 2561, 2562, 2641, 2620, 2677, 2637, 2563, 2622, + 2632, 2636, 2625, 2626, 2623, 2624, 2635, 2631, 2672, 2674, 2676, 2667, + 2666, 2669, 2668, 2665, 2664, 2662, 2671, 2663, 2670, 2675, 90412, 90414, 90411, 90410, 90373, 90388, 90382, 90381, 90387, 90386, 90380, 90379, 90385, 90384, 90392, 90391, 90375, 90374, 90372, 90371, 90377, 90376, 90370, 90369, 90390, 90389, 90378, 90396, 90393, 90395, 90397, 90383, @@ -11471,1008 +10935,911 @@ static const unsigned int dawg_pos_to_codepoint[] = { 68136, 68138, 68137, 68144, 68096, 68165, 68164, 68166, 68167, 68179, 68178, 68183, 68176, 68182, 68181, 68184, 68180, 68177, 68152, 68153, 68109, 68154, 68111, 68110, 68099, 68101, 68097, 68102, 68098, 68108, - 68159, 68168, 129711, 101120, 101121, 101122, 101123, 101124, 101125, - 101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134, - 101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143, - 101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152, - 101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161, - 101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170, - 101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179, - 101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188, - 101189, 101190, 101191, 101192, 101193, 101194, 101195, 101196, 101197, - 101198, 101199, 101200, 101201, 101202, 101203, 101204, 101205, 101206, - 101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215, - 101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224, - 101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233, - 101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242, - 101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251, - 101252, 101253, 101254, 101255, 101256, 101257, 101258, 101259, 101260, - 101261, 101262, 101263, 101264, 101265, 101266, 101267, 101268, 101269, - 101270, 101271, 101272, 101273, 101274, 101275, 101276, 101277, 101278, - 101279, 101280, 101281, 101282, 101283, 101284, 101285, 101286, 101287, - 101288, 101289, 101290, 101291, 101292, 101293, 101294, 101295, 101296, - 101297, 101298, 101299, 101300, 101301, 101302, 101303, 101304, 101305, - 101306, 101307, 101308, 101309, 101310, 101311, 101312, 101313, 101314, - 101315, 101316, 101317, 101318, 101319, 101320, 101321, 101322, 101323, - 101324, 101325, 101326, 101327, 101328, 101329, 101330, 101331, 101332, - 101333, 101334, 101335, 101336, 101337, 101338, 101339, 101340, 101341, - 101342, 101343, 101344, 101345, 101346, 101347, 101348, 101349, 101350, - 101351, 101352, 101353, 101354, 101355, 101356, 101357, 101358, 101359, - 101360, 101361, 101362, 101363, 101364, 101365, 101366, 101367, 101368, - 101369, 101370, 101371, 101372, 101373, 101374, 101375, 101584, 101585, - 101586, 101587, 101588, 101589, 101376, 101377, 101378, 101379, 101380, - 101381, 101382, 101383, 101384, 101385, 101386, 101387, 101388, 101389, - 101390, 101391, 101392, 101393, 101394, 101395, 101396, 101397, 101398, - 101399, 101400, 101401, 101402, 101403, 101404, 101405, 101406, 101407, - 101408, 101409, 101410, 101411, 101412, 101413, 101414, 101415, 101416, - 101417, 101418, 101419, 101420, 101421, 101422, 101423, 101424, 101425, - 101426, 101427, 101428, 101429, 101430, 101431, 101432, 101433, 101434, - 101435, 101436, 101437, 101438, 101439, 101440, 101441, 101442, 101443, - 101444, 101445, 101446, 101447, 101448, 101449, 101450, 101451, 101452, - 101453, 101454, 101455, 101456, 101457, 101458, 101459, 101460, 101461, - 101462, 101463, 101464, 101465, 101466, 101467, 101468, 101469, 101470, - 101471, 101472, 101473, 101474, 101475, 101476, 101477, 101478, 101479, - 101480, 101481, 101482, 101483, 101484, 101485, 101486, 101487, 101488, - 101489, 101490, 101491, 101492, 101493, 101494, 101495, 101496, 101497, - 101498, 101499, 101500, 101501, 101502, 101503, 101504, 101505, 101506, - 101507, 101508, 101509, 101510, 101511, 101512, 101513, 101514, 101515, - 101516, 101517, 101518, 101519, 101520, 101521, 101522, 101523, 101524, - 101525, 101526, 101527, 101528, 101529, 101530, 101531, 101532, 101533, - 101534, 101535, 101536, 101537, 101538, 101539, 101540, 101541, 101542, - 101543, 101544, 101545, 101546, 101547, 101548, 101549, 101550, 101551, - 101552, 101553, 101554, 101555, 101556, 101557, 101558, 101559, 101560, - 101561, 101562, 101563, 101564, 101565, 101566, 101567, 101568, 101569, - 101570, 101571, 101572, 101573, 101574, 101575, 101576, 101577, 101578, - 101579, 101580, 101581, 101582, 101583, 101631, 94180, 983960, 983965, - 983970, 983975, 983962, 983964, 983961, 983963, 983957, 983959, 983956, - 983958, 983977, 983979, 983978, 983972, 983974, 983967, 983969, 983971, - 983973, 983966, 983968, 983989, 983983, 983985, 983986, 983987, 983980, - 983982, 983984, 983981, 983976, 983988, 6107, 6052, 6064, 6051, 6067, - 6066, 6065, 6055, 6057, 6058, 6056, 6053, 6054, 6063, 983994, 983991, - 983992, 983993, 6061, 6062, 6059, 6060, 6022, 6024, 6021, 6023, 6017, - 6019, 6016, 6018, 6020, 6030, 6025, 6035, 6037, 6039, 6038, 6046, 6045, - 6047, 6032, 6034, 6027, 6029, 6031, 6033, 6026, 6028, 6049, 6043, 6040, - 6042, 6044, 6041, 6036, 6048, 6050, 6108, 6109, 6095, 6096, 6099, 6091, - 6101, 6104, 6102, 6098, 6094, 6100, 6106, 6092, 6087, 6090, 6093, 6103, - 6105, 6088, 6086, 6089, 6097, 6652, 6636, 6655, 6639, 6653, 6637, 6654, - 6638, 6651, 6635, 6650, 6634, 6133, 6137, 6136, 6134, 6135, 6130, 6132, - 6131, 6129, 6128, 6624, 6648, 6632, 6649, 6633, 6647, 6631, 6646, 6630, - 6645, 6629, 6642, 6626, 6640, 6643, 6627, 6644, 6628, 6641, 6625, 6069, - 6068, 6070, 983996, 6082, 6083, 6085, 6071, 6080, 6072, 6078, 983995, - 6084, 6073, 6079, 6074, 983990, 6075, 6077, 6076, 6081, 6117, 6116, 6119, - 6118, 6115, 6114, 6112, 6121, 6113, 6120, 70204, 70201, 70200, 70208, - 70185, 70178, 70179, 70177, 70155, 70156, 70154, 70172, 70167, 70166, - 70173, 70171, 70161, 70160, 70144, 70145, 70149, 70151, 70165, 70164, - 70170, 70169, 70187, 70183, 70157, 70168, 70163, 70174, 70159, 70158, - 70153, 70152, 70176, 70175, 70186, 70180, 70207, 70182, 70184, 70181, - 70148, 70146, 70150, 70147, 70199, 70206, 70198, 70197, 70196, 70203, - 70209, 70188, 70193, 70195, 70189, 70190, 70192, 70194, 70191, 70202, - 70205, 70357, 70358, 70356, 70333, 70334, 70332, 70345, 70347, 70344, - 70352, 70351, 70340, 70339, 70338, 70320, 70321, 70327, 70329, 70346, - 70361, 70343, 70342, 70350, 70349, 70324, 70325, 70322, 70323, 70335, - 70348, 70341, 70353, 70337, 70336, 70331, 70330, 70355, 70354, 70364, - 70365, 70366, 70362, 70359, 70363, 70360, 70326, 70328, 70377, 70378, - 70367, 70368, 70374, 70376, 70371, 70372, 70369, 70370, 70373, 70375, - 70389, 70388, 70391, 70390, 70387, 70386, 70384, 70393, 70385, 70392, - 93521, 93520, 93525, 93524, 93519, 93518, 93523, 93522, 93512, 93517, - 93526, 93530, 93529, 93514, 93513, 93511, 93510, 93516, 93515, 93509, - 93508, 93528, 93527, 93537, 93536, 93538, 93534, 93531, 93533, 93535, - 93532, 93507, 93505, 93549, 93548, 93504, 93547, 93506, 93539, 93544, - 93546, 93541, 93542, 93543, 93540, 93545, 93551, 93550, 93557, 93556, - 93559, 93558, 93555, 93554, 93552, 93561, 93553, 93560, 128143, 128535, - 128537, 128538, 128573, 128139, 129373, 8365, 128088, 129665, 129486, - 129698, 12927, 128040, 11235, 129404, 127991, 129357, 128030, 129692, - 128728, 917505, 3805, 3804, 983206, 983207, 3743, 3741, 3807, 3806, 3714, - 3716, 3713, 983209, 3747, 3749, 3730, 3729, 3736, 3728, 3727, 3731, 3726, - 3744, 3721, 3718, 3724, 3756, 3740, 3742, 3739, 3752, 3753, 3754, 3722, - 3734, 3735, 3733, 3755, 3758, 3719, 3725, 3737, 3738, 3720, 3732, 3745, - 983208, 3751, 3746, 3757, 3773, 3772, 3770, 3785, 3786, 3787, 3784, 3760, - 3762, 3780, 3763, 3779, 3761, 3771, 3766, 3767, 3768, 3769, 3776, 3777, - 3764, 3765, 3778, 3782, 3790, 3759, 3797, 3796, 3799, 3798, 3795, 3794, - 3792, 3801, 3793, 3800, 3788, 3789, 128996, 129003, 128309, 128311, - 128998, 128994, 129001, 68413, 68415, 128992, 128310, 128999, 68412, - 68414, 118324, 118319, 118322, 118323, 118303, 118304, 118336, 118331, - 118328, 118315, 118314, 118306, 118316, 118318, 118334, 118335, 118333, - 118327, 118339, 118341, 118342, 118340, 118320, 118338, 118332, 118302, - 118325, 118309, 118317, 118307, 118313, 118326, 118329, 118312, 118330, - 118352, 118348, 118351, 118350, 118347, 118344, 118345, 118343, 118349, - 118346, 118305, 118321, 118301, 118299, 118298, 118310, 118311, 118308, - 118300, 118337, 11004, 10201, 10200, 10782, 128995, 129002, 128308, - 128997, 128993, 129000, 9711, 10923, 10925, 8382, 9790, 127772, 127767, - 65, 258, 7858, 7856, 7854, 7862, 7860, 550, 480, 7840, 512, 196, 478, - 197, 506, 7680, 256, 983564, 194, 7848, 7846, 7844, 7852, 7850, 461, - 7842, 260, 983590, 983592, 192, 193, 514, 195, 570, 198, 508, 482, 42946, - 393, 11373, 42808, 42810, 42802, 42804, 42806, 42812, 66, 386, 42902, - 7686, 7684, 7682, 385, 579, 42822, 42932, 67, 199, 7688, 264, 268, 262, - 42948, 391, 42898, 266, 571, 42960, 42796, 42798, 42862, 42931, 68, 498, - 453, 42951, 272, 7696, 7698, 270, 395, 7694, 7692, 7690, 394, 497, 452, - 42964, 42962, 69, 552, 7708, 202, 983586, 7874, 7872, 7870, 983584, 7878, - 7876, 7704, 282, 278, 983598, 983600, 7864, 516, 203, 7868, 7706, 274, - 7700, 7702, 983570, 983572, 983574, 7866, 280, 983594, 983596, 200, 201, - 518, 276, 582, 439, 494, 440, 42786, 42788, 42858, 208, 425, 330, 70, - 401, 7710, 42904, 71, 290, 284, 486, 500, 286, 7712, 42912, 403, 288, - 484, 577, 42938, 42940, 42942, 404, 983199, 72, 7722, 7720, 292, 542, - 7718, 11367, 7716, 7714, 42922, 294, 11381, 502, 42790, 73, 520, 7882, - 304, 207, 7726, 206, 463, 298, 983566, 296, 7724, 7880, 302, 983604, - 983606, 204, 205, 522, 300, 407, 42873, 42875, 42877, 42882, 42884, - 42886, 406, 42860, 74, 308, 42930, 983608, 584, 75, 310, 488, 42818, - 11369, 7730, 42816, 42820, 7728, 7732, 42914, 408, 76, 42925, 573, 11360, - 7734, 7736, 11362, 319, 456, 321, 315, 7740, 317, 42824, 313, 7738, - 983610, 42970, 42972, 455, 77, 7742, 7746, 7744, 983612, 11374, 7930, - 7932, 42966, 78, 325, 7754, 327, 459, 544, 7752, 413, 504, 323, 42896, - 7750, 7748, 42916, 209, 458, 79, 42826, 42828, 332, 7760, 7762, 415, 212, - 7892, 7890, 7888, 7896, 7894, 465, 214, 554, 558, 560, 7884, 524, 336, - 490, 492, 216, 510, 213, 7758, 7756, 556, 983576, 983578, 983580, 416, - 7902, 7900, 7898, 7906, 7904, 7886, 210, 211, 526, 334, 42944, 400, 390, - 42934, 418, 42830, 546, 80, 42834, 11363, 42832, 42836, 7764, 420, 7766, - 42958, 81, 42840, 42838, 82, 342, 344, 7770, 7772, 7768, 528, 983614, - 11364, 340, 7774, 530, 42918, 588, 42842, 42997, 42923, 42814, 398, - 42844, 42955, 83, 352, 7782, 350, 536, 348, 346, 7780, 7778, 7784, 7776, - 42956, 42953, 11390, 983582, 42920, 42949, 586, 42926, 42891, 7838, - 42968, 42924, 399, 84, 354, 7792, 538, 356, 574, 7788, 7786, 7790, 430, - 428, 358, 42878, 11375, 11376, 42893, 42928, 42880, 412, 42929, 581, 222, - 42852, 42854, 388, 444, 423, 42794, 42792, 85, 219, 7798, 467, 220, 473, - 475, 471, 469, 7794, 532, 368, 7908, 431, 7916, 7914, 7912, 7920, 7918, - 7910, 362, 7802, 983568, 983620, 983622, 370, 983616, 983618, 360, 7800, - 7796, 217, 218, 534, 364, 366, 42936, 580, 433, 86, 42846, 7806, 7804, - 434, 42850, 42906, 42908, 42910, 42856, 42848, 87, 372, 7812, 7816, 7814, - 7808, 7810, 11378, 503, 88, 7820, 7818, 89, 374, 376, 7924, 7822, 7922, - 435, 7926, 7934, 221, 562, 7928, 590, 540, 90, 7824, 381, 377, 11371, - 7826, 379, 7828, 11391, 437, 42950, 548, 306, 338, 10013, 43007, 43005, - 43006, 43003, 43004, 42999, 450, 7461, 684, 664, 685, 662, 122638, 446, - 661, 426, 674, 451, 122634, 7431, 7430, 7459, 618, 641, 671, 122628, - 7436, 7439, 7440, 630, 7445, 640, 7438, 7449, 43846, 42870, 7451, 11387, - 122626, 122640, 43002, 7450, 665, 7427, 610, 667, 7424, 7425, 7428, 7429, - 42800, 668, 7434, 7435, 7437, 628, 7448, 42927, 42801, 7452, 7456, 7457, - 655, 7458, 663, 122639, 42895, 443, 447, 448, 449, 660, 673, 7460, 422, - 7547, 7550, 97, 259, 7859, 7857, 7855, 7863, 7861, 551, 481, 7841, 513, - 228, 479, 229, 507, 7681, 7834, 7567, 257, 983565, 226, 7849, 7847, 7845, - 7853, 7851, 462, 7843, 261, 983591, 983593, 224, 225, 515, 227, 11365, - 43825, 230, 983624, 509, 483, 42947, 593, 7568, 42809, 42811, 42803, - 42805, 42807, 42813, 98, 387, 42903, 7687, 7532, 7552, 7685, 7683, 595, - 384, 43824, 43827, 629, 43853, 43837, 43838, 43826, 42823, 7447, 42933, - 99, 231, 7689, 265, 597, 269, 263, 42900, 122653, 392, 42899, 267, 572, - 43859, 43860, 43861, 42961, 666, 631, 606, 42797, 42799, 42863, 100, - 42952, 273, 396, 598, 7697, 7699, 545, 271, 122661, 7533, 7695, 599, - 7569, 7553, 7693, 7691, 676, 122642, 122649, 7839, 567, 607, 644, 305, - 42965, 43848, 43850, 42963, 499, 454, 675, 677, 43878, 568, 42865, 101, - 553, 7709, 234, 983587, 7875, 7873, 7871, 983585, 7879, 7877, 7705, 283, - 279, 983599, 983601, 7865, 517, 235, 11384, 7869, 7707, 275, 7701, 7703, - 983571, 983573, 983575, 43828, 7867, 281, 983595, 983597, 232, 233, 519, - 277, 7570, 583, 42787, 42789, 331, 43836, 122644, 643, 122635, 122636, - 7563, 646, 7576, 658, 441, 659, 495, 122648, 7578, 442, 42859, 240, 102, - 7534, 7554, 402, 7711, 42905, 681, 122624, 103, 291, 285, 487, 501, 287, - 7713, 7555, 42913, 608, 289, 485, 578, 42939, 42941, 42943, 611, 983200, - 104, 7723, 7721, 293, 543, 7719, 11368, 7717, 7715, 7830, 42901, 614, - 295, 11382, 983631, 983632, 42791, 615, 405, 105, 238, 464, 239, 7727, - 983602, 983588, 983603, 7883, 521, 299, 983567, 303, 983605, 983607, 297, - 7725, 7881, 236, 237, 523, 301, 616, 122650, 7574, 42874, 42876, 7545, - 42883, 42885, 42887, 43876, 43840, 617, 7548, 43873, 42861, 106, 309, - 669, 496, 983609, 585, 107, 311, 489, 42819, 11370, 7731, 42817, 42821, - 7729, 7733, 7556, 42915, 409, 312, 108, 620, 122643, 410, 316, 7741, 564, - 318, 7735, 7737, 43832, 11361, 619, 43833, 320, 122662, 42825, 314, 7739, - 43831, 621, 42894, 122641, 7557, 983611, 322, 42971, 411, 622, 122629, - 43829, 383, 7836, 7835, 7837, 682, 683, 42866, 457, 109, 7743, 43834, - 7535, 7558, 7747, 7745, 983613, 625, 7931, 7933, 42967, 42867, 110, 326, - 7755, 43835, 565, 328, 414, 7753, 626, 122663, 7536, 505, 324, 42897, - 7751, 7749, 7559, 627, 42917, 241, 329, 983589, 42868, 460, 111, 244, - 7893, 7891, 7889, 7897, 7895, 466, 246, 555, 559, 561, 7885, 525, 337, - 42827, 11386, 42829, 333, 7761, 7763, 491, 493, 248, 511, 245, 7759, - 7757, 557, 983577, 983579, 983581, 417, 7903, 7901, 7899, 7907, 7905, - 7887, 242, 243, 527, 335, 122651, 42945, 596, 983625, 983626, 7575, - 43839, 43874, 603, 7571, 42935, 419, 42831, 547, 112, 42835, 7549, 42833, - 42837, 7765, 7537, 7560, 421, 7767, 42959, 632, 113, 42841, 672, 587, - 42839, 569, 114, 343, 43849, 345, 7771, 7773, 7769, 529, 638, 7539, - 122646, 7775, 636, 983615, 637, 122664, 7538, 341, 531, 7561, 42919, 589, - 43847, 42843, 42998, 604, 7572, 605, 639, 122625, 600, 122631, 8580, - 42815, 122627, 42869, 42845, 612, 115, 347, 7781, 353, 7783, 351, 537, - 349, 122654, 7779, 7785, 7777, 42957, 42954, 575, 983583, 122665, 7540, - 7562, 42921, 642, 42892, 43872, 601, 983629, 983630, 7573, 602, 43851, - 43852, 609, 43830, 223, 7441, 7442, 7443, 7455, 7454, 7453, 42969, 645, - 43845, 116, 355, 7793, 539, 566, 357, 11366, 7831, 7789, 7787, 122666, - 7541, 7791, 427, 429, 122633, 648, 359, 679, 122647, 122652, 7546, 254, - 42853, 42855, 389, 445, 424, 7446, 42795, 397, 613, 686, 687, 7433, - 42879, 7444, 43842, 43841, 43843, 43844, 7432, 633, 43880, 122645, 634, - 122632, 11385, 635, 647, 122637, 652, 983627, 983628, 592, 594, 7426, - 623, 624, 654, 122630, 43857, 477, 7543, 670, 42881, 653, 42871, 680, - 678, 43879, 11383, 42793, 117, 649, 43855, 251, 7799, 468, 252, 474, 476, - 472, 470, 7795, 533, 369, 7909, 432, 7917, 7915, 7913, 7921, 7919, 7911, - 363, 7803, 983569, 983621, 983623, 371, 983617, 983619, 7577, 367, 361, - 7801, 7797, 249, 43854, 42937, 250, 535, 365, 43858, 650, 7551, 7531, - 43856, 42872, 43875, 118, 42847, 7807, 7564, 11380, 11377, 7805, 651, - 42851, 42907, 42909, 42911, 42857, 42849, 119, 373, 7813, 7817, 7815, - 7809, 7811, 7832, 11379, 120, 7821, 7819, 43863, 43864, 43865, 43862, - 7565, 121, 375, 255, 7925, 7823, 7923, 436, 7927, 7935, 43866, 591, 253, - 563, 7929, 7833, 541, 122, 378, 7825, 657, 382, 11372, 7827, 380, 7829, - 576, 438, 7542, 7566, 656, 549, 64256, 64259, 64260, 64257, 64258, 307, - 64261, 64262, 339, 8347, 8340, 8336, 8337, 8341, 7522, 11388, 8342, 8343, - 8344, 8345, 8338, 8346, 7523, 8348, 7524, 7525, 8339, 129726, 127811, - 129388, 129897, 129916, 129947, 10203, 10202, 129899, 129917, 117902, - 128494, 12296, 10641, 10643, 11058, 11056, 10576, 10571, 10570, 10574, - 12304, 10647, 123, 9128, 9129, 9127, 12300, 8968, 9948, 10714, 12298, - 8220, 11816, 11780, 129287, 129284, 129285, 129283, 129286, 9686, 11240, - 9612, 129977, 117924, 118288, 129970, 118285, 118283, 118435, 118440, - 129940, 129932, 128379, 128709, 11804, 10204, 9614, 9615, 129999, 10197, - 8596, 8700, 8697, 8622, 10568, 8660, 10500, 8654, 8621, 11012, 8703, - 11020, 129112, 11108, 11788, 10181, 8907, 9609, 8216, 11814, 128488, 91, - 9123, 9121, 10639, 10637, 8261, 10635, 11863, 11861, 9122, 11778, 10703, - 129900, 11785, 117771, 129985, 128492, 118434, 118441, 9610, 9613, 12308, - 129998, 8867, 12302, 10627, 12310, 10629, 12314, 12312, 10712, 128398, - 9611, 10620, 8970, 130027, 130019, 8905, 40, 9117, 9115, 9116, 11808, - 9144, 9001, 117856, 118265, 10748, 171, 117774, 128269, 117920, 117846, - 117922, 117911, 117861, 117762, 117918, 117880, 10553, 10154, 1422, - 117832, 117906, 117908, 129307, 4054, 4056, 117872, 117876, 9958, 8294, - 8237, 8234, 8206, 8592, 10563, 11074, 11083, 11082, 10611, 129973, 10618, - 10615, 11070, 8676, 8633, 10525, 129032, 8619, 11064, 8698, 10566, - 129040, 129024, 8602, 11024, 11025, 8610, 11066, 11065, 129028, 129176, - 129044, 8617, 8695, 8612, 10527, 129216, 8646, 10521, 129192, 129184, - 11144, 11013, 10603, 10599, 10590, 10582, 8637, 10594, 10602, 10598, - 10586, 10578, 8636, 8651, 129778, 129088, 129092, 11104, 11136, 11130, - 983241, 11174, 11172, 129064, 129060, 129056, 129072, 129068, 11120, - 11114, 11140, 129168, 10510, 8666, 129186, 11067, 11069, 11068, 11244, - 11061, 11060, 11062, 11063, 8606, 8678, 129172, 8604, 8656, 10498, 8653, - 10502, 10523, 10508, 8672, 129194, 129076, 129188, 8701, 8647, 129783, - 129190, 128620, 8668, 129080, 129104, 129084, 11077, 9804, 128006, 7213, - 7221, 7216, 7220, 7215, 7214, 7217, 7218, 7219, 7170, 7169, 7168, 7184, - 7183, 7182, 7247, 7193, 7180, 7188, 7187, 7186, 7185, 7172, 7171, 7198, - 7197, 7190, 7189, 7173, 7177, 7181, 7192, 7191, 7246, 7245, 7179, 7178, - 7175, 7174, 7201, 7200, 7176, 7196, 7195, 7199, 7202, 7194, 7203, 7227, - 7231, 7230, 7228, 7229, 7223, 7222, 7205, 7204, 7210, 7211, 7208, 7209, - 7206, 7212, 7207, 7237, 7236, 7239, 7238, 7235, 7234, 7232, 7241, 7233, - 7240, 10897, 10895, 10893, 10899, 10891, 10614, 10889, 10887, 8922, 8934, - 8808, 10918, 10920, 10885, 10877, 10881, 10883, 10879, 8818, 8804, 8822, - 8806, 10873, 10875, 8918, 60, 118480, 128210, 127898, 127819, 129461, - 128626, 128955, 128969, 128943, 11212, 128964, 10099, 128648, 10098, - 9617, 128937, 128949, 128978, 128960, 129653, 128910, 10072, 128930, - 128504, 9735, 128498, 128497, 6429, 6404, 6403, 6412, 6430, 6411, 6421, - 6410, 6405, 6415, 6425, 6426, 6427, 6419, 6418, 6407, 6406, 6414, 6413, - 6409, 6408, 6402, 6401, 6417, 6416, 6428, 6423, 6420, 6422, 6424, 6458, - 6457, 6459, 6464, 6449, 6452, 6450, 6448, 6456, 6454, 6453, 6455, 6451, - 6442, 6443, 6441, 6432, 6436, 6438, 6440, 6437, 6439, 6435, 6433, 6434, - 6400, 6468, 6469, 6475, 6474, 6477, 6476, 6473, 6472, 6470, 6479, 6471, - 6478, 13007, 10770, 10771, 10772, 983062, 8232, 983068, 983143, 67143, - 67146, 67151, 67165, 67166, 67167, 67157, 67158, 67159, 67160, 67161, - 67162, 67163, 67164, 67171, 67172, 67173, 67168, 67169, 67170, 67174, - 67175, 67176, 67177, 67178, 67179, 67230, 67231, 67180, 67181, 67182, - 67183, 67184, 67185, 67186, 67187, 67188, 67189, 67190, 67191, 67192, - 67193, 67194, 67195, 67196, 67197, 67198, 67199, 67200, 67201, 67202, - 67203, 67204, 67205, 67206, 67207, 67208, 67209, 67210, 67211, 67212, - 67213, 67214, 67215, 67216, 67217, 67218, 67219, 67220, 67221, 67222, - 67223, 67224, 67225, 67226, 67227, 67228, 67229, 67232, 67233, 67234, - 67235, 67236, 67237, 67238, 67239, 67240, 67241, 67242, 67243, 67244, - 67245, 67246, 67247, 67248, 67249, 67250, 67251, 67252, 67253, 67254, - 67255, 67256, 67257, 67258, 67259, 67260, 67261, 67262, 67263, 67264, - 67274, 67275, 67276, 67277, 67278, 67279, 67280, 67281, 67282, 67283, - 67284, 67285, 67286, 67287, 67288, 67289, 67290, 67291, 67292, 67293, - 67294, 67295, 67296, 67297, 67298, 67299, 67300, 67301, 67302, 67303, - 67304, 67265, 67266, 67267, 67268, 67269, 67270, 67271, 67272, 67273, - 67325, 67326, 67327, 67328, 67329, 67330, 67305, 67306, 67307, 67308, - 67309, 67310, 67311, 67312, 67313, 67314, 67315, 67316, 67317, 67318, - 67319, 67320, 67321, 67322, 67323, 67324, 67331, 67332, 67333, 67334, - 67335, 67336, 67337, 67338, 67349, 67350, 67351, 67352, 67353, 67354, - 67355, 67356, 67357, 67358, 67359, 67360, 67361, 67362, 67363, 67364, - 67365, 67366, 67367, 67368, 67378, 67379, 67380, 67381, 67382, 67369, - 67370, 67371, 67372, 67373, 67374, 67375, 67376, 67377, 67339, 67340, - 67341, 67342, 67343, 67344, 67345, 67346, 67347, 67348, 67401, 67404, - 67403, 67402, 67400, 67398, 67393, 67397, 67395, 67394, 67399, 67392, - 67396, 67408, 67409, 67410, 67406, 67407, 67405, 67411, 67413, 67412, - 67424, 67425, 67426, 67427, 67428, 67429, 67430, 67431, 67081, 67082, - 67083, 67084, 67085, 67087, 67088, 67089, 67090, 67091, 67092, 67093, - 67094, 67086, 67095, 67096, 67097, 67098, 67100, 67101, 67102, 67103, - 67104, 67105, 67106, 67107, 67108, 67109, 67110, 67111, 67112, 67113, - 67114, 67115, 67116, 67117, 67118, 67119, 67120, 67121, 67122, 67123, - 67124, 67125, 67126, 67127, 67128, 67129, 67130, 67131, 67132, 67133, - 67134, 67135, 67136, 67137, 67138, 67139, 67140, 67141, 67142, 67072, - 67073, 67074, 67075, 67076, 67077, 67078, 67079, 67080, 67145, 67147, - 67148, 67149, 67150, 67154, 67155, 67144, 67152, 67153, 67156, 67099, - 65667, 65668, 65669, 65670, 65671, 65672, 65673, 65675, 65674, 65677, - 65676, 65665, 65664, 65666, 65681, 65679, 65680, 65682, 65678, 65686, - 65685, 65687, 65693, 65690, 65691, 65692, 65694, 65703, 65696, 65695, - 65697, 65698, 65699, 65701, 65702, 65707, 65706, 65704, 65705, 65708, - 65709, 65710, 65711, 65712, 65713, 65719, 65717, 65714, 65715, 65716, - 65718, 65720, 65721, 65722, 65723, 65724, 65725, 65726, 65727, 65728, - 65729, 65731, 65730, 65732, 65733, 65737, 65734, 65735, 65736, 65738, - 65739, 65740, 65741, 65743, 65742, 65744, 65745, 65747, 65748, 65752, - 65749, 65750, 65751, 65753, 65754, 65755, 65756, 65757, 65779, 65780, - 65781, 65782, 65783, 65784, 65785, 65759, 65760, 65761, 65762, 65763, - 65764, 65765, 65766, 65767, 65768, 65769, 65770, 65771, 65772, 65773, - 65774, 65775, 65776, 65777, 65778, 65758, 65786, 65683, 65684, 65689, - 65688, 65700, 65746, 65561, 65543, 65587, 65582, 65589, 65536, 65541, - 65579, 65566, 65571, 65596, 65569, 65584, 65544, 65559, 65540, 65557, - 65560, 65580, 65606, 65600, 65599, 65577, 65562, 65538, 65573, 65563, - 65609, 65588, 65549, 65568, 65537, 65581, 65574, 65601, 65542, 65593, - 65583, 65594, 65552, 65547, 65605, 65578, 65545, 65585, 65586, 65546, - 65570, 65591, 65564, 65565, 65607, 65610, 65611, 65553, 65590, 65550, - 65539, 65576, 65608, 65551, 65554, 65592, 65603, 65597, 65567, 65572, - 65558, 65555, 65612, 65602, 65556, 65613, 65604, 65620, 65621, 65623, - 65624, 65626, 65627, 65628, 65629, 65622, 65616, 65617, 65619, 65618, - 65625, 128391, 128279, 128482, 128132, 42237, 42235, 42232, 42234, 42236, - 42233, 42206, 42205, 42197, 42196, 42204, 42195, 42228, 42229, 42230, - 42213, 42208, 42224, 42225, 42203, 42202, 42221, 42198, 42216, 42214, - 42200, 42199, 42194, 42193, 42219, 42210, 73648, 42220, 42211, 42212, - 42222, 42223, 42227, 42231, 42192, 42217, 42201, 42209, 42207, 42218, - 42215, 42226, 42238, 42239, 8356, 8374, 129409, 129422, 9806, 128274, - 983079, 983076, 128271, 117785, 117786, 117784, 117783, 117782, 117781, - 8743, 10848, 10846, 10833, 10844, 10842, 10847, 8744, 10841, 10851, - 10850, 10834, 10845, 10843, 10982, 10188, 129688, 10231, 129240, 10234, - 10206, 10232, 10237, 10229, 10235, 11059, 129236, 10230, 129238, 129239, - 129232, 10236, 10233, 10238, 129233, 129234, 10239, 10205, 129524, - 128884, 129719, 128140, 127977, 128261, 129707, 12319, 8270, 11847, - 11848, 95, 118273, 9691, 118276, 118291, 129935, 118436, 118447, 9604, - 9697, 117765, 128394, 129852, 129853, 129870, 129872, 129868, 129856, - 129871, 129869, 129854, 129873, 129855, 128395, 128396, 128393, 10559, - 117934, 117936, 117932, 117930, 117972, 9695, 117960, 117948, 117964, - 117968, 117952, 117956, 117944, 117940, 117817, 129951, 9722, 117820, - 128397, 118428, 117935, 117937, 117933, 117931, 117973, 9694, 117961, - 117949, 117965, 117969, 117953, 117957, 117945, 117941, 117818, 10558, - 128318, 10065, 129950, 9727, 117823, 117767, 129863, 129865, 129867, - 129864, 129861, 129866, 129859, 129862, 129860, 129857, 129858, 10195, - 118431, 10063, 9998, 9987, 118429, 117821, 118430, 117822, 130021, 9605, - 118425, 118426, 118424, 117816, 118427, 117819, 9602, 9601, 9607, 9603, - 118437, 118446, 9606, 129903, 9674, 10208, 129438, 128557, 127853, - 129523, 128886, 129729, 66190, 66192, 66187, 66196, 66199, 66185, 66200, - 66178, 66179, 66176, 66201, 66177, 66202, 66191, 66193, 66181, 66180, - 66203, 66182, 66186, 66189, 66195, 66188, 66197, 66198, 66194, 66183, - 66204, 66184, 67887, 67892, 67881, 67895, 67891, 67886, 67872, 67893, - 67876, 67894, 67883, 67896, 67873, 67897, 67875, 67889, 67874, 67878, - 67880, 67882, 67884, 67890, 67885, 67888, 67877, 67879, 67903, 129317, - 983226, 983234, 983224, 983229, 8468, 129433, 983065, 129668, 129522, - 129497, 69986, 69981, 69991, 69985, 69984, 69990, 69989, 70002, 69997, - 69983, 69982, 69988, 69987, 69995, 69994, 69978, 69977, 69976, 69975, - 69980, 69979, 69974, 69973, 69993, 69992, 70001, 69998, 69996, 70000, - 69999, 69968, 69971, 69969, 69972, 69970, 70006, 70005, 70003, 70004, - 127012, 127019, 127008, 126990, 126999, 126976, 127005, 126987, 126996, - 127004, 126986, 126995, 126979, 127009, 126991, 127000, 127001, 126983, - 126992, 127011, 127010, 126977, 127007, 126989, 126998, 127006, 126988, - 126997, 127015, 127014, 127003, 126985, 126994, 127002, 126984, 126993, - 126978, 126982, 127017, 126981, 126980, 127016, 127018, 127013, 73464, - 73442, 73451, 73448, 73444, 73449, 73447, 73441, 73450, 73440, 73454, - 73445, 73443, 73453, 73456, 73446, 73455, 73452, 73457, 73463, 73461, - 73459, 73462, 73460, 73458, 128892, 3449, 3435, 3434, 3437, 3436, 3433, - 3432, 3430, 3439, 3431, 3438, 3419, 3420, 3446, 3417, 3422, 3416, 3447, - 3444, 3443, 3448, 3418, 3421, 3445, 3333, 3423, 3334, 3344, 3348, 3453, - 3454, 3414, 3451, 3450, 3452, 3455, 3412, 3413, 3355, 3354, 3406, 3362, - 3361, 3367, 3366, 3360, 3386, 3359, 3365, 3364, 3332, 3339, 3424, 3340, - 3425, 3381, 3369, 3363, 3353, 3358, 3368, 3380, 3379, 3378, 3377, 3376, - 3337, 3338, 3346, 3347, 3335, 3336, 3382, 3383, 3384, 3373, 3372, 3352, - 3351, 3357, 3356, 3350, 3349, 3371, 3370, 3342, 3343, 3385, 3374, 3375, - 3441, 3442, 3440, 3328, 3388, 3329, 3387, 3405, 3331, 3389, 3330, 3407, - 3390, 3400, 3404, 3393, 3394, 3395, 3396, 3426, 3427, 3402, 3403, 3391, - 3392, 3398, 3399, 3415, 9895, 9894, 9893, 9794, 10016, 129443, 128104, - 128372, 129333, 128114, 128115, 128378, 128107, 2137, 2122, 2121, 2133, - 2120, 2126, 2132, 2129, 2136, 2113, 2115, 2114, 2116, 2123, 2124, 2125, - 2128, 2130, 2131, 2118, 2134, 2117, 2112, 2127, 2119, 2135, 2138, 2139, - 2142, 68288, 68314, 68313, 68290, 68289, 68293, 68308, 68292, 68291, - 68300, 68299, 68298, 68297, 68306, 68304, 68320, 68318, 68323, 68312, - 68317, 68322, 68309, 68302, 68324, 68305, 68319, 68307, 68321, 68303, - 68294, 68301, 68311, 68295, 68316, 68315, 68310, 68331, 68335, 68334, - 68333, 68332, 68340, 68339, 68338, 68342, 68337, 68341, 68336, 68296, - 68326, 68325, 128094, 129469, 8380, 128368, 129389, 9967, 127809, 129671, - 72835, 72834, 72827, 72826, 72836, 72828, 72821, 72825, 72829, 72823, - 72822, 72819, 72818, 72831, 72830, 72844, 72845, 72838, 72839, 72840, - 72832, 72820, 72846, 72824, 72843, 72833, 72842, 72837, 72841, 72847, - 72886, 72885, 72867, 72866, 72859, 72858, 72868, 72860, 72853, 72857, - 72861, 72855, 72854, 72851, 72850, 72863, 72862, 72876, 72877, 72870, - 72871, 72864, 72852, 72878, 72856, 72875, 72865, 72874, 72869, 72873, - 72879, 72880, 72883, 72881, 72884, 72882, 72816, 72817, 9901, 129355, - 73007, 72980, 72979, 72983, 72982, 72988, 73008, 72987, 72960, 72961, - 72968, 72971, 72985, 72984, 72990, 72989, 72964, 72965, 72962, 72963, - 73005, 72999, 73006, 72973, 72972, 72976, 72986, 72981, 72991, 73001, - 73002, 73003, 72995, 72994, 72978, 72977, 72975, 72974, 72993, 72992, - 73004, 72996, 72998, 73000, 72997, 72966, 72969, 73031, 73030, 73027, - 73028, 73026, 73025, 73024, 73014, 73009, 73020, 73023, 73012, 73013, - 73010, 73011, 73018, 73021, 73029, 73045, 73044, 73047, 73046, 73043, - 73042, 73040, 73049, 73041, 73048, 186, 127405, 12348, 119811, 120778, - 120491, 119827, 120495, 120505, 120507, 119808, 120488, 119809, 120489, - 119833, 120493, 119812, 120492, 120494, 119814, 120490, 119816, 120496, - 119818, 120497, 119819, 120498, 119822, 120502, 120512, 119823, 120509, - 120511, 120503, 119825, 120504, 119826, 120506, 119828, 120508, 119810, - 120510, 119820, 120499, 119821, 120500, 119831, 120501, 119813, 119815, - 119817, 119824, 119829, 119830, 119832, 119837, 120779, 120517, 119834, - 120514, 119835, 120515, 119859, 120519, 119838, 120518, 120520, 119839, - 120531, 119840, 120516, 119842, 120522, 119844, 120523, 119845, 120524, - 119848, 120528, 120538, 119849, 120535, 120537, 120529, 119851, 120530, - 119852, 120532, 119853, 120521, 120533, 119854, 120534, 119836, 120536, - 119846, 120525, 119847, 120526, 119857, 120527, 119841, 119843, 119850, - 119855, 119856, 119858, 120016, 120017, 120018, 120019, 120020, 120021, - 120022, 120023, 120024, 120025, 120026, 120027, 120028, 120029, 120030, - 120031, 120032, 120033, 120034, 120035, 120036, 120037, 120038, 120039, - 120040, 120041, 120042, 120043, 120044, 120045, 120046, 120047, 120048, - 120049, 120050, 120051, 120052, 120053, 120054, 120055, 120056, 120057, - 120058, 120059, 120060, 120061, 120062, 120063, 120064, 120065, 120066, - 120067, 119931, 120611, 120621, 120623, 119912, 120604, 119913, 120605, - 119937, 120609, 119915, 120607, 119916, 120608, 120610, 119918, 120606, - 119920, 120612, 119922, 120613, 119923, 120614, 119926, 120618, 120628, - 119927, 120625, 120627, 120619, 119929, 120620, 119930, 120622, 119932, - 120624, 119914, 120626, 119924, 120615, 119925, 120616, 119935, 120617, - 119917, 119919, 119921, 119928, 119933, 119934, 119936, 120656, 120658, - 120629, 120659, 120655, 120661, 120660, 119938, 120630, 119939, 120631, - 119963, 120635, 119941, 120633, 119942, 120634, 120636, 119943, 120647, - 119944, 120632, 119946, 120638, 119948, 120639, 119949, 120640, 119952, - 120644, 120654, 119953, 120651, 120653, 120645, 119955, 120646, 119956, - 120648, 119957, 120637, 120649, 119958, 120650, 119940, 120652, 119950, - 120641, 119951, 120642, 119961, 120643, 119945, 119947, 119954, 119959, - 119960, 119962, 120657, 120540, 120542, 120513, 120543, 120539, 120545, - 120544, 120541, 120172, 120173, 120174, 120175, 120176, 120177, 120178, - 120179, 120180, 120181, 120182, 120183, 120184, 120185, 120186, 120187, - 120188, 120189, 120190, 120191, 120192, 120193, 120194, 120195, 120196, - 120197, 120198, 120199, 120200, 120201, 120202, 120203, 120204, 120205, - 120206, 120207, 120208, 120209, 120210, 120211, 120212, 120213, 120214, - 120215, 120216, 120217, 120218, 120219, 120220, 120221, 120222, 120223, - 120787, 120786, 120789, 120788, 120785, 120784, 120782, 120791, 120783, - 120790, 120120, 120121, 120123, 120124, 120125, 120126, 120128, 120129, - 120130, 120131, 120132, 120134, 120138, 120139, 120140, 120141, 120142, - 120143, 120144, 120146, 120147, 120148, 120149, 120150, 120151, 120152, - 120153, 120154, 120155, 120156, 120157, 120158, 120159, 120160, 120161, - 120162, 120163, 120164, 120165, 120166, 120167, 120168, 120169, 120170, - 120171, 120797, 120796, 120799, 120798, 120795, 120794, 120792, 120801, - 120793, 120800, 120068, 120069, 120071, 120072, 120073, 120074, 120077, - 120078, 120079, 120080, 120081, 120082, 120083, 120084, 120086, 120087, - 120088, 120089, 120090, 120091, 120092, 120094, 120095, 120096, 120097, - 120098, 120099, 120100, 120101, 120102, 120103, 120104, 120105, 120106, - 120107, 120108, 120109, 120110, 120111, 120112, 120113, 120114, 120115, - 120116, 120117, 120118, 120119, 10189, 119889, 120484, 120485, 120575, - 119886, 120572, 119887, 120573, 119911, 120577, 119890, 120576, 120578, - 119891, 120589, 119892, 120574, 119894, 120580, 119896, 120581, 119897, - 120582, 119900, 120586, 120596, 119901, 120593, 120595, 120587, 119903, - 120588, 119904, 120590, 119905, 120579, 120591, 119906, 120592, 119888, - 120594, 119898, 120583, 119899, 120584, 119909, 120585, 119895, 119902, - 119907, 119908, 119910, 119879, 120553, 120563, 120565, 119860, 120546, - 119861, 120547, 119885, 120551, 119863, 120549, 119864, 120550, 120552, - 119866, 120548, 119868, 120554, 119870, 120555, 119871, 120556, 119874, - 120560, 120570, 119875, 120567, 120569, 120561, 119877, 120562, 119878, - 120564, 119880, 120566, 119862, 120568, 119872, 120557, 119873, 120558, - 119883, 120559, 119865, 119867, 119869, 119876, 119881, 119882, 119884, - 120598, 120600, 120571, 120601, 120597, 120603, 120602, 120599, 120432, - 120433, 120434, 120435, 120436, 120437, 120438, 120439, 120440, 120441, - 120442, 120443, 120444, 120445, 120446, 120447, 120448, 120449, 120450, - 120451, 120452, 120453, 120454, 120455, 120456, 120457, 120458, 120459, - 120460, 120461, 120462, 120463, 120464, 120465, 120466, 120467, 120468, - 120469, 120470, 120471, 120472, 120473, 120474, 120475, 120476, 120477, - 120478, 120479, 120480, 120481, 120482, 120483, 120827, 120826, 120829, - 120828, 120825, 120824, 120822, 120831, 120823, 120830, 10215, 10221, - 10219, 10217, 10223, 10187, 10214, 10220, 10218, 10216, 10222, 120399, - 120727, 120737, 120739, 120380, 120720, 120381, 120721, 120405, 120725, - 120383, 120723, 120384, 120724, 120726, 120386, 120722, 120388, 120728, - 120390, 120729, 120391, 120730, 120394, 120734, 120744, 120395, 120741, - 120743, 120735, 120397, 120736, 120398, 120738, 120400, 120740, 120382, - 120742, 120392, 120731, 120393, 120732, 120403, 120733, 120385, 120387, - 120389, 120396, 120401, 120402, 120404, 120772, 120774, 120745, 120775, - 120771, 120777, 120776, 120406, 120746, 120407, 120747, 120431, 120751, - 120409, 120749, 120410, 120750, 120752, 120411, 120763, 120412, 120748, - 120414, 120754, 120416, 120755, 120417, 120756, 120420, 120760, 120770, - 120421, 120767, 120769, 120761, 120423, 120762, 120424, 120764, 120425, - 120753, 120765, 120426, 120766, 120408, 120768, 120418, 120757, 120419, - 120758, 120429, 120759, 120413, 120415, 120422, 120427, 120428, 120430, - 120773, 120295, 120669, 120679, 120681, 120276, 120662, 120277, 120663, - 120301, 120667, 120279, 120665, 120280, 120666, 120668, 120282, 120664, - 120284, 120670, 120286, 120671, 120287, 120672, 120290, 120676, 120686, - 120291, 120683, 120685, 120677, 120293, 120678, 120294, 120680, 120296, - 120682, 120278, 120684, 120288, 120673, 120289, 120674, 120299, 120675, - 120281, 120283, 120285, 120292, 120297, 120298, 120300, 120714, 120716, - 120687, 120717, 120713, 120719, 120718, 120302, 120688, 120303, 120689, - 120327, 120693, 120305, 120691, 120306, 120692, 120694, 120307, 120705, - 120308, 120690, 120310, 120696, 120312, 120697, 120313, 120698, 120316, - 120702, 120712, 120317, 120709, 120711, 120703, 120319, 120704, 120320, - 120706, 120321, 120695, 120707, 120322, 120708, 120304, 120710, 120314, - 120699, 120315, 120700, 120325, 120701, 120309, 120311, 120318, 120323, - 120324, 120326, 120715, 120817, 120816, 120819, 120818, 120815, 120814, - 120812, 120821, 120813, 120820, 120328, 120329, 120330, 120331, 120332, - 120333, 120334, 120335, 120336, 120337, 120338, 120339, 120340, 120341, - 120342, 120343, 120344, 120345, 120346, 120347, 120348, 120349, 120350, - 120351, 120352, 120353, 120354, 120355, 120356, 120357, 120358, 120359, - 120360, 120361, 120362, 120363, 120364, 120365, 120366, 120367, 120368, - 120369, 120370, 120371, 120372, 120373, 120374, 120375, 120376, 120377, - 120378, 120379, 120224, 120225, 120226, 120227, 120228, 120229, 120230, - 120231, 120232, 120233, 120234, 120235, 120236, 120237, 120238, 120239, - 120240, 120241, 120242, 120243, 120244, 120245, 120246, 120247, 120248, - 120249, 120250, 120251, 120252, 120253, 120254, 120255, 120256, 120257, - 120258, 120259, 120260, 120261, 120262, 120263, 120264, 120265, 120266, - 120267, 120268, 120269, 120270, 120271, 120272, 120273, 120274, 120275, - 120807, 120806, 120809, 120808, 120805, 120804, 120802, 120811, 120803, - 120810, 119964, 119966, 119967, 119970, 119973, 119974, 119977, 119978, - 119979, 119980, 119982, 119983, 119984, 119985, 119986, 119987, 119988, - 119989, 119990, 119991, 119992, 119993, 119995, 119997, 119998, 119999, - 120000, 120001, 120002, 120003, 120005, 120006, 120007, 120008, 120009, - 120010, 120011, 120012, 120013, 120014, 120015, 129481, 119528, 119538, - 119531, 119535, 119525, 119524, 119534, 119529, 119539, 119527, 119537, - 119526, 119536, 119533, 119523, 119532, 119522, 119530, 119520, 119521, - 128470, 175, 8737, 10667, 10666, 10671, 10669, 10670, 10668, 10665, - 10664, 10651, 10653, 8798, 127830, 129470, 129471, 93773, 93764, 93790, - 93787, 983274, 93783, 983273, 93782, 93772, 93766, 93791, 93779, 93789, - 93786, 93776, 93777, 93785, 93775, 93770, 93769, 93771, 93774, 93780, - 93760, 93767, 93781, 93788, 93761, 93768, 93778, 93762, 93763, 93784, - 93765, 93847, 93827, 93846, 93826, 93845, 93825, 93844, 93829, 93828, - 93831, 93830, 93824, 93833, 93832, 93837, 93836, 93834, 93842, 93835, - 93838, 93839, 93843, 93840, 93841, 93805, 93796, 93822, 93819, 983276, - 93815, 983275, 93814, 93804, 93798, 93823, 93811, 93821, 93818, 93808, - 93809, 93817, 93807, 93802, 93801, 93803, 93806, 93812, 93792, 93799, - 93813, 93820, 93793, 93800, 93810, 93794, 93795, 93816, 93797, 93849, - 93850, 93848, 11859, 11852, 11860, 128901, 9899, 10090, 10091, 128967, - 128965, 128944, 10100, 10088, 10092, 10101, 10089, 10093, 8287, 9618, - 128971, 128950, 128938, 9900, 118512, 128963, 128961, 10073, 128974, - 128956, 9898, 128911, 128931, 43761, 44013, 43762, 43760, 44011, 43994, - 43989, 43974, 43746, 43993, 43991, 43751, 43750, 43992, 43986, 43987, - 43990, 43968, 43995, 43976, 43973, 43999, 43977, 44001, 43752, 43747, - 43972, 43998, 43984, 43969, 43753, 43754, 43975, 44000, 43978, 43749, - 43748, 43983, 44002, 43970, 43996, 43971, 43997, 43981, 43988, 43979, - 43985, 43980, 43982, 43744, 43745, 44012, 43763, 43764, 44005, 43757, - 43759, 43758, 44009, 44003, 44007, 44006, 44004, 43755, 44008, 43756, - 44010, 43765, 43766, 44021, 44020, 44023, 44022, 44019, 44018, 44016, - 44025, 44017, 44024, 118475, 129760, 127816, 125140, 125137, 125136, - 125139, 125141, 125138, 125142, 124928, 124929, 124930, 124936, 124937, - 124949, 124950, 124948, 124938, 124956, 124990, 124992, 124974, 124955, - 124964, 124963, 124991, 124957, 124962, 124976, 124996, 124997, 124998, - 124982, 124983, 124984, 125004, 124975, 125003, 125005, 125011, 125018, - 125028, 125029, 125012, 125019, 125020, 125027, 125013, 125035, 124942, - 124934, 125090, 125046, 125078, 125033, 124946, 125048, 125037, 125070, - 125000, 125095, 125121, 124951, 125044, 125041, 125072, 124987, 125066, - 125076, 125074, 125009, 125107, 125108, 125068, 125124, 124945, 125002, - 124931, 125089, 125022, 124980, 125099, 124986, 125100, 125080, 125119, - 124933, 125021, 125015, 125071, 124985, 125117, 125056, 124993, 125039, - 125049, 125043, 125024, 124932, 125047, 125097, 124959, 125069, 125088, - 124999, 125123, 124952, 125036, 125026, 125001, 125085, 124960, 125057, - 125073, 124966, 125098, 125014, 125091, 124989, 125007, 124978, 124940, - 125106, 125050, 125030, 125092, 124941, 125060, 125077, 125102, 125094, - 125053, 125040, 125055, 125104, 125103, 124939, 125017, 124961, 125112, - 125087, 124970, 124971, 124969, 125023, 124979, 125042, 124947, 125086, - 125075, 125051, 125111, 124968, 124944, 125038, 125096, 125016, 125118, - 125109, 124953, 125059, 125052, 125006, 124958, 125093, 125115, 125054, - 124988, 125008, 125084, 125061, 125064, 125120, 125063, 124967, 124977, - 124965, 125031, 983279, 125081, 125082, 983280, 125010, 125067, 124973, - 125032, 124935, 125116, 125122, 125101, 124994, 124995, 125113, 125058, - 125079, 125114, 125065, 125034, 125083, 124954, 125062, 125105, 125110, - 125045, 124943, 124972, 124981, 125025, 125131, 125130, 125133, 125132, - 125129, 125128, 125135, 125127, 125134, 128334, 128697, 68028, 68093, - 68090, 68089, 68086, 68029, 68092, 68091, 68095, 68088, 68087, 68094, - 68000, 68016, 68020, 68021, 68022, 68009, 68010, 68015, 68017, 68014, - 68013, 68018, 68006, 68023, 68012, 68008, 68007, 68019, 68011, 68005, - 68004, 68001, 68002, 68003, 68031, 68030, 68039, 68075, 68057, 68084, - 68066, 68036, 68054, 68081, 68063, 68045, 68072, 68035, 68053, 68080, - 68062, 68044, 68071, 68040, 68076, 68058, 68085, 68067, 68038, 68056, - 68083, 68065, 68047, 68074, 68037, 68055, 68082, 68064, 68046, 68073, - 68034, 68052, 68079, 68061, 68043, 68070, 68033, 68051, 68078, 68060, - 68042, 68069, 68041, 68068, 68032, 68050, 68077, 68059, 67974, 67975, - 67982, 67983, 67978, 67979, 67980, 67981, 67987, 67988, 67989, 67992, - 67993, 67994, 67995, 67996, 67986, 67985, 67990, 67997, 67984, 67977, - 67976, 67991, 67973, 67972, 67968, 67969, 67970, 67971, 67998, 67999, - 9791, 129500, 983173, 9170, 9172, 9177, 9176, 9175, 9173, 9174, 9171, - 9169, 128647, 118467, 128221, 94015, 93989, 93971, 93958, 94019, 94021, - 93953, 94023, 93999, 93995, 94008, 93981, 93979, 93967, 93963, 93993, - 93992, 93983, 93977, 93976, 93975, 93974, 93968, 94032, 93988, 93987, - 93973, 93972, 93997, 93996, 93969, 94106, 94107, 94108, 94109, 94110, - 94111, 94002, 94026, 94022, 94003, 94004, 94010, 93980, 93978, 94099, - 94100, 94101, 94102, 94103, 94104, 94105, 93998, 93994, 94007, 94025, - 93966, 93962, 94024, 93961, 93960, 94000, 94009, 93964, 93965, 94001, - 93970, 93984, 93954, 94017, 94014, 94016, 94013, 94006, 94012, 94005, - 94011, 93986, 93985, 93955, 93952, 94020, 93990, 93957, 93956, 93959, - 93982, 94018, 93991, 94035, 94034, 94033, 94031, 94098, 94096, 94097, - 94095, 94036, 94039, 94040, 94067, 94068, 94038, 94037, 94073, 94075, - 94045, 94071, 94069, 94046, 94047, 94085, 94074, 94049, 94050, 94051, - 94052, 94053, 94086, 94057, 94054, 94084, 94055, 94056, 94041, 94082, - 94048, 94081, 94042, 94076, 94058, 94059, 94060, 94061, 94063, 94064, - 94079, 94087, 94062, 94065, 94080, 94066, 94072, 94070, 94044, 94043, - 94077, 94078, 94083, 983239, 983240, 128300, 127908, 181, 129440, 117772, - 129986, 130022, 130023, 183, 8943, 129686, 127894, 127756, 8357, 128189, - 128469, 128656, 8722, 10793, 10794, 10796, 10795, 10810, 8770, 8723, - 10751, 129694, 129705, 128241, 128242, 128244, 129339, 8871, 71232, - 71229, 71236, 71231, 71230, 71216, 71226, 71228, 71219, 71220, 71221, - 71222, 71223, 71224, 71217, 71218, 71225, 71227, 71234, 71233, 71253, - 71252, 71255, 71254, 71251, 71250, 71248, 71257, 71249, 71256, 71168, - 71169, 71179, 71181, 71195, 71194, 71200, 71199, 71193, 71192, 71198, - 71197, 71174, 71175, 71176, 71177, 71210, 71172, 71173, 71170, 71171, - 71215, 71209, 71186, 71196, 71191, 71201, 71211, 71212, 71213, 71205, - 71204, 71188, 71187, 71185, 71184, 71190, 71189, 71183, 71182, 71203, - 71202, 71214, 71206, 71208, 71207, 71178, 71180, 71235, 43867, 67512, - 714, 700, 67509, 761, 763, 7470, 7471, 7487, 7474, 7483, 7476, 43000, - 7484, 7485, 7468, 7469, 42994, 7472, 7473, 42995, 7475, 7477, 7478, 7479, - 7480, 7481, 7482, 7486, 42996, 42993, 7488, 7489, 11389, 7490, 723, 722, - 42755, 42753, 42757, 42759, 42754, 42752, 42756, 42758, 42652, 122956, - 122958, 122929, 122954, 122932, 122952, 122943, 122987, 122946, 122938, - 122939, 122942, 122960, 122941, 122959, 122989, 122955, 122950, 122948, - 122944, 122951, 122988, 122953, 122934, 122935, 122936, 122933, 122949, - 122931, 122957, 122930, 122947, 122937, 122928, 122940, 122945, 42653, - 7544, 710, 735, 42889, 67510, 42776, 42775, 42777, 750, 698, 725, 709, - 984011, 42765, 42760, 42770, 741, 984012, 42769, 42764, 42774, 745, 762, - 764, 715, 704, 67507, 4348, 42766, 42761, 42771, 742, 721, 67511, 42888, - 42768, 42763, 751, 767, 753, 42773, 717, 754, 755, 744, 759, 719, 718, - 42783, 752, 716, 42778, 703, 43882, 706, 713, 42767, 42762, 42772, 743, - 758, 757, 756, 727, 766, 726, 697, 42780, 42782, 42781, 42779, 760, 705, - 67508, 701, 67513, 702, 43883, 707, 734, 42890, 765, 7491, 7493, 7516, - 67459, 7495, 7601, 7509, 67461, 7517, 7580, 7590, 694, 7591, 67474, - 67476, 7595, 67484, 67491, 67456, 67460, 67478, 7600, 67498, 7608, 67506, - 67471, 67492, 7581, 7521, 7496, 67468, 67469, 67467, 67466, 7519, 7585, - 67480, 67463, 67465, 67464, 7611, 7613, 7612, 7497, 7604, 7582, 7614, - 7505, 7584, 67472, 7501, 7518, 7520, 67475, 736, 688, 689, 67477, 43868, - 67479, 7504, 7596, 7588, 7589, 690, 7592, 737, 43869, 43870, 7593, 67485, - 7594, 67483, 67481, 67482, 67486, 67487, 43001, 7599, 7598, 7506, 67490, - 7499, 7507, 7510, 7602, 691, 67497, 67496, 67473, 740, 7583, 67470, 738, - 67514, 7603, 7586, 7498, 7513, 7511, 7605, 67503, 67499, 67502, 7508, - 67500, 67501, 7492, 7579, 7494, 7514, 7597, 7500, 692, 67494, 67495, 693, - 67488, 67489, 7587, 7502, 7610, 43881, 7615, 7512, 43871, 7606, 7607, - 7515, 67504, 7609, 7503, 67493, 695, 739, 696, 42784, 42785, 67458, - 67457, 720, 699, 724, 708, 749, 42864, 748, 712, 747, 746, 10762, 128184, - 128176, 129297, 71266, 6165, 6164, 6167, 6166, 6163, 6162, 6160, 6169, - 6161, 6168, 6159, 6157, 6156, 6155, 6147, 6149, 71271, 71272, 6176, 6279, - 6272, 6295, 6273, 6289, 6274, 6313, 6286, 6311, 6310, 6280, 6276, 6275, - 6282, 6287, 6278, 6285, 6284, 6288, 6277, 6291, 6290, 6293, 6294, 6292, - 6283, 6281, 6185, 6196, 6264, 6210, 6190, 6303, 6305, 6307, 6300, 6302, - 6304, 6312, 6298, 6301, 6314, 6308, 6309, 6299, 6306, 6263, 6262, 6260, - 6261, 6259, 6244, 6252, 6245, 6253, 6254, 6248, 6238, 6239, 6257, 6247, - 6256, 6242, 6258, 6255, 6241, 6240, 6249, 6251, 6250, 6243, 6246, 6237, - 6193, 6192, 6297, 6296, 6218, 6236, 6225, 6234, 6227, 6235, 6211, 6222, - 6232, 6228, 6224, 6226, 6233, 6214, 6216, 6215, 6217, 6219, 6231, 6223, - 6220, 6221, 6230, 6229, 6212, 6213, 6204, 6194, 6209, 6207, 6205, 6206, - 6203, 6202, 6208, 6191, 6177, 6183, 6179, 6181, 6180, 6182, 6186, 6195, - 6201, 6189, 6197, 6184, 6187, 6188, 6199, 6200, 6198, 6178, 71273, 71275, - 71274, 6151, 71265, 71270, 71269, 6144, 71268, 71264, 71267, 71276, 6150, - 6158, 6148, 6146, 6152, 6153, 6154, 6145, 9866, 9867, 119552, 9101, - 128669, 128018, 128053, 127889, 129390, 118261, 128496, 129742, 129439, - 128332, 129334, 128741, 128757, 129468, 128739, 9968, 128670, 128672, - 128693, 128507, 128001, 129700, 128045, 128068, 128511, 127909, 92748, - 92744, 92761, 92750, 92739, 92751, 92737, 92754, 92749, 92753, 92743, - 92752, 92757, 92766, 92736, 92741, 92746, 92764, 92745, 92765, 92755, - 92756, 92763, 92762, 92747, 92760, 92758, 92738, 92740, 92759, 92742, - 92783, 92782, 92773, 92772, 92775, 92774, 92771, 92770, 92768, 92777, - 92769, 92776, 70291, 70292, 70290, 70297, 70296, 70293, 70287, 70298, - 70312, 70311, 70306, 70285, 70284, 70289, 70288, 70295, 70294, 70303, - 70301, 70283, 70282, 70280, 70278, 70277, 70276, 70300, 70299, 70310, - 70307, 70304, 70309, 70308, 70305, 70272, 70275, 70273, 70274, 70313, - 127926, 215, 10804, 10805, 10807, 10811, 10801, 10800, 10005, 8844, 8845, - 8846, 8888, 127812, 117860, 9838, 9839, 9837, 127929, 127896, 119161, - 119159, 119155, 119157, 119061, 119060, 119224, 119235, 119132, 119058, - 119059, 119255, 119253, 119130, 119131, 119163, 119169, 119149, 119167, - 119168, 119210, 119178, 119173, 119211, 119150, 119151, 119152, 119153, - 119154, 119175, 119212, 119213, 119166, 119164, 119141, 119142, 119176, - 119179, 119143, 119144, 119145, 119165, 119177, 119170, 119174, 119092, - 119052, 119247, 119186, 119073, 119109, 119093, 119050, 119220, 119221, - 119044, 119049, 119187, 119209, 119082, 119041, 119083, 119077, 119078, - 119162, 119160, 119208, 119156, 119158, 119136, 119102, 119056, 119057, - 119146, 119147, 119148, 119042, 119066, 119065, 119069, 119185, 119074, - 119075, 119076, 119231, 119232, 119085, 119084, 119070, 119071, 119072, - 119218, 119217, 119189, 119188, 119248, 119249, 119172, 119171, 119216, - 119134, 119100, 119206, 119262, 119270, 119271, 119263, 119268, 119269, - 119272, 119264, 119267, 119266, 119265, 119274, 119223, 119234, 119233, - 119046, 119222, 119184, 119227, 119237, 119228, 119122, 119123, 119081, - 119098, 119207, 119129, 119087, 119086, 119128, 119140, 119106, 119062, - 119195, 119204, 119205, 119196, 119197, 119198, 119199, 119200, 119201, - 119202, 119203, 119094, 119095, 119126, 119108, 119215, 119214, 119261, - 119252, 119257, 119258, 119183, 119090, 119091, 119135, 119101, 119096, - 119097, 119053, 119054, 119055, 119048, 119043, 119047, 119180, 119254, - 119259, 119225, 119236, 119226, 119229, 119238, 119230, 119051, 119045, - 119089, 119088, 119040, 119067, 119068, 119137, 119103, 119139, 119105, - 119110, 119111, 119250, 119181, 119273, 119243, 119244, 119245, 119246, - 119242, 119240, 119239, 119241, 119064, 119138, 119104, 119063, 119256, - 119260, 119190, 119118, 119119, 119120, 119121, 119112, 119113, 119116, - 119117, 119114, 119115, 119124, 119125, 119191, 119193, 119194, 119127, - 119251, 119107, 119133, 119099, 119219, 119192, 119182, 127932, 127925, - 8811, 8810, 4158, 4156, 4157, 4155, 4192, 4191, 4190, 4226, 4129, 43642, - 4138, 4135, 4208, 4207, 4206, 4159, 4099, 4098, 4097, 43625, 43624, - 43626, 43623, 43622, 43621, 43627, 43618, 43617, 43630, 43629, 43620, - 43619, 983244, 43631, 43616, 43635, 43628, 43633, 43634, 4096, 4188, - 4189, 4187, 4186, 4136, 4121, 4106, 4111, 4100, 4105, 4116, 4238, 4123, - 4176, 43491, 4218, 4220, 43490, 4221, 4224, 43492, 4223, 43489, 4216, - 43488, 4215, 4214, 4213, 4219, 4222, 4225, 4217, 4130, 43646, 43647, - 4193, 4177, 4126, 4112, 43503, 43495, 43502, 43501, 43516, 43515, 43518, - 43517, 43498, 43497, 43500, 43499, 43514, 43496, 4108, 4107, 4113, 4198, - 4197, 4125, 4110, 4109, 4115, 4114, 4133, 4134, 4178, 4179, 4180, 4181, - 4131, 4132, 4128, 4124, 4120, 4119, 4102, 4101, 4104, 4103, 4118, 4117, - 4127, 4122, 4137, 43636, 43637, 43638, 43632, 43494, 4245, 4244, 4247, - 4246, 4243, 4242, 4240, 4249, 4241, 4248, 4154, 4150, 4250, 4251, 4237, - 4235, 4236, 4231, 4232, 4233, 4234, 43493, 4171, 43644, 43645, 4201, - 4202, 4203, 4204, 4205, 4151, 4239, 43643, 4170, 4153, 4152, 43639, - 43641, 43640, 4174, 4172, 4255, 4254, 4175, 4173, 71391, 71390, 71393, - 71392, 71389, 71388, 71386, 71395, 71387, 71394, 4195, 4196, 43509, - 43508, 43511, 43510, 43507, 43506, 43504, 43513, 43505, 43512, 4146, - 4252, 4253, 4140, 4209, 4212, 4210, 4211, 4147, 4148, 4228, 4229, 4230, - 4227, 4194, 4145, 4149, 4199, 4200, 4139, 4143, 4144, 4182, 4183, 4184, - 4185, 4141, 4142, 71381, 71380, 71383, 71382, 71379, 71378, 71376, 71385, - 71377, 71384, 4165, 4164, 4167, 4166, 4163, 4162, 4160, 4169, 4161, 4168, - 983218, 983232, 983174, 10753, 10754, 10752, 8720, 10761, 10757, 10758, - 8721, 8899, 10756, 10755, 11007, 8896, 8897, 8898, 8719, 67712, 67728, - 67740, 67724, 67726, 67714, 67732, 67718, 67730, 67723, 67742, 67717, - 67729, 67738, 67739, 67713, 67735, 67716, 67721, 67734, 67737, 67741, - 67725, 67719, 67722, 67727, 67715, 67733, 67720, 67736, 67731, 67758, - 67752, 67753, 67757, 67751, 67759, 67756, 67754, 67755, 8711, 124117, - 124120, 124119, 124121, 124118, 124132, 124136, 124133, 124138, 124137, - 124134, 124135, 124122, 124124, 124126, 124123, 124125, 124112, 124116, - 124114, 124113, 124115, 124127, 124128, 124129, 124130, 124131, 124140, - 124143, 124142, 124139, 124141, 124149, 124148, 124151, 124150, 124147, - 124146, 124144, 124153, 124145, 124152, 128133, 8358, 8892, 72102, 72103, - 72138, 72096, 72097, 72107, 72109, 72123, 72122, 72128, 72127, 72144, - 72136, 72121, 72120, 72126, 72125, 72100, 72101, 72098, 72099, 72143, - 72137, 72114, 72124, 72119, 72129, 72139, 72140, 72141, 72133, 72132, - 72116, 72115, 72113, 72112, 72118, 72117, 72111, 72110, 72131, 72130, - 72142, 72134, 72135, 72106, 72108, 72162, 72161, 72158, 72160, 72159, - 72164, 72150, 72151, 72145, 72155, 72157, 72148, 72149, 72146, 72147, - 72154, 72156, 72163, 8302, 127966, 129314, 128219, 129535, 8239, 983092, - 983197, 983128, 9471, 9453, 9460, 9452, 9458, 9451, 9454, 9455, 9459, - 9456, 9457, 127312, 127313, 127314, 127315, 127316, 127317, 127318, - 127319, 127320, 127321, 127322, 127323, 127324, 127325, 127326, 127327, - 127328, 127329, 127330, 127331, 127332, 127333, 127334, 127335, 127336, - 127337, 128982, 128984, 129982, 129981, 129983, 127344, 127345, 127346, - 127347, 127348, 127349, 127350, 127351, 127352, 127353, 127354, 127355, - 127356, 127357, 127358, 127359, 127360, 127361, 127362, 127363, 127364, - 127365, 127366, 127367, 127368, 127369, 129204, 129205, 129207, 129988, - 10062, 127374, 127371, 127375, 129206, 127372, 127373, 983091, 8879, - 8840, 8841, 8775, 8821, 8817, 8825, 8820, 8816, 8824, 129670, 129722, - 11228, 129540, 129544, 129565, 129586, 129603, 129607, 129561, 129536, - 129557, 129599, 129539, 129560, 129602, 129610, 129613, 129541, 129562, - 129604, 129537, 129558, 129600, 129538, 129559, 129601, 129581, 129578, - 129582, 129583, 129579, 129580, 128528, 9906, 127770, 127761, 8362, 6595, - 6594, 6599, 6598, 6597, 6596, 6593, 6566, 6530, 6567, 6531, 6570, 6537, - 6532, 6544, 6543, 6536, 6542, 6549, 6548, 6562, 6561, 6554, 6560, 6556, - 6550, 6528, 6555, 6538, 6568, 6533, 6569, 6534, 6571, 6540, 6535, 6547, - 6546, 6539, 6545, 6552, 6551, 6565, 6564, 6557, 6563, 6559, 6553, 6529, - 6558, 6541, 6622, 6623, 6600, 6601, 6618, 6577, 6587, 6582, 6586, 6578, - 6592, 6583, 6584, 6590, 6589, 6579, 6585, 6591, 6580, 6588, 6576, 6581, - 6613, 6612, 6615, 6614, 6611, 6610, 6608, 6617, 6609, 6616, 983063, - 70732, 70746, 70731, 70741, 70740, 70743, 70742, 70739, 70738, 70736, - 70745, 70737, 70744, 70734, 70675, 70674, 70681, 70680, 70692, 70686, - 70691, 70751, 70662, 70663, 70664, 70665, 70656, 70657, 70667, 70669, - 70685, 70684, 70690, 70689, 70683, 70682, 70688, 70687, 70660, 70661, - 70658, 70659, 70705, 70706, 70707, 70696, 70695, 70677, 70676, 70673, - 70672, 70679, 70678, 70671, 70670, 70703, 70702, 70698, 70697, 70694, - 70693, 70701, 70700, 70708, 70704, 70699, 70666, 70668, 70723, 70726, - 70727, 70724, 70752, 70728, 70753, 70722, 70725, 70730, 70750, 70747, - 70709, 70719, 70721, 70712, 70713, 70714, 70715, 70716, 70717, 70710, - 70711, 70718, 70720, 70735, 70749, 70733, 70729, 11154, 11155, 128240, - 9112, 983131, 9798, 11209, 128084, 129299, 983132, 128985, 129399, - 127747, 2035, 2031, 2032, 2033, 2030, 2034, 2027, 2028, 2029, 2040, 2045, - 2046, 1989, 1988, 1991, 1990, 1987, 1986, 1984, 1993, 1985, 1992, 2042, - 2008, 2001, 2025, 2024, 2026, 2006, 2002, 2019, 2016, 2018, 2023, 2010, - 2009, 2000, 1999, 2007, 1997, 1995, 2012, 2003, 2013, 2020, 2014, 2015, - 2017, 2004, 2011, 2005, 2021, 2022, 1994, 1996, 1998, 2037, 2036, 2039, - 2038, 2041, 2047, 983127, 128691, 9940, 128683, 128695, 128370, 128286, - 128245, 128685, 8303, 65934, 8209, 128689, 10973, 8893, 8599, 10542, - 10545, 10536, 10532, 129209, 10530, 128602, 128594, 128610, 11111, 11127, - 11016, 8663, 129109, 11008, 43063, 43062, 43065, 43064, 43059, 43060, - 43057, 43056, 43061, 43058, 10529, 8598, 8689, 8632, 10546, 10535, 10531, - 129208, 128600, 128592, 128608, 11110, 11126, 11017, 8662, 129108, 11009, - 128746, 8882, 8884, 8379, 8836, 8837, 8713, 8772, 8777, 8938, 8940, 8742, - 8930, 8931, 172, 8877, 8769, 8813, 8800, 8802, 8815, 8814, 9083, 128323, - 10159, 128324, 10161, 128456, 128457, 128458, 128211, 128212, 128067, - 118012, 160, 9369, 9362, 9365, 9366, 9367, 35, 9368, 9364, 9361, 9363, - 9371, 9370, 8470, 110960, 110961, 110962, 110963, 110964, 110965, 110966, - 110967, 110968, 110969, 110970, 110971, 110972, 110973, 110974, 110975, - 110976, 110977, 110978, 110979, 110980, 110981, 110982, 110983, 110984, - 110985, 110986, 110987, 110988, 110989, 110990, 110991, 110992, 110993, - 110994, 110995, 110996, 110997, 110998, 110999, 111000, 111001, 111002, - 111003, 111004, 111005, 111006, 111007, 111008, 111009, 111010, 111011, - 111012, 111013, 111014, 111015, 111016, 111017, 111018, 111019, 111020, - 111021, 111022, 111023, 111024, 111025, 111026, 111027, 111028, 111029, - 111030, 111031, 111032, 111033, 111034, 111035, 111036, 111037, 111038, - 111039, 111040, 111041, 111042, 111043, 111044, 111045, 111046, 111047, - 111048, 111049, 111050, 111051, 111052, 111053, 111054, 111055, 111056, - 111057, 111058, 111059, 111060, 111061, 111062, 111063, 111064, 111065, - 111066, 111067, 111068, 111069, 111070, 111071, 111072, 111073, 111074, - 111075, 111076, 111077, 111078, 111079, 111080, 111081, 111082, 111083, - 111084, 111085, 111086, 111087, 111088, 111089, 111090, 111091, 111092, - 111093, 111094, 111095, 111096, 111097, 111098, 111099, 111100, 111101, - 111102, 111103, 111104, 111105, 111106, 111107, 111108, 111109, 111110, - 111111, 111112, 111113, 111114, 111115, 111116, 111117, 111118, 111119, - 111120, 111121, 111122, 111123, 111124, 111125, 111126, 111127, 111128, - 111129, 111130, 111131, 111132, 111133, 111134, 111135, 111136, 111137, - 111138, 111139, 111140, 111141, 111142, 111143, 111144, 111145, 111146, - 111147, 111148, 111149, 111150, 111151, 111152, 111153, 111154, 111155, - 111156, 111157, 111158, 111159, 111160, 111161, 111162, 111163, 111164, - 111165, 111166, 111167, 111168, 111169, 111170, 111171, 111172, 111173, - 111174, 111175, 111176, 111177, 111178, 111179, 111180, 111181, 111182, - 111183, 111184, 111185, 111186, 111187, 111188, 111189, 111190, 111191, - 111192, 111193, 111194, 111195, 111196, 111197, 111198, 111199, 111200, - 111201, 111202, 111203, 111204, 111205, 111206, 111207, 111208, 111209, - 111210, 111211, 111212, 111213, 111214, 111215, 111216, 111217, 111218, - 111219, 111220, 111221, 111222, 111223, 111224, 111225, 111226, 111227, - 111228, 111229, 111230, 111231, 111232, 111233, 111234, 111235, 111236, - 111237, 111238, 111239, 111240, 111241, 111242, 111243, 111244, 111245, - 111246, 111247, 111248, 111249, 111250, 111251, 111252, 111253, 111254, - 111255, 111256, 111257, 111258, 111259, 111260, 111261, 111262, 111263, - 111264, 111265, 111266, 111267, 111268, 111269, 111270, 111271, 111272, - 111273, 111274, 111275, 111276, 111277, 111278, 111279, 111280, 111281, - 111282, 111283, 111284, 111285, 111286, 111287, 111288, 111289, 111290, - 111291, 111292, 111293, 111294, 111295, 111296, 111297, 111298, 111299, - 111300, 111301, 111302, 111303, 111304, 111305, 111306, 111307, 111308, - 111309, 111310, 111311, 111312, 111313, 111314, 111315, 111316, 111317, - 111318, 111319, 111320, 111321, 111322, 111323, 111324, 111325, 111326, - 111327, 111328, 111329, 111330, 111331, 111332, 111333, 111334, 111335, - 111336, 111337, 111338, 111339, 111340, 111341, 111342, 111343, 111344, - 111345, 111346, 111347, 111348, 111349, 111350, 111351, 111352, 111353, - 111354, 111355, 94177, 128297, 983041, 983040, 123149, 123155, 123138, - 123166, 123164, 123148, 123143, 123161, 123153, 123152, 123141, 123137, - 123156, 123139, 123163, 123142, 123172, 123173, 123140, 123167, 123171, - 123158, 123176, 123177, 123165, 123151, 123168, 123136, 123169, 123162, - 123178, 123179, 123144, 123157, 123170, 123150, 123145, 123159, 123146, - 123154, 123160, 123147, 123174, 123175, 123180, 123214, 123193, 123192, - 123195, 123194, 123191, 123196, 123197, 123184, 123190, 123189, 123186, - 123185, 123188, 123187, 123215, 123205, 123204, 123207, 123206, 123203, - 123202, 123200, 123209, 123201, 123208, 117776, 983231, 983066, 10663, - 10662, 11869, 9215, 65532, 9287, 9286, 9284, 9285, 9289, 9281, 9290, - 9288, 9282, 9283, 9280, 128721, 128025, 128885, 5787, 5788, 5776, 5761, - 5786, 5770, 5769, 5781, 5779, 5785, 5763, 5772, 5780, 5784, 5762, 5775, - 5773, 5765, 5777, 5782, 5764, 5774, 5783, 5766, 5778, 5771, 5767, 5768, - 5760, 731, 128738, 7265, 7264, 7266, 7267, 7261, 7260, 7262, 7259, 7280, - 7282, 7281, 7279, 7271, 7270, 7272, 7269, 7258, 7263, 7278, 7268, 7283, - 7273, 7284, 7285, 7287, 7286, 7276, 7274, 7275, 7277, 7290, 7288, 7289, - 7295, 7294, 7292, 7291, 7253, 7252, 7255, 7254, 7251, 7250, 7248, 7257, - 7249, 7256, 7293, 124374, 124376, 124375, 124377, 124378, 124379, 124392, - 124396, 124395, 124397, 124394, 124393, 124380, 124381, 124383, 124384, - 124385, 124382, 124368, 124371, 124370, 124369, 124372, 124373, 124386, - 124388, 124390, 124389, 124387, 124391, 124399, 124400, 124398, 124415, - 124406, 124405, 124408, 124407, 124404, 124403, 124401, 124410, 124402, - 124409, 94179, 94178, 68736, 68739, 68744, 68737, 68756, 68745, 68760, - 68769, 68761, 68775, 68785, 68741, 68762, 68772, 68773, 68740, 68777, - 68742, 68749, 68750, 68758, 68759, 68774, 68776, 68783, 68784, 68738, - 68743, 68747, 68748, 68751, 68754, 68755, 68768, 68770, 68782, 68765, - 68780, 68766, 68781, 68763, 68767, 68764, 68771, 68778, 68757, 68786, - 68779, 68746, 68752, 68753, 68800, 68803, 68808, 68801, 68820, 68809, - 68824, 68833, 68825, 68839, 68849, 68805, 68826, 68836, 68837, 68804, - 68841, 68806, 68813, 68814, 68822, 68823, 68838, 68840, 68847, 68848, - 68802, 68807, 68811, 68812, 68815, 68818, 68819, 68832, 68834, 68846, - 68829, 68844, 68830, 68845, 68827, 68831, 68828, 68835, 68842, 68821, - 68850, 68843, 68810, 68816, 68817, 68861, 68859, 68858, 68862, 68863, - 68860, 66308, 66324, 66318, 66335, 66323, 66331, 66327, 66330, 66315, - 66316, 66317, 66329, 66314, 66306, 66322, 66351, 66321, 66350, 66326, - 66334, 66313, 66333, 66328, 66320, 66312, 66325, 66332, 66305, 66307, - 66311, 66309, 66349, 66310, 66304, 66319, 66339, 66337, 66338, 66336, - 68241, 68242, 68246, 68244, 68226, 68224, 68237, 68235, 68249, 68251, - 68247, 68233, 68248, 68252, 68227, 68234, 68230, 68239, 68232, 68240, - 68231, 68250, 68236, 68225, 68243, 68245, 68228, 68229, 68238, 68255, - 68254, 68253, 66404, 66390, 66392, 66387, 66388, 66411, 66393, 66421, - 66418, 66396, 66397, 66399, 66406, 66405, 66401, 66413, 66402, 66398, - 66414, 66415, 66416, 66408, 66420, 66417, 66407, 66419, 66389, 66391, - 66395, 66400, 66386, 66409, 66410, 66385, 66384, 66394, 66412, 66403, - 66516, 66514, 66515, 66517, 66513, 66464, 66504, 66505, 66506, 66482, - 66510, 66511, 66477, 66508, 66509, 66478, 66479, 66473, 66474, 66490, - 66491, 66480, 66475, 66476, 66507, 66471, 66469, 66470, 66467, 66468, - 66484, 66485, 66492, 66493, 66486, 66487, 66488, 66497, 66498, 66495, - 66472, 66483, 66499, 66494, 66481, 66489, 66496, 66465, 66466, 66512, - 128435, 118450, 69414, 69395, 69376, 69394, 69391, 69392, 69398, 69399, - 69403, 69404, 69377, 69379, 69382, 69400, 69388, 69380, 69384, 69393, - 69397, 69401, 69386, 69381, 69385, 69387, 69378, 69390, 69402, 69383, - 69396, 69389, 69415, 69407, 69412, 69411, 69406, 69410, 69405, 69413, - 69409, 69408, 68209, 68210, 68217, 68211, 68213, 68214, 68212, 68203, - 68205, 68207, 68206, 68202, 68198, 68220, 68219, 68215, 68201, 68216, - 68193, 68196, 68199, 68218, 68192, 68194, 68200, 68204, 68197, 68208, - 68195, 68222, 68221, 68223, 68608, 68619, 68627, 68623, 68634, 68640, - 68644, 68668, 68670, 68677, 68632, 68669, 68671, 68617, 68625, 68621, - 68638, 68643, 68660, 68666, 68675, 68630, 68648, 68653, 68646, 68650, - 68641, 68673, 68658, 68642, 68655, 68628, 68611, 68657, 68662, 68614, - 68615, 68636, 68656, 68664, 68679, 68680, 68609, 68610, 68645, 68654, - 68620, 68624, 68635, 68678, 68633, 68672, 68652, 68618, 68626, 68622, - 68639, 68661, 68667, 68676, 68631, 68613, 68649, 68647, 68651, 68674, - 68659, 68629, 68612, 68663, 68616, 68637, 68665, 69509, 69508, 69507, - 69506, 69488, 69502, 69496, 69505, 69492, 69499, 69501, 69503, 69494, - 69493, 69490, 69495, 69489, 69498, 69504, 69491, 69500, 69497, 69511, - 69512, 69513, 69510, 128477, 128117, 129491, 128116, 129746, 128283, - 128664, 128753, 128662, 128660, 128653, 11819, 8228, 128431, 129649, - 129477, 128214, 9251, 10044, 10027, 10034, 10011, 128194, 128449, 128080, - 128237, 128236, 10180, 10179, 128275, 9103, 9104, 10174, 983191, 8997, - 128191, 128440, 9934, 9741, 128217, 129505, 129447, 128895, 129741, 8886, - 2902, 2903, 2933, 2934, 2931, 2930, 2935, 2932, 2928, 2909, 2908, 2864, - 2911, 2863, 2821, 2822, 2832, 2836, 2850, 2849, 2855, 2854, 2848, 2847, - 2853, 2852, 2827, 2912, 2828, 2913, 2869, 2825, 2826, 2823, 2824, 2867, - 2866, 2841, 2851, 2846, 2856, 2870, 2871, 2872, 2861, 2860, 2843, 2842, - 2840, 2839, 2845, 2844, 2838, 2837, 2859, 2858, 2873, 2862, 2929, 2831, - 2835, 983660, 983659, 2817, 2876, 2877, 2818, 2901, 2893, 2819, 2878, - 2888, 2892, 2881, 2882, 2883, 2884, 2914, 2915, 2879, 2880, 2887, 2891, - 2923, 2922, 2925, 2924, 2921, 2920, 2918, 2927, 2919, 2926, 64830, 64831, - 9766, 117826, 10183, 66736, 66737, 66738, 66739, 66743, 66763, 66761, - 66742, 66749, 66757, 66744, 66768, 66750, 66748, 66754, 66755, 66764, - 66762, 66760, 66746, 66745, 66741, 66765, 66769, 66759, 66758, 66771, - 66770, 66740, 66751, 66752, 66753, 66756, 66767, 66747, 66766, 66776, - 66777, 66778, 66779, 66783, 66803, 66801, 66782, 66789, 66797, 66784, - 66808, 66790, 66788, 66794, 66795, 66804, 66802, 66800, 66786, 66785, - 66781, 66805, 66809, 66799, 66798, 66811, 66810, 66780, 66791, 66792, - 66793, 66796, 66807, 66787, 66806, 66710, 66688, 66715, 66699, 66694, - 66698, 66703, 66693, 66697, 66696, 66705, 66702, 66713, 66717, 66704, - 66706, 66707, 66711, 66716, 66689, 66701, 66700, 66708, 66691, 66695, - 66690, 66692, 66709, 66712, 66714, 66725, 66724, 66727, 66726, 66723, - 66722, 66720, 66729, 66721, 66728, 983192, 126257, 126264, 126258, - 126259, 126265, 126260, 126263, 126267, 126255, 126266, 126256, 126262, - 126261, 126269, 126268, 126254, 126216, 126225, 126252, 126234, 126243, - 126222, 126249, 126213, 126231, 126240, 126221, 126248, 126212, 126230, - 126239, 126217, 126226, 126253, 126235, 126244, 126215, 126224, 126251, - 126233, 126242, 126214, 126223, 126250, 126232, 126241, 126220, 126247, - 126211, 126229, 126238, 126219, 126246, 126210, 126228, 126237, 126218, - 126245, 126209, 126227, 126236, 129446, 128228, 117974, 117975, 117976, - 117977, 117978, 117979, 117980, 117981, 117982, 117983, 117984, 117985, - 117986, 117987, 117988, 117989, 117990, 117991, 117992, 117993, 117994, - 117995, 117996, 117997, 117998, 117999, 10015, 9885, 10029, 10009, - 118005, 118004, 118007, 118006, 118003, 118002, 118000, 118009, 118001, - 118008, 8485, 129397, 128471, 11195, 11194, 11196, 8254, 129450, 127970, - 118459, 8486, 128076, 127842, 128329, 129417, 128002, 983122, 983121, - 128463, 128195, 128479, 128196, 128223, 128464, 128724, 93059, 93065, - 93064, 93058, 93070, 93056, 93055, 93053, 93062, 93069, 93061, 93066, - 93071, 93068, 93054, 93057, 93063, 93067, 93060, 92967, 92975, 92965, - 92969, 92959, 92968, 92971, 92957, 92962, 92960, 92972, 92970, 92963, - 92958, 92966, 92961, 92956, 92974, 92964, 92973, 92979, 92978, 92980, - 92977, 92976, 92982, 92981, 93023, 93020, 93024, 93021, 93019, 93025, - 93022, 93043, 92985, 93047, 93044, 93045, 92997, 93046, 93042, 93032, - 93029, 92995, 93038, 92993, 93041, 93035, 93033, 93037, 93030, 93039, - 92987, 92992, 92986, 92983, 92984, 93027, 92994, 93034, 92988, 92990, - 92989, 92991, 93028, 92996, 93031, 93040, 93036, 92954, 92955, 92938, - 92939, 92932, 92933, 92942, 92943, 92950, 92951, 92928, 92929, 92936, - 92937, 92948, 92949, 92930, 92931, 92944, 92945, 92934, 92935, 92940, - 92941, 92946, 92947, 92952, 92953, 93013, 93012, 93015, 93014, 93011, - 93010, 93008, 93017, 93009, 93016, 9908, 11801, 127796, 129779, 129780, - 67703, 67693, 67688, 67702, 67683, 67691, 67699, 67700, 67680, 67696, - 67682, 67686, 67695, 67698, 67701, 67689, 67684, 67687, 67690, 67681, - 67694, 67685, 67697, 67692, 67704, 67711, 67706, 67707, 67710, 67709, - 67708, 67705, 129330, 129374, 128060, 8233, 11853, 11791, 10995, 10994, - 8741, 129666, 12809, 12823, 12808, 12822, 12828, 12813, 12827, 12810, - 12824, 12800, 12814, 12804, 12818, 12801, 12815, 12812, 12826, 12805, - 12819, 12803, 12817, 12806, 12820, 12811, 12825, 12802, 12816, 12807, - 12821, 12863, 12855, 12858, 12861, 12847, 12839, 12854, 12843, 12836, - 12864, 12835, 12856, 12846, 12842, 12840, 12852, 12862, 12865, 12857, - 12867, 12838, 12866, 12851, 12853, 12859, 12849, 12860, 12848, 12837, - 12834, 12841, 12833, 12845, 12844, 12850, 12832, 12830, 12829, 9349, - 9342, 9345, 9346, 9350, 9347, 9348, 9344, 9351, 9343, 9341, 9336, 9335, - 9338, 9337, 9334, 9333, 9340, 9332, 9339, 127248, 127249, 127250, 127251, - 127252, 127253, 127254, 127255, 127256, 127257, 127258, 127259, 127260, - 127261, 127262, 127263, 127264, 127265, 127266, 127267, 127268, 127269, - 127270, 127271, 127272, 127273, 9372, 9373, 9374, 9375, 9376, 9377, 9378, - 9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, 9389, 9390, - 9391, 9392, 9393, 9394, 9395, 9396, 9397, 8706, 983147, 983146, 983149, - 983150, 9853, 127881, 118468, 128890, 12880, 12349, 129436, 128755, - 11261, 9105, 9106, 128706, 72437, 72440, 72432, 72416, 72419, 72413, - 72417, 72415, 72412, 72414, 72418, 72420, 72403, 72407, 72411, 72409, - 72410, 72391, 72400, 72404, 72397, 72394, 72385, 72401, 72384, 72399, - 72398, 72396, 72388, 72393, 72392, 72386, 72387, 72402, 72395, 72390, - 72389, 72405, 72406, 72408, 72436, 72435, 72438, 72439, 72422, 72421, - 72424, 72425, 72431, 72433, 72434, 72428, 72427, 72429, 72430, 72423, - 72426, 128062, 128230, 128206, 983228, 983237, 129434, 9774, 127825, - 129372, 129755, 127824, 128039, 128532, 9956, 128390, 9999, 8240, 8241, - 8524, 10178, 10977, 129336, 129496, 129494, 128113, 9977, 128590, 129733, - 128591, 129493, 128589, 128588, 129495, 128583, 128187, 8966, 128547, 37, - 9854, 127917, 8359, 8369, 129515, 128694, 129730, 43101, 43117, 43120, - 43076, 43123, 43077, 43115, 43090, 43082, 43094, 43098, 43099, 43119, - 43118, 43109, 43074, 43075, 43116, 43079, 43083, 43089, 43088, 43114, - 43113, 43081, 43080, 43073, 43072, 43085, 43084, 43092, 43093, 43104, - 43110, 43086, 43108, 43100, 43078, 43097, 43087, 43106, 43096, 43091, - 43107, 43095, 43102, 43105, 43103, 43127, 43126, 43124, 43121, 43111, - 43112, 43122, 43125, 66033, 66023, 66017, 66010, 66027, 66003, 66018, - 66028, 66004, 66012, 66022, 66020, 66045, 66019, 66031, 66041, 66007, - 66006, 66025, 66026, 66038, 66016, 66013, 66014, 66000, 66001, 66034, - 66036, 66037, 66029, 66011, 66024, 66015, 66021, 66042, 66043, 66002, - 66008, 66032, 66005, 66044, 66040, 66039, 66030, 66009, 66035, 5941, - 5942, 67840, 67855, 67843, 67844, 67847, 67858, 67857, 67860, 67854, - 67861, 67848, 67845, 67846, 67849, 67859, 67842, 67850, 67853, 67851, - 67841, 67856, 67852, 67864, 67866, 67867, 67863, 67862, 67865, 67871, - 11227, 9935, 128763, 128022, 128061, 128055, 128169, 182, 128138, 129292, - 129295, 127885, 127821, 10031, 129655, 129669, 9811, 128299, 8916, 10970, - 129383, 8984, 128720, 129703, 8462, 8463, 128733, 127183, 127136, 127167, - 127199, 127188, 127140, 127156, 127172, 127200, 127189, 127141, 127157, - 127173, 127196, 127148, 127164, 127180, 127198, 127150, 127166, 127182, - 127192, 127144, 127160, 127176, 127191, 127143, 127159, 127175, 127190, - 127142, 127158, 127174, 127197, 127149, 127165, 127181, 127194, 127146, - 127162, 127178, 127187, 127139, 127155, 127171, 127186, 127138, 127154, - 127170, 127202, 127220, 127221, 127201, 127210, 127211, 127212, 127213, - 127214, 127215, 127216, 127217, 127218, 127219, 127203, 127204, 127205, - 127206, 127207, 127208, 127209, 127185, 127137, 127153, 127169, 127193, - 127145, 127161, 127177, 127195, 127147, 127163, 127179, 983151, 43, - 10797, 10798, 10809, 10789, 10786, 10791, 10790, 10788, 10792, 10787, - 10866, 177, 9799, 11222, 11221, 11220, 11219, 129696, 983148, 117777, - 128659, 128680, 128110, 8297, 8236, 127871, 128254, 11239, 128239, 12306, - 12320, 128238, 8982, 128688, 129364, 127858, 129716, 127831, 129751, - 128574, 128545, 163, 128093, 9212, 9213, 9214, 9211, 128041, 128425, - 129328, 129732, 129731, 65043, 65040, 65045, 65073, 65074, 65049, 65041, - 65042, 65091, 65047, 65083, 65085, 65089, 65079, 65087, 65077, 65095, - 65081, 65075, 65084, 65086, 65092, 983261, 65048, 65090, 65080, 65088, - 65078, 65096, 65082, 65076, 65044, 65072, 65046, 8478, 8826, 10937, - 10933, 10927, 10929, 10935, 10931, 8936, 8830, 8828, 8880, 9111, 129384, - 9113, 128424, 128438, 129332, 128120, 983193, 983166, 983163, 983164, - 983167, 8242, 8965, 8759, 8733, 8522, 11224, 128711, 129455, 128255, - 68507, 68508, 68480, 68483, 68490, 68491, 68485, 68482, 68486, 68493, - 68495, 68496, 68488, 68484, 68487, 68489, 68481, 68492, 68497, 68494, - 68526, 68522, 68523, 68525, 68521, 68527, 68524, 68505, 68506, 118473, - 11854, 8200, 128156, 128091, 128686, 128204, 128226, 983165, 983168, - 983194, 9624, 9625, 9626, 9627, 9628, 9629, 9630, 9631, 9622, 9623, - 10764, 8279, 10774, 9833, 128894, 8264, 63, 8799, 34, 9915, 127949, - 127950, 129437, 128251, 9762, 128280, 9143, 128740, 128643, 9926, 127752, - 11827, 11783, 11782, 9995, 128400, 128406, 127338, 127339, 127340, - 129996, 11787, 9994, 11828, 129306, 128000, 8758, 128007, 128048, 129682, - 128015, 129534, 117778, 9852, 9843, 9844, 9845, 9846, 9847, 9848, 9849, - 9850, 983113, 128665, 127822, 129511, 174, 127462, 127463, 127464, + 68159, 68168, 129711, 983960, 983965, 983970, 983975, 983962, 983964, + 983961, 983963, 983957, 983959, 983956, 983958, 983977, 983979, 983978, + 983972, 983974, 983967, 983969, 983971, 983973, 983966, 983968, 983989, + 983983, 983985, 983986, 983987, 983980, 983982, 983984, 983981, 983976, + 983988, 6107, 6052, 6064, 6051, 6067, 6066, 6065, 6055, 6057, 6058, 6056, + 6053, 6054, 6063, 983994, 983991, 983992, 983993, 6061, 6062, 6059, 6060, + 6022, 6024, 6021, 6023, 6017, 6019, 6016, 6018, 6020, 6030, 6025, 6035, + 6037, 6039, 6038, 6046, 6045, 6047, 6032, 6034, 6027, 6029, 6031, 6033, + 6026, 6028, 6049, 6043, 6040, 6042, 6044, 6041, 6036, 6048, 6050, 6108, + 6109, 6095, 6096, 6099, 6091, 6101, 6104, 6102, 6098, 6094, 6100, 6106, + 6092, 6087, 6090, 6093, 6103, 6105, 6088, 6086, 6089, 6097, 6652, 6636, + 6655, 6639, 6653, 6637, 6654, 6638, 6651, 6635, 6650, 6634, 6133, 6137, + 6136, 6134, 6135, 6130, 6132, 6131, 6129, 6128, 6624, 6648, 6632, 6649, + 6633, 6647, 6631, 6646, 6630, 6645, 6629, 6642, 6626, 6640, 6643, 6627, + 6644, 6628, 6641, 6625, 6069, 6068, 6070, 983996, 6082, 6083, 6085, 6071, + 6080, 6072, 6078, 983995, 6084, 6073, 6079, 6074, 983990, 6075, 6077, + 6076, 6081, 6117, 6116, 6119, 6118, 6115, 6114, 6112, 6121, 6113, 6120, + 70204, 70201, 70200, 70208, 70185, 70178, 70179, 70177, 70155, 70156, + 70154, 70172, 70167, 70166, 70173, 70171, 70161, 70160, 70144, 70145, + 70149, 70151, 70165, 70164, 70170, 70169, 70187, 70183, 70157, 70168, + 70163, 70174, 70159, 70158, 70153, 70152, 70176, 70175, 70186, 70180, + 70207, 70182, 70184, 70181, 70148, 70146, 70150, 70147, 70199, 70206, + 70198, 70197, 70196, 70203, 70209, 70188, 70193, 70195, 70189, 70190, + 70192, 70194, 70191, 70202, 70205, 70357, 70358, 70356, 70333, 70334, + 70332, 70345, 70347, 70344, 70352, 70351, 70340, 70339, 70338, 70320, + 70321, 70327, 70329, 70346, 70361, 70343, 70342, 70350, 70349, 70324, + 70325, 70322, 70323, 70335, 70348, 70341, 70353, 70337, 70336, 70331, + 70330, 70355, 70354, 70364, 70365, 70366, 70362, 70359, 70363, 70360, + 70326, 70328, 70377, 70378, 70367, 70368, 70374, 70376, 70371, 70372, + 70369, 70370, 70373, 70375, 70389, 70388, 70391, 70390, 70387, 70386, + 70384, 70393, 70385, 70392, 94180, 93521, 93520, 93525, 93524, 93519, + 93518, 93523, 93522, 93512, 93517, 93526, 93530, 93529, 93514, 93513, + 93511, 93510, 93516, 93515, 93509, 93508, 93528, 93527, 93537, 93536, + 93538, 93534, 93531, 93533, 93535, 93532, 93507, 93505, 93549, 93548, + 93504, 93547, 93506, 93539, 93544, 93546, 93541, 93542, 93543, 93540, + 93545, 93551, 93550, 93557, 93556, 93559, 93558, 93555, 93554, 93552, + 93561, 93553, 93560, 128143, 128535, 128537, 128538, 128573, 128139, + 129373, 8365, 128088, 129665, 129486, 129698, 12927, 128040, 11235, + 129404, 127991, 129357, 128030, 129692, 128728, 917505, 3805, 3804, + 983206, 983207, 3743, 3741, 3807, 3806, 3714, 3716, 3713, 983209, 3747, + 3749, 3730, 3729, 3736, 3728, 3727, 3731, 3726, 3744, 3721, 3718, 3724, + 3756, 3740, 3742, 3739, 3752, 3753, 3754, 3722, 3734, 3735, 3733, 3755, + 3758, 3719, 3725, 3737, 3738, 3720, 3732, 3745, 983208, 3751, 3746, 3757, + 3773, 3772, 3770, 3785, 3786, 3787, 3784, 3760, 3762, 3780, 3763, 3779, + 3761, 3771, 3766, 3767, 3768, 3769, 3776, 3777, 3764, 3765, 3778, 3782, + 3790, 3759, 3797, 3796, 3799, 3798, 3795, 3794, 3792, 3801, 3793, 3800, + 3788, 3789, 128996, 129003, 128309, 128311, 128998, 128994, 129001, + 68413, 68415, 128992, 128310, 128999, 68412, 68414, 118324, 118319, + 118322, 118323, 118303, 118304, 118336, 118331, 118328, 118315, 118314, + 118306, 118316, 118318, 118334, 118335, 118333, 118327, 118339, 118341, + 118342, 118340, 118320, 118338, 118332, 118302, 118325, 118309, 118317, + 118307, 118313, 118326, 118329, 118312, 118330, 118352, 118348, 118351, + 118350, 118347, 118344, 118345, 118343, 118349, 118346, 118305, 118321, + 118301, 118299, 118298, 118310, 118311, 118308, 118300, 118337, 11004, + 10201, 10200, 10782, 128995, 129002, 128308, 128997, 128993, 129000, + 9711, 10923, 10925, 8382, 9790, 127772, 127767, 65, 258, 7858, 7856, + 7854, 7862, 7860, 550, 480, 7840, 512, 196, 478, 197, 506, 7680, 256, + 983564, 194, 7848, 7846, 7844, 7852, 7850, 461, 7842, 260, 983590, + 983592, 192, 193, 514, 195, 570, 198, 508, 482, 42946, 393, 11373, 42808, + 42810, 42802, 42804, 42806, 42812, 66, 386, 42902, 7686, 7684, 7682, 385, + 579, 42822, 42932, 67, 199, 7688, 264, 268, 262, 42948, 391, 42898, 266, + 571, 42960, 42796, 42798, 42862, 42931, 68, 498, 453, 42951, 272, 7696, + 7698, 270, 395, 7694, 7692, 7690, 394, 497, 452, 42964, 42962, 69, 552, + 7708, 202, 983586, 7874, 7872, 7870, 983584, 7878, 7876, 7704, 282, 278, + 983598, 983600, 7864, 516, 203, 7868, 7706, 274, 7700, 7702, 983570, + 983572, 983574, 7866, 280, 983594, 983596, 200, 201, 518, 276, 582, 439, + 494, 440, 42786, 42788, 42858, 208, 425, 330, 70, 401, 7710, 42904, 71, + 290, 284, 486, 500, 286, 7712, 42912, 403, 288, 484, 577, 42938, 42940, + 42942, 404, 983199, 72, 7722, 7720, 292, 542, 7718, 11367, 7716, 7714, + 42922, 294, 11381, 502, 42790, 73, 520, 7882, 304, 207, 7726, 206, 463, + 298, 983566, 296, 7724, 7880, 302, 983604, 983606, 204, 205, 522, 300, + 407, 42873, 42875, 42877, 42882, 42884, 42886, 406, 42860, 74, 308, + 42930, 983608, 584, 75, 310, 488, 42818, 11369, 7730, 42816, 42820, 7728, + 7732, 42914, 408, 76, 42925, 573, 11360, 7734, 7736, 11362, 319, 456, + 321, 315, 7740, 317, 42824, 313, 7738, 983610, 42970, 42972, 455, 77, + 7742, 7746, 7744, 983612, 11374, 7930, 7932, 42966, 78, 325, 7754, 327, + 459, 544, 7752, 413, 504, 323, 42896, 7750, 7748, 42916, 209, 458, 79, + 42826, 42828, 332, 7760, 7762, 415, 212, 7892, 7890, 7888, 7896, 7894, + 465, 214, 554, 558, 560, 7884, 524, 336, 490, 492, 216, 510, 213, 7758, + 7756, 556, 983576, 983578, 983580, 416, 7902, 7900, 7898, 7906, 7904, + 7886, 210, 211, 526, 334, 42944, 400, 390, 42934, 418, 42830, 546, 80, + 42834, 11363, 42832, 42836, 7764, 420, 7766, 42958, 81, 42840, 42838, 82, + 342, 344, 7770, 7772, 7768, 528, 983614, 11364, 340, 7774, 530, 42918, + 588, 42842, 42997, 42923, 42814, 398, 42844, 42955, 83, 352, 7782, 350, + 536, 348, 346, 7780, 7778, 7784, 7776, 42956, 42953, 11390, 983582, + 42920, 42949, 586, 42926, 42891, 7838, 42968, 42924, 399, 84, 354, 7792, + 538, 356, 574, 7788, 7786, 7790, 430, 428, 358, 42878, 11375, 11376, + 42893, 42928, 42880, 412, 42929, 581, 222, 42852, 42854, 388, 444, 423, + 42794, 42792, 85, 219, 7798, 467, 220, 473, 475, 471, 469, 7794, 532, + 368, 7908, 431, 7916, 7914, 7912, 7920, 7918, 7910, 362, 7802, 983568, + 983620, 983622, 370, 983616, 983618, 360, 7800, 7796, 217, 218, 534, 364, + 366, 42936, 580, 433, 86, 42846, 7806, 7804, 434, 42850, 42906, 42908, + 42910, 42856, 42848, 87, 372, 7812, 7816, 7814, 7808, 7810, 11378, 503, + 88, 7820, 7818, 89, 374, 376, 7924, 7822, 7922, 435, 7926, 7934, 221, + 562, 7928, 590, 540, 90, 7824, 381, 377, 11371, 7826, 379, 7828, 11391, + 437, 42950, 548, 306, 338, 10013, 43007, 43005, 43006, 43003, 43004, + 42999, 450, 7461, 684, 664, 685, 662, 122638, 446, 661, 426, 674, 451, + 122634, 7431, 7430, 7459, 618, 641, 671, 122628, 7436, 7439, 7440, 630, + 7445, 640, 7438, 7449, 43846, 42870, 7451, 11387, 122626, 122640, 43002, + 7450, 665, 7427, 610, 667, 7424, 7425, 7428, 7429, 42800, 668, 7434, + 7435, 7437, 628, 7448, 42927, 42801, 7452, 7456, 7457, 655, 7458, 663, + 122639, 42895, 443, 447, 448, 449, 660, 673, 7460, 422, 7547, 7550, 97, + 259, 7859, 7857, 7855, 7863, 7861, 551, 481, 7841, 513, 228, 479, 229, + 507, 7681, 7834, 7567, 257, 983565, 226, 7849, 7847, 7845, 7853, 7851, + 462, 7843, 261, 983591, 983593, 224, 225, 515, 227, 11365, 43825, 230, + 983624, 509, 483, 42947, 593, 7568, 42809, 42811, 42803, 42805, 42807, + 42813, 98, 387, 42903, 7687, 7532, 7552, 7685, 7683, 595, 384, 43824, + 43827, 629, 43853, 43837, 43838, 43826, 42823, 7447, 42933, 99, 231, + 7689, 265, 597, 269, 263, 42900, 122653, 392, 42899, 267, 572, 43859, + 43860, 43861, 42961, 666, 631, 606, 42797, 42799, 42863, 100, 42952, 273, + 396, 598, 7697, 7699, 545, 271, 122661, 7533, 7695, 599, 7569, 7553, + 7693, 7691, 676, 122642, 122649, 7839, 567, 607, 644, 305, 42965, 43848, + 43850, 42963, 499, 454, 675, 677, 43878, 568, 42865, 101, 553, 7709, 234, + 983587, 7875, 7873, 7871, 983585, 7879, 7877, 7705, 283, 279, 983599, + 983601, 7865, 517, 235, 11384, 7869, 7707, 275, 7701, 7703, 983571, + 983573, 983575, 43828, 7867, 281, 983595, 983597, 232, 233, 519, 277, + 7570, 583, 42787, 42789, 331, 43836, 122644, 643, 122635, 122636, 7563, + 646, 7576, 658, 441, 659, 495, 122648, 7578, 442, 42859, 240, 102, 7534, + 7554, 402, 7711, 42905, 681, 122624, 103, 291, 285, 487, 501, 287, 7713, + 7555, 42913, 608, 289, 485, 578, 42939, 42941, 42943, 611, 983200, 104, + 7723, 7721, 293, 543, 7719, 11368, 7717, 7715, 7830, 42901, 614, 295, + 11382, 983631, 983632, 42791, 615, 405, 105, 238, 464, 239, 7727, 983602, + 983588, 983603, 7883, 521, 299, 983567, 303, 983605, 983607, 297, 7725, + 7881, 236, 237, 523, 301, 616, 122650, 7574, 42874, 42876, 7545, 42883, + 42885, 42887, 43876, 43840, 617, 7548, 43873, 42861, 106, 309, 669, 496, + 983609, 585, 107, 311, 489, 42819, 11370, 7731, 42817, 42821, 7729, 7733, + 7556, 42915, 409, 312, 108, 620, 122643, 410, 316, 7741, 564, 318, 7735, + 7737, 43832, 11361, 619, 43833, 320, 122662, 42825, 314, 7739, 43831, + 621, 42894, 122641, 7557, 983611, 322, 42971, 411, 622, 122629, 43829, + 383, 7836, 7835, 7837, 682, 683, 42866, 457, 109, 7743, 43834, 7535, + 7558, 7747, 7745, 983613, 625, 7931, 7933, 42967, 42867, 110, 326, 7755, + 43835, 565, 328, 414, 7753, 626, 122663, 7536, 505, 324, 42897, 7751, + 7749, 7559, 627, 42917, 241, 329, 983589, 42868, 460, 111, 244, 7893, + 7891, 7889, 7897, 7895, 466, 246, 555, 559, 561, 7885, 525, 337, 42827, + 11386, 42829, 333, 7761, 7763, 491, 493, 248, 511, 245, 7759, 7757, 557, + 983577, 983579, 983581, 417, 7903, 7901, 7899, 7907, 7905, 7887, 242, + 243, 527, 335, 122651, 42945, 596, 983625, 983626, 7575, 43839, 43874, + 603, 7571, 42935, 419, 42831, 547, 112, 42835, 7549, 42833, 42837, 7765, + 7537, 7560, 421, 7767, 42959, 632, 113, 42841, 672, 587, 42839, 569, 114, + 343, 43849, 345, 7771, 7773, 7769, 529, 638, 7539, 122646, 7775, 636, + 983615, 637, 122664, 7538, 341, 531, 7561, 42919, 589, 43847, 42843, + 42998, 604, 7572, 605, 639, 122625, 600, 122631, 8580, 42815, 122627, + 42869, 42845, 612, 115, 347, 7781, 353, 7783, 351, 537, 349, 122654, + 7779, 7785, 7777, 42957, 42954, 575, 983583, 122665, 7540, 7562, 42921, + 642, 42892, 43872, 601, 983629, 983630, 7573, 602, 43851, 43852, 609, + 43830, 223, 7441, 7442, 7443, 7455, 7454, 7453, 42969, 645, 43845, 116, + 355, 7793, 539, 566, 357, 11366, 7831, 7789, 7787, 122666, 7541, 7791, + 427, 429, 122633, 648, 359, 679, 122647, 122652, 7546, 254, 42853, 42855, + 389, 445, 424, 7446, 42795, 397, 613, 686, 687, 7433, 42879, 7444, 43842, + 43841, 43843, 43844, 7432, 633, 43880, 122645, 634, 122632, 11385, 635, + 647, 122637, 652, 983627, 983628, 592, 594, 7426, 623, 624, 654, 122630, + 43857, 477, 7543, 670, 42881, 653, 42871, 680, 678, 43879, 11383, 42793, + 117, 649, 43855, 251, 7799, 468, 252, 474, 476, 472, 470, 7795, 533, 369, + 7909, 432, 7917, 7915, 7913, 7921, 7919, 7911, 363, 7803, 983569, 983621, + 983623, 371, 983617, 983619, 7577, 367, 361, 7801, 7797, 249, 43854, + 42937, 250, 535, 365, 43858, 650, 7551, 7531, 43856, 42872, 43875, 118, + 42847, 7807, 7564, 11380, 11377, 7805, 651, 42851, 42907, 42909, 42911, + 42857, 42849, 119, 373, 7813, 7817, 7815, 7809, 7811, 7832, 11379, 120, + 7821, 7819, 43863, 43864, 43865, 43862, 7565, 121, 375, 255, 7925, 7823, + 7923, 436, 7927, 7935, 43866, 591, 253, 563, 7929, 7833, 541, 122, 378, + 7825, 657, 382, 11372, 7827, 380, 7829, 576, 438, 7542, 7566, 656, 549, + 64256, 64259, 64260, 64257, 64258, 307, 64261, 64262, 339, 8347, 8340, + 8336, 8337, 8341, 7522, 11388, 8342, 8343, 8344, 8345, 8338, 8346, 7523, + 8348, 7524, 7525, 8339, 129726, 127811, 129388, 129897, 129916, 129947, + 10203, 10202, 129899, 129917, 117902, 128494, 12296, 10641, 10643, 11058, + 11056, 10576, 10571, 10570, 10574, 12304, 10647, 123, 9128, 9129, 9127, + 12300, 8968, 9948, 10714, 12298, 8220, 11816, 11780, 129287, 129284, + 129285, 129283, 129286, 9686, 11240, 9612, 129977, 117924, 118288, + 129970, 118285, 118283, 118435, 118440, 129940, 129932, 128379, 128709, + 11804, 10204, 9614, 9615, 129999, 10197, 8596, 8700, 8697, 8622, 10568, + 8660, 10500, 8654, 8621, 11012, 8703, 11020, 129112, 11108, 11788, 10181, + 8907, 9609, 8216, 11814, 128488, 91, 9123, 9121, 10639, 10637, 8261, + 10635, 11863, 11861, 9122, 11778, 10703, 129900, 11785, 117771, 129985, + 128492, 118434, 118441, 9610, 9613, 12308, 129998, 8867, 12302, 10627, + 12310, 10629, 12314, 12312, 10712, 128398, 9611, 10620, 8970, 130027, + 130019, 8905, 40, 9117, 9115, 9116, 11808, 9144, 9001, 117856, 118265, + 10748, 171, 117774, 128269, 117920, 117846, 117922, 117911, 117861, + 117762, 117918, 117880, 10553, 10154, 1422, 117832, 117906, 117908, + 129307, 4054, 4056, 117872, 117876, 9958, 8294, 8237, 8234, 8206, 8592, + 10563, 11074, 11083, 11082, 10611, 129973, 10618, 10615, 11070, 8676, + 8633, 10525, 129032, 8619, 11064, 8698, 10566, 129040, 129024, 8602, + 11024, 11025, 8610, 11066, 11065, 129028, 129176, 129044, 8617, 8695, + 8612, 10527, 129216, 8646, 10521, 129192, 129184, 11144, 11013, 10603, + 10599, 10590, 10582, 8637, 10594, 10602, 10598, 10586, 10578, 8636, 8651, + 129778, 129088, 129092, 11104, 11136, 11130, 983241, 11174, 11172, + 129064, 129060, 129056, 129072, 129068, 11120, 11114, 11140, 129168, + 10510, 8666, 129186, 11067, 11069, 11068, 11244, 11061, 11060, 11062, + 11063, 8606, 8678, 129172, 8604, 8656, 10498, 8653, 10502, 10523, 10508, + 8672, 129194, 129076, 129188, 8701, 8647, 129783, 129190, 128620, 8668, + 129080, 129104, 129084, 11077, 9804, 128006, 7213, 7221, 7216, 7220, + 7215, 7214, 7217, 7218, 7219, 7170, 7169, 7168, 7184, 7183, 7182, 7247, + 7193, 7180, 7188, 7187, 7186, 7185, 7172, 7171, 7198, 7197, 7190, 7189, + 7173, 7177, 7181, 7192, 7191, 7246, 7245, 7179, 7178, 7175, 7174, 7201, + 7200, 7176, 7196, 7195, 7199, 7202, 7194, 7203, 7227, 7231, 7230, 7228, + 7229, 7223, 7222, 7205, 7204, 7210, 7211, 7208, 7209, 7206, 7212, 7207, + 7237, 7236, 7239, 7238, 7235, 7234, 7232, 7241, 7233, 7240, 10897, 10895, + 10893, 10899, 10891, 10614, 10889, 10887, 8922, 8934, 8808, 10918, 10920, + 10885, 10877, 10881, 10883, 10879, 8818, 8804, 8822, 8806, 10873, 10875, + 8918, 60, 118480, 128210, 127898, 127819, 129461, 128626, 128955, 128969, + 128943, 11212, 128964, 10099, 128648, 10098, 9617, 128937, 128949, + 128978, 128960, 129653, 128910, 10072, 128930, 128504, 9735, 128498, + 128497, 6429, 6404, 6403, 6412, 6430, 6411, 6421, 6410, 6405, 6415, 6425, + 6426, 6427, 6419, 6418, 6407, 6406, 6414, 6413, 6409, 6408, 6402, 6401, + 6417, 6416, 6428, 6423, 6420, 6422, 6424, 6458, 6457, 6459, 6464, 6449, + 6452, 6450, 6448, 6456, 6454, 6453, 6455, 6451, 6442, 6443, 6441, 6432, + 6436, 6438, 6440, 6437, 6439, 6435, 6433, 6434, 6400, 6468, 6469, 6475, + 6474, 6477, 6476, 6473, 6472, 6470, 6479, 6471, 6478, 13007, 10770, + 10771, 10772, 983062, 8232, 983068, 983143, 67143, 67146, 67151, 67165, + 67166, 67167, 67157, 67158, 67159, 67160, 67161, 67162, 67163, 67164, + 67171, 67172, 67173, 67168, 67169, 67170, 67174, 67175, 67176, 67177, + 67178, 67179, 67230, 67231, 67180, 67181, 67182, 67183, 67184, 67185, + 67186, 67187, 67188, 67189, 67190, 67191, 67192, 67193, 67194, 67195, + 67196, 67197, 67198, 67199, 67200, 67201, 67202, 67203, 67204, 67205, + 67206, 67207, 67208, 67209, 67210, 67211, 67212, 67213, 67214, 67215, + 67216, 67217, 67218, 67219, 67220, 67221, 67222, 67223, 67224, 67225, + 67226, 67227, 67228, 67229, 67232, 67233, 67234, 67235, 67236, 67237, + 67238, 67239, 67240, 67241, 67242, 67243, 67244, 67245, 67246, 67247, + 67248, 67249, 67250, 67251, 67252, 67253, 67254, 67255, 67256, 67257, + 67258, 67259, 67260, 67261, 67262, 67263, 67264, 67274, 67275, 67276, + 67277, 67278, 67279, 67280, 67281, 67282, 67283, 67284, 67285, 67286, + 67287, 67288, 67289, 67290, 67291, 67292, 67293, 67294, 67295, 67296, + 67297, 67298, 67299, 67300, 67301, 67302, 67303, 67304, 67265, 67266, + 67267, 67268, 67269, 67270, 67271, 67272, 67273, 67325, 67326, 67327, + 67328, 67329, 67330, 67305, 67306, 67307, 67308, 67309, 67310, 67311, + 67312, 67313, 67314, 67315, 67316, 67317, 67318, 67319, 67320, 67321, + 67322, 67323, 67324, 67331, 67332, 67333, 67334, 67335, 67336, 67337, + 67338, 67349, 67350, 67351, 67352, 67353, 67354, 67355, 67356, 67357, + 67358, 67359, 67360, 67361, 67362, 67363, 67364, 67365, 67366, 67367, + 67368, 67378, 67379, 67380, 67381, 67382, 67369, 67370, 67371, 67372, + 67373, 67374, 67375, 67376, 67377, 67339, 67340, 67341, 67342, 67343, + 67344, 67345, 67346, 67347, 67348, 67401, 67404, 67403, 67402, 67400, + 67398, 67393, 67397, 67395, 67394, 67399, 67392, 67396, 67408, 67409, + 67410, 67406, 67407, 67405, 67411, 67413, 67412, 67424, 67425, 67426, + 67427, 67428, 67429, 67430, 67431, 67081, 67082, 67083, 67084, 67085, + 67087, 67088, 67089, 67090, 67091, 67092, 67093, 67094, 67086, 67095, + 67096, 67097, 67098, 67100, 67101, 67102, 67103, 67104, 67105, 67106, + 67107, 67108, 67109, 67110, 67111, 67112, 67113, 67114, 67115, 67116, + 67117, 67118, 67119, 67120, 67121, 67122, 67123, 67124, 67125, 67126, + 67127, 67128, 67129, 67130, 67131, 67132, 67133, 67134, 67135, 67136, + 67137, 67138, 67139, 67140, 67141, 67142, 67072, 67073, 67074, 67075, + 67076, 67077, 67078, 67079, 67080, 67145, 67147, 67148, 67149, 67150, + 67154, 67155, 67144, 67152, 67153, 67156, 67099, 65667, 65668, 65669, + 65670, 65671, 65672, 65673, 65675, 65674, 65677, 65676, 65665, 65664, + 65666, 65681, 65679, 65680, 65682, 65678, 65686, 65685, 65687, 65693, + 65690, 65691, 65692, 65694, 65703, 65696, 65695, 65697, 65698, 65699, + 65701, 65702, 65707, 65706, 65704, 65705, 65708, 65709, 65710, 65711, + 65712, 65713, 65719, 65717, 65714, 65715, 65716, 65718, 65720, 65721, + 65722, 65723, 65724, 65725, 65726, 65727, 65728, 65729, 65731, 65730, + 65732, 65733, 65737, 65734, 65735, 65736, 65738, 65739, 65740, 65741, + 65743, 65742, 65744, 65745, 65747, 65748, 65752, 65749, 65750, 65751, + 65753, 65754, 65755, 65756, 65757, 65779, 65780, 65781, 65782, 65783, + 65784, 65785, 65759, 65760, 65761, 65762, 65763, 65764, 65765, 65766, + 65767, 65768, 65769, 65770, 65771, 65772, 65773, 65774, 65775, 65776, + 65777, 65778, 65758, 65786, 65683, 65684, 65689, 65688, 65700, 65746, + 65561, 65543, 65587, 65582, 65589, 65536, 65541, 65579, 65566, 65571, + 65596, 65569, 65584, 65544, 65559, 65540, 65557, 65560, 65580, 65606, + 65600, 65599, 65577, 65562, 65538, 65573, 65563, 65609, 65588, 65549, + 65568, 65537, 65581, 65574, 65601, 65542, 65593, 65583, 65594, 65552, + 65547, 65605, 65578, 65545, 65585, 65586, 65546, 65570, 65591, 65564, + 65565, 65607, 65610, 65611, 65553, 65590, 65550, 65539, 65576, 65608, + 65551, 65554, 65592, 65603, 65597, 65567, 65572, 65558, 65555, 65612, + 65602, 65556, 65613, 65604, 65620, 65621, 65623, 65624, 65626, 65627, + 65628, 65629, 65622, 65616, 65617, 65619, 65618, 65625, 128391, 128279, + 128482, 128132, 42237, 42235, 42232, 42234, 42236, 42233, 42206, 42205, + 42197, 42196, 42204, 42195, 42228, 42229, 42230, 42213, 42208, 42224, + 42225, 42203, 42202, 42221, 42198, 42216, 42214, 42200, 42199, 42194, + 42193, 42219, 42210, 73648, 42220, 42211, 42212, 42222, 42223, 42227, + 42231, 42192, 42217, 42201, 42209, 42207, 42218, 42215, 42226, 42238, + 42239, 8356, 8374, 129409, 129422, 9806, 128274, 983079, 983076, 128271, + 117785, 117786, 117784, 117783, 117782, 117781, 8743, 10848, 10846, + 10833, 10844, 10842, 10847, 8744, 10841, 10851, 10850, 10834, 10845, + 10843, 10982, 10188, 129688, 10231, 129240, 10234, 10206, 10232, 10237, + 10229, 10235, 11059, 129236, 10230, 129238, 129239, 129232, 10236, 10233, + 10238, 129233, 129234, 10239, 10205, 129524, 128884, 129719, 128140, + 127977, 128261, 129707, 12319, 8270, 11847, 11848, 95, 118273, 9691, + 118276, 118291, 129935, 118436, 118447, 9604, 9697, 117765, 128394, + 129852, 129853, 129870, 129872, 129868, 129856, 129871, 129869, 129854, + 129873, 129855, 128395, 128396, 128393, 10559, 117934, 117936, 117932, + 117930, 117972, 9695, 117960, 117948, 117964, 117968, 117952, 117956, + 117944, 117940, 117817, 129951, 9722, 117820, 128397, 118428, 117935, + 117937, 117933, 117931, 117973, 9694, 117961, 117949, 117965, 117969, + 117953, 117957, 117945, 117941, 117818, 10558, 128318, 10065, 129950, + 9727, 117823, 117767, 129863, 129865, 129867, 129864, 129861, 129866, + 129859, 129862, 129860, 129857, 129858, 10195, 118431, 10063, 9998, 9987, + 118429, 117821, 118430, 117822, 130021, 9605, 118425, 118426, 118424, + 117816, 118427, 117819, 9602, 9601, 9607, 9603, 118437, 118446, 9606, + 129903, 9674, 10208, 129438, 128557, 127853, 129523, 128886, 129729, + 66190, 66192, 66187, 66196, 66199, 66185, 66200, 66178, 66179, 66176, + 66201, 66177, 66202, 66191, 66193, 66181, 66180, 66203, 66182, 66186, + 66189, 66195, 66188, 66197, 66198, 66194, 66183, 66204, 66184, 67887, + 67892, 67881, 67895, 67891, 67886, 67872, 67893, 67876, 67894, 67883, + 67896, 67873, 67897, 67875, 67889, 67874, 67878, 67880, 67882, 67884, + 67890, 67885, 67888, 67877, 67879, 67903, 129317, 983226, 983234, 983224, + 983229, 8468, 129433, 983065, 129668, 129522, 129497, 69986, 69981, + 69991, 69985, 69984, 69990, 69989, 70002, 69997, 69983, 69982, 69988, + 69987, 69995, 69994, 69978, 69977, 69976, 69975, 69980, 69979, 69974, + 69973, 69993, 69992, 70001, 69998, 69996, 70000, 69999, 69968, 69971, + 69969, 69972, 69970, 70006, 70005, 70003, 70004, 127012, 127019, 127008, + 126990, 126999, 126976, 127005, 126987, 126996, 127004, 126986, 126995, + 126979, 127009, 126991, 127000, 127001, 126983, 126992, 127011, 127010, + 126977, 127007, 126989, 126998, 127006, 126988, 126997, 127015, 127014, + 127003, 126985, 126994, 127002, 126984, 126993, 126978, 126982, 127017, + 126981, 126980, 127016, 127018, 127013, 73464, 73442, 73451, 73448, + 73444, 73449, 73447, 73441, 73450, 73440, 73454, 73445, 73443, 73453, + 73456, 73446, 73455, 73452, 73457, 73463, 73461, 73459, 73462, 73460, + 73458, 128892, 3449, 3435, 3434, 3437, 3436, 3433, 3432, 3430, 3439, + 3431, 3438, 3419, 3420, 3446, 3417, 3422, 3416, 3447, 3444, 3443, 3448, + 3418, 3421, 3445, 3333, 3423, 3334, 3344, 3348, 3453, 3454, 3414, 3451, + 3450, 3452, 3455, 3412, 3413, 3355, 3354, 3406, 3362, 3361, 3367, 3366, + 3360, 3386, 3359, 3365, 3364, 3332, 3339, 3424, 3340, 3425, 3381, 3369, + 3363, 3353, 3358, 3368, 3380, 3379, 3378, 3377, 3376, 3337, 3338, 3346, + 3347, 3335, 3336, 3382, 3383, 3384, 3373, 3372, 3352, 3351, 3357, 3356, + 3350, 3349, 3371, 3370, 3342, 3343, 3385, 3374, 3375, 3441, 3442, 3440, + 3328, 3388, 3329, 3387, 3405, 3331, 3389, 3330, 3407, 3390, 3400, 3404, + 3393, 3394, 3395, 3396, 3426, 3427, 3402, 3403, 3391, 3392, 3398, 3399, + 3415, 9895, 9894, 9893, 9794, 10016, 129443, 128104, 128372, 129333, + 128114, 128115, 128378, 128107, 2137, 2122, 2121, 2133, 2120, 2126, 2132, + 2129, 2136, 2113, 2115, 2114, 2116, 2123, 2124, 2125, 2128, 2130, 2131, + 2118, 2134, 2117, 2112, 2127, 2119, 2135, 2138, 2139, 2142, 68288, 68314, + 68313, 68290, 68289, 68293, 68308, 68292, 68291, 68300, 68299, 68298, + 68297, 68306, 68304, 68320, 68318, 68323, 68312, 68317, 68322, 68309, + 68302, 68324, 68305, 68319, 68307, 68321, 68303, 68294, 68301, 68311, + 68295, 68316, 68315, 68310, 68331, 68335, 68334, 68333, 68332, 68340, + 68339, 68338, 68342, 68337, 68341, 68336, 68296, 68326, 68325, 128094, + 129469, 8380, 128368, 129389, 9967, 127809, 129671, 72835, 72834, 72827, + 72826, 72836, 72828, 72821, 72825, 72829, 72823, 72822, 72819, 72818, + 72831, 72830, 72844, 72845, 72838, 72839, 72840, 72832, 72820, 72846, + 72824, 72843, 72833, 72842, 72837, 72841, 72847, 72886, 72885, 72867, + 72866, 72859, 72858, 72868, 72860, 72853, 72857, 72861, 72855, 72854, + 72851, 72850, 72863, 72862, 72876, 72877, 72870, 72871, 72864, 72852, + 72878, 72856, 72875, 72865, 72874, 72869, 72873, 72879, 72880, 72883, + 72881, 72884, 72882, 72816, 72817, 9901, 129355, 73007, 72980, 72979, + 72983, 72982, 72988, 73008, 72987, 72960, 72961, 72968, 72971, 72985, + 72984, 72990, 72989, 72964, 72965, 72962, 72963, 73005, 72999, 73006, + 72973, 72972, 72976, 72986, 72981, 72991, 73001, 73002, 73003, 72995, + 72994, 72978, 72977, 72975, 72974, 72993, 72992, 73004, 72996, 72998, + 73000, 72997, 72966, 72969, 73031, 73030, 73027, 73028, 73026, 73025, + 73024, 73014, 73009, 73020, 73023, 73012, 73013, 73010, 73011, 73018, + 73021, 73029, 73045, 73044, 73047, 73046, 73043, 73042, 73040, 73049, + 73041, 73048, 186, 127405, 12348, 119811, 120778, 120491, 119827, 120495, + 120505, 120507, 119808, 120488, 119809, 120489, 119833, 120493, 119812, + 120492, 120494, 119814, 120490, 119816, 120496, 119818, 120497, 119819, + 120498, 119822, 120502, 120512, 119823, 120509, 120511, 120503, 119825, + 120504, 119826, 120506, 119828, 120508, 119810, 120510, 119820, 120499, + 119821, 120500, 119831, 120501, 119813, 119815, 119817, 119824, 119829, + 119830, 119832, 119837, 120779, 120517, 119834, 120514, 119835, 120515, + 119859, 120519, 119838, 120518, 120520, 119839, 120531, 119840, 120516, + 119842, 120522, 119844, 120523, 119845, 120524, 119848, 120528, 120538, + 119849, 120535, 120537, 120529, 119851, 120530, 119852, 120532, 119853, + 120521, 120533, 119854, 120534, 119836, 120536, 119846, 120525, 119847, + 120526, 119857, 120527, 119841, 119843, 119850, 119855, 119856, 119858, + 120016, 120017, 120018, 120019, 120020, 120021, 120022, 120023, 120024, + 120025, 120026, 120027, 120028, 120029, 120030, 120031, 120032, 120033, + 120034, 120035, 120036, 120037, 120038, 120039, 120040, 120041, 120042, + 120043, 120044, 120045, 120046, 120047, 120048, 120049, 120050, 120051, + 120052, 120053, 120054, 120055, 120056, 120057, 120058, 120059, 120060, + 120061, 120062, 120063, 120064, 120065, 120066, 120067, 119931, 120611, + 120621, 120623, 119912, 120604, 119913, 120605, 119937, 120609, 119915, + 120607, 119916, 120608, 120610, 119918, 120606, 119920, 120612, 119922, + 120613, 119923, 120614, 119926, 120618, 120628, 119927, 120625, 120627, + 120619, 119929, 120620, 119930, 120622, 119932, 120624, 119914, 120626, + 119924, 120615, 119925, 120616, 119935, 120617, 119917, 119919, 119921, + 119928, 119933, 119934, 119936, 120656, 120658, 120629, 120659, 120655, + 120661, 120660, 119938, 120630, 119939, 120631, 119963, 120635, 119941, + 120633, 119942, 120634, 120636, 119943, 120647, 119944, 120632, 119946, + 120638, 119948, 120639, 119949, 120640, 119952, 120644, 120654, 119953, + 120651, 120653, 120645, 119955, 120646, 119956, 120648, 119957, 120637, + 120649, 119958, 120650, 119940, 120652, 119950, 120641, 119951, 120642, + 119961, 120643, 119945, 119947, 119954, 119959, 119960, 119962, 120657, + 120540, 120542, 120513, 120543, 120539, 120545, 120544, 120541, 120172, + 120173, 120174, 120175, 120176, 120177, 120178, 120179, 120180, 120181, + 120182, 120183, 120184, 120185, 120186, 120187, 120188, 120189, 120190, + 120191, 120192, 120193, 120194, 120195, 120196, 120197, 120198, 120199, + 120200, 120201, 120202, 120203, 120204, 120205, 120206, 120207, 120208, + 120209, 120210, 120211, 120212, 120213, 120214, 120215, 120216, 120217, + 120218, 120219, 120220, 120221, 120222, 120223, 120787, 120786, 120789, + 120788, 120785, 120784, 120782, 120791, 120783, 120790, 120120, 120121, + 120123, 120124, 120125, 120126, 120128, 120129, 120130, 120131, 120132, + 120134, 120138, 120139, 120140, 120141, 120142, 120143, 120144, 120146, + 120147, 120148, 120149, 120150, 120151, 120152, 120153, 120154, 120155, + 120156, 120157, 120158, 120159, 120160, 120161, 120162, 120163, 120164, + 120165, 120166, 120167, 120168, 120169, 120170, 120171, 120797, 120796, + 120799, 120798, 120795, 120794, 120792, 120801, 120793, 120800, 120068, + 120069, 120071, 120072, 120073, 120074, 120077, 120078, 120079, 120080, + 120081, 120082, 120083, 120084, 120086, 120087, 120088, 120089, 120090, + 120091, 120092, 120094, 120095, 120096, 120097, 120098, 120099, 120100, + 120101, 120102, 120103, 120104, 120105, 120106, 120107, 120108, 120109, + 120110, 120111, 120112, 120113, 120114, 120115, 120116, 120117, 120118, + 120119, 10189, 119889, 120484, 120485, 120575, 119886, 120572, 119887, + 120573, 119911, 120577, 119890, 120576, 120578, 119891, 120589, 119892, + 120574, 119894, 120580, 119896, 120581, 119897, 120582, 119900, 120586, + 120596, 119901, 120593, 120595, 120587, 119903, 120588, 119904, 120590, + 119905, 120579, 120591, 119906, 120592, 119888, 120594, 119898, 120583, + 119899, 120584, 119909, 120585, 119895, 119902, 119907, 119908, 119910, + 119879, 120553, 120563, 120565, 119860, 120546, 119861, 120547, 119885, + 120551, 119863, 120549, 119864, 120550, 120552, 119866, 120548, 119868, + 120554, 119870, 120555, 119871, 120556, 119874, 120560, 120570, 119875, + 120567, 120569, 120561, 119877, 120562, 119878, 120564, 119880, 120566, + 119862, 120568, 119872, 120557, 119873, 120558, 119883, 120559, 119865, + 119867, 119869, 119876, 119881, 119882, 119884, 120598, 120600, 120571, + 120601, 120597, 120603, 120602, 120599, 120432, 120433, 120434, 120435, + 120436, 120437, 120438, 120439, 120440, 120441, 120442, 120443, 120444, + 120445, 120446, 120447, 120448, 120449, 120450, 120451, 120452, 120453, + 120454, 120455, 120456, 120457, 120458, 120459, 120460, 120461, 120462, + 120463, 120464, 120465, 120466, 120467, 120468, 120469, 120470, 120471, + 120472, 120473, 120474, 120475, 120476, 120477, 120478, 120479, 120480, + 120481, 120482, 120483, 120827, 120826, 120829, 120828, 120825, 120824, + 120822, 120831, 120823, 120830, 10215, 10221, 10219, 10217, 10223, 10187, + 10214, 10220, 10218, 10216, 10222, 120399, 120727, 120737, 120739, + 120380, 120720, 120381, 120721, 120405, 120725, 120383, 120723, 120384, + 120724, 120726, 120386, 120722, 120388, 120728, 120390, 120729, 120391, + 120730, 120394, 120734, 120744, 120395, 120741, 120743, 120735, 120397, + 120736, 120398, 120738, 120400, 120740, 120382, 120742, 120392, 120731, + 120393, 120732, 120403, 120733, 120385, 120387, 120389, 120396, 120401, + 120402, 120404, 120772, 120774, 120745, 120775, 120771, 120777, 120776, + 120406, 120746, 120407, 120747, 120431, 120751, 120409, 120749, 120410, + 120750, 120752, 120411, 120763, 120412, 120748, 120414, 120754, 120416, + 120755, 120417, 120756, 120420, 120760, 120770, 120421, 120767, 120769, + 120761, 120423, 120762, 120424, 120764, 120425, 120753, 120765, 120426, + 120766, 120408, 120768, 120418, 120757, 120419, 120758, 120429, 120759, + 120413, 120415, 120422, 120427, 120428, 120430, 120773, 120295, 120669, + 120679, 120681, 120276, 120662, 120277, 120663, 120301, 120667, 120279, + 120665, 120280, 120666, 120668, 120282, 120664, 120284, 120670, 120286, + 120671, 120287, 120672, 120290, 120676, 120686, 120291, 120683, 120685, + 120677, 120293, 120678, 120294, 120680, 120296, 120682, 120278, 120684, + 120288, 120673, 120289, 120674, 120299, 120675, 120281, 120283, 120285, + 120292, 120297, 120298, 120300, 120714, 120716, 120687, 120717, 120713, + 120719, 120718, 120302, 120688, 120303, 120689, 120327, 120693, 120305, + 120691, 120306, 120692, 120694, 120307, 120705, 120308, 120690, 120310, + 120696, 120312, 120697, 120313, 120698, 120316, 120702, 120712, 120317, + 120709, 120711, 120703, 120319, 120704, 120320, 120706, 120321, 120695, + 120707, 120322, 120708, 120304, 120710, 120314, 120699, 120315, 120700, + 120325, 120701, 120309, 120311, 120318, 120323, 120324, 120326, 120715, + 120817, 120816, 120819, 120818, 120815, 120814, 120812, 120821, 120813, + 120820, 120328, 120329, 120330, 120331, 120332, 120333, 120334, 120335, + 120336, 120337, 120338, 120339, 120340, 120341, 120342, 120343, 120344, + 120345, 120346, 120347, 120348, 120349, 120350, 120351, 120352, 120353, + 120354, 120355, 120356, 120357, 120358, 120359, 120360, 120361, 120362, + 120363, 120364, 120365, 120366, 120367, 120368, 120369, 120370, 120371, + 120372, 120373, 120374, 120375, 120376, 120377, 120378, 120379, 120224, + 120225, 120226, 120227, 120228, 120229, 120230, 120231, 120232, 120233, + 120234, 120235, 120236, 120237, 120238, 120239, 120240, 120241, 120242, + 120243, 120244, 120245, 120246, 120247, 120248, 120249, 120250, 120251, + 120252, 120253, 120254, 120255, 120256, 120257, 120258, 120259, 120260, + 120261, 120262, 120263, 120264, 120265, 120266, 120267, 120268, 120269, + 120270, 120271, 120272, 120273, 120274, 120275, 120807, 120806, 120809, + 120808, 120805, 120804, 120802, 120811, 120803, 120810, 119964, 119966, + 119967, 119970, 119973, 119974, 119977, 119978, 119979, 119980, 119982, + 119983, 119984, 119985, 119986, 119987, 119988, 119989, 119990, 119991, + 119992, 119993, 119995, 119997, 119998, 119999, 120000, 120001, 120002, + 120003, 120005, 120006, 120007, 120008, 120009, 120010, 120011, 120012, + 120013, 120014, 120015, 129481, 119528, 119538, 119531, 119535, 119525, + 119524, 119534, 119529, 119539, 119527, 119537, 119526, 119536, 119533, + 119523, 119532, 119522, 119530, 119520, 119521, 128470, 175, 8737, 10667, + 10666, 10671, 10669, 10670, 10668, 10665, 10664, 10651, 10653, 8798, + 127830, 129470, 129471, 93773, 93764, 93790, 93787, 983274, 93783, + 983273, 93782, 93772, 93766, 93791, 93779, 93789, 93786, 93776, 93777, + 93785, 93775, 93770, 93769, 93771, 93774, 93780, 93760, 93767, 93781, + 93788, 93761, 93768, 93778, 93762, 93763, 93784, 93765, 93847, 93827, + 93846, 93826, 93845, 93825, 93844, 93829, 93828, 93831, 93830, 93824, + 93833, 93832, 93837, 93836, 93834, 93842, 93835, 93838, 93839, 93843, + 93840, 93841, 93805, 93796, 93822, 93819, 983276, 93815, 983275, 93814, + 93804, 93798, 93823, 93811, 93821, 93818, 93808, 93809, 93817, 93807, + 93802, 93801, 93803, 93806, 93812, 93792, 93799, 93813, 93820, 93793, + 93800, 93810, 93794, 93795, 93816, 93797, 93849, 93850, 93848, 11859, + 11852, 11860, 128901, 9899, 10090, 10091, 128967, 128965, 128944, 10100, + 10088, 10092, 10101, 10089, 10093, 8287, 9618, 128971, 128950, 128938, + 9900, 118512, 128963, 128961, 10073, 128974, 128956, 9898, 128911, + 128931, 43761, 44013, 43762, 43760, 44011, 43994, 43989, 43974, 43746, + 43993, 43991, 43751, 43750, 43992, 43986, 43987, 43990, 43968, 43995, + 43976, 43973, 43999, 43977, 44001, 43752, 43747, 43972, 43998, 43984, + 43969, 43753, 43754, 43975, 44000, 43978, 43749, 43748, 43983, 44002, + 43970, 43996, 43971, 43997, 43981, 43988, 43979, 43985, 43980, 43982, + 43744, 43745, 44012, 43763, 43764, 44005, 43757, 43759, 43758, 44009, + 44003, 44007, 44006, 44004, 43755, 44008, 43756, 44010, 43765, 43766, + 44021, 44020, 44023, 44022, 44019, 44018, 44016, 44025, 44017, 44024, + 118475, 129760, 127816, 125140, 125137, 125136, 125139, 125141, 125138, + 125142, 124928, 124929, 124930, 124936, 124937, 124949, 124950, 124948, + 124938, 124956, 124990, 124992, 124974, 124955, 124964, 124963, 124991, + 124957, 124962, 124976, 124996, 124997, 124998, 124982, 124983, 124984, + 125004, 124975, 125003, 125005, 125011, 125018, 125028, 125029, 125012, + 125019, 125020, 125027, 125013, 125035, 124942, 124934, 125090, 125046, + 125078, 125033, 124946, 125048, 125037, 125070, 125000, 125095, 125121, + 124951, 125044, 125041, 125072, 124987, 125066, 125076, 125074, 125009, + 125107, 125108, 125068, 125124, 124945, 125002, 124931, 125089, 125022, + 124980, 125099, 124986, 125100, 125080, 125119, 124933, 125021, 125015, + 125071, 124985, 125117, 125056, 124993, 125039, 125049, 125043, 125024, + 124932, 125047, 125097, 124959, 125069, 125088, 124999, 125123, 124952, + 125036, 125026, 125001, 125085, 124960, 125057, 125073, 124966, 125098, + 125014, 125091, 124989, 125007, 124978, 124940, 125106, 125050, 125030, + 125092, 124941, 125060, 125077, 125102, 125094, 125053, 125040, 125055, + 125104, 125103, 124939, 125017, 124961, 125112, 125087, 124970, 124971, + 124969, 125023, 124979, 125042, 124947, 125086, 125075, 125051, 125111, + 124968, 124944, 125038, 125096, 125016, 125118, 125109, 124953, 125059, + 125052, 125006, 124958, 125093, 125115, 125054, 124988, 125008, 125084, + 125061, 125064, 125120, 125063, 124967, 124977, 124965, 125031, 983279, + 125081, 125082, 983280, 125010, 125067, 124973, 125032, 124935, 125116, + 125122, 125101, 124994, 124995, 125113, 125058, 125079, 125114, 125065, + 125034, 125083, 124954, 125062, 125105, 125110, 125045, 124943, 124972, + 124981, 125025, 125131, 125130, 125133, 125132, 125129, 125128, 125135, + 125127, 125134, 128334, 128697, 68028, 68093, 68090, 68089, 68086, 68029, + 68092, 68091, 68095, 68088, 68087, 68094, 68000, 68016, 68020, 68021, + 68022, 68009, 68010, 68015, 68017, 68014, 68013, 68018, 68006, 68023, + 68012, 68008, 68007, 68019, 68011, 68005, 68004, 68001, 68002, 68003, + 68031, 68030, 68039, 68075, 68057, 68084, 68066, 68036, 68054, 68081, + 68063, 68045, 68072, 68035, 68053, 68080, 68062, 68044, 68071, 68040, + 68076, 68058, 68085, 68067, 68038, 68056, 68083, 68065, 68047, 68074, + 68037, 68055, 68082, 68064, 68046, 68073, 68034, 68052, 68079, 68061, + 68043, 68070, 68033, 68051, 68078, 68060, 68042, 68069, 68041, 68068, + 68032, 68050, 68077, 68059, 67974, 67975, 67982, 67983, 67978, 67979, + 67980, 67981, 67987, 67988, 67989, 67992, 67993, 67994, 67995, 67996, + 67986, 67985, 67990, 67997, 67984, 67977, 67976, 67991, 67973, 67972, + 67968, 67969, 67970, 67971, 67998, 67999, 9791, 129500, 983173, 9170, + 9172, 9177, 9176, 9175, 9173, 9174, 9171, 9169, 128647, 118467, 128221, + 94015, 93989, 93971, 93958, 94019, 94021, 93953, 94023, 93999, 93995, + 94008, 93981, 93979, 93967, 93963, 93993, 93992, 93983, 93977, 93976, + 93975, 93974, 93968, 94032, 93988, 93987, 93973, 93972, 93997, 93996, + 93969, 94106, 94107, 94108, 94109, 94110, 94111, 94002, 94026, 94022, + 94003, 94004, 94010, 93980, 93978, 94099, 94100, 94101, 94102, 94103, + 94104, 94105, 93998, 93994, 94007, 94025, 93966, 93962, 94024, 93961, + 93960, 94000, 94009, 93964, 93965, 94001, 93970, 93984, 93954, 94017, + 94014, 94016, 94013, 94006, 94012, 94005, 94011, 93986, 93985, 93955, + 93952, 94020, 93990, 93957, 93956, 93959, 93982, 94018, 93991, 94035, + 94034, 94033, 94031, 94098, 94096, 94097, 94095, 94036, 94039, 94040, + 94067, 94068, 94038, 94037, 94073, 94075, 94045, 94071, 94069, 94046, + 94047, 94085, 94074, 94049, 94050, 94051, 94052, 94053, 94086, 94057, + 94054, 94084, 94055, 94056, 94041, 94082, 94048, 94081, 94042, 94076, + 94058, 94059, 94060, 94061, 94063, 94064, 94079, 94087, 94062, 94065, + 94080, 94066, 94072, 94070, 94044, 94043, 94077, 94078, 94083, 983239, + 983240, 128300, 127908, 181, 129440, 117772, 129986, 130022, 130023, 183, + 8943, 129686, 127894, 127756, 8357, 128189, 128469, 128656, 8722, 10793, + 10794, 10796, 10795, 10810, 8770, 8723, 10751, 129694, 129705, 128241, + 128242, 128244, 129339, 8871, 71232, 71229, 71236, 71231, 71230, 71216, + 71226, 71228, 71219, 71220, 71221, 71222, 71223, 71224, 71217, 71218, + 71225, 71227, 71234, 71233, 71253, 71252, 71255, 71254, 71251, 71250, + 71248, 71257, 71249, 71256, 71168, 71169, 71179, 71181, 71195, 71194, + 71200, 71199, 71193, 71192, 71198, 71197, 71174, 71175, 71176, 71177, + 71210, 71172, 71173, 71170, 71171, 71215, 71209, 71186, 71196, 71191, + 71201, 71211, 71212, 71213, 71205, 71204, 71188, 71187, 71185, 71184, + 71190, 71189, 71183, 71182, 71203, 71202, 71214, 71206, 71208, 71207, + 71178, 71180, 71235, 43867, 67512, 714, 700, 67509, 761, 763, 7470, 7471, + 7487, 7474, 7483, 7476, 43000, 7484, 7485, 7468, 7469, 42994, 7472, 7473, + 42995, 7475, 7477, 7478, 7479, 7480, 7481, 7482, 7486, 42996, 42993, + 7488, 7489, 11389, 7490, 723, 722, 42755, 42753, 42757, 42759, 42754, + 42752, 42756, 42758, 42652, 122956, 122958, 122929, 122954, 122932, + 122952, 122943, 122987, 122946, 122938, 122939, 122942, 122960, 122941, + 122959, 122989, 122955, 122950, 122948, 122944, 122951, 122988, 122953, + 122934, 122935, 122936, 122933, 122949, 122931, 122957, 122930, 122947, + 122937, 122928, 122940, 122945, 42653, 7544, 710, 735, 42889, 67510, + 42776, 42775, 42777, 750, 698, 725, 709, 984011, 42765, 42760, 42770, + 741, 984012, 42769, 42764, 42774, 745, 762, 764, 715, 704, 67507, 4348, + 42766, 42761, 42771, 742, 721, 67511, 42888, 42768, 42763, 751, 767, 753, + 42773, 717, 754, 755, 744, 759, 719, 718, 42783, 752, 716, 42778, 703, + 43882, 706, 713, 42767, 42762, 42772, 743, 758, 757, 756, 727, 766, 726, + 697, 42780, 42782, 42781, 42779, 760, 705, 67508, 701, 67513, 702, 43883, + 707, 734, 42890, 765, 7491, 7493, 7516, 67459, 7495, 7601, 7509, 67461, + 7517, 7580, 7590, 694, 7591, 67474, 67476, 7595, 67484, 67491, 67456, + 67460, 67478, 7600, 67498, 7608, 67506, 67471, 67492, 7581, 7521, 7496, + 67468, 67469, 67467, 67466, 7519, 7585, 67480, 67463, 67465, 67464, 7611, + 7613, 7612, 7497, 7604, 7582, 7614, 7505, 7584, 67472, 7501, 7518, 7520, + 67475, 736, 688, 689, 67477, 43868, 67479, 7504, 7596, 7588, 7589, 690, + 7592, 737, 43869, 43870, 7593, 67485, 7594, 67483, 67481, 67482, 67486, + 67487, 43001, 7599, 7598, 7506, 67490, 7499, 7507, 7510, 7602, 691, + 67497, 67496, 67473, 740, 7583, 67470, 738, 67514, 7603, 7586, 7498, + 7513, 7511, 7605, 67503, 67499, 67502, 7508, 67500, 67501, 7492, 7579, + 7494, 7514, 7597, 7500, 692, 67494, 67495, 693, 67488, 67489, 7587, 7502, + 7610, 43881, 7615, 7512, 43871, 7606, 7607, 7515, 67504, 7609, 7503, + 67493, 695, 739, 696, 42784, 42785, 67458, 67457, 720, 699, 724, 708, + 749, 42864, 748, 712, 747, 746, 10762, 128184, 128176, 129297, 71266, + 6165, 6164, 6167, 6166, 6163, 6162, 6160, 6169, 6161, 6168, 6159, 6157, + 6156, 6155, 6147, 6149, 71271, 71272, 6176, 6279, 6272, 6295, 6273, 6289, + 6274, 6313, 6286, 6311, 6310, 6280, 6276, 6275, 6282, 6287, 6278, 6285, + 6284, 6288, 6277, 6291, 6290, 6293, 6294, 6292, 6283, 6281, 6185, 6196, + 6264, 6210, 6190, 6303, 6305, 6307, 6300, 6302, 6304, 6312, 6298, 6301, + 6314, 6308, 6309, 6299, 6306, 6263, 6262, 6260, 6261, 6259, 6244, 6252, + 6245, 6253, 6254, 6248, 6238, 6239, 6257, 6247, 6256, 6242, 6258, 6255, + 6241, 6240, 6249, 6251, 6250, 6243, 6246, 6237, 6193, 6192, 6297, 6296, + 6218, 6236, 6225, 6234, 6227, 6235, 6211, 6222, 6232, 6228, 6224, 6226, + 6233, 6214, 6216, 6215, 6217, 6219, 6231, 6223, 6220, 6221, 6230, 6229, + 6212, 6213, 6204, 6194, 6209, 6207, 6205, 6206, 6203, 6202, 6208, 6191, + 6177, 6183, 6179, 6181, 6180, 6182, 6186, 6195, 6201, 6189, 6197, 6184, + 6187, 6188, 6199, 6200, 6198, 6178, 71273, 71275, 71274, 6151, 71265, + 71270, 71269, 6144, 71268, 71264, 71267, 71276, 6150, 6158, 6148, 6146, + 6152, 6153, 6154, 6145, 9866, 9867, 119552, 9101, 128669, 128018, 128053, + 127889, 129390, 118261, 128496, 129742, 129439, 128332, 129334, 128741, + 128757, 129468, 128739, 9968, 128670, 128672, 128693, 128507, 128001, + 129700, 128045, 128068, 128511, 127909, 92748, 92744, 92761, 92750, + 92739, 92751, 92737, 92754, 92749, 92753, 92743, 92752, 92757, 92766, + 92736, 92741, 92746, 92764, 92745, 92765, 92755, 92756, 92763, 92762, + 92747, 92760, 92758, 92738, 92740, 92759, 92742, 92783, 92782, 92773, + 92772, 92775, 92774, 92771, 92770, 92768, 92777, 92769, 92776, 70291, + 70292, 70290, 70297, 70296, 70293, 70287, 70298, 70312, 70311, 70306, + 70285, 70284, 70289, 70288, 70295, 70294, 70303, 70301, 70283, 70282, + 70280, 70278, 70277, 70276, 70300, 70299, 70310, 70307, 70304, 70309, + 70308, 70305, 70272, 70275, 70273, 70274, 70313, 127926, 215, 10804, + 10805, 10807, 10811, 10801, 10800, 10005, 8844, 8845, 8846, 8888, 127812, + 117860, 9838, 9839, 9837, 127929, 127896, 119161, 119159, 119155, 119157, + 119061, 119060, 119224, 119235, 119132, 119058, 119059, 119255, 119253, + 119130, 119131, 119163, 119169, 119149, 119167, 119168, 119210, 119178, + 119173, 119211, 119150, 119151, 119152, 119153, 119154, 119175, 119212, + 119213, 119166, 119164, 119141, 119142, 119176, 119179, 119143, 119144, + 119145, 119165, 119177, 119170, 119174, 119092, 119052, 119247, 119186, + 119073, 119109, 119093, 119050, 119220, 119221, 119044, 119049, 119187, + 119209, 119082, 119041, 119083, 119077, 119078, 119162, 119160, 119208, + 119156, 119158, 119136, 119102, 119056, 119057, 119146, 119147, 119148, + 119042, 119066, 119065, 119069, 119185, 119074, 119075, 119076, 119231, + 119232, 119085, 119084, 119070, 119071, 119072, 119218, 119217, 119189, + 119188, 119248, 119249, 119172, 119171, 119216, 119134, 119100, 119206, + 119262, 119270, 119271, 119263, 119268, 119269, 119272, 119264, 119267, + 119266, 119265, 119274, 119223, 119234, 119233, 119046, 119222, 119184, + 119227, 119237, 119228, 119122, 119123, 119081, 119098, 119207, 119129, + 119087, 119086, 119128, 119140, 119106, 119062, 119195, 119204, 119205, + 119196, 119197, 119198, 119199, 119200, 119201, 119202, 119203, 119094, + 119095, 119126, 119108, 119215, 119214, 119261, 119252, 119257, 119258, + 119183, 119090, 119091, 119135, 119101, 119096, 119097, 119053, 119054, + 119055, 119048, 119043, 119047, 119180, 119254, 119259, 119225, 119236, + 119226, 119229, 119238, 119230, 119051, 119045, 119089, 119088, 119040, + 119067, 119068, 119137, 119103, 119139, 119105, 119110, 119111, 119250, + 119181, 119273, 119243, 119244, 119245, 119246, 119242, 119240, 119239, + 119241, 119064, 119138, 119104, 119063, 119256, 119260, 119190, 119118, + 119119, 119120, 119121, 119112, 119113, 119116, 119117, 119114, 119115, + 119124, 119125, 119191, 119193, 119194, 119127, 119251, 119107, 119133, + 119099, 119219, 119192, 119182, 127932, 127925, 8811, 8810, 4158, 4156, + 4157, 4155, 4192, 4191, 4190, 4226, 4129, 43642, 4138, 4135, 4208, 4207, + 4206, 4159, 4099, 4098, 4097, 43625, 43624, 43626, 43623, 43622, 43621, + 43627, 43618, 43617, 43630, 43629, 43620, 43619, 983244, 43631, 43616, + 43635, 43628, 43633, 43634, 4096, 4188, 4189, 4187, 4186, 4136, 4121, + 4106, 4111, 4100, 4105, 4116, 4238, 4123, 4176, 43491, 4218, 4220, 43490, + 4221, 4224, 43492, 4223, 43489, 4216, 43488, 4215, 4214, 4213, 4219, + 4222, 4225, 4217, 4130, 43646, 43647, 4193, 4177, 4126, 4112, 43503, + 43495, 43502, 43501, 43516, 43515, 43518, 43517, 43498, 43497, 43500, + 43499, 43514, 43496, 4108, 4107, 4113, 4198, 4197, 4125, 4110, 4109, + 4115, 4114, 4133, 4134, 4178, 4179, 4180, 4181, 4131, 4132, 4128, 4124, + 4120, 4119, 4102, 4101, 4104, 4103, 4118, 4117, 4127, 4122, 4137, 43636, + 43637, 43638, 43632, 43494, 4245, 4244, 4247, 4246, 4243, 4242, 4240, + 4249, 4241, 4248, 4154, 4150, 4250, 4251, 4237, 4235, 4236, 4231, 4232, + 4233, 4234, 43493, 4171, 43644, 43645, 4201, 4202, 4203, 4204, 4205, + 4151, 4239, 43643, 4170, 4153, 4152, 43639, 43641, 43640, 4174, 4172, + 4255, 4254, 4175, 4173, 71391, 71390, 71393, 71392, 71389, 71388, 71386, + 71395, 71387, 71394, 4195, 4196, 43509, 43508, 43511, 43510, 43507, + 43506, 43504, 43513, 43505, 43512, 4146, 4252, 4253, 4140, 4209, 4212, + 4210, 4211, 4147, 4148, 4228, 4229, 4230, 4227, 4194, 4145, 4149, 4199, + 4200, 4139, 4143, 4144, 4182, 4183, 4184, 4185, 4141, 4142, 71381, 71380, + 71383, 71382, 71379, 71378, 71376, 71385, 71377, 71384, 4165, 4164, 4167, + 4166, 4163, 4162, 4160, 4169, 4161, 4168, 983218, 983232, 983174, 10753, + 10754, 10752, 8720, 10761, 10757, 10758, 8721, 8899, 10756, 10755, 11007, + 8896, 8897, 8898, 8719, 67712, 67728, 67740, 67724, 67726, 67714, 67732, + 67718, 67730, 67723, 67742, 67717, 67729, 67738, 67739, 67713, 67735, + 67716, 67721, 67734, 67737, 67741, 67725, 67719, 67722, 67727, 67715, + 67733, 67720, 67736, 67731, 67758, 67752, 67753, 67757, 67751, 67759, + 67756, 67754, 67755, 8711, 124117, 124120, 124119, 124121, 124118, + 124132, 124136, 124133, 124138, 124137, 124134, 124135, 124122, 124124, + 124126, 124123, 124125, 124112, 124116, 124114, 124113, 124115, 124127, + 124128, 124129, 124130, 124131, 124140, 124143, 124142, 124139, 124141, + 124149, 124148, 124151, 124150, 124147, 124146, 124144, 124153, 124145, + 124152, 128133, 8358, 8892, 72102, 72103, 72138, 72096, 72097, 72107, + 72109, 72123, 72122, 72128, 72127, 72144, 72136, 72121, 72120, 72126, + 72125, 72100, 72101, 72098, 72099, 72143, 72137, 72114, 72124, 72119, + 72129, 72139, 72140, 72141, 72133, 72132, 72116, 72115, 72113, 72112, + 72118, 72117, 72111, 72110, 72131, 72130, 72142, 72134, 72135, 72106, + 72108, 72162, 72161, 72158, 72160, 72159, 72164, 72150, 72151, 72145, + 72155, 72157, 72148, 72149, 72146, 72147, 72154, 72156, 72163, 8302, + 127966, 129314, 128219, 129535, 8239, 983092, 983197, 983128, 9471, 9453, + 9460, 9452, 9458, 9451, 9454, 9455, 9459, 9456, 9457, 127312, 127313, + 127314, 127315, 127316, 127317, 127318, 127319, 127320, 127321, 127322, + 127323, 127324, 127325, 127326, 127327, 127328, 127329, 127330, 127331, + 127332, 127333, 127334, 127335, 127336, 127337, 128982, 128984, 129982, + 129981, 129983, 127344, 127345, 127346, 127347, 127348, 127349, 127350, + 127351, 127352, 127353, 127354, 127355, 127356, 127357, 127358, 127359, + 127360, 127361, 127362, 127363, 127364, 127365, 127366, 127367, 127368, + 127369, 129204, 129205, 129207, 129988, 10062, 127374, 127371, 127375, + 129206, 127372, 127373, 983091, 8879, 8840, 8841, 8775, 8821, 8817, 8825, + 8820, 8816, 8824, 129670, 129722, 11228, 129540, 129544, 129565, 129586, + 129603, 129607, 129561, 129536, 129557, 129599, 129539, 129560, 129602, + 129610, 129613, 129541, 129562, 129604, 129537, 129558, 129600, 129538, + 129559, 129601, 129581, 129578, 129582, 129583, 129579, 129580, 128528, + 9906, 127770, 127761, 8362, 6595, 6594, 6599, 6598, 6597, 6596, 6593, + 6566, 6530, 6567, 6531, 6570, 6537, 6532, 6544, 6543, 6536, 6542, 6549, + 6548, 6562, 6561, 6554, 6560, 6556, 6550, 6528, 6555, 6538, 6568, 6533, + 6569, 6534, 6571, 6540, 6535, 6547, 6546, 6539, 6545, 6552, 6551, 6565, + 6564, 6557, 6563, 6559, 6553, 6529, 6558, 6541, 6622, 6623, 6600, 6601, + 6618, 6577, 6587, 6582, 6586, 6578, 6592, 6583, 6584, 6590, 6589, 6579, + 6585, 6591, 6580, 6588, 6576, 6581, 6613, 6612, 6615, 6614, 6611, 6610, + 6608, 6617, 6609, 6616, 983063, 70732, 70746, 70731, 70741, 70740, 70743, + 70742, 70739, 70738, 70736, 70745, 70737, 70744, 70734, 70675, 70674, + 70681, 70680, 70692, 70686, 70691, 70751, 70662, 70663, 70664, 70665, + 70656, 70657, 70667, 70669, 70685, 70684, 70690, 70689, 70683, 70682, + 70688, 70687, 70660, 70661, 70658, 70659, 70705, 70706, 70707, 70696, + 70695, 70677, 70676, 70673, 70672, 70679, 70678, 70671, 70670, 70703, + 70702, 70698, 70697, 70694, 70693, 70701, 70700, 70708, 70704, 70699, + 70666, 70668, 70723, 70726, 70727, 70724, 70752, 70728, 70753, 70722, + 70725, 70730, 70750, 70747, 70709, 70719, 70721, 70712, 70713, 70714, + 70715, 70716, 70717, 70710, 70711, 70718, 70720, 70735, 70749, 70733, + 70729, 11154, 11155, 128240, 9112, 983131, 9798, 11209, 128084, 129299, + 983132, 128985, 129399, 127747, 2035, 2031, 2032, 2033, 2030, 2034, 2027, + 2028, 2029, 2040, 2045, 2046, 1989, 1988, 1991, 1990, 1987, 1986, 1984, + 1993, 1985, 1992, 2042, 2008, 2001, 2025, 2024, 2026, 2006, 2002, 2019, + 2016, 2018, 2023, 2010, 2009, 2000, 1999, 2007, 1997, 1995, 2012, 2003, + 2013, 2020, 2014, 2015, 2017, 2004, 2011, 2005, 2021, 2022, 1994, 1996, + 1998, 2037, 2036, 2039, 2038, 2041, 2047, 983127, 128691, 9940, 128683, + 128695, 128370, 128286, 128245, 128685, 8303, 65934, 8209, 128689, 10973, + 8893, 8599, 10542, 10545, 10536, 10532, 129209, 10530, 128602, 128594, + 128610, 11111, 11127, 11016, 8663, 129109, 11008, 43063, 43062, 43065, + 43064, 43059, 43060, 43057, 43056, 43061, 43058, 10529, 8598, 8689, 8632, + 10546, 10535, 10531, 129208, 128600, 128592, 128608, 11110, 11126, 11017, + 8662, 129108, 11009, 128746, 8882, 8884, 8379, 8836, 8837, 8713, 8772, + 8777, 8938, 8940, 8742, 8930, 8931, 172, 8877, 8769, 8813, 8800, 8802, + 8815, 8814, 9083, 128323, 10159, 128324, 10161, 128456, 128457, 128458, + 128211, 128212, 128067, 118012, 160, 9369, 9362, 9365, 9366, 9367, 35, + 9368, 9364, 9361, 9363, 9371, 9370, 8470, 128297, 94177, 983041, 983040, + 123149, 123155, 123138, 123166, 123164, 123148, 123143, 123161, 123153, + 123152, 123141, 123137, 123156, 123139, 123163, 123142, 123172, 123173, + 123140, 123167, 123171, 123158, 123176, 123177, 123165, 123151, 123168, + 123136, 123169, 123162, 123178, 123179, 123144, 123157, 123170, 123150, + 123145, 123159, 123146, 123154, 123160, 123147, 123174, 123175, 123180, + 123214, 123193, 123192, 123195, 123194, 123191, 123196, 123197, 123184, + 123190, 123189, 123186, 123185, 123188, 123187, 123215, 123205, 123204, + 123207, 123206, 123203, 123202, 123200, 123209, 123201, 123208, 117776, + 983231, 983066, 10663, 10662, 11869, 9215, 65532, 9287, 9286, 9284, 9285, + 9289, 9281, 9290, 9288, 9282, 9283, 9280, 128721, 128025, 128885, 5787, + 5788, 5776, 5761, 5786, 5770, 5769, 5781, 5779, 5785, 5763, 5772, 5780, + 5784, 5762, 5775, 5773, 5765, 5777, 5782, 5764, 5774, 5783, 5766, 5778, + 5771, 5767, 5768, 5760, 731, 128738, 7265, 7264, 7266, 7267, 7261, 7260, + 7262, 7259, 7280, 7282, 7281, 7279, 7271, 7270, 7272, 7269, 7258, 7263, + 7278, 7268, 7283, 7273, 7284, 7285, 7287, 7286, 7276, 7274, 7275, 7277, + 7290, 7288, 7289, 7295, 7294, 7292, 7291, 7253, 7252, 7255, 7254, 7251, + 7250, 7248, 7257, 7249, 7256, 7293, 124374, 124376, 124375, 124377, + 124378, 124379, 124392, 124396, 124395, 124397, 124394, 124393, 124380, + 124381, 124383, 124384, 124385, 124382, 124368, 124371, 124370, 124369, + 124372, 124373, 124386, 124388, 124390, 124389, 124387, 124391, 124399, + 124400, 124398, 124415, 124406, 124405, 124408, 124407, 124404, 124403, + 124401, 124410, 124402, 124409, 94179, 94178, 68736, 68739, 68744, 68737, + 68756, 68745, 68760, 68769, 68761, 68775, 68785, 68741, 68762, 68772, + 68773, 68740, 68777, 68742, 68749, 68750, 68758, 68759, 68774, 68776, + 68783, 68784, 68738, 68743, 68747, 68748, 68751, 68754, 68755, 68768, + 68770, 68782, 68765, 68780, 68766, 68781, 68763, 68767, 68764, 68771, + 68778, 68757, 68786, 68779, 68746, 68752, 68753, 68800, 68803, 68808, + 68801, 68820, 68809, 68824, 68833, 68825, 68839, 68849, 68805, 68826, + 68836, 68837, 68804, 68841, 68806, 68813, 68814, 68822, 68823, 68838, + 68840, 68847, 68848, 68802, 68807, 68811, 68812, 68815, 68818, 68819, + 68832, 68834, 68846, 68829, 68844, 68830, 68845, 68827, 68831, 68828, + 68835, 68842, 68821, 68850, 68843, 68810, 68816, 68817, 68861, 68859, + 68858, 68862, 68863, 68860, 66308, 66324, 66318, 66335, 66323, 66331, + 66327, 66330, 66315, 66316, 66317, 66329, 66314, 66306, 66322, 66351, + 66321, 66350, 66326, 66334, 66313, 66333, 66328, 66320, 66312, 66325, + 66332, 66305, 66307, 66311, 66309, 66349, 66310, 66304, 66319, 66339, + 66337, 66338, 66336, 68241, 68242, 68246, 68244, 68226, 68224, 68237, + 68235, 68249, 68251, 68247, 68233, 68248, 68252, 68227, 68234, 68230, + 68239, 68232, 68240, 68231, 68250, 68236, 68225, 68243, 68245, 68228, + 68229, 68238, 68255, 68254, 68253, 66404, 66390, 66392, 66387, 66388, + 66411, 66393, 66421, 66418, 66396, 66397, 66399, 66406, 66405, 66401, + 66413, 66402, 66398, 66414, 66415, 66416, 66408, 66420, 66417, 66407, + 66419, 66389, 66391, 66395, 66400, 66386, 66409, 66410, 66385, 66384, + 66394, 66412, 66403, 66516, 66514, 66515, 66517, 66513, 66464, 66504, + 66505, 66506, 66482, 66510, 66511, 66477, 66508, 66509, 66478, 66479, + 66473, 66474, 66490, 66491, 66480, 66475, 66476, 66507, 66471, 66469, + 66470, 66467, 66468, 66484, 66485, 66492, 66493, 66486, 66487, 66488, + 66497, 66498, 66495, 66472, 66483, 66499, 66494, 66481, 66489, 66496, + 66465, 66466, 66512, 128435, 118450, 69414, 69395, 69376, 69394, 69391, + 69392, 69398, 69399, 69403, 69404, 69377, 69379, 69382, 69400, 69388, + 69380, 69384, 69393, 69397, 69401, 69386, 69381, 69385, 69387, 69378, + 69390, 69402, 69383, 69396, 69389, 69415, 69407, 69412, 69411, 69406, + 69410, 69405, 69413, 69409, 69408, 68209, 68210, 68217, 68211, 68213, + 68214, 68212, 68203, 68205, 68207, 68206, 68202, 68198, 68220, 68219, + 68215, 68201, 68216, 68193, 68196, 68199, 68218, 68192, 68194, 68200, + 68204, 68197, 68208, 68195, 68222, 68221, 68223, 68608, 68619, 68627, + 68623, 68634, 68640, 68644, 68668, 68670, 68677, 68632, 68669, 68671, + 68617, 68625, 68621, 68638, 68643, 68660, 68666, 68675, 68630, 68648, + 68653, 68646, 68650, 68641, 68673, 68658, 68642, 68655, 68628, 68611, + 68657, 68662, 68614, 68615, 68636, 68656, 68664, 68679, 68680, 68609, + 68610, 68645, 68654, 68620, 68624, 68635, 68678, 68633, 68672, 68652, + 68618, 68626, 68622, 68639, 68661, 68667, 68676, 68631, 68613, 68649, + 68647, 68651, 68674, 68659, 68629, 68612, 68663, 68616, 68637, 68665, + 69509, 69508, 69507, 69506, 69488, 69502, 69496, 69505, 69492, 69499, + 69501, 69503, 69494, 69493, 69490, 69495, 69489, 69498, 69504, 69491, + 69500, 69497, 69511, 69512, 69513, 69510, 128477, 128117, 129491, 128116, + 129746, 128283, 128664, 128753, 128662, 128660, 128653, 11819, 8228, + 128431, 129649, 129477, 128214, 9251, 10044, 10027, 10034, 10011, 128194, + 128449, 128080, 128237, 128236, 10180, 10179, 128275, 9103, 9104, 10174, + 983191, 8997, 128191, 128440, 9934, 9741, 128217, 129505, 129447, 128895, + 129741, 8886, 2902, 2903, 2933, 2934, 2931, 2930, 2935, 2932, 2928, 2909, + 2908, 2864, 2911, 2863, 2821, 2822, 2832, 2836, 2850, 2849, 2855, 2854, + 2848, 2847, 2853, 2852, 2827, 2912, 2828, 2913, 2869, 2825, 2826, 2823, + 2824, 2867, 2866, 2841, 2851, 2846, 2856, 2870, 2871, 2872, 2861, 2860, + 2843, 2842, 2840, 2839, 2845, 2844, 2838, 2837, 2859, 2858, 2873, 2862, + 2929, 2831, 2835, 983660, 983659, 2817, 2876, 2877, 2818, 2901, 2893, + 2819, 2878, 2888, 2892, 2881, 2882, 2883, 2884, 2914, 2915, 2879, 2880, + 2887, 2891, 2923, 2922, 2925, 2924, 2921, 2920, 2918, 2927, 2919, 2926, + 64830, 64831, 9766, 117826, 10183, 66736, 66737, 66738, 66739, 66743, + 66763, 66761, 66742, 66749, 66757, 66744, 66768, 66750, 66748, 66754, + 66755, 66764, 66762, 66760, 66746, 66745, 66741, 66765, 66769, 66759, + 66758, 66771, 66770, 66740, 66751, 66752, 66753, 66756, 66767, 66747, + 66766, 66776, 66777, 66778, 66779, 66783, 66803, 66801, 66782, 66789, + 66797, 66784, 66808, 66790, 66788, 66794, 66795, 66804, 66802, 66800, + 66786, 66785, 66781, 66805, 66809, 66799, 66798, 66811, 66810, 66780, + 66791, 66792, 66793, 66796, 66807, 66787, 66806, 66710, 66688, 66715, + 66699, 66694, 66698, 66703, 66693, 66697, 66696, 66705, 66702, 66713, + 66717, 66704, 66706, 66707, 66711, 66716, 66689, 66701, 66700, 66708, + 66691, 66695, 66690, 66692, 66709, 66712, 66714, 66725, 66724, 66727, + 66726, 66723, 66722, 66720, 66729, 66721, 66728, 983192, 126257, 126264, + 126258, 126259, 126265, 126260, 126263, 126267, 126255, 126266, 126256, + 126262, 126261, 126269, 126268, 126254, 126216, 126225, 126252, 126234, + 126243, 126222, 126249, 126213, 126231, 126240, 126221, 126248, 126212, + 126230, 126239, 126217, 126226, 126253, 126235, 126244, 126215, 126224, + 126251, 126233, 126242, 126214, 126223, 126250, 126232, 126241, 126220, + 126247, 126211, 126229, 126238, 126219, 126246, 126210, 126228, 126237, + 126218, 126245, 126209, 126227, 126236, 129446, 128228, 117974, 117975, + 117976, 117977, 117978, 117979, 117980, 117981, 117982, 117983, 117984, + 117985, 117986, 117987, 117988, 117989, 117990, 117991, 117992, 117993, + 117994, 117995, 117996, 117997, 117998, 117999, 10015, 9885, 10029, + 10009, 118005, 118004, 118007, 118006, 118003, 118002, 118000, 118009, + 118001, 118008, 8485, 129397, 128471, 11195, 11194, 11196, 8254, 129450, + 127970, 118459, 8486, 128076, 127842, 128329, 129417, 128002, 983122, + 983121, 128463, 128195, 128479, 128196, 128223, 128464, 128724, 93059, + 93065, 93064, 93058, 93070, 93056, 93055, 93053, 93062, 93069, 93061, + 93066, 93071, 93068, 93054, 93057, 93063, 93067, 93060, 92967, 92975, + 92965, 92969, 92959, 92968, 92971, 92957, 92962, 92960, 92972, 92970, + 92963, 92958, 92966, 92961, 92956, 92974, 92964, 92973, 92979, 92978, + 92980, 92977, 92976, 92982, 92981, 93023, 93020, 93024, 93021, 93019, + 93025, 93022, 93043, 92985, 93047, 93044, 93045, 92997, 93046, 93042, + 93032, 93029, 92995, 93038, 92993, 93041, 93035, 93033, 93037, 93030, + 93039, 92987, 92992, 92986, 92983, 92984, 93027, 92994, 93034, 92988, + 92990, 92989, 92991, 93028, 92996, 93031, 93040, 93036, 92954, 92955, + 92938, 92939, 92932, 92933, 92942, 92943, 92950, 92951, 92928, 92929, + 92936, 92937, 92948, 92949, 92930, 92931, 92944, 92945, 92934, 92935, + 92940, 92941, 92946, 92947, 92952, 92953, 93013, 93012, 93015, 93014, + 93011, 93010, 93008, 93017, 93009, 93016, 9908, 11801, 127796, 129779, + 129780, 67703, 67693, 67688, 67702, 67683, 67691, 67699, 67700, 67680, + 67696, 67682, 67686, 67695, 67698, 67701, 67689, 67684, 67687, 67690, + 67681, 67694, 67685, 67697, 67692, 67704, 67711, 67706, 67707, 67710, + 67709, 67708, 67705, 129330, 129374, 128060, 8233, 11853, 11791, 10995, + 10994, 8741, 129666, 12809, 12823, 12808, 12822, 12828, 12813, 12827, + 12810, 12824, 12800, 12814, 12804, 12818, 12801, 12815, 12812, 12826, + 12805, 12819, 12803, 12817, 12806, 12820, 12811, 12825, 12802, 12816, + 12807, 12821, 12863, 12855, 12858, 12861, 12847, 12839, 12854, 12843, + 12836, 12864, 12835, 12856, 12846, 12842, 12840, 12852, 12862, 12865, + 12857, 12867, 12838, 12866, 12851, 12853, 12859, 12849, 12860, 12848, + 12837, 12834, 12841, 12833, 12845, 12844, 12850, 12832, 12830, 12829, + 9349, 9342, 9345, 9346, 9350, 9347, 9348, 9344, 9351, 9343, 9341, 9336, + 9335, 9338, 9337, 9334, 9333, 9340, 9332, 9339, 127248, 127249, 127250, + 127251, 127252, 127253, 127254, 127255, 127256, 127257, 127258, 127259, + 127260, 127261, 127262, 127263, 127264, 127265, 127266, 127267, 127268, + 127269, 127270, 127271, 127272, 127273, 9372, 9373, 9374, 9375, 9376, + 9377, 9378, 9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, + 9389, 9390, 9391, 9392, 9393, 9394, 9395, 9396, 9397, 8706, 983147, + 983146, 983149, 983150, 9853, 127881, 118468, 128890, 12880, 12349, + 129436, 128755, 11261, 9105, 9106, 128706, 72437, 72440, 72432, 72416, + 72419, 72413, 72417, 72415, 72412, 72414, 72418, 72420, 72403, 72407, + 72411, 72409, 72410, 72391, 72400, 72404, 72397, 72394, 72385, 72401, + 72384, 72399, 72398, 72396, 72388, 72393, 72392, 72386, 72387, 72402, + 72395, 72390, 72389, 72405, 72406, 72408, 72436, 72435, 72438, 72439, + 72422, 72421, 72424, 72425, 72431, 72433, 72434, 72428, 72427, 72429, + 72430, 72423, 72426, 128062, 128230, 128206, 983228, 983237, 129434, + 9774, 127825, 129372, 129755, 127824, 128039, 128532, 9956, 128390, 9999, + 8240, 8241, 8524, 10178, 10977, 129336, 129496, 129494, 128113, 9977, + 128590, 129733, 128591, 129493, 128589, 128588, 129495, 128583, 128187, + 8966, 128547, 37, 9854, 127917, 8359, 8369, 129515, 128694, 129730, + 43101, 43117, 43120, 43076, 43123, 43077, 43115, 43090, 43082, 43094, + 43098, 43099, 43119, 43118, 43109, 43074, 43075, 43116, 43079, 43083, + 43089, 43088, 43114, 43113, 43081, 43080, 43073, 43072, 43085, 43084, + 43092, 43093, 43104, 43110, 43086, 43108, 43100, 43078, 43097, 43087, + 43106, 43096, 43091, 43107, 43095, 43102, 43105, 43103, 43127, 43126, + 43124, 43121, 43111, 43112, 43122, 43125, 66033, 66023, 66017, 66010, + 66027, 66003, 66018, 66028, 66004, 66012, 66022, 66020, 66045, 66019, + 66031, 66041, 66007, 66006, 66025, 66026, 66038, 66016, 66013, 66014, + 66000, 66001, 66034, 66036, 66037, 66029, 66011, 66024, 66015, 66021, + 66042, 66043, 66002, 66008, 66032, 66005, 66044, 66040, 66039, 66030, + 66009, 66035, 5941, 5942, 67840, 67855, 67843, 67844, 67847, 67858, + 67857, 67860, 67854, 67861, 67848, 67845, 67846, 67849, 67859, 67842, + 67850, 67853, 67851, 67841, 67856, 67852, 67864, 67866, 67867, 67863, + 67862, 67865, 67871, 11227, 9935, 128763, 128022, 128061, 128055, 128169, + 182, 128138, 129292, 129295, 127885, 127821, 10031, 129655, 129669, 9811, + 128299, 8916, 10970, 129383, 8984, 128720, 129703, 8462, 8463, 128733, + 127183, 127136, 127167, 127199, 127188, 127140, 127156, 127172, 127200, + 127189, 127141, 127157, 127173, 127196, 127148, 127164, 127180, 127198, + 127150, 127166, 127182, 127192, 127144, 127160, 127176, 127191, 127143, + 127159, 127175, 127190, 127142, 127158, 127174, 127197, 127149, 127165, + 127181, 127194, 127146, 127162, 127178, 127187, 127139, 127155, 127171, + 127186, 127138, 127154, 127170, 127202, 127220, 127221, 127201, 127210, + 127211, 127212, 127213, 127214, 127215, 127216, 127217, 127218, 127219, + 127203, 127204, 127205, 127206, 127207, 127208, 127209, 127185, 127137, + 127153, 127169, 127193, 127145, 127161, 127177, 127195, 127147, 127163, + 127179, 983151, 43, 10797, 10798, 10809, 10789, 10786, 10791, 10790, + 10788, 10792, 10787, 10866, 177, 9799, 11222, 11221, 11220, 11219, + 129696, 983148, 117777, 128659, 128680, 128110, 8297, 8236, 127871, + 128254, 11239, 128239, 12306, 12320, 128238, 8982, 128688, 129364, + 127858, 129716, 127831, 129751, 128574, 128545, 163, 128093, 9212, 9213, + 9214, 9211, 128041, 128425, 129328, 129732, 129731, 65043, 65040, 65045, + 65073, 65074, 65049, 65041, 65042, 65091, 65047, 65083, 65085, 65089, + 65079, 65087, 65077, 65095, 65081, 65075, 65084, 65086, 65092, 983261, + 65048, 65090, 65080, 65088, 65078, 65096, 65082, 65076, 65044, 65072, + 65046, 8478, 8826, 10937, 10933, 10927, 10929, 10935, 10931, 8936, 8830, + 8828, 8880, 9111, 129384, 9113, 128424, 128438, 129332, 128120, 983193, + 983166, 983163, 983164, 983167, 8242, 8965, 8759, 8733, 8522, 11224, + 128711, 129455, 128255, 68507, 68508, 68480, 68483, 68490, 68491, 68485, + 68482, 68486, 68493, 68495, 68496, 68488, 68484, 68487, 68489, 68481, + 68492, 68497, 68494, 68526, 68522, 68523, 68525, 68521, 68527, 68524, + 68505, 68506, 118473, 11854, 8200, 128156, 128091, 128686, 128204, + 128226, 983165, 983168, 983194, 9624, 9625, 9626, 9627, 9628, 9629, 9630, + 9631, 9622, 9623, 10764, 8279, 10774, 9833, 128894, 8264, 63, 8799, 34, + 9915, 127949, 127950, 129437, 128251, 9762, 128280, 9143, 128740, 128643, + 9926, 127752, 11827, 11783, 11782, 9995, 128400, 128406, 127338, 127339, + 127340, 129996, 11787, 9994, 11828, 129306, 128000, 8758, 128007, 128048, + 129682, 128015, 129534, 117778, 9852, 9843, 9844, 9845, 9846, 9847, 9848, + 9849, 9850, 983113, 128665, 127822, 129511, 174, 127462, 127463, 127464, 127465, 127466, 127467, 127468, 127469, 127470, 127471, 127472, 127473, 127474, 127475, 127476, 127477, 127478, 127479, 127480, 127481, 127482, 127483, 127484, 127485, 127486, 127487, 43344, 43343, 43346, 43345, @@ -13436,7 +12803,7 @@ static const unsigned int dawg_pos_to_codepoint[] = { }; #define DAWG_CODEPOINT_TO_POS_SHIFT 8 -#define DAWG_CODEPOINT_TO_POS_NOTFOUND 41412 +#define DAWG_CODEPOINT_TO_POS_NOTFOUND 35536 static const unsigned char dawg_codepoint_to_pos_index1[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, @@ -13451,24 +12818,23 @@ static const unsigned char dawg_codepoint_to_pos_index1[] = { 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 66, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 67, 68, 69, 70, 71, 72, - 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, - 107, 108, 109, 110, 111, 52, 52, 52, 52, 52, 52, 52, 52, 52, 112, 113, - 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 136, 52, 52, 52, 52, 52, 52, 137, 138, 139, 140, 52, 141, 142, 143, 52, - 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 144, 145, 146, 147, 148, 149, 52, 52, 52, 52, 52, 52, + 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 67, 68, 69, 70, + 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, + 106, 107, 108, 109, 52, 52, 52, 52, 52, 52, 52, 52, 52, 110, 111, 112, + 113, 114, 115, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 52, 116, 117, 118, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 119, 52, 52, 52, 52, + 52, 52, 120, 121, 122, 123, 52, 124, 125, 126, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 52, 52, 52, 52, 150, 151, 152, 153, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 154, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, - 167, 168, 169, 52, 52, 52, 52, 170, 171, 172, 173, 52, 174, 175, 176, - 177, 178, 179, 52, 52, 180, 181, 182, 52, 183, 184, 185, 186, 187, 188, - 189, 190, 191, 192, 193, 194, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 127, 128, 129, 52, 52, 130, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 52, 52, 52, 52, 131, 132, 133, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 134, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 135, + 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 52, + 52, 52, 52, 150, 151, 152, 153, 52, 154, 155, 156, 157, 158, 159, 52, 52, + 160, 161, 162, 52, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, + 174, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, @@ -13481,7 +12847,6 @@ static const unsigned char dawg_codepoint_to_pos_index1[] = { 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 52, 52, 195, 196, 197, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, @@ -13638,8 +13003,9 @@ static const unsigned char dawg_codepoint_to_pos_index1[] = { 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 52, 198, 199, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 175, + 176, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, @@ -13652,8 +13018,8 @@ static const unsigned char dawg_codepoint_to_pos_index1[] = { 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 200, 201, 202, 203, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 52, 52, 52, 177, 178, 179, 180, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, @@ -13681,221 +13047,216 @@ static const unsigned char dawg_codepoint_to_pos_index1[] = { 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, + 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, }; static const unsigned short dawg_codepoint_to_pos_index2[] = { - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 34311, 17490, 31931, 29628, 11221, 31502, 371, 1054, 24321, - 32155, 2570, 31753, 8585, 20621, 17673, 34150, 11004, 10989, 11001, - 10998, 10983, 10980, 10995, 10992, 11007, 10986, 8161, 32765, 24564, - 16926, 18304, 31929, 8584, 22906, 22952, 22962, 22978, 22995, 23040, - 23044, 23061, 23075, 23104, 23109, 23121, 23141, 23150, 23166, 23216, - 23225, 23228, 23249, 23273, 23302, 23341, 23352, 23361, 23364, 23378, - 24283, 32056, 32169, 6924, 25337, 18275, 23470, 23520, 23540, 23563, - 23599, 23658, 23666, 23684, 23703, 23740, 23746, 23760, 23799, 23812, - 23836, 23893, 23905, 23911, 23949, 23991, 24064, 24112, 24126, 24135, - 24143, 24159, 24224, 39287, 32118, 37693, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29622, - 20975, 6233, 31795, 10083, 39859, 5039, 32747, 10971, 8779, 17569, 24331, - 29602, 34101, 31979, 27023, 10686, 31765, 34937, 34936, 4, 27754, 31650, - 27760, 6229, 34940, 25990, 32216, 39421, 39419, 39427, 20978, 22935, - 22936, 22924, 22938, 22917, 22919, 22940, 22963, 23026, 23027, 22998, - 23013, 23091, 23092, 23081, 23079, 23037, 23164, 23205, 23206, 23173, - 23191, 23180, 28467, 23189, 23333, 23334, 23303, 23306, 23373, 23294, - 23981, 23501, 23502, 23490, 23504, 23481, 23483, 23507, 23541, 23632, - 23633, 23602, 23617, 23721, 23722, 23704, 23706, 23657, 23831, 23875, - 23876, 23837, 23861, 23844, 11132, 23859, 24099, 24102, 24067, 24070, - 24154, 24013, 24145, 22922, 23488, 22907, 23471, 22932, 23498, 22967, - 23546, 22965, 23543, 22971, 23551, 22966, 23545, 22985, 23571, 22982, - 23565, 23016, 23621, 23029, 23635, 23008, 23612, 23023, 23629, 23007, - 23611, 23046, 23668, 23049, 23671, 23053, 23676, 23045, 23667, 23064, - 23687, 23071, 23696, 23085, 23718, 23083, 23713, 23094, 23724, 23088, - 23715, 23078, 23587, 23390, 24179, 23105, 23741, 23110, 23747, 23759, - 23135, 23777, 23131, 23764, 23133, 23767, 23128, 23774, 23130, 23785, - 23159, 23824, 23151, 23813, 23153, 23817, 23832, 23039, 23640, 23169, - 23854, 23208, 23878, 23186, 23850, 23391, 24182, 23237, 23928, 23229, - 23912, 23230, 23914, 23255, 23950, 23254, 23956, 23252, 23954, 23250, - 23952, 23274, 23992, 23277, 23996, 23284, 24008, 23330, 24096, 23322, - 24086, 23336, 24104, 23337, 24095, 23313, 24077, 23327, 24091, 23353, - 24127, 23365, 24144, 23366, 23381, 24160, 23384, 24166, 23380, 24163, - 23791, 23529, 22958, 22953, 23521, 23297, 24016, 23211, 22969, 23549, - 22944, 22990, 22986, 23566, 24021, 23246, 23272, 23210, 23041, 23661, - 23052, 23059, 23702, 23102, 23095, 23120, 23758, 23763, 23787, 23291, - 23157, 23818, 23172, 23198, 23868, 23213, 23890, 23222, 23901, 23467, - 23299, 24018, 23038, 23408, 24004, 23283, 24005, 23282, 23315, 24079, - 23340, 23345, 23370, 24149, 23387, 24169, 23031, 23033, 23650, 23655, - 23460, 23298, 24017, 23406, 23461, 23462, 23463, 23399, 23410, 22992, - 22980, 23593, 23140, 23129, 23798, 23165, 23154, 23835, 22930, 23496, - 23082, 23705, 23179, 23843, 23305, 24069, 23310, 24074, 23309, 24073, - 23307, 24071, 23308, 24072, 24053, 22918, 23482, 22914, 23478, 22942, - 23510, 23054, 23677, 23047, 23669, 23111, 23748, 23187, 23857, 23188, - 23858, 23032, 23652, 23743, 22991, 22979, 23592, 23048, 23670, 23073, - 23360, 23158, 23823, 22920, 23484, 22941, 23509, 23190, 23860, 22916, - 23480, 22937, 23503, 23012, 23616, 23028, 23634, 23076, 23712, 23093, - 23723, 23185, 23849, 23207, 23877, 23234, 23918, 23239, 23929, 23312, - 24076, 23335, 24103, 23253, 23955, 23276, 23994, 23377, 24158, 23065, - 23688, 23155, 23570, 23215, 23892, 23389, 24173, 22913, 23477, 22996, - 23600, 23181, 23845, 23194, 23864, 23182, 23846, 23183, 23847, 23374, - 24155, 23766, 23816, 23995, 23584, 23597, 23910, 22939, 22972, 23552, - 23123, 23278, 23963, 24168, 23055, 23678, 22959, 23339, 23293, 23030, - 23637, 23108, 23745, 23266, 23908, 23241, 23932, 23376, 24153, 24045, - 23512, 24046, 23528, 23881, 23544, 23567, 23575, 23941, 23972, 23976, - 23887, 23936, 23938, 23559, 23585, 23675, 23979, 23437, 23682, 23948, - 24022, 23695, 23701, 23725, 23736, 23415, 23772, 23761, 23780, 23788, - 24048, 24049, 23807, 23820, 23829, 23448, 23532, 23422, 23558, 23904, - 24033, 24036, 24039, 23923, 23925, 23919, 23939, 23424, 23416, 23969, - 23643, 23586, 23989, 23647, 24040, 24007, 24065, 24106, 24119, 24042, - 24057, 24050, 23455, 24172, 24162, 23649, 23651, 23464, 23407, 23404, - 23457, 23402, 23435, 23557, 23438, 23444, 23742, 24055, 23417, 23907, - 23465, 23409, 23594, 23580, 23595, 24060, 24009, 24059, 23664, 23795, - 23796, 23401, 23403, 24023, 24024, 28085, 28086, 28094, 28116, 28143, - 28146, 28041, 28163, 28165, 28014, 27957, 28171, 27867, 28022, 28024, - 28000, 27973, 28020, 28002, 28026, 28173, 27959, 27949, 6162, 28177, - 28003, 27866, 27972, 27998, 27989, 27995, 27994, 28170, 27980, 27901, - 27900, 28172, 27958, 28013, 28011, 5032, 11327, 32348, 30158, 34059, - 11386, 28027, 27950, 28084, 28096, 28123, 28164, 28120, 27964, 27979, - 28007, 27992, 27969, 28179, 28178, 28176, 28174, 27956, 27985, 27997, - 27987, 27990, 27991, 28010, 28009, 28008, 27993, 28019, 27869, 27970, - 27870, 27971, 28029, 28012, 27986, 8379, 8168, 8252, 8554, 8489, 8512, - 8178, 8278, 8274, 8393, 8538, 8288, 8184, 8570, 8310, 8311, 8186, 8396, - 8562, 8189, 8520, 8190, 8380, 8169, 8473, 8533, 8463, 8395, 8470, 8563, - 8314, 8517, 8500, 8516, 8521, 8281, 8275, 8537, 8191, 8254, 8510, 8569, - 8181, 8400, 8185, 8253, 8180, 8397, 8558, 8494, 8488, 8312, 8557, 8542, - 8486, 8541, 8485, 8528, 8398, 8546, 8551, 8582, 8571, 8298, 8381, 8170, - 8390, 8389, 8392, 8391, 8182, 8324, 8309, 8462, 8503, 8394, 8177, 8475, - 8565, 8385, 8524, 8471, 8326, 8581, 8464, 8525, 8523, 8529, 8280, 8174, - 8304, 8540, 8290, 8289, 8295, 8296, 8305, 8291, 8302, 8413, 8421, 8426, - 8434, 8437, 8419, 8451, 8453, 8455, 8440, 8443, 8458, 8459, 18489, 18753, - 18384, 18620, 18571, 18567, 18478, 18735, 41412, 41412, 18810, 18760, - 18761, 18759, 18815, 18492, 41412, 41412, 41412, 41412, 18775, 18505, - 18382, 18358, 18415, 18405, 18429, 41412, 18461, 41412, 18476, 18451, - 18667, 18361, 18488, 18486, 18484, 18406, 18490, 18385, 18482, 18416, - 18485, 18491, 18493, 18494, 18495, 18452, 18481, 18462, 41412, 18464, - 18483, 18467, 18479, 18487, 18480, 18431, 18421, 18472, 18617, 18632, - 18657, 18676, 18687, 18592, 18752, 18750, 18622, 18623, 18754, 18633, - 18747, 18658, 18698, 18755, 18756, 18757, 18758, 18725, 18738, 18739, - 18749, 18745, 18748, 18678, 18736, 18751, 18737, 18700, 18663, 18683, - 18734, 18696, 18724, 18500, 18812, 18771, 18779, 18777, 18778, 18587, - 18588, 18552, 18563, 18619, 18562, 18744, 18565, 18621, 18564, 18699, - 18561, 18742, 8660, 8754, 8638, 8732, 8634, 8728, 8632, 8726, 8630, 8724, - 8659, 8753, 8629, 8723, 18551, 18590, 18568, 18566, 18501, 18569, 18591, - 18466, 18746, 18496, 18465, 18743, 18589, 18498, 18499, 18497, 10350, - 10352, 10299, 10338, 10274, 10303, 10290, 10409, 10422, 10245, 10248, - 10262, 10377, 10347, 10390, 10307, 10275, 10291, 10423, 10332, 10311, - 10349, 10416, 10412, 10345, 10388, 10362, 10313, 10329, 10318, 10381, - 10249, 10324, 10327, 10259, 10269, 10331, 10339, 10265, 10292, 10395, - 10393, 10343, 10406, 10398, 10312, 10411, 10403, 10434, 10450, 10624, - 10491, 10470, 10508, 10617, 10613, 10504, 10566, 10521, 10472, 10488, - 10477, 10547, 10552, 10483, 10486, 10584, 10595, 10490, 10498, 10590, - 10451, 10573, 10571, 10502, 10607, 10576, 10471, 10612, 10604, 10509, - 10511, 10458, 10497, 10600, 10462, 10449, 10610, 10623, 10540, 10546, - 10587, 10536, 10506, 10568, 10466, 10382, 10548, 10405, 10606, 10358, - 10517, 10244, 10538, 10354, 10513, 10287, 10446, 10355, 10514, 10378, - 10537, 10252, 10556, 10421, 10622, 10360, 10519, 10361, 10520, 10273, - 10599, 10253, 10561, 10383, 10549, 10385, 10551, 10375, 10534, 10655, - 8245, 8239, 8242, 8240, 8241, 8195, 8248, 10389, 10567, 10402, 10580, - 10325, 10484, 10334, 10493, 10336, 10495, 10333, 10492, 10418, 10619, - 10414, 10615, 10363, 10522, 10365, 10524, 10366, 10525, 10285, 10444, - 10320, 10479, 10428, 10628, 10250, 10553, 10281, 10440, 10328, 10487, - 10261, 10586, 10400, 10578, 10401, 10579, 10340, 10499, 10427, 10627, - 10294, 10453, 10295, 10454, 10391, 10569, 10278, 10437, 10279, 10438, - 10431, 10419, 10620, 10364, 10523, 10316, 10475, 10323, 10482, 10322, - 10481, 10376, 10535, 10330, 10489, 10555, 10277, 10436, 10276, 10435, - 10426, 10626, 10351, 10510, 10386, 10564, 10387, 10565, 10417, 10618, - 10413, 10614, 10280, 10439, 10348, 10507, 10346, 10505, 10384, 10550, - 10283, 10442, 10284, 10443, 10326, 10485, 10272, 10598, 10271, 10597, - 10270, 10596, 10293, 10452, 10335, 10494, 10407, 10608, 10337, 10496, - 10341, 10500, 10342, 10501, 10369, 10528, 10368, 10527, 10374, 10533, - 10367, 10526, 10370, 10529, 10371, 10530, 10372, 10531, 10373, 10532, - 10257, 10560, 10317, 10476, 10246, 10541, 10258, 10563, 10404, 10605, - 10425, 10625, 10424, 10603, 10282, 10441, 10314, 10473, 10319, 10478, - 10251, 10554, 10392, 10570, 10321, 10480, 10305, 10464, 10309, 10468, - 10315, 10474, 41412, 2488, 2495, 2479, 2501, 2475, 2499, 2476, 2477, - 2466, 2498, 2494, 2491, 2493, 2471, 2483, 2500, 2481, 2478, 2469, 2496, - 2467, 2497, 2486, 2490, 2470, 2485, 2480, 2474, 2487, 2489, 2465, 2473, - 2472, 2468, 2484, 2482, 2502, 2492, 41412, 41412, 2552, 2464, 2505, 2504, - 2503, 2556, 2463, 2525, 2528, 2538, 2516, 2544, 2512, 2542, 2513, 2514, - 2527, 2541, 2537, 2534, 2536, 2508, 2520, 2543, 2518, 2515, 2506, 2539, - 2531, 2540, 2523, 2530, 2507, 2522, 2517, 2511, 2524, 2529, 2526, 2510, - 2509, 2533, 2521, 2519, 2545, 2535, 2546, 2532, 2555, 2553, 41412, 41412, - 32203, 24344, 2554, 41412, 19963, 19966, 19967, 19974, 19975, 19971, - 19978, 19976, 19961, 19973, 19970, 19954, 19955, 19956, 19964, 19969, - 19962, 19951, 19959, 19960, 19957, 19958, 19953, 19965, 19968, 19972, - 19979, 19980, 19952, 19977, 20058, 20073, 20062, 20060, 20061, 20063, - 20075, 20071, 20066, 20067, 20064, 20065, 20069, 20059, 20077, 20083, - 20070, 20080, 20072, 20074, 20081, 20057, 20056, 20082, 20068, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 19981, 19988, 20031, - 20029, 20006, 20037, 20011, 20008, 20023, 20048, 19997, 19991, 20033, - 20003, 20035, 20002, 20009, 20013, 19987, 19999, 19994, 20001, 20027, - 20004, 20021, 20015, 20025, 41412, 41412, 41412, 41412, 20084, 20052, - 20055, 20053, 20079, 20078, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 2306, 2340, 1099, 2341, 2342, 2305, - 2451, 2452, 2317, 2449, 2450, 2644, 1067, 1080, 2312, 2346, 2339, 2345, - 2337, 2338, 2347, 2365, 2353, 2382, 2349, 2401, 2400, 2333, 1387, 1089, - 2439, 2447, 1342, 1294, 1157, 1147, 1577, 1150, 1593, 1129, 1171, 1519, - 1518, 1541, 1320, 1279, 1361, 1196, 1536, 1440, 1620, 1474, 1487, 1466, - 1212, 1496, 1615, 1119, 1266, 1348, 1345, 1241, 1240, 1239, 2427, 1246, - 1431, 1331, 1366, 1379, 1403, 1296, 1572, 1165, 1584, 1097, 1078, 1109, - 1091, 1074, 1105, 2334, 2404, 2159, 1104, 1103, 2403, 2323, 2160, 2448, - 2443, 2442, 2444, 2318, 1092, 2446, 2459, 2461, 2458, 2457, 2454, 2453, - 2456, 2455, 2462, 2460, 2310, 1085, 2441, 1100, 1224, 1226, 1493, 1162, - 1154, 1153, 1316, 1317, 1319, 1558, 1318, 1546, 1552, 1191, 1527, 1526, - 1419, 1531, 1186, 1289, 1287, 1398, 1227, 1286, 1506, 1513, 1221, 1206, - 1203, 1204, 1209, 1218, 1232, 1199, 1205, 1457, 1443, 1454, 1451, 1444, - 1452, 1447, 1328, 1450, 1475, 1478, 1479, 1469, 1468, 1500, 1122, 1225, - 1249, 1247, 1565, 1251, 1426, 1434, 1435, 1343, 1495, 1337, 1336, 1388, - 1334, 1257, 1260, 1389, 1259, 1273, 1258, 1370, 1368, 1372, 1371, 1414, - 1404, 1460, 1412, 1409, 1307, 1508, 1304, 1297, 1298, 1522, 1581, 1355, - 1612, 1557, 1609, 1358, 1580, 1564, 1235, 1603, 1598, 1574, 1624, 1602, - 1585, 1588, 1101, 1170, 2356, 2355, 2358, 2357, 2384, 2364, 2362, 1090, - 2426, 2381, 2380, 2350, 2359, 2399, 2360, 2402, 2387, 2376, 2378, 2314, - 1088, 1087, 2322, 2398, 1198, 1448, 17510, 17512, 17509, 17508, 17505, - 17504, 17507, 17506, 17513, 17511, 1488, 1213, 1268, 2344, 2343, 1303, - 35067, 35141, 35138, 35139, 35135, 35076, 35063, 35064, 35140, 35137, - 35062, 35072, 35071, 35070, 41412, 35060, 35108, 35104, 35118, 35114, - 35115, 35078, 35077, 35079, 35121, 35119, 35080, 35111, 35112, 35116, - 35117, 35109, 35081, 35093, 35120, 35100, 35107, 35122, 35094, 35098, - 35106, 35110, 35099, 35105, 35113, 35095, 35097, 35096, 35127, 35126, - 35125, 35130, 35129, 35128, 35132, 35131, 35066, 35065, 35075, 35074, - 35073, 35069, 35068, 35133, 35147, 35148, 35134, 35145, 35144, 35143, - 35142, 35124, 35123, 35146, 35061, 41412, 41412, 35101, 35102, 35103, - 1177, 1180, 1175, 1176, 1178, 1179, 1173, 1288, 1285, 1202, 1197, 1445, - 1481, 1124, 1120, 1123, 1252, 1250, 1350, 1346, 1344, 1382, 1381, 1410, - 1407, 1408, 1373, 1446, 1449, 1480, 1284, 1282, 1477, 1441, 1283, 1156, - 1155, 1238, 1237, 1236, 1576, 1575, 1587, 1586, 1280, 1482, 1476, 1333, - 37261, 37274, 37270, 37287, 37286, 37265, 37262, 37250, 37281, 37266, - 37255, 37254, 37277, 37264, 37257, 37258, 37275, 37253, 37283, 37276, - 37288, 37269, 37268, 37267, 37279, 37260, 37263, 37278, 37284, 37273, - 37272, 37252, 37280, 37285, 37251, 37259, 37256, 37282, 37246, 37245, - 37292, 37248, 37293, 37291, 37247, 37249, 37290, 37289, 37294, 37271, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 29486, 29488, 29485, 29484, 29481, 29480, - 29483, 29482, 29489, 29487, 29521, 29508, 29522, 29507, 29523, 29505, - 29504, 29492, 29497, 29510, 29516, 29518, 29496, 29506, 29491, 29503, - 29502, 29517, 29509, 29511, 29513, 29514, 29499, 29515, 29500, 29498, - 29512, 29519, 29520, 29501, 29494, 29493, 29495, 29474, 29475, 29476, - 29472, 29469, 29470, 29471, 29473, 29468, 29525, 29524, 29527, 29526, - 29477, 29528, 29490, 41412, 41412, 29478, 29479, 29529, 32575, 32562, - 32576, 32564, 32567, 32563, 32578, 32566, 32573, 32582, 32568, 32569, - 32579, 32581, 32570, 32565, 32583, 32574, 32580, 32577, 32571, 32572, - 32585, 32586, 32589, 32584, 32590, 32587, 32609, 32619, 32614, 32608, - 32618, 32613, 32607, 32617, 32591, 32615, 32611, 32621, 32592, 32610, - 32620, 32612, 32616, 32588, 41412, 41412, 32599, 32593, 32595, 32598, - 32596, 32600, 32622, 32605, 32603, 32606, 32602, 32604, 32597, 32601, - 32594, 41412, 25779, 25766, 25768, 25767, 25769, 25778, 25776, 25781, - 25761, 25759, 25758, 25770, 25771, 25772, 25762, 25780, 25773, 25764, - 25774, 25775, 25763, 25760, 25777, 25782, 25765, 25757, 25783, 25784, - 41412, 41412, 25785, 41412, 35086, 35091, 35087, 35089, 35085, 35084, - 35088, 35092, 35083, 35082, 35090, 41412, 41412, 41412, 41412, 41412, - 1143, 1133, 1144, 1160, 1142, 1130, 1139, 1136, 1140, 1138, 1161, 1135, - 1146, 1132, 1134, 1145, 1131, 1137, 1141, 2428, 2429, 2431, 1539, 1064, - 2316, 1411, 1281, 1501, 1499, 1347, 2445, 1413, 2313, 2315, 41412, 41412, - 41412, 41412, 41412, 2311, 2366, 2392, 2391, 2394, 2158, 2408, 1084, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 28435, 12481, 26055, 24148, 10207, 25626, 371, 1054, 18841, + 26279, 2570, 25877, 7571, 15612, 12664, 28274, 9990, 9975, 9987, 9984, + 9969, 9966, 9981, 9978, 9993, 9972, 7147, 26889, 19084, 11917, 13295, + 26053, 7570, 17426, 17472, 17482, 17498, 17515, 17560, 17564, 17581, + 17595, 17624, 17629, 17641, 17661, 17670, 17686, 17736, 17745, 17748, + 17769, 17793, 17822, 17861, 17872, 17881, 17884, 17898, 18803, 26180, + 26293, 6924, 19857, 13266, 17990, 18040, 18060, 18083, 18119, 18178, + 18186, 18204, 18223, 18260, 18266, 18280, 18319, 18332, 18356, 18413, + 18425, 18431, 18469, 18511, 18584, 18632, 18646, 18655, 18663, 18679, + 18744, 33411, 26242, 31817, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 24142, 15966, 6233, + 25919, 9069, 33983, 5039, 26871, 9957, 7765, 12560, 18851, 24122, 28225, + 26103, 21543, 9672, 25889, 29061, 29060, 4, 22274, 25774, 22280, 6229, + 29064, 20510, 26340, 33545, 33543, 33551, 15969, 17455, 17456, 17444, + 17458, 17437, 17439, 17460, 17483, 17546, 17547, 17518, 17533, 17611, + 17612, 17601, 17599, 17557, 17684, 17725, 17726, 17693, 17711, 17700, + 22987, 17709, 17853, 17854, 17823, 17826, 17893, 17814, 18501, 18021, + 18022, 18010, 18024, 18001, 18003, 18027, 18061, 18152, 18153, 18122, + 18137, 18241, 18242, 18224, 18226, 18177, 18351, 18395, 18396, 18357, + 18381, 18364, 10118, 18379, 18619, 18622, 18587, 18590, 18674, 18533, + 18665, 17442, 18008, 17427, 17991, 17452, 18018, 17487, 18066, 17485, + 18063, 17491, 18071, 17486, 18065, 17505, 18091, 17502, 18085, 17536, + 18141, 17549, 18155, 17528, 18132, 17543, 18149, 17527, 18131, 17566, + 18188, 17569, 18191, 17573, 18196, 17565, 18187, 17584, 18207, 17591, + 18216, 17605, 18238, 17603, 18233, 17614, 18244, 17608, 18235, 17598, + 18107, 17910, 18699, 17625, 18261, 17630, 18267, 18279, 17655, 18297, + 17651, 18284, 17653, 18287, 17648, 18294, 17650, 18305, 17679, 18344, + 17671, 18333, 17673, 18337, 18352, 17559, 18160, 17689, 18374, 17728, + 18398, 17706, 18370, 17911, 18702, 17757, 18448, 17749, 18432, 17750, + 18434, 17775, 18470, 17774, 18476, 17772, 18474, 17770, 18472, 17794, + 18512, 17797, 18516, 17804, 18528, 17850, 18616, 17842, 18606, 17856, + 18624, 17857, 18615, 17833, 18597, 17847, 18611, 17873, 18647, 17885, + 18664, 17886, 17901, 18680, 17904, 18686, 17900, 18683, 18311, 18049, + 17478, 17473, 18041, 17817, 18536, 17731, 17489, 18069, 17464, 17510, + 17506, 18086, 18541, 17766, 17792, 17730, 17561, 18181, 17572, 17579, + 18222, 17622, 17615, 17640, 18278, 18283, 18307, 17811, 17677, 18338, + 17692, 17718, 18388, 17733, 18410, 17742, 18421, 17987, 17819, 18538, + 17558, 17928, 18524, 17803, 18525, 17802, 17835, 18599, 17860, 17865, + 17890, 18669, 17907, 18689, 17551, 17553, 18170, 18175, 17980, 17818, + 18537, 17926, 17981, 17982, 17983, 17919, 17930, 17512, 17500, 18113, + 17660, 17649, 18318, 17685, 17674, 18355, 17450, 18016, 17602, 18225, + 17699, 18363, 17825, 18589, 17830, 18594, 17829, 18593, 17827, 18591, + 17828, 18592, 18573, 17438, 18002, 17434, 17998, 17462, 18030, 17574, + 18197, 17567, 18189, 17631, 18268, 17707, 18377, 17708, 18378, 17552, + 18172, 18263, 17511, 17499, 18112, 17568, 18190, 17593, 17880, 17678, + 18343, 17440, 18004, 17461, 18029, 17710, 18380, 17436, 18000, 17457, + 18023, 17532, 18136, 17548, 18154, 17596, 18232, 17613, 18243, 17705, + 18369, 17727, 18397, 17754, 18438, 17759, 18449, 17832, 18596, 17855, + 18623, 17773, 18475, 17796, 18514, 17897, 18678, 17585, 18208, 17675, + 18090, 17735, 18412, 17909, 18693, 17433, 17997, 17516, 18120, 17701, + 18365, 17714, 18384, 17702, 18366, 17703, 18367, 17894, 18675, 18286, + 18336, 18515, 18104, 18117, 18430, 17459, 17492, 18072, 17643, 17798, + 18483, 18688, 17575, 18198, 17479, 17859, 17813, 17550, 18157, 17628, + 18265, 17786, 18428, 17761, 18452, 17896, 18673, 18565, 18032, 18566, + 18048, 18401, 18064, 18087, 18095, 18461, 18492, 18496, 18407, 18456, + 18458, 18079, 18105, 18195, 18499, 17957, 18202, 18468, 18542, 18215, + 18221, 18245, 18256, 17935, 18292, 18281, 18300, 18308, 18568, 18569, + 18327, 18340, 18349, 17968, 18052, 17942, 18078, 18424, 18553, 18556, + 18559, 18443, 18445, 18439, 18459, 17944, 17936, 18489, 18163, 18106, + 18509, 18167, 18560, 18527, 18585, 18626, 18639, 18562, 18577, 18570, + 17975, 18692, 18682, 18169, 18171, 17984, 17927, 17924, 17977, 17922, + 17955, 18077, 17958, 17964, 18262, 18575, 17937, 18427, 17985, 17929, + 18114, 18100, 18115, 18580, 18529, 18579, 18184, 18315, 18316, 17921, + 17923, 18543, 18544, 22605, 22606, 22614, 22636, 22663, 22666, 22561, + 22683, 22685, 22534, 22477, 22691, 22387, 22542, 22544, 22520, 22493, + 22540, 22522, 22546, 22693, 22479, 22469, 6162, 22697, 22523, 22386, + 22492, 22518, 22509, 22515, 22514, 22690, 22500, 22421, 22420, 22692, + 22478, 22533, 22531, 5032, 10313, 26472, 24282, 28183, 10372, 22547, + 22470, 22604, 22616, 22643, 22684, 22640, 22484, 22499, 22527, 22512, + 22489, 22699, 22698, 22696, 22694, 22476, 22505, 22517, 22507, 22510, + 22511, 22530, 22529, 22528, 22513, 22539, 22389, 22490, 22390, 22491, + 22549, 22532, 22506, 7365, 7154, 7238, 7540, 7475, 7498, 7164, 7264, + 7260, 7379, 7524, 7274, 7170, 7556, 7296, 7297, 7172, 7382, 7548, 7175, + 7506, 7176, 7366, 7155, 7459, 7519, 7449, 7381, 7456, 7549, 7300, 7503, + 7486, 7502, 7507, 7267, 7261, 7523, 7177, 7240, 7496, 7555, 7167, 7386, + 7171, 7239, 7166, 7383, 7544, 7480, 7474, 7298, 7543, 7528, 7472, 7527, + 7471, 7514, 7384, 7532, 7537, 7568, 7557, 7284, 7367, 7156, 7376, 7375, + 7378, 7377, 7168, 7310, 7295, 7448, 7489, 7380, 7163, 7461, 7551, 7371, + 7510, 7457, 7312, 7567, 7450, 7511, 7509, 7515, 7266, 7160, 7290, 7526, + 7276, 7275, 7281, 7282, 7291, 7277, 7288, 7399, 7407, 7412, 7420, 7423, + 7405, 7437, 7439, 7441, 7426, 7429, 7444, 7445, 13480, 13744, 13375, + 13611, 13562, 13558, 13469, 13726, 35536, 35536, 13801, 13751, 13752, + 13750, 13806, 13483, 35536, 35536, 35536, 35536, 13766, 13496, 13373, + 13349, 13406, 13396, 13420, 35536, 13452, 35536, 13467, 13442, 13658, + 13352, 13479, 13477, 13475, 13397, 13481, 13376, 13473, 13407, 13476, + 13482, 13484, 13485, 13486, 13443, 13472, 13453, 35536, 13455, 13474, + 13458, 13470, 13478, 13471, 13422, 13412, 13463, 13608, 13623, 13648, + 13667, 13678, 13583, 13743, 13741, 13613, 13614, 13745, 13624, 13738, + 13649, 13689, 13746, 13747, 13748, 13749, 13716, 13729, 13730, 13740, + 13736, 13739, 13669, 13727, 13742, 13728, 13691, 13654, 13674, 13725, + 13687, 13715, 13491, 13803, 13762, 13770, 13768, 13769, 13578, 13579, + 13543, 13554, 13610, 13553, 13735, 13556, 13612, 13555, 13690, 13552, + 13733, 7646, 7740, 7624, 7718, 7620, 7714, 7618, 7712, 7616, 7710, 7645, + 7739, 7615, 7709, 13542, 13581, 13559, 13557, 13492, 13560, 13582, 13457, + 13737, 13487, 13456, 13734, 13580, 13489, 13490, 13488, 9336, 9338, 9285, + 9324, 9260, 9289, 9276, 9395, 9408, 9231, 9234, 9248, 9363, 9333, 9376, + 9293, 9261, 9277, 9409, 9318, 9297, 9335, 9402, 9398, 9331, 9374, 9348, + 9299, 9315, 9304, 9367, 9235, 9310, 9313, 9245, 9255, 9317, 9325, 9251, + 9278, 9381, 9379, 9329, 9392, 9384, 9298, 9397, 9389, 9420, 9436, 9610, + 9477, 9456, 9494, 9603, 9599, 9490, 9552, 9507, 9458, 9474, 9463, 9533, + 9538, 9469, 9472, 9570, 9581, 9476, 9484, 9576, 9437, 9559, 9557, 9488, + 9593, 9562, 9457, 9598, 9590, 9495, 9497, 9444, 9483, 9586, 9448, 9435, + 9596, 9609, 9526, 9532, 9573, 9522, 9492, 9554, 9452, 9368, 9534, 9391, + 9592, 9344, 9503, 9230, 9524, 9340, 9499, 9273, 9432, 9341, 9500, 9364, + 9523, 9238, 9542, 9407, 9608, 9346, 9505, 9347, 9506, 9259, 9585, 9239, + 9547, 9369, 9535, 9371, 9537, 9361, 9520, 9641, 7231, 7225, 7228, 7226, + 7227, 7181, 7234, 9375, 9553, 9388, 9566, 9311, 9470, 9320, 9479, 9322, + 9481, 9319, 9478, 9404, 9605, 9400, 9601, 9349, 9508, 9351, 9510, 9352, + 9511, 9271, 9430, 9306, 9465, 9414, 9614, 9236, 9539, 9267, 9426, 9314, + 9473, 9247, 9572, 9386, 9564, 9387, 9565, 9326, 9485, 9413, 9613, 9280, + 9439, 9281, 9440, 9377, 9555, 9264, 9423, 9265, 9424, 9417, 9405, 9606, + 9350, 9509, 9302, 9461, 9309, 9468, 9308, 9467, 9362, 9521, 9316, 9475, + 9541, 9263, 9422, 9262, 9421, 9412, 9612, 9337, 9496, 9372, 9550, 9373, + 9551, 9403, 9604, 9399, 9600, 9266, 9425, 9334, 9493, 9332, 9491, 9370, + 9536, 9269, 9428, 9270, 9429, 9312, 9471, 9258, 9584, 9257, 9583, 9256, + 9582, 9279, 9438, 9321, 9480, 9393, 9594, 9323, 9482, 9327, 9486, 9328, + 9487, 9355, 9514, 9354, 9513, 9360, 9519, 9353, 9512, 9356, 9515, 9357, + 9516, 9358, 9517, 9359, 9518, 9243, 9546, 9303, 9462, 9232, 9527, 9244, + 9549, 9390, 9591, 9411, 9611, 9410, 9589, 9268, 9427, 9300, 9459, 9305, + 9464, 9237, 9540, 9378, 9556, 9307, 9466, 9291, 9450, 9295, 9454, 9301, + 9460, 35536, 2488, 2495, 2479, 2501, 2475, 2499, 2476, 2477, 2466, 2498, + 2494, 2491, 2493, 2471, 2483, 2500, 2481, 2478, 2469, 2496, 2467, 2497, + 2486, 2490, 2470, 2485, 2480, 2474, 2487, 2489, 2465, 2473, 2472, 2468, + 2484, 2482, 2502, 2492, 35536, 35536, 2552, 2464, 2505, 2504, 2503, 2556, + 2463, 2525, 2528, 2538, 2516, 2544, 2512, 2542, 2513, 2514, 2527, 2541, + 2537, 2534, 2536, 2508, 2520, 2543, 2518, 2515, 2506, 2539, 2531, 2540, + 2523, 2530, 2507, 2522, 2517, 2511, 2524, 2529, 2526, 2510, 2509, 2533, + 2521, 2519, 2545, 2535, 2546, 2532, 2555, 2553, 35536, 35536, 26327, + 18864, 2554, 35536, 14954, 14957, 14958, 14965, 14966, 14962, 14969, + 14967, 14952, 14964, 14961, 14945, 14946, 14947, 14955, 14960, 14953, + 14942, 14950, 14951, 14948, 14949, 14944, 14956, 14959, 14963, 14970, + 14971, 14943, 14968, 15049, 15064, 15053, 15051, 15052, 15054, 15066, + 15062, 15057, 15058, 15055, 15056, 15060, 15050, 15068, 15074, 15061, + 15071, 15063, 15065, 15072, 15048, 15047, 15073, 15059, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 14972, 14979, 15022, 15020, + 14997, 15028, 15002, 14999, 15014, 15039, 14988, 14982, 15024, 14994, + 15026, 14993, 15000, 15004, 14978, 14990, 14985, 14992, 15018, 14995, + 15012, 15006, 15016, 35536, 35536, 35536, 35536, 15075, 15043, 15046, + 15044, 15070, 15069, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 2306, 2340, 1099, 2341, 2342, 2305, 2451, + 2452, 2317, 2449, 2450, 2644, 1067, 1080, 2312, 2346, 2339, 2345, 2337, + 2338, 2347, 2365, 2353, 2382, 2349, 2401, 2400, 2333, 1387, 1089, 2439, + 2447, 1342, 1294, 1157, 1147, 1577, 1150, 1593, 1129, 1171, 1519, 1518, + 1541, 1320, 1279, 1361, 1196, 1536, 1440, 1620, 1474, 1487, 1466, 1212, + 1496, 1615, 1119, 1266, 1348, 1345, 1241, 1240, 1239, 2427, 1246, 1431, + 1331, 1366, 1379, 1403, 1296, 1572, 1165, 1584, 1097, 1078, 1109, 1091, + 1074, 1105, 2334, 2404, 2159, 1104, 1103, 2403, 2323, 2160, 2448, 2443, + 2442, 2444, 2318, 1092, 2446, 2459, 2461, 2458, 2457, 2454, 2453, 2456, + 2455, 2462, 2460, 2310, 1085, 2441, 1100, 1224, 1226, 1493, 1162, 1154, + 1153, 1316, 1317, 1319, 1558, 1318, 1546, 1552, 1191, 1527, 1526, 1419, + 1531, 1186, 1289, 1287, 1398, 1227, 1286, 1506, 1513, 1221, 1206, 1203, + 1204, 1209, 1218, 1232, 1199, 1205, 1457, 1443, 1454, 1451, 1444, 1452, + 1447, 1328, 1450, 1475, 1478, 1479, 1469, 1468, 1500, 1122, 1225, 1249, + 1247, 1565, 1251, 1426, 1434, 1435, 1343, 1495, 1337, 1336, 1388, 1334, + 1257, 1260, 1389, 1259, 1273, 1258, 1370, 1368, 1372, 1371, 1414, 1404, + 1460, 1412, 1409, 1307, 1508, 1304, 1297, 1298, 1522, 1581, 1355, 1612, + 1557, 1609, 1358, 1580, 1564, 1235, 1603, 1598, 1574, 1624, 1602, 1585, + 1588, 1101, 1170, 2356, 2355, 2358, 2357, 2384, 2364, 2362, 1090, 2426, + 2381, 2380, 2350, 2359, 2399, 2360, 2402, 2387, 2376, 2378, 2314, 1088, + 1087, 2322, 2398, 1198, 1448, 12501, 12503, 12500, 12499, 12496, 12495, + 12498, 12497, 12504, 12502, 1488, 1213, 1268, 2344, 2343, 1303, 29191, + 29265, 29262, 29263, 29259, 29200, 29187, 29188, 29264, 29261, 29186, + 29196, 29195, 29194, 35536, 29184, 29232, 29228, 29242, 29238, 29239, + 29202, 29201, 29203, 29245, 29243, 29204, 29235, 29236, 29240, 29241, + 29233, 29205, 29217, 29244, 29224, 29231, 29246, 29218, 29222, 29230, + 29234, 29223, 29229, 29237, 29219, 29221, 29220, 29251, 29250, 29249, + 29254, 29253, 29252, 29256, 29255, 29190, 29189, 29199, 29198, 29197, + 29193, 29192, 29257, 29271, 29272, 29258, 29269, 29268, 29267, 29266, + 29248, 29247, 29270, 29185, 35536, 35536, 29225, 29226, 29227, 1177, + 1180, 1175, 1176, 1178, 1179, 1173, 1288, 1285, 1202, 1197, 1445, 1481, + 1124, 1120, 1123, 1252, 1250, 1350, 1346, 1344, 1382, 1381, 1410, 1407, + 1408, 1373, 1446, 1449, 1480, 1284, 1282, 1477, 1441, 1283, 1156, 1155, + 1238, 1237, 1236, 1576, 1575, 1587, 1586, 1280, 1482, 1476, 1333, 31385, + 31398, 31394, 31411, 31410, 31389, 31386, 31374, 31405, 31390, 31379, + 31378, 31401, 31388, 31381, 31382, 31399, 31377, 31407, 31400, 31412, + 31393, 31392, 31391, 31403, 31384, 31387, 31402, 31408, 31397, 31396, + 31376, 31404, 31409, 31375, 31383, 31380, 31406, 31370, 31369, 31416, + 31372, 31417, 31415, 31371, 31373, 31414, 31413, 31418, 31395, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 24006, 24008, 24005, 24004, 24001, 24000, 24003, + 24002, 24009, 24007, 24041, 24028, 24042, 24027, 24043, 24025, 24024, + 24012, 24017, 24030, 24036, 24038, 24016, 24026, 24011, 24023, 24022, + 24037, 24029, 24031, 24033, 24034, 24019, 24035, 24020, 24018, 24032, + 24039, 24040, 24021, 24014, 24013, 24015, 23994, 23995, 23996, 23992, + 23989, 23990, 23991, 23993, 23988, 24045, 24044, 24047, 24046, 23997, + 24048, 24010, 35536, 35536, 23998, 23999, 24049, 26699, 26686, 26700, + 26688, 26691, 26687, 26702, 26690, 26697, 26706, 26692, 26693, 26703, + 26705, 26694, 26689, 26707, 26698, 26704, 26701, 26695, 26696, 26709, + 26710, 26713, 26708, 26714, 26711, 26733, 26743, 26738, 26732, 26742, + 26737, 26731, 26741, 26715, 26739, 26735, 26745, 26716, 26734, 26744, + 26736, 26740, 26712, 35536, 35536, 26723, 26717, 26719, 26722, 26720, + 26724, 26746, 26729, 26727, 26730, 26726, 26728, 26721, 26725, 26718, + 35536, 20299, 20286, 20288, 20287, 20289, 20298, 20296, 20301, 20281, + 20279, 20278, 20290, 20291, 20292, 20282, 20300, 20293, 20284, 20294, + 20295, 20283, 20280, 20297, 20302, 20285, 20277, 20303, 20304, 35536, + 35536, 20305, 35536, 29210, 29215, 29211, 29213, 29209, 29208, 29212, + 29216, 29207, 29206, 29214, 35536, 35536, 35536, 35536, 35536, 1143, + 1133, 1144, 1160, 1142, 1130, 1139, 1136, 1140, 1138, 1161, 1135, 1146, + 1132, 1134, 1145, 1131, 1137, 1141, 2428, 2429, 2431, 1539, 1064, 2316, + 1411, 1281, 1501, 1499, 1347, 2445, 1413, 2313, 2315, 35536, 35536, + 35536, 35536, 35536, 2311, 2366, 2392, 2391, 2394, 2158, 2408, 1084, 1102, 1174, 1181, 1321, 1498, 1248, 1432, 1367, 1380, 1599, 1601, 1453, 1573, 1465, 1378, 1200, 1467, 1261, 1494, 1623, 1121, 1335, 1433, 1172, 1420, 1524, 1442, 1600, 1117, 1115, 1118, 1421, 1525, 1547, 1507, 1349, @@ -13904,4827 +13265,4243 @@ static const unsigned short dawg_codepoint_to_pos_index2[] = { 2370, 2369, 2371, 2374, 2373, 2352, 2361, 1086, 2440, 1070, 1068, 1072, 1071, 1069, 1073, 2434, 2436, 2438, 2433, 2435, 2437, 2309, 2308, 2307, 2375, 1094, 1093, 1106, 1630, 2319, 1629, 2321, 1081, 1082, 2320, 1077, - 2161, 10905, 10895, 10909, 10914, 10830, 10804, 10805, 10874, 10875, - 10850, 10851, 10869, 10871, 10812, 10831, 10882, 10806, 10813, 10832, - 10845, 10807, 10841, 10840, 10825, 10823, 10856, 10810, 10814, 10861, - 10859, 10857, 10866, 10865, 10818, 10817, 10855, 10868, 10867, 10820, - 10819, 10858, 10854, 10877, 10876, 10838, 10837, 10828, 10849, 10844, - 10843, 10864, 10863, 10862, 10873, 10833, 10834, 10835, 10827, 10927, - 10926, 10907, 10908, 10917, 10939, 10940, 10929, 10930, 10935, 10936, - 10923, 10933, 10941, 10918, 10924, 10934, 10925, 10919, 10913, 10928, - 10920, 10955, 10916, 10915, 10799, 10796, 10922, 10932, 10931, 10881, - 10839, 10822, 10879, 10815, 10842, 10880, 10848, 10870, 10872, 10937, - 10938, 10943, 10942, 10950, 10952, 10949, 10948, 10945, 10944, 10947, - 10946, 10953, 10951, 10797, 10912, 10811, 10847, 10846, 10808, 10853, - 10852, 10829, 10878, 10826, 10824, 10860, 10821, 10816, 10836, 3599, - 3667, 3670, 3672, 41412, 3623, 3624, 3637, 3638, 3635, 3636, 3617, 3619, - 41412, 41412, 3659, 3625, 41412, 41412, 3660, 3626, 3610, 3607, 3651, - 3650, 3639, 3649, 3648, 3653, 3652, 3641, 3632, 3631, 3628, 3627, 3640, - 3634, 3633, 3630, 3629, 3642, 41412, 3655, 3654, 3647, 3646, 3658, 3622, - 3611, 41412, 3657, 41412, 41412, 41412, 3643, 3644, 3645, 3656, 41412, - 41412, 3668, 3669, 3674, 3683, 3684, 3677, 3678, 3679, 3680, 41412, - 41412, 3685, 3675, 41412, 41412, 3686, 3676, 3671, 3608, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 3600, 41412, 41412, 41412, - 41412, 3615, 3614, 41412, 3621, 3618, 3620, 3681, 3682, 41412, 41412, - 3693, 3695, 3692, 3691, 3688, 3687, 3690, 3689, 3696, 3694, 3613, 3612, - 3662, 3661, 3601, 3605, 3604, 3603, 3602, 3606, 3673, 3697, 3616, 3598, - 3666, 41412, 41412, 19044, 19045, 19050, 41412, 18996, 18997, 19012, - 19013, 19010, 19011, 41412, 41412, 41412, 41412, 19031, 18998, 41412, - 41412, 19030, 18999, 18995, 18994, 18992, 18991, 19016, 19023, 19022, - 19025, 19024, 19018, 19007, 19006, 19001, 19000, 19017, 19009, 19008, - 19003, 19002, 19019, 41412, 19027, 19026, 19021, 19020, 19034, 19036, - 19005, 41412, 19015, 19014, 41412, 19035, 19028, 41412, 19029, 19033, - 41412, 41412, 19047, 41412, 19051, 19056, 19057, 19054, 19055, 41412, - 41412, 41412, 41412, 19059, 19052, 41412, 41412, 19058, 19053, 19049, - 41412, 41412, 41412, 19046, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 18993, 18990, 19037, 19004, 41412, 19032, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 19069, 19071, 19068, 19067, 19064, 19063, - 19066, 19065, 19072, 19070, 19060, 18989, 19061, 19073, 19062, 19048, - 18988, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 18884, 18892, 18894, 41412, 18834, 18835, 18853, 18854, 18851, - 18852, 18846, 18848, 18910, 41412, 18881, 18836, 18911, 41412, 18882, - 18837, 18874, 18873, 18870, 18869, 18858, 18868, 18867, 18872, 18871, - 18860, 18843, 18842, 18839, 18838, 18859, 18845, 18844, 18841, 18840, - 18861, 41412, 18876, 18875, 18866, 18865, 18878, 18880, 18879, 41412, - 18856, 18855, 41412, 18850, 18862, 18863, 18864, 18877, 41412, 41412, - 18890, 18891, 18897, 18906, 18907, 18900, 18901, 18902, 18903, 18895, - 41412, 18908, 18898, 18896, 41412, 18909, 18899, 18893, 41412, 41412, - 18924, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 18847, 18849, 18904, 18905, - 41412, 41412, 18920, 18922, 18919, 18918, 18915, 18914, 18917, 18916, - 18923, 18921, 18912, 18913, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 18857, 18889, 18888, 18885, 18887, 18883, 18886, 41412, 30802, - 30805, 30808, 41412, 30753, 30754, 30772, 30773, 30770, 30771, 30765, - 30767, 41412, 41412, 30798, 30755, 41412, 41412, 30799, 30756, 30792, - 30791, 30788, 30787, 30776, 30786, 30785, 30790, 30789, 30778, 30762, - 30761, 30758, 30757, 30777, 30764, 30763, 30760, 30759, 30779, 41412, - 30794, 30793, 30784, 30783, 30796, 30752, 30750, 41412, 30775, 30774, - 41412, 30769, 30780, 30781, 30782, 30795, 41412, 41412, 30803, 30804, - 30809, 30818, 30819, 30812, 30813, 30814, 30815, 41412, 41412, 30820, - 30810, 41412, 41412, 30821, 30811, 30807, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 30806, 30739, 30740, 41412, 41412, 41412, 41412, - 30749, 30748, 41412, 30751, 30766, 30768, 30816, 30817, 41412, 41412, - 30828, 30830, 30827, 30826, 30823, 30822, 30825, 30824, 30831, 30829, - 30747, 30797, 30744, 30743, 30746, 30741, 30742, 30745, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35760, 35777, - 41412, 35723, 35724, 35736, 35737, 35732, 35733, 41412, 41412, 41412, - 35741, 35742, 35725, 41412, 35734, 35735, 35726, 35746, 41412, 41412, - 41412, 35718, 35743, 41412, 35745, 41412, 35719, 35721, 41412, 41412, - 41412, 35717, 35722, 41412, 41412, 41412, 35720, 35716, 35748, 41412, - 41412, 41412, 35747, 35750, 35731, 35730, 35729, 35728, 35727, 35749, - 35738, 35739, 35740, 35744, 41412, 41412, 41412, 41412, 36050, 36057, - 36058, 36053, 36054, 41412, 41412, 41412, 36059, 36060, 36051, 41412, - 36055, 36056, 36052, 35776, 41412, 41412, 36063, 41412, 41412, 41412, - 41412, 41412, 41412, 35652, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35689, 35691, - 35688, 35687, 35684, 35683, 35686, 35685, 35692, 35690, 35754, 35752, - 35753, 35682, 36062, 36061, 35681, 35679, 35651, 35757, 35755, 41412, - 41412, 41412, 41412, 41412, 37126, 37127, 37132, 37134, 37125, 37086, - 37087, 37102, 37103, 37098, 37099, 37093, 37095, 41412, 37119, 37120, - 37088, 41412, 37100, 37101, 37089, 37116, 37115, 37112, 37111, 37075, - 37110, 37109, 37114, 37113, 37077, 37082, 37081, 37069, 37068, 37076, - 37085, 37083, 37072, 37070, 37073, 41412, 37118, 37117, 37108, 37107, - 37122, 37123, 37080, 37079, 37092, 37091, 37090, 37097, 37104, 37105, - 37106, 37121, 41412, 41412, 37130, 37131, 37135, 37146, 37147, 37138, - 37139, 37140, 37141, 41412, 37148, 37149, 37136, 41412, 37144, 37145, - 37137, 37133, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 37124, - 37060, 41412, 37084, 37071, 37078, 41412, 37059, 37074, 41412, 41412, - 37094, 37096, 37142, 37143, 41412, 41412, 37156, 37158, 37155, 37154, - 37151, 37150, 37153, 37152, 37159, 37157, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 37128, 37067, 37065, 37063, 37061, 37066, 37064, - 37062, 37129, 21436, 21435, 21440, 21444, 21437, 21384, 21385, 21410, - 21411, 21406, 21407, 21401, 21403, 41412, 21427, 21428, 21386, 41412, - 21408, 21409, 21387, 21424, 21423, 21420, 21419, 21381, 21418, 21417, - 21422, 21421, 21383, 21398, 21397, 21389, 21388, 21382, 21400, 21399, - 21391, 21390, 21379, 41412, 21426, 21425, 21416, 21415, 21431, 21432, - 21396, 21395, 21394, 21393, 41412, 21405, 21412, 21413, 21414, 21430, - 41412, 41412, 21438, 21439, 21447, 21458, 21459, 21450, 21451, 21452, - 21453, 41412, 21460, 21461, 21448, 41412, 21456, 21457, 21449, 21443, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 21433, 21446, 41412, - 41412, 41412, 41412, 41412, 21445, 21380, 21429, 41412, 21402, 21404, - 21454, 21455, 41412, 41412, 21468, 21470, 21467, 21466, 21463, 21462, - 21465, 21464, 21471, 21469, 41412, 21441, 21442, 21434, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 25719, 25721, 25726, 25724, 25676, 25650, 25652, 25696, 25697, 25692, - 25693, 25677, 25679, 41412, 25711, 25712, 25653, 41412, 25694, 25695, - 25654, 25708, 25707, 25704, 25703, 25684, 25665, 25664, 25706, 25705, - 25685, 25673, 25671, 25668, 25667, 25683, 25675, 25674, 25670, 25669, - 25686, 25682, 25710, 25709, 25702, 25701, 25714, 25715, 25691, 25690, - 25689, 25688, 25687, 25681, 25698, 25699, 25700, 25713, 25672, 25722, - 25720, 25725, 25728, 25739, 25740, 25731, 25732, 25733, 25734, 41412, - 25741, 25742, 25729, 41412, 25737, 25738, 25730, 25723, 25666, 25727, - 41412, 41412, 41412, 41412, 25662, 25663, 25657, 25743, 25642, 25640, - 25647, 25637, 25638, 25648, 25641, 25651, 25678, 25680, 25735, 25736, - 41412, 41412, 25633, 25635, 25632, 25631, 25628, 25627, 25630, 25629, - 25636, 25634, 25718, 25716, 25717, 25645, 25644, 25649, 25639, 25643, - 25646, 25626, 25659, 25658, 25660, 25655, 25656, 25661, 41412, 33959, - 33958, 33960, 41412, 33904, 33901, 33889, 33888, 33912, 33911, 33914, - 33913, 33910, 33909, 33908, 33907, 33906, 33905, 33902, 33933, 33932, - 33903, 41412, 41412, 41412, 33898, 33923, 33896, 33921, 33946, 33936, - 33895, 33920, 33897, 33922, 33943, 33944, 33937, 33890, 33915, 33892, - 33917, 33927, 33934, 33891, 33916, 33893, 33918, 33930, 41412, 33935, - 33899, 33924, 33894, 33919, 33925, 33900, 33942, 33940, 41412, 33929, - 41412, 41412, 33941, 33945, 33928, 33931, 33939, 33926, 33938, 41412, - 41412, 41412, 33957, 41412, 41412, 41412, 41412, 33977, 33969, 33964, - 33970, 33965, 33971, 41412, 33966, 41412, 33967, 33972, 33963, 33976, - 33973, 33974, 33975, 33968, 41412, 41412, 41412, 41412, 41412, 41412, - 33953, 33955, 33952, 33951, 33948, 33947, 33950, 33949, 33956, 33954, - 41412, 41412, 33961, 33962, 33978, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 37313, 37310, 37308, - 37307, 37309, 37311, 37327, 37296, 37298, 37297, 37356, 37299, 37368, - 37300, 37365, 37361, 37358, 37359, 37329, 37301, 37364, 37363, 37360, - 37362, 37330, 37295, 37336, 37333, 37302, 37334, 37303, 37335, 37325, - 37369, 37337, 37338, 37315, 37317, 37366, 37354, 37353, 37355, 37306, - 37314, 37370, 37305, 37331, 37339, 37319, 37342, 37344, 37349, 37350, - 37346, 37347, 37345, 37348, 37332, 41412, 41412, 41412, 41412, 37371, - 37351, 37343, 37352, 37341, 37340, 37316, 37324, 37323, 37322, 37320, - 37321, 37318, 37357, 37328, 37367, 37304, 37378, 37380, 37377, 37376, - 37373, 37372, 37375, 37374, 37381, 37379, 37326, 37312, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 22743, 22741, 41412, 22742, 41412, - 22756, 22771, 22775, 22755, 22765, 41412, 22757, 22772, 22753, 22751, - 22750, 22748, 22747, 22752, 22776, 22768, 22766, 22767, 22749, 22773, - 22774, 22761, 22759, 22738, 22760, 22737, 22754, 22777, 22780, 22745, - 41412, 22746, 41412, 22779, 22762, 22763, 22764, 22769, 22758, 22781, - 22770, 22807, 22789, 22794, 22790, 22792, 22802, 22803, 22796, 22797, - 22798, 22799, 22784, 22795, 22783, 22782, 41412, 41412, 22800, 22801, - 22804, 22793, 22791, 41412, 22805, 41412, 22788, 22785, 22786, 22787, - 22818, 22819, 22806, 41412, 22814, 22816, 22813, 22812, 22809, 22808, - 22811, 22810, 22817, 22815, 41412, 41412, 22734, 22733, 22740, 22739, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 37605, 37512, 37510, 37511, 37520, 37508, 37505, 37509, - 37529, 37500, 37498, 37521, 37536, 37530, 37526, 37533, 37525, 37528, - 37527, 37504, 37513, 37496, 37495, 37423, 37424, 37422, 37544, 37545, - 37546, 37548, 37549, 37547, 37445, 37447, 37444, 37443, 37440, 37439, - 37442, 37441, 37448, 37446, 37437, 37434, 37433, 37430, 37429, 37432, - 37431, 37438, 37436, 37435, 37501, 37523, 37503, 37522, 37506, 37532, - 37514, 37515, 37516, 37517, 37555, 37541, 37454, 37452, 37482, 37481, - 37464, 37480, 37479, 37489, 41412, 37466, 37474, 37473, 37459, 37458, - 37465, 37476, 37475, 37463, 37462, 37467, 37484, 37483, 37478, 37477, - 37491, 37472, 37471, 37461, 37460, 37492, 37485, 37486, 37487, 37493, - 37456, 37490, 37468, 37469, 37470, 37488, 37494, 37451, 37457, 37453, - 37455, 41412, 41412, 41412, 41412, 37629, 37625, 37626, 37617, 37618, - 37619, 37620, 37621, 37622, 37627, 37628, 37623, 37624, 37552, 37553, - 37615, 37616, 37543, 37557, 37518, 37535, 37539, 37554, 37540, 37542, - 37537, 37538, 37556, 37604, 37603, 37602, 37569, 37568, 37588, 37587, - 37570, 37586, 37585, 37595, 41412, 37572, 37580, 37579, 37562, 37561, - 37571, 37582, 37581, 37566, 37565, 37573, 37590, 37589, 37584, 37583, - 37597, 37578, 37577, 37564, 37563, 37599, 37591, 37592, 37593, 37600, - 37598, 37596, 37574, 37575, 37576, 37594, 37601, 37567, 37559, 37560, - 37558, 41412, 37449, 37450, 37426, 37427, 37428, 37425, 37606, 37613, - 37611, 37614, 37612, 37607, 37610, 37609, 37608, 41412, 37551, 37550, - 37499, 37502, 37524, 37519, 37507, 32208, 24349, 32209, 24350, 37534, - 37531, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28762, 28741, - 28740, 28739, 28771, 28839, 28838, 28841, 28840, 28772, 28769, 28817, - 28816, 28823, 28822, 28770, 28801, 28818, 28825, 28824, 28773, 28843, - 28842, 28837, 28836, 28768, 28845, 28775, 28835, 28821, 28800, 28844, - 28834, 28731, 28795, 28832, 28833, 28826, 28827, 28734, 28767, 28846, - 28733, 28938, 28922, 28945, 28946, 28939, 28940, 28934, 28919, 28927, - 28928, 28935, 28863, 28882, 28887, 28886, 28862, 28726, 28724, 28725, - 28723, 28738, 28963, 28965, 28962, 28961, 28958, 28957, 28960, 28959, - 28966, 28964, 28885, 28874, 28892, 28896, 28891, 28895, 28776, 28799, - 28828, 28829, 28830, 28831, 28941, 28942, 28943, 28944, 28766, 28765, - 28763, 28764, 28729, 28728, 28727, 28798, 28933, 28907, 28908, 28820, - 28819, 28936, 28937, 28877, 28878, 28879, 28880, 28881, 28737, 28736, - 28735, 28923, 28925, 28926, 28924, 28790, 28789, 28788, 28786, 28794, - 28778, 28791, 28779, 28781, 28792, 28784, 28782, 28793, 28730, 28932, - 28929, 28930, 28931, 28869, 28870, 28871, 28872, 28867, 28868, 28866, - 28774, 28883, 28858, 28860, 28857, 28856, 28853, 28852, 28855, 28854, - 28861, 28859, 28864, 28865, 28920, 28921, 28894, 28893, 17885, 17911, - 17896, 17917, 17918, 17916, 17906, 17907, 17919, 17900, 17909, 17912, - 17914, 17920, 17902, 17905, 17910, 17904, 17908, 17921, 17901, 17899, - 17895, 17915, 17903, 17891, 17894, 17898, 17893, 17892, 17913, 17897, - 17886, 17890, 17888, 17923, 17887, 17889, 41412, 17922, 41412, 41412, - 41412, 41412, 41412, 17884, 41412, 41412, 17968, 17999, 17976, 18005, - 17974, 18004, 17997, 17994, 18006, 17986, 17988, 18000, 18002, 18007, - 17990, 17996, 17998, 17992, 17995, 17965, 17989, 17985, 17975, 18003, - 17991, 17969, 17972, 17984, 17971, 17970, 18001, 17983, 17979, 17982, - 17980, 18009, 17977, 17981, 18010, 18008, 17973, 17993, 17967, 18057, - 27975, 17966, 17978, 17987, 19305, 19379, 19313, 19384, 19377, 19341, - 19308, 19323, 19381, 19355, 19373, 19287, 19285, 19371, 19272, 19307, - 19391, 19320, 19394, 19315, 19380, 19317, 19316, 19388, 19351, 19375, - 19354, 19300, 19310, 19304, 19333, 19338, 19337, 19324, 19328, 19326, - 19329, 19330, 19327, 19335, 19334, 19336, 19331, 19302, 19303, 19362, - 19368, 19367, 19360, 19365, 19356, 19357, 19359, 19370, 19364, 19363, - 19361, 19366, 19358, 19369, 19277, 19276, 19282, 19281, 19340, 19297, - 19296, 19294, 19289, 19299, 19290, 19383, 19293, 19292, 19295, 19288, - 19392, 19286, 19279, 19275, 19284, 19280, 19273, 19274, 19278, 19283, - 19321, 19301, 19382, 19393, 19306, 19319, 19314, 19318, 19385, 19396, - 19634, 19540, 19550, 19598, 19602, 19552, 19551, 19604, 19603, 19579, - 19631, 19632, 19589, 19610, 19590, 19630, 19629, 19633, 19619, 19556, - 19608, 19563, 19548, 19549, 19600, 19599, 19554, 19555, 19553, 19606, - 19607, 19587, 19586, 19582, 19580, 19588, 19611, 19612, 19613, 19618, - 19617, 19595, 19596, 19594, 19591, 19597, 19624, 19623, 19622, 19621, - 19620, 19628, 19626, 19562, 19559, 19609, 19564, 19566, 19573, 19577, - 19575, 19565, 19541, 19543, 19546, 19545, 19578, 19547, 19601, 19605, - 19584, 19585, 19416, 19517, 19419, 19439, 19442, 19446, 19521, 19467, - 19468, 19473, 19477, 19486, 19489, 19482, 19494, 19426, 19456, 19459, - 19495, 19512, 19408, 19399, 19402, 19425, 19530, 19452, 19403, 19418, - 19420, 19445, 19444, 19448, 19447, 19443, 19528, 19522, 19470, 19493, - 19487, 19488, 19507, 19474, 19476, 19481, 19480, 19471, 19485, 19483, - 19472, 19490, 19436, 19433, 19427, 19432, 19431, 19429, 19434, 19438, - 19415, 19457, 19461, 19466, 19414, 19497, 19505, 19498, 19501, 19449, - 19410, 19411, 19520, 19409, 19531, 19535, 19538, 19454, 19413, 19406, - 19404, 19405, 19407, 19539, 19422, 19423, 19421, 19417, 19424, 19518, - 17155, 17162, 17161, 17156, 17160, 17159, 17157, 17158, 17382, 17390, - 17389, 17383, 17387, 17386, 17384, 17388, 17148, 17154, 17152, 17149, - 17151, 17150, 17153, 17139, 17199, 17207, 17206, 17200, 17204, 17203, - 17201, 17197, 17311, 17318, 17316, 17312, 17314, 17313, 17317, 17315, - 17286, 17295, 17294, 17287, 17291, 17290, 17288, 17292, 17326, 17332, - 17331, 17327, 17301, 17296, 17328, 17330, 17302, 17310, 17309, 17303, - 17307, 17306, 17304, 17308, 17278, 17285, 17284, 17279, 17283, 17282, - 17280, 17281, 17266, 41412, 17270, 17267, 17269, 17268, 41412, 41412, - 17259, 17265, 17263, 17260, 17262, 17261, 17264, 41412, 17254, 41412, - 17258, 17255, 17257, 17256, 41412, 41412, 16989, 16996, 16995, 16990, - 16994, 16993, 16991, 16980, 17451, 17458, 17456, 17452, 17454, 17453, - 17457, 17455, 17364, 17372, 17371, 17365, 17369, 17368, 17366, 17370, - 17027, 17035, 17034, 17028, 17032, 17031, 17029, 17033, 17419, 17426, - 17425, 17420, 17424, 17423, 17421, 17422, 17407, 41412, 17411, 17408, - 17410, 17409, 41412, 41412, 17217, 17225, 17224, 17218, 17222, 17221, - 17219, 17223, 17208, 17216, 17215, 17209, 17213, 17212, 17210, 17214, - 17109, 17117, 17116, 17110, 17114, 17113, 17111, 17115, 17187, 17194, - 17193, 17188, 17192, 17191, 17189, 17190, 17175, 41412, 17179, 17176, - 17178, 17177, 41412, 41412, 17168, 17174, 17172, 17169, 17171, 17170, - 17173, 41412, 17163, 41412, 17167, 17164, 17166, 17165, 41412, 41412, - 17391, 17398, 17397, 17392, 17396, 17395, 17393, 17394, 17227, 17233, - 17231, 17228, 17230, 17229, 17232, 41412, 17442, 17450, 17449, 17443, - 17447, 17446, 17444, 17448, 17427, 17434, 17432, 17428, 17430, 17429, - 17433, 17431, 17399, 17406, 17405, 17400, 17404, 17403, 17401, 17402, - 17057, 17065, 17064, 17058, 17062, 17061, 17059, 17063, 17042, 17050, - 17049, 17043, 17047, 17046, 17044, 17048, 17373, 17381, 17380, 17374, - 17378, 17377, 17375, 17379, 17130, 17078, 17136, 17131, 17135, 17134, - 17132, 17133, 17118, 41412, 17122, 17119, 17121, 17120, 41412, 41412, - 17102, 17108, 17106, 17103, 17105, 17104, 17107, 17098, 17333, 17341, - 17340, 17334, 17338, 17337, 17335, 17339, 17018, 17026, 17025, 17019, - 17023, 17022, 17020, 17024, 17226, 17241, 17240, 17234, 17238, 17237, - 17235, 17239, 17356, 17363, 17361, 17357, 17359, 17358, 17362, 17360, - 17348, 17355, 17354, 17349, 17353, 17352, 17350, 17351, 17070, 17077, - 17075, 17071, 17073, 17072, 17076, 17068, 17246, 17253, 17252, 17247, - 17251, 17250, 17248, 17244, 17293, 17205, 17074, 41412, 41412, 16958, - 16960, 16959, 16977, 17480, 17478, 16961, 16976, 16962, 16975, 17479, - 16974, 17476, 17474, 17473, 17470, 17469, 17472, 17471, 17477, 17475, - 16963, 16966, 16965, 16970, 16969, 16973, 16972, 16968, 16971, 16967, - 16964, 41412, 41412, 41412, 17299, 17198, 17196, 17195, 17297, 16981, - 16979, 16978, 17298, 17069, 17067, 17066, 17300, 17245, 17243, 17242, - 17468, 17459, 17465, 17466, 17461, 17463, 17467, 17462, 17460, 17464, - 41412, 41412, 41412, 41412, 41412, 41412, 6484, 6485, 6486, 6487, 6488, - 6489, 6447, 6483, 6448, 6449, 6450, 6451, 6452, 6412, 6413, 6414, 6415, - 6416, 6417, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, - 6463, 6418, 6411, 6419, 6420, 6421, 6422, 6423, 6424, 6465, 6466, 6467, - 6468, 6469, 6470, 6426, 6425, 6427, 6428, 6429, 6430, 6431, 6405, 6444, - 6406, 6445, 6407, 6446, 6408, 6409, 6410, 6404, 6432, 6433, 6434, 6435, - 6436, 6437, 6438, 6439, 6440, 6441, 6442, 6443, 6471, 6472, 6473, 6474, - 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6464, 41412, 41412, 6564, - 6565, 6566, 6567, 6568, 6550, 41412, 41412, 5626, 5598, 5371, 5628, 5629, - 5778, 5792, 6075, 5582, 5442, 5369, 5370, 5952, 6042, 6062, 6040, 6063, - 6041, 6044, 6038, 6045, 6039, 5707, 6059, 6036, 6060, 6037, 5708, 5373, - 6076, 6094, 5615, 5614, 5616, 5617, 5609, 5610, 5607, 5606, 5619, 5613, - 5618, 5608, 5600, 5630, 5791, 5377, 5812, 5805, 5810, 5811, 5807, 5808, - 6066, 5440, 5441, 5803, 5804, 5802, 5981, 5800, 5979, 5801, 5980, 5795, - 5977, 5796, 5978, 5798, 5975, 5799, 5976, 6065, 5794, 5974, 5433, 5951, - 5934, 5949, 5950, 5947, 5948, 6073, 5404, 5417, 5932, 5933, 5942, 6034, - 5940, 6032, 5941, 6033, 5938, 6030, 5939, 6031, 5936, 6028, 5937, 6029, - 5713, 5894, 5929, 5930, 5931, 5928, 5649, 5643, 5647, 5648, 5645, 5646, - 6068, 5641, 5642, 5640, 6026, 5638, 6024, 5639, 6025, 5636, 6022, 5637, - 6023, 5633, 6020, 5634, 6021, 5710, 5631, 5632, 5874, 5875, 5876, 5873, - 5597, 5584, 5595, 5596, 5593, 5594, 6067, 5401, 5583, 5591, 6019, 5589, - 6017, 5590, 6018, 5587, 6015, 5588, 6016, 5585, 6013, 5586, 6014, 5709, - 5400, 5850, 5675, 5683, 5692, 5693, 5678, 5679, 6070, 5681, 5682, 5691, - 5973, 5689, 5971, 5690, 5972, 5687, 5969, 5688, 5970, 5685, 5967, 5686, - 5968, 5711, 5674, 5966, 5694, 5375, 5851, 5767, 5728, 5765, 5766, 5755, - 5756, 6071, 5699, 5727, 5764, 5992, 5758, 5990, 5759, 5991, 5712, 5695, - 5473, 5768, 5673, 5660, 5671, 5672, 5669, 5670, 6069, 5658, 5659, 5668, - 5960, 5666, 5958, 5667, 5959, 5664, 5956, 5665, 5957, 5662, 5954, 5663, - 5955, 5650, 5953, 5676, 5893, 5853, 5891, 5892, 5872, 5877, 6072, 5833, - 5852, 5886, 6012, 5884, 6010, 5885, 6011, 5882, 6008, 5883, 6009, 5880, - 6006, 5881, 6007, 5705, 5832, 5376, 5879, 5396, 5680, 5703, 5706, 5701, - 5702, 5704, 5700, 5871, 5869, 5870, 5863, 5864, 5866, 5867, 5862, 6005, - 5860, 6003, 5861, 6004, 5855, 6001, 5856, 6002, 5858, 5999, 5859, 6000, - 5854, 6093, 6079, 6091, 6092, 6081, 6082, 6074, 6077, 6078, 6090, 5989, - 6088, 5987, 6089, 5988, 6086, 5985, 6087, 5986, 6084, 5983, 6085, 5984, - 5714, 6064, 5397, 5982, 5849, 5831, 5815, 5965, 5825, 5829, 5830, 5827, - 5828, 5963, 5823, 5824, 5961, 5817, 5994, 5813, 5993, 5677, 5625, 5604, - 5605, 5620, 5622, 5623, 5602, 5603, 5624, 6035, 5601, 5913, 5698, 5911, - 5696, 5912, 5697, 5909, 5910, 5907, 5908, 5905, 6027, 5895, 5926, 5927, - 5923, 5921, 5920, 5944, 5945, 5946, 5943, 5753, 5751, 5752, 5749, 5750, - 5747, 5748, 5746, 5754, 5627, 5772, 5776, 5777, 5774, 5775, 5770, 5771, - 5769, 5918, 5919, 5914, 5917, 5996, 5997, 5998, 5995, 5733, 5737, 5738, - 5735, 5736, 5731, 5732, 5730, 5739, 5847, 5848, 5843, 5846, 6055, 6056, - 6057, 6054, 6046, 5656, 5657, 5654, 5655, 5652, 5653, 5651, 5903, 5901, - 5902, 5899, 5900, 5897, 5898, 5896, 5374, 5393, 5394, 5395, 5392, 5381, - 5382, 5383, 5380, 5389, 5390, 5391, 5388, 5385, 5386, 5387, 5384, 5838, - 5839, 5835, 5837, 5423, 5422, 5418, 5419, 5421, 5420, 5569, 5568, 5564, - 5565, 5567, 5566, 5575, 5574, 5570, 5571, 5573, 5572, 5439, 5438, 5434, - 5435, 5437, 5436, 5533, 5532, 5528, 5529, 5531, 5530, 5527, 5526, 5522, - 5523, 5525, 5524, 5496, 5495, 5491, 5492, 5494, 5493, 5490, 5432, 5431, - 5428, 5429, 5430, 5426, 5469, 5468, 5464, 5465, 5467, 5466, 5463, 5462, - 5458, 5459, 5461, 5460, 5457, 5476, 5475, 5470, 5471, 5474, 5472, 5563, - 5562, 5558, 5559, 5561, 5560, 5581, 5580, 5576, 5577, 5579, 5578, 5456, - 5840, 5455, 5450, 5451, 5454, 5842, 5453, 5449, 5448, 5444, 5445, 5447, - 5446, 5551, 5550, 5546, 5547, 5549, 5548, 5410, 5409, 5405, 5406, 5408, - 5407, 5545, 5544, 5540, 5541, 5543, 5542, 5509, 5508, 5504, 5505, 5507, - 5506, 5515, 5514, 5510, 5511, 5513, 5512, 5503, 5502, 5498, 5499, 5501, - 5500, 5497, 5443, 5416, 5415, 5411, 5412, 5414, 5413, 5489, 5488, 5484, - 5485, 5487, 5486, 5483, 5482, 5478, 5479, 5481, 5480, 5477, 5539, 5538, - 5534, 5535, 5537, 5536, 5557, 5556, 5552, 5553, 5555, 5554, 5521, 5520, - 5516, 5517, 5519, 5518, 5592, 5621, 5773, 5734, 5744, 5745, 5742, 5743, - 5740, 5741, 6053, 6051, 6052, 6049, 6050, 6047, 6048, 6058, 5379, 30157, - 30132, 30143, 30139, 30149, 30146, 30152, 30155, 30156, 30135, 30134, - 30154, 30140, 30145, 30150, 30144, 30131, 30147, 30153, 30137, 30141, - 30136, 30148, 30151, 30142, 30138, 30133, 30129, 30130, 41412, 41412, - 41412, 32482, 32538, 32532, 32536, 32535, 32530, 32528, 32475, 32460, - 32506, 32459, 32458, 32503, 32518, 32505, 32509, 32510, 32512, 32498, - 32464, 32497, 32483, 32476, 32484, 32486, 32531, 32488, 32487, 32501, - 32515, 32527, 32517, 32469, 32491, 32472, 32495, 32485, 32500, 32521, - 32492, 32534, 32461, 32524, 32523, 32519, 32462, 32540, 32529, 32520, - 32467, 32526, 32514, 32470, 32508, 32473, 32533, 32502, 32516, 32499, - 32468, 32490, 32489, 32471, 32507, 32474, 32494, 32466, 32465, 32463, - 32525, 32504, 32522, 32493, 32537, 32539, 32541, 32542, 32457, 32543, - 32544, 32456, 32496, 32513, 32511, 32480, 32479, 32481, 32478, 32477, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35250, 35267, 35268, - 35258, 35256, 35252, 35264, 35255, 35253, 35261, 35254, 35260, 35266, - 35262, 35259, 35265, 35263, 35257, 35271, 35272, 35270, 35269, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35251, 19806, - 19807, 19808, 19797, 19795, 19791, 19803, 19794, 19792, 19800, 19793, - 19799, 19805, 19801, 19798, 19804, 19802, 19796, 19810, 19811, 19809, - 31612, 31613, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 5092, 5093, 5094, 5083, 5081, 5077, 5089, 5080, 5078, 5086, 5079, - 5085, 5091, 5087, 5084, 5090, 5088, 5082, 5095, 5096, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 35286, 35287, 35288, 35278, 35277, 35273, 35283, 35276, 35274, 35281, - 35275, 35280, 35285, 41412, 35279, 35284, 35282, 41412, 35289, 35290, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 22394, 22392, 22395, 22393, 22396, 22390, 22388, 22391, - 22389, 22398, 22412, 22408, 22413, 22409, 22397, 22410, 22406, 22411, - 22407, 22399, 22420, 22400, 22402, 22401, 22416, 22419, 22417, 22415, - 22418, 22404, 22403, 22405, 22421, 22414, 22422, 22369, 22367, 22377, - 22378, 22373, 22376, 22374, 22375, 22386, 22387, 22384, 22385, 22379, - 22368, 22372, 22371, 22370, 22489, 22488, 22490, 22495, 22497, 22501, - 22503, 22505, 22507, 22506, 22498, 22502, 22496, 22508, 22492, 22493, - 22500, 22494, 22443, 22437, 22442, 22444, 22438, 22428, 22436, 22439, - 22433, 22425, 22426, 22445, 22432, 22427, 22434, 22429, 22431, 22440, - 22430, 22441, 22435, 22366, 22423, 22424, 41412, 41412, 22515, 22517, - 22514, 22513, 22510, 22509, 22512, 22511, 22518, 22516, 41412, 41412, - 41412, 41412, 41412, 41412, 22467, 22466, 22463, 22465, 22464, 22458, - 22461, 22462, 22460, 22459, 41412, 41412, 41412, 41412, 41412, 41412, - 28342, 28354, 28350, 28199, 28349, 28200, 28347, 28338, 28351, 28352, - 28353, 28198, 28197, 28196, 28348, 28195, 28191, 28193, 28190, 28189, - 28186, 28185, 28188, 28187, 28194, 28192, 41412, 41412, 41412, 41412, - 41412, 41412, 28203, 28317, 28334, 28319, 28321, 28320, 28322, 28318, - 28328, 28231, 28323, 28329, 28330, 28326, 28235, 28316, 28278, 28277, - 28308, 28324, 28232, 28327, 28333, 28331, 28332, 28325, 28314, 28313, - 28307, 28311, 28312, 28310, 28315, 28309, 28234, 28287, 28305, 28306, - 28294, 28296, 28295, 28297, 28281, 28298, 28301, 28302, 28288, 28300, - 28291, 28283, 28292, 28285, 28290, 28304, 28303, 28299, 28289, 28293, - 28284, 28286, 28282, 28276, 28261, 28262, 28270, 28269, 28266, 28274, - 28255, 28257, 28275, 28264, 28260, 28271, 28273, 28272, 28256, 28258, - 28259, 28268, 28265, 28263, 28267, 28254, 28252, 28253, 28251, 28250, - 28233, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28205, 28207, - 28209, 28216, 28215, 28223, 28219, 28204, 28214, 28230, 28217, 28229, - 28221, 28220, 28211, 28218, 28222, 28208, 28225, 28224, 28228, 28226, - 28227, 28206, 28280, 28279, 28243, 28248, 28239, 28244, 28240, 28236, - 28241, 28237, 28249, 28238, 28246, 28247, 28213, 28212, 28242, 28210, - 28245, 41412, 41412, 41412, 41412, 41412, 5793, 5378, 5372, 6061, 5809, - 5806, 5797, 5935, 5644, 5635, 5684, 5757, 5729, 5661, 5878, 5834, 5865, - 5868, 5857, 6083, 6080, 5826, 5762, 5782, 5763, 5783, 5760, 5780, 5761, - 5781, 5822, 5820, 5821, 5818, 5819, 5816, 5789, 5790, 5787, 5786, 5788, - 5779, 5784, 5785, 5599, 6043, 5612, 5611, 5814, 5964, 5962, 5906, 5904, - 5925, 5924, 5922, 5916, 5915, 5845, 5844, 5836, 5425, 5402, 5427, 5424, - 5841, 5452, 5398, 5399, 5403, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 24647, 24614, 24613, 24594, 24593, 24600, - 24608, 24607, 24612, 24611, 24599, 24597, 24595, 24610, 24609, 24601, - 24616, 24615, 24606, 24605, 24619, 24598, 24620, 24618, 24621, 24602, - 24603, 24604, 24617, 24592, 24596, 41412, 24638, 24645, 24646, 24644, - 24639, 24642, 24640, 24643, 24641, 24637, 24635, 24636, 41412, 41412, - 41412, 41412, 24629, 24626, 24628, 24634, 24627, 24632, 24631, 24633, - 24630, 24623, 24622, 24624, 41412, 41412, 41412, 41412, 24625, 41412, - 41412, 41412, 24648, 24649, 24656, 24658, 24655, 24654, 24651, 24650, - 24653, 24652, 24659, 24657, 35311, 35323, 35306, 35303, 35321, 35324, - 35305, 35304, 35318, 35313, 35312, 35319, 35316, 35322, 35317, 35320, - 35310, 35302, 35307, 35291, 35325, 35295, 35296, 35314, 35309, 35308, - 35315, 35294, 35292, 35293, 41412, 41412, 35297, 35298, 35299, 35300, - 35301, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 29300, 29322, 29282, 29284, 29287, 29304, 29306, 29309, - 29290, 29286, 29302, 29312, 29308, 29324, 29291, 29289, 29288, 29313, - 29311, 29310, 29293, 29292, 29299, 29315, 29314, 29321, 29296, 29301, - 29298, 29318, 29323, 29320, 29297, 29295, 29294, 29319, 29317, 29316, - 29281, 29283, 29303, 29305, 29285, 29307, 41412, 41412, 41412, 41412, - 29345, 29330, 29334, 29340, 29343, 29346, 29332, 29336, 29337, 29341, - 29333, 29331, 29344, 29339, 29338, 29342, 29335, 29280, 29275, 29274, - 29279, 29278, 29277, 29276, 29327, 29328, 41412, 41412, 41412, 41412, - 41412, 41412, 29353, 29355, 29352, 29351, 29348, 29347, 29350, 29349, - 29356, 29354, 29329, 41412, 41412, 41412, 29325, 29326, 22468, 22487, - 22480, 22483, 22485, 22478, 22476, 22474, 22470, 22472, 22457, 22455, - 22447, 22451, 22453, 22449, 22481, 22486, 22479, 22482, 22484, 22477, - 22475, 22473, 22469, 22471, 22456, 22454, 22446, 22450, 22452, 22448, - 5061, 5058, 5050, 5049, 5063, 5055, 5048, 5047, 5066, 5057, 5054, 5053, - 5056, 5060, 5052, 5051, 5068, 5064, 5062, 5067, 5065, 5069, 5059, 5072, - 5074, 5071, 5073, 5070, 41412, 41412, 5076, 5075, 35359, 35357, 35358, - 35375, 35374, 35373, 35399, 35365, 35364, 35378, 35385, 35377, 35400, - 35393, 35360, 35405, 35376, 35392, 35369, 35368, 35382, 35381, 35401, - 35404, 35367, 35366, 35370, 35380, 35383, 35379, 35406, 35386, 35372, - 35391, 35394, 35387, 35389, 35407, 35361, 35362, 35363, 35371, 35390, - 35408, 35384, 35397, 35398, 35395, 35396, 35403, 35402, 35388, 35356, - 35331, 35330, 35328, 35419, 35326, 35327, 35329, 35332, 35333, 35334, - 41412, 35427, 35434, 35438, 35435, 35444, 35450, 35451, 35449, 35448, - 35446, 35447, 35439, 35440, 35443, 35452, 35436, 35442, 35437, 35445, - 35441, 35418, 35431, 35432, 35411, 35412, 35413, 35422, 35421, 35414, - 41412, 41412, 35335, 35342, 35344, 35341, 35340, 35337, 35336, 35339, - 35338, 35345, 35343, 41412, 41412, 41412, 41412, 41412, 41412, 35352, - 35354, 35351, 35350, 35347, 35346, 35349, 35348, 35355, 35353, 41412, - 41412, 41412, 41412, 41412, 41412, 35428, 35429, 35426, 35417, 35410, - 35430, 35423, 35420, 35415, 35416, 35424, 35425, 35409, 35433, 41412, - 41412, 8313, 8277, 8402, 8316, 8561, 8580, 8579, 8509, 8297, 8483, 8548, - 8515, 8301, 8514, 8513, 8450, 8444, 8468, 8531, 8469, 8532, 8545, 8502, - 8401, 8518, 8300, 8299, 8559, 8428, 8429, 8430, 8293, 8572, 8382, 8574, - 8165, 8576, 8495, 8573, 8575, 8497, 8544, 8328, 8315, 8276, 8283, 41412, - 41412, 8474, 8534, 8501, 8399, 8547, 8552, 8286, 8287, 8325, 8461, 8566, - 8303, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 2762, 2761, 2763, 2760, 2764, 2671, 2672, 2688, 2689, 2692, 2693, - 2710, 2711, 2701, 2702, 2685, 2675, 2690, 2691, 2696, 2698, 2686, 2687, - 2705, 2678, 2679, 2694, 2695, 2706, 2717, 2716, 2682, 2681, 2704, 2715, - 2718, 2680, 2683, 2703, 2707, 2708, 2676, 2677, 2723, 2725, 2709, 2700, - 2724, 2713, 2714, 2712, 2722, 2765, 2776, 2779, 2780, 2770, 2771, 2768, - 2769, 2766, 2767, 2772, 2773, 2775, 2774, 2777, 2778, 2781, 2697, 2699, - 2719, 2684, 2720, 2721, 2673, 2674, 41412, 2670, 2669, 2789, 2791, 2788, - 2787, 2784, 2783, 2786, 2785, 2792, 2790, 2757, 2754, 2782, 2667, 2668, - 2666, 2756, 2743, 2741, 2744, 2735, 2736, 2742, 2738, 2740, 2739, 2737, - 2733, 2732, 2728, 2726, 2730, 2729, 2727, 2731, 2734, 2753, 2752, 2751, - 2750, 2745, 2747, 2748, 2749, 2746, 2758, 2755, 2759, 34858, 34856, - 34857, 34809, 34844, 34846, 34811, 34845, 34821, 34822, 34829, 34837, - 34832, 34823, 34830, 34834, 34843, 34824, 34838, 34831, 34825, 34836, - 34814, 34839, 34827, 34835, 34842, 34818, 34816, 34840, 34820, 34841, - 34833, 34804, 34805, 34806, 34864, 34863, 34865, 34862, 34860, 34861, - 34855, 34859, 34807, 34808, 34828, 34819, 34872, 34874, 34871, 34870, - 34867, 34866, 34869, 34868, 34875, 34873, 34803, 34817, 34815, 34826, - 34812, 34813, 3557, 3543, 3551, 3535, 3523, 3547, 3546, 3532, 3538, 3531, - 3524, 3555, 3541, 3533, 3550, 3534, 3552, 3549, 3554, 3539, 3522, 3537, - 3544, 3527, 3545, 3540, 3525, 3556, 3542, 3529, 3553, 3536, 3530, 3548, - 3528, 3526, 3558, 3559, 3566, 3572, 3569, 3573, 3574, 3570, 3575, 3571, - 3567, 3568, 3520, 3521, 3560, 3561, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 3565, 3563, 3564, 3562, 24476, 24475, 24474, 24488, - 24487, 24493, 24503, 24502, 24506, 24494, 24501, 24500, 24482, 24495, - 24479, 24478, 24477, 24486, 24485, 24484, 24483, 24492, 24491, 24497, - 24496, 24481, 24511, 24508, 24507, 24490, 24489, 24509, 24505, 24504, - 24510, 24512, 24521, 24520, 24526, 24528, 24524, 24525, 24522, 24523, - 24527, 24465, 24470, 24469, 24467, 24471, 24472, 24473, 24468, 24466, - 24519, 24518, 41412, 41412, 41412, 24513, 24516, 24517, 24515, 24514, - 24535, 24537, 24534, 24533, 24530, 24529, 24532, 24531, 24538, 24536, - 41412, 41412, 41412, 24499, 24498, 24480, 30203, 30205, 30202, 30201, - 30198, 30197, 30200, 30199, 30206, 30204, 30176, 30167, 30165, 30164, - 30166, 30177, 30161, 30160, 30162, 30163, 30179, 30175, 30173, 30172, - 30174, 30181, 30187, 30188, 30186, 30189, 30178, 30171, 30168, 30170, - 30169, 30180, 30182, 30183, 30185, 30184, 30191, 30192, 30190, 30196, - 30195, 30207, 30194, 30193, 10562, 10539, 10545, 10602, 10583, 10591, - 10581, 10582, 10601, 10267, 10593, 41412, 41412, 41412, 41412, 41412, - 18013, 18044, 18021, 18050, 18019, 18049, 18042, 18039, 18051, 18031, - 18033, 18045, 18047, 18052, 18035, 18041, 18043, 18037, 18040, 18053, - 18034, 18030, 18020, 18048, 18036, 18014, 18017, 18029, 18016, 18015, - 18046, 18028, 18024, 18027, 18025, 18055, 18022, 18026, 18056, 18054, - 18018, 18038, 18012, 41412, 41412, 18011, 18023, 18032, 34854, 34852, - 34853, 34851, 34850, 34849, 34848, 34847, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 39257, 39270, 39259, 39237, 39251, 39265, - 39266, 39267, 39252, 39268, 39255, 39263, 39258, 39256, 39264, 39262, - 39261, 39269, 39250, 39248, 39239, 39246, 39238, 39249, 39247, 39228, - 39229, 39231, 39232, 39244, 39242, 39243, 39241, 39230, 39234, 39240, - 39253, 39236, 39245, 39233, 39260, 39254, 39235, 41412, 41412, 41412, - 41412, 41412, 23439, 23440, 24047, 23436, 23441, 23442, 23413, 23412, - 24032, 24025, 23445, 23446, 23419, 23447, 23425, 23420, 23421, 23982, - 23983, 23984, 24027, 23423, 24019, 23538, 23449, 23426, 23434, 23429, - 23452, 23987, 23986, 23985, 23453, 23454, 23456, 23414, 23466, 23400, - 18557, 18560, 18556, 18559, 18555, 10432, 27880, 27881, 27871, 27872, - 27883, 27884, 27874, 27886, 27876, 27887, 27888, 27889, 27890, 27891, - 27892, 27875, 27878, 27879, 27893, 27873, 27896, 27897, 27899, 28030, - 28137, 28031, 28139, 28034, 28059, 28073, 28127, 28112, 28142, 28080, - 28150, 28161, 28090, 28077, 28110, 28113, 28134, 28036, 28114, 28129, - 28154, 28128, 28140, 28158, 28032, 28038, 28081, 28064, 28082, 28058, - 24188, 24196, 24198, 24199, 18766, 18762, 18765, 18764, 18763, 24108, - 23524, 23573, 23659, 23802, 23822, 23899, 23927, 23920, 23966, 24002, - 24170, 24054, 27948, 23730, 24012, 23468, 23737, 23895, 23469, 24107, - 23525, 23577, 23660, 23673, 23756, 23783, 23803, 23828, 23900, 23930, - 23967, 23646, 24115, 24142, 24171, 23487, 23513, 23576, 23636, 23888, - 23937, 23975, 23727, 23884, 23648, 24094, 23654, 28138, 28039, 28057, - 28075, 28121, 28078, 28065, 28126, 28149, 28092, 28093, 28040, 28042, - 28095, 28099, 28101, 28045, 28091, 28141, 28109, 28108, 28051, 28035, - 28115, 28125, 28074, 28130, 28156, 28157, 28053, 28160, 28151, 28070, - 28072, 28071, 28076, 28153, 8285, 8284, 8550, 8549, 8496, 8384, 8498, - 8167, 8383, 8166, 8442, 8179, 8499, 8294, 8511, 8539, 8403, 8567, 8568, - 8425, 8416, 8417, 8418, 8420, 8427, 8423, 8452, 8408, 8454, 8431, 8409, - 8410, 8456, 8411, 8412, 8441, 8445, 8433, 8460, 8415, 8447, 8448, 8446, - 8424, 8432, 8436, 8457, 8422, 8439, 8449, 8414, 8435, 8438, 8564, 8407, - 8406, 8279, 8577, 8282, 8273, 8292, 8176, 8465, 8522, 22921, 23485, - 22957, 23527, 22956, 23526, 22955, 23523, 22964, 23542, 22989, 23579, - 22988, 23578, 22987, 23574, 22983, 23568, 22984, 23569, 23017, 23622, - 23018, 23623, 23006, 23610, 23015, 23620, 22997, 23601, 23042, 23662, - 23050, 23672, 23069, 23692, 23068, 23691, 23066, 23689, 23063, 23686, - 23062, 23685, 23086, 23719, 23080, 23707, 23117, 23754, 23114, 23751, - 23118, 23755, 23125, 23768, 23126, 23769, 23136, 23778, 23132, 23765, - 23142, 23800, 23144, 23805, 23143, 23804, 23162, 23827, 23161, 23826, - 23156, 23819, 23152, 23814, 23193, 23863, 23192, 23862, 23170, 23855, - 23171, 23856, 23221, 23898, 23223, 23902, 23233, 23917, 23231, 23915, - 23232, 23916, 23238, 23922, 23259, 23960, 23257, 23958, 23256, 23951, - 23251, 23953, 23258, 23959, 23280, 24000, 23279, 23999, 23281, 24003, - 23275, 23993, 23311, 24075, 23332, 24098, 23304, 24068, 23331, 24097, - 23323, 24087, 23344, 24118, 23343, 24114, 23357, 24131, 23358, 24132, - 23354, 24128, 23356, 24130, 23355, 24129, 23363, 24137, 23362, 24136, - 23368, 24147, 23379, 24161, 23383, 24165, 23385, 24167, 23693, 23998, - 24133, 24157, 23486, 23793, 23792, 23794, 23269, 23583, 22915, 23479, - 22931, 23497, 22927, 23493, 22926, 23492, 22925, 23491, 22929, 23495, - 22928, 23494, 22910, 23474, 22909, 23473, 22908, 23472, 22912, 23476, - 22911, 23475, 23011, 23615, 23022, 23628, 23014, 23619, 23002, 23606, - 23001, 23605, 23000, 23604, 23005, 23609, 23004, 23608, 23087, 23720, - 23077, 23711, 23184, 23848, 23204, 23874, 23176, 23840, 23175, 23839, - 23174, 23838, 23178, 23842, 23177, 23841, 23201, 23871, 23200, 23870, - 23199, 23869, 23203, 23873, 23202, 23872, 23314, 24078, 23321, 24085, - 23318, 24082, 23317, 24081, 23316, 24080, 23320, 24084, 23319, 24083, - 23369, 24148, 23367, 24146, 23371, 24150, 23375, 24156, 23147, 23808, - 23148, 23809, 23372, 24151, 18604, 18596, 18609, 18601, 18605, 18597, - 18607, 18599, 18370, 18362, 18373, 18365, 18371, 18363, 18375, 18367, - 18627, 18624, 18629, 18626, 18628, 18625, 41412, 41412, 18410, 18407, - 18412, 18409, 18411, 18408, 41412, 41412, 18642, 18634, 18647, 18639, - 18643, 18635, 18645, 18637, 18394, 18386, 18397, 18389, 18395, 18387, - 18399, 18391, 18668, 18659, 18671, 18662, 18670, 18661, 18669, 18660, - 18422, 18417, 18425, 18420, 18424, 18419, 18423, 18418, 18729, 18726, - 18731, 18728, 18730, 18727, 41412, 41412, 18456, 18453, 18458, 18455, - 18457, 18454, 41412, 41412, 18688, 18679, 18691, 18682, 18690, 18681, - 18689, 18680, 41412, 18468, 41412, 18471, 41412, 18470, 41412, 18469, - 18709, 18701, 18714, 18706, 18710, 18702, 18712, 18704, 18440, 18432, - 18443, 18435, 18441, 18433, 18445, 18437, 18594, 18614, 18631, 18630, - 18654, 18652, 18674, 18675, 18733, 18732, 18694, 18695, 18721, 18719, - 41412, 41412, 18611, 18603, 18610, 18602, 18606, 18598, 18608, 18600, - 18377, 18369, 18374, 18366, 18372, 18364, 18376, 18368, 18649, 18641, - 18648, 18640, 18644, 18636, 18646, 18638, 18401, 18393, 18398, 18390, - 18396, 18388, 18400, 18392, 18716, 18708, 18715, 18707, 18711, 18703, - 18713, 18705, 18447, 18439, 18444, 18436, 18442, 18434, 18446, 18438, - 18593, 18618, 18595, 18616, 18615, 41412, 18612, 18613, 18379, 18383, - 18380, 18381, 18378, 18553, 18581, 18582, 18586, 18502, 18655, 18656, - 18653, 41412, 18650, 18651, 18414, 18413, 18404, 18403, 18402, 18585, - 18584, 18583, 18673, 18677, 18666, 18665, 41412, 41412, 18672, 18664, - 18426, 18430, 18427, 18428, 41412, 18510, 18509, 18508, 18693, 18697, - 18686, 18685, 18741, 18740, 18692, 18684, 18473, 18477, 18474, 18475, - 18463, 18504, 18503, 18780, 41412, 41412, 18722, 18723, 18720, 41412, - 18717, 18718, 18460, 18459, 18450, 18449, 18448, 18578, 18507, 41412, - 16898, 16895, 16900, 16897, 37416, 17650, 33984, 17575, 31904, 37389, - 19135, 41218, 41217, 41219, 24357, 32233, 20617, 29541, 17574, 16899, - 16896, 20561, 11383, 11357, 24280, 32163, 33859, 33857, 24233, 32128, - 11356, 11351, 10661, 11350, 5097, 38001, 30706, 38148, 20584, 20620, - 24665, 31245, 24356, 32232, 31778, 24355, 32231, 29142, 31481, 31482, - 31864, 11365, 38015, 32071, 32065, 32079, 6109, 33858, 33860, 32088, - 11387, 20959, 31059, 38199, 6395, 6110, 2572, 20619, 17654, 24288, 32174, - 11388, 31928, 17489, 37790, 32070, 3956, 3998, 25334, 32076, 8150, 38160, - 8583, 34967, 20977, 17614, 37396, 31924, 17643, 17600, 38149, 17644, - 11329, 38026, 39278, 27150, 39824, 17777, 20979, 20981, 20980, 41412, - 24354, 32230, 17593, 31777, 20873, 7, 20872, 6, 29137, 29539, 34938, - 34926, 41412, 41412, 34933, 34932, 34935, 34934, 34925, 34939, 34929, - 34931, 34924, 34928, 34930, 34927, 34768, 34770, 34767, 34766, 34763, - 34762, 34765, 34764, 34758, 34769, 34759, 34761, 34757, 34756, 34760, - 41412, 24185, 24186, 24194, 24200, 24184, 24187, 24190, 24191, 24192, - 24193, 24195, 24183, 24197, 41412, 41412, 41412, 17485, 8163, 8829, - 17661, 25273, 27765, 29070, 31505, 32553, 39828, 29273, 11323, 17486, - 22718, 38036, 11505, 18058, 31506, 18830, 2585, 20625, 6228, 25274, - 34320, 37161, 20863, 38118, 29591, 25839, 32422, 22902, 3862, 34300, - 32714, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 8472, 8530, 8487, 8543, 8172, 8188, - 8467, 8527, 8536, 8187, 8171, 8553, 8327, 8317, 8320, 8323, 8318, 8476, - 8319, 8321, 8322, 8519, 8308, 8173, 8560, 8578, 8478, 8484, 8535, 8477, - 8466, 8526, 8175, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 0, 100, 11399, 10685, - 6232, 6111, 5362, 17488, 32742, 10687, 32739, 32731, 4046, 11400, 31667, - 31668, 32732, 4047, 32733, 32740, 25511, 11401, 29635, 34216, 32735, - 11397, 11402, 32736, 4048, 11403, 31840, 32049, 32845, 37055, 37986, - 39271, 11404, 31053, 31063, 20976, 4049, 38141, 21773, 963, 32728, 4045, - 16955, 32738, 32729, 32730, 38125, 32734, 32741, 348, 3753, 18061, 10674, - 20870, 32410, 17554, 11411, 11410, 11396, 11398, 11412, 38134, 38135, - 32075, 38136, 11409, 11405, 11406, 11407, 11408, 31868, 38120, 31483, - 2643, 38138, 35046, 39422, 39420, 39424, 39425, 39430, 39418, 39429, - 39428, 39416, 39423, 39415, 39417, 39426, 39414, 39431, 17655, 32378, - 32389, 32390, 32377, 32374, 32383, 32385, 32393, 32394, 32386, 32392, - 32388, 32371, 32379, 32375, 32381, 34046, 34050, 34051, 34045, 34042, - 34054, 34053, 34041, 34055, 34052, 34040, 34049, 34044, 34047, 34043, - 34048, 32382, 32376, 32387, 32391, 23943, 32384, 32373, 32372, 32380, - 39432, 38129, 38128, 41412, 41412, 41412, 41412, 24358, 38350, 32235, - 11441, 24262, 38221, 29572, 29545, 34188, 34203, 24378, 32259, 24442, - 32336, 24439, 38400, 32335, 11477, 24381, 32262, 24389, 38363, 32242, - 11455, 38222, 24387, 32268, 24372, 32254, 24270, 24265, 11481, 38360, - 38361, 11450, 11451, 32250, 11442, 974, 8134, 29574, 24369, 979, 8136, - 24408, 24402, 38377, 38374, 32295, 32289, 11492, 11489, 32270, 38352, - 24392, 24454, 38403, 32302, 11500, 24409, 32296, 24445, 24269, 32278, - 24443, 38367, 32276, 11482, 24267, 38224, 29585, 29558, 34200, 34213, - 24429, 32326, 24458, 32306, 38353, 11443, 24449, 38368, 32282, 11483, - 24368, 32249, 24440, 38404, 32337, 11479, 38409, 38405, 38407, 38406, - 38411, 38412, 32338, 29573, 34191, 38226, 32115, 11453, 37404, 24388, - 32269, 24264, 24374, 32252, 24263, 24453, 32301, 24272, 17639, 8588, - 31391, 37383, 37382, 16888, 20791, 29026, 16837, 29594, 34026, 8596, - 11149, 34019, 16902, 28985, 28973, 28977, 27769, 27776, 11324, 11131, - 32850, 2571, 32347, 5098, 34547, 8835, 17649, 31867, 20864, 32105, 959, - 27024, 34323, 11135, 11150, 31250, 29599, 25288, 25295, 20952, 38201, - 20937, 11354, 38025, 8602, 34960, 39410, 8137, 8128, 976, 37384, 3754, - 31959, 31866, 11325, 17491, 17883, 20605, 37694, 32077, 20973, 33979, - 39832, 29604, 27775, 2578, 29595, 1058, 1061, 29229, 364, 29596, 366, - 38016, 361, 16941, 17881, 11141, 1062, 17882, 1059, 20754, 8162, 16939, - 32345, 32346, 8781, 16956, 16942, 34712, 10690, 16924, 27035, 31930, - 29606, 20630, 29607, 34749, 24558, 18294, 24560, 18297, 24549, 18287, - 28722, 28721, 3752, 29605, 29609, 29608, 29234, 29231, 24557, 18293, - 29233, 29230, 24559, 18295, 29235, 29232, 31841, 34786, 31850, 34795, - 31849, 34794, 11152, 11155, 34774, 34946, 29592, 29593, 34780, 34952, - 29227, 29228, 34779, 34951, 28475, 28476, 28477, 34420, 34509, 34422, - 34511, 34355, 34362, 6909, 6855, 6914, 6647, 6660, 6910, 6636, 6919, - 6661, 34680, 34673, 34694, 34628, 32192, 24306, 11418, 38230, 2579, - 27784, 38033, 17640, 38019, 11381, 11154, 29603, 11157, 29226, 31851, - 34796, 29589, 8597, 29590, 8598, 30738, 20753, 28478, 20376, 20960, - 39853, 29071, 29544, 32111, 32188, 28982, 28983, 28984, 28978, 10969, - 11326, 34714, 11133, 4474, 24320, 32150, 24278, 32161, 32078, 10078, - 10077, 11375, 11374, 11353, 11378, 31661, 16925, 24563, 18303, 39321, - 39320, 24547, 18298, 16923, 16922, 16920, 16921, 11153, 11156, 29600, - 29601, 34421, 34510, 24548, 18286, 31848, 34793, 29597, 11147, 29598, - 11148, 39277, 27761, 38229, 11421, 16838, 16840, 34027, 16843, 16842, - 34028, 16841, 16839, 8599, 8600, 34020, 8601, 34021, 41130, 10970, 16835, - 20599, 38213, 11422, 31865, 31500, 39596, 24229, 32123, 24317, 32132, - 4457, 4454, 37934, 37930, 32068, 34453, 2567, 32752, 32748, 37053, 31786, - 39334, 31664, 38132, 39587, 20597, 37929, 37933, 4453, 4456, 37923, 4451, - 17665, 34086, 38214, 30728, 16952, 39837, 21775, 24327, 32213, 16951, - 3700, 10656, 362, 35056, 37950, 11142, 8607, 34011, 8783, 8784, 1004, + 2161, 9891, 9881, 9895, 9900, 9816, 9790, 9791, 9860, 9861, 9836, 9837, + 9855, 9857, 9798, 9817, 9868, 9792, 9799, 9818, 9831, 9793, 9827, 9826, + 9811, 9809, 9842, 9796, 9800, 9847, 9845, 9843, 9852, 9851, 9804, 9803, + 9841, 9854, 9853, 9806, 9805, 9844, 9840, 9863, 9862, 9824, 9823, 9814, + 9835, 9830, 9829, 9850, 9849, 9848, 9859, 9819, 9820, 9821, 9813, 9913, + 9912, 9893, 9894, 9903, 9925, 9926, 9915, 9916, 9921, 9922, 9909, 9919, + 9927, 9904, 9910, 9920, 9911, 9905, 9899, 9914, 9906, 9941, 9902, 9901, + 9785, 9782, 9908, 9918, 9917, 9867, 9825, 9808, 9865, 9801, 9828, 9866, + 9834, 9856, 9858, 9923, 9924, 9929, 9928, 9936, 9938, 9935, 9934, 9931, + 9930, 9933, 9932, 9939, 9937, 9783, 9898, 9797, 9833, 9832, 9794, 9839, + 9838, 9815, 9864, 9812, 9810, 9846, 9807, 9802, 9822, 3599, 3667, 3670, + 3672, 35536, 3623, 3624, 3637, 3638, 3635, 3636, 3617, 3619, 35536, + 35536, 3659, 3625, 35536, 35536, 3660, 3626, 3610, 3607, 3651, 3650, + 3639, 3649, 3648, 3653, 3652, 3641, 3632, 3631, 3628, 3627, 3640, 3634, + 3633, 3630, 3629, 3642, 35536, 3655, 3654, 3647, 3646, 3658, 3622, 3611, + 35536, 3657, 35536, 35536, 35536, 3643, 3644, 3645, 3656, 35536, 35536, + 3668, 3669, 3674, 3683, 3684, 3677, 3678, 3679, 3680, 35536, 35536, 3685, + 3675, 35536, 35536, 3686, 3676, 3671, 3608, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 3600, 35536, 35536, 35536, 35536, 3615, 3614, + 35536, 3621, 3618, 3620, 3681, 3682, 35536, 35536, 3693, 3695, 3692, + 3691, 3688, 3687, 3690, 3689, 3696, 3694, 3613, 3612, 3662, 3661, 3601, + 3605, 3604, 3603, 3602, 3606, 3673, 3697, 3616, 3598, 3666, 35536, 35536, + 14035, 14036, 14041, 35536, 13987, 13988, 14003, 14004, 14001, 14002, + 35536, 35536, 35536, 35536, 14022, 13989, 35536, 35536, 14021, 13990, + 13986, 13985, 13983, 13982, 14007, 14014, 14013, 14016, 14015, 14009, + 13998, 13997, 13992, 13991, 14008, 14000, 13999, 13994, 13993, 14010, + 35536, 14018, 14017, 14012, 14011, 14025, 14027, 13996, 35536, 14006, + 14005, 35536, 14026, 14019, 35536, 14020, 14024, 35536, 35536, 14038, + 35536, 14042, 14047, 14048, 14045, 14046, 35536, 35536, 35536, 35536, + 14050, 14043, 35536, 35536, 14049, 14044, 14040, 35536, 35536, 35536, + 14037, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 13984, 13981, + 14028, 13995, 35536, 14023, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 14060, 14062, 14059, 14058, 14055, 14054, 14057, 14056, 14063, + 14061, 14051, 13980, 14052, 14064, 14053, 14039, 13979, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 13875, 13883, + 13885, 35536, 13825, 13826, 13844, 13845, 13842, 13843, 13837, 13839, + 13901, 35536, 13872, 13827, 13902, 35536, 13873, 13828, 13865, 13864, + 13861, 13860, 13849, 13859, 13858, 13863, 13862, 13851, 13834, 13833, + 13830, 13829, 13850, 13836, 13835, 13832, 13831, 13852, 35536, 13867, + 13866, 13857, 13856, 13869, 13871, 13870, 35536, 13847, 13846, 35536, + 13841, 13853, 13854, 13855, 13868, 35536, 35536, 13881, 13882, 13888, + 13897, 13898, 13891, 13892, 13893, 13894, 13886, 35536, 13899, 13889, + 13887, 35536, 13900, 13890, 13884, 35536, 35536, 13915, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 13838, 13840, 13895, 13896, 35536, 35536, 13911, + 13913, 13910, 13909, 13906, 13905, 13908, 13907, 13914, 13912, 13903, + 13904, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 13848, 13880, + 13879, 13876, 13878, 13874, 13877, 35536, 24926, 24929, 24932, 35536, + 24877, 24878, 24896, 24897, 24894, 24895, 24889, 24891, 35536, 35536, + 24922, 24879, 35536, 35536, 24923, 24880, 24916, 24915, 24912, 24911, + 24900, 24910, 24909, 24914, 24913, 24902, 24886, 24885, 24882, 24881, + 24901, 24888, 24887, 24884, 24883, 24903, 35536, 24918, 24917, 24908, + 24907, 24920, 24876, 24874, 35536, 24899, 24898, 35536, 24893, 24904, + 24905, 24906, 24919, 35536, 35536, 24927, 24928, 24933, 24942, 24943, + 24936, 24937, 24938, 24939, 35536, 35536, 24944, 24934, 35536, 35536, + 24945, 24935, 24931, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 24930, 24863, 24864, 35536, 35536, 35536, 35536, 24873, 24872, 35536, + 24875, 24890, 24892, 24940, 24941, 35536, 35536, 24952, 24954, 24951, + 24950, 24947, 24946, 24949, 24948, 24955, 24953, 24871, 24921, 24868, + 24867, 24870, 24865, 24866, 24869, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 29884, 29901, 35536, 29847, 29848, + 29860, 29861, 29856, 29857, 35536, 35536, 35536, 29865, 29866, 29849, + 35536, 29858, 29859, 29850, 29870, 35536, 35536, 35536, 29842, 29867, + 35536, 29869, 35536, 29843, 29845, 35536, 35536, 35536, 29841, 29846, + 35536, 35536, 35536, 29844, 29840, 29872, 35536, 35536, 35536, 29871, + 29874, 29855, 29854, 29853, 29852, 29851, 29873, 29862, 29863, 29864, + 29868, 35536, 35536, 35536, 35536, 30174, 30181, 30182, 30177, 30178, + 35536, 35536, 35536, 30183, 30184, 30175, 35536, 30179, 30180, 30176, + 29900, 35536, 35536, 30187, 35536, 35536, 35536, 35536, 35536, 35536, + 29776, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 29813, 29815, 29812, 29811, 29808, + 29807, 29810, 29809, 29816, 29814, 29878, 29876, 29877, 29806, 30186, + 30185, 29805, 29803, 29775, 29881, 29879, 35536, 35536, 35536, 35536, + 35536, 31250, 31251, 31256, 31258, 31249, 31210, 31211, 31226, 31227, + 31222, 31223, 31217, 31219, 35536, 31243, 31244, 31212, 35536, 31224, + 31225, 31213, 31240, 31239, 31236, 31235, 31199, 31234, 31233, 31238, + 31237, 31201, 31206, 31205, 31193, 31192, 31200, 31209, 31207, 31196, + 31194, 31197, 35536, 31242, 31241, 31232, 31231, 31246, 31247, 31204, + 31203, 31216, 31215, 31214, 31221, 31228, 31229, 31230, 31245, 35536, + 35536, 31254, 31255, 31259, 31270, 31271, 31262, 31263, 31264, 31265, + 35536, 31272, 31273, 31260, 35536, 31268, 31269, 31261, 31257, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 31248, 31184, 35536, 31208, + 31195, 31202, 35536, 31183, 31198, 35536, 35536, 31218, 31220, 31266, + 31267, 35536, 35536, 31280, 31282, 31279, 31278, 31275, 31274, 31277, + 31276, 31283, 31281, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 31252, 31191, 31189, 31187, 31185, 31190, 31188, 31186, 31253, 16427, + 16426, 16431, 16435, 16428, 16375, 16376, 16401, 16402, 16397, 16398, + 16392, 16394, 35536, 16418, 16419, 16377, 35536, 16399, 16400, 16378, + 16415, 16414, 16411, 16410, 16372, 16409, 16408, 16413, 16412, 16374, + 16389, 16388, 16380, 16379, 16373, 16391, 16390, 16382, 16381, 16370, + 35536, 16417, 16416, 16407, 16406, 16422, 16423, 16387, 16386, 16385, + 16384, 35536, 16396, 16403, 16404, 16405, 16421, 35536, 35536, 16429, + 16430, 16438, 16449, 16450, 16441, 16442, 16443, 16444, 35536, 16451, + 16452, 16439, 35536, 16447, 16448, 16440, 16434, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 16424, 16437, 35536, 35536, 35536, 35536, + 35536, 16436, 16371, 16420, 35536, 16393, 16395, 16445, 16446, 35536, + 35536, 16459, 16461, 16458, 16457, 16454, 16453, 16456, 16455, 16462, + 16460, 35536, 16432, 16433, 16425, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 20239, 20241, 20246, + 20244, 20196, 20170, 20172, 20216, 20217, 20212, 20213, 20197, 20199, + 35536, 20231, 20232, 20173, 35536, 20214, 20215, 20174, 20228, 20227, + 20224, 20223, 20204, 20185, 20184, 20226, 20225, 20205, 20193, 20191, + 20188, 20187, 20203, 20195, 20194, 20190, 20189, 20206, 20202, 20230, + 20229, 20222, 20221, 20234, 20235, 20211, 20210, 20209, 20208, 20207, + 20201, 20218, 20219, 20220, 20233, 20192, 20242, 20240, 20245, 20248, + 20259, 20260, 20251, 20252, 20253, 20254, 35536, 20261, 20262, 20249, + 35536, 20257, 20258, 20250, 20243, 20186, 20247, 35536, 35536, 35536, + 35536, 20182, 20183, 20177, 20263, 20162, 20160, 20167, 20157, 20158, + 20168, 20161, 20171, 20198, 20200, 20255, 20256, 35536, 35536, 20153, + 20155, 20152, 20151, 20148, 20147, 20150, 20149, 20156, 20154, 20238, + 20236, 20237, 20165, 20164, 20169, 20159, 20163, 20166, 20146, 20179, + 20178, 20180, 20175, 20176, 20181, 35536, 28083, 28082, 28084, 35536, + 28028, 28025, 28013, 28012, 28036, 28035, 28038, 28037, 28034, 28033, + 28032, 28031, 28030, 28029, 28026, 28057, 28056, 28027, 35536, 35536, + 35536, 28022, 28047, 28020, 28045, 28070, 28060, 28019, 28044, 28021, + 28046, 28067, 28068, 28061, 28014, 28039, 28016, 28041, 28051, 28058, + 28015, 28040, 28017, 28042, 28054, 35536, 28059, 28023, 28048, 28018, + 28043, 28049, 28024, 28066, 28064, 35536, 28053, 35536, 35536, 28065, + 28069, 28052, 28055, 28063, 28050, 28062, 35536, 35536, 35536, 28081, + 35536, 35536, 35536, 35536, 28101, 28093, 28088, 28094, 28089, 28095, + 35536, 28090, 35536, 28091, 28096, 28087, 28100, 28097, 28098, 28099, + 28092, 35536, 35536, 35536, 35536, 35536, 35536, 28077, 28079, 28076, + 28075, 28072, 28071, 28074, 28073, 28080, 28078, 35536, 35536, 28085, + 28086, 28102, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 31437, 31434, 31432, 31431, 31433, 31435, + 31451, 31420, 31422, 31421, 31480, 31423, 31492, 31424, 31489, 31485, + 31482, 31483, 31453, 31425, 31488, 31487, 31484, 31486, 31454, 31419, + 31460, 31457, 31426, 31458, 31427, 31459, 31449, 31493, 31461, 31462, + 31439, 31441, 31490, 31478, 31477, 31479, 31430, 31438, 31494, 31429, + 31455, 31463, 31443, 31466, 31468, 31473, 31474, 31470, 31471, 31469, + 31472, 31456, 35536, 35536, 35536, 35536, 31495, 31475, 31467, 31476, + 31465, 31464, 31440, 31448, 31447, 31446, 31444, 31445, 31442, 31481, + 31452, 31491, 31428, 31502, 31504, 31501, 31500, 31497, 31496, 31499, + 31498, 31505, 31503, 31450, 31436, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 17263, 17261, 35536, 17262, 35536, 17276, 17291, 17295, + 17275, 17285, 35536, 17277, 17292, 17273, 17271, 17270, 17268, 17267, + 17272, 17296, 17288, 17286, 17287, 17269, 17293, 17294, 17281, 17279, + 17258, 17280, 17257, 17274, 17297, 17300, 17265, 35536, 17266, 35536, + 17299, 17282, 17283, 17284, 17289, 17278, 17301, 17290, 17327, 17309, + 17314, 17310, 17312, 17322, 17323, 17316, 17317, 17318, 17319, 17304, + 17315, 17303, 17302, 35536, 35536, 17320, 17321, 17324, 17313, 17311, + 35536, 17325, 35536, 17308, 17305, 17306, 17307, 17338, 17339, 17326, + 35536, 17334, 17336, 17333, 17332, 17329, 17328, 17331, 17330, 17337, + 17335, 35536, 35536, 17254, 17253, 17260, 17259, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 31729, + 31636, 31634, 31635, 31644, 31632, 31629, 31633, 31653, 31624, 31622, + 31645, 31660, 31654, 31650, 31657, 31649, 31652, 31651, 31628, 31637, + 31620, 31619, 31547, 31548, 31546, 31668, 31669, 31670, 31672, 31673, + 31671, 31569, 31571, 31568, 31567, 31564, 31563, 31566, 31565, 31572, + 31570, 31561, 31558, 31557, 31554, 31553, 31556, 31555, 31562, 31560, + 31559, 31625, 31647, 31627, 31646, 31630, 31656, 31638, 31639, 31640, + 31641, 31679, 31665, 31578, 31576, 31606, 31605, 31588, 31604, 31603, + 31613, 35536, 31590, 31598, 31597, 31583, 31582, 31589, 31600, 31599, + 31587, 31586, 31591, 31608, 31607, 31602, 31601, 31615, 31596, 31595, + 31585, 31584, 31616, 31609, 31610, 31611, 31617, 31580, 31614, 31592, + 31593, 31594, 31612, 31618, 31575, 31581, 31577, 31579, 35536, 35536, + 35536, 35536, 31753, 31749, 31750, 31741, 31742, 31743, 31744, 31745, + 31746, 31751, 31752, 31747, 31748, 31676, 31677, 31739, 31740, 31667, + 31681, 31642, 31659, 31663, 31678, 31664, 31666, 31661, 31662, 31680, + 31728, 31727, 31726, 31693, 31692, 31712, 31711, 31694, 31710, 31709, + 31719, 35536, 31696, 31704, 31703, 31686, 31685, 31695, 31706, 31705, + 31690, 31689, 31697, 31714, 31713, 31708, 31707, 31721, 31702, 31701, + 31688, 31687, 31723, 31715, 31716, 31717, 31724, 31722, 31720, 31698, + 31699, 31700, 31718, 31725, 31691, 31683, 31684, 31682, 35536, 31573, + 31574, 31550, 31551, 31552, 31549, 31730, 31737, 31735, 31738, 31736, + 31731, 31734, 31733, 31732, 35536, 31675, 31674, 31623, 31626, 31648, + 31643, 31631, 26332, 18869, 26333, 18870, 31658, 31655, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 23282, 23261, 23260, 23259, 23291, + 23359, 23358, 23361, 23360, 23292, 23289, 23337, 23336, 23343, 23342, + 23290, 23321, 23338, 23345, 23344, 23293, 23363, 23362, 23357, 23356, + 23288, 23365, 23295, 23355, 23341, 23320, 23364, 23354, 23251, 23315, + 23352, 23353, 23346, 23347, 23254, 23287, 23366, 23253, 23458, 23442, + 23465, 23466, 23459, 23460, 23454, 23439, 23447, 23448, 23455, 23383, + 23402, 23407, 23406, 23382, 23246, 23244, 23245, 23243, 23258, 23483, + 23485, 23482, 23481, 23478, 23477, 23480, 23479, 23486, 23484, 23405, + 23394, 23412, 23416, 23411, 23415, 23296, 23319, 23348, 23349, 23350, + 23351, 23461, 23462, 23463, 23464, 23286, 23285, 23283, 23284, 23249, + 23248, 23247, 23318, 23453, 23427, 23428, 23340, 23339, 23456, 23457, + 23397, 23398, 23399, 23400, 23401, 23257, 23256, 23255, 23443, 23445, + 23446, 23444, 23310, 23309, 23308, 23306, 23314, 23298, 23311, 23299, + 23301, 23312, 23304, 23302, 23313, 23250, 23452, 23449, 23450, 23451, + 23389, 23390, 23391, 23392, 23387, 23388, 23386, 23294, 23403, 23378, + 23380, 23377, 23376, 23373, 23372, 23375, 23374, 23381, 23379, 23384, + 23385, 23440, 23441, 23414, 23413, 12876, 12902, 12887, 12908, 12909, + 12907, 12897, 12898, 12910, 12891, 12900, 12903, 12905, 12911, 12893, + 12896, 12901, 12895, 12899, 12912, 12892, 12890, 12886, 12906, 12894, + 12882, 12885, 12889, 12884, 12883, 12904, 12888, 12877, 12881, 12879, + 12914, 12878, 12880, 35536, 12913, 35536, 35536, 35536, 35536, 35536, + 12875, 35536, 35536, 12959, 12990, 12967, 12996, 12965, 12995, 12988, + 12985, 12997, 12977, 12979, 12991, 12993, 12998, 12981, 12987, 12989, + 12983, 12986, 12956, 12980, 12976, 12966, 12994, 12982, 12960, 12963, + 12975, 12962, 12961, 12992, 12974, 12970, 12973, 12971, 13000, 12968, + 12972, 13001, 12999, 12964, 12984, 12958, 13048, 22495, 12957, 12969, + 12978, 14296, 14370, 14304, 14375, 14368, 14332, 14299, 14314, 14372, + 14346, 14364, 14278, 14276, 14362, 14263, 14298, 14382, 14311, 14385, + 14306, 14371, 14308, 14307, 14379, 14342, 14366, 14345, 14291, 14301, + 14295, 14324, 14329, 14328, 14315, 14319, 14317, 14320, 14321, 14318, + 14326, 14325, 14327, 14322, 14293, 14294, 14353, 14359, 14358, 14351, + 14356, 14347, 14348, 14350, 14361, 14355, 14354, 14352, 14357, 14349, + 14360, 14268, 14267, 14273, 14272, 14331, 14288, 14287, 14285, 14280, + 14290, 14281, 14374, 14284, 14283, 14286, 14279, 14383, 14277, 14270, + 14266, 14275, 14271, 14264, 14265, 14269, 14274, 14312, 14292, 14373, + 14384, 14297, 14310, 14305, 14309, 14376, 14387, 14625, 14531, 14541, + 14589, 14593, 14543, 14542, 14595, 14594, 14570, 14622, 14623, 14580, + 14601, 14581, 14621, 14620, 14624, 14610, 14547, 14599, 14554, 14539, + 14540, 14591, 14590, 14545, 14546, 14544, 14597, 14598, 14578, 14577, + 14573, 14571, 14579, 14602, 14603, 14604, 14609, 14608, 14586, 14587, + 14585, 14582, 14588, 14615, 14614, 14613, 14612, 14611, 14619, 14617, + 14553, 14550, 14600, 14555, 14557, 14564, 14568, 14566, 14556, 14532, + 14534, 14537, 14536, 14569, 14538, 14592, 14596, 14575, 14576, 14407, + 14508, 14410, 14430, 14433, 14437, 14512, 14458, 14459, 14464, 14468, + 14477, 14480, 14473, 14485, 14417, 14447, 14450, 14486, 14503, 14399, + 14390, 14393, 14416, 14521, 14443, 14394, 14409, 14411, 14436, 14435, + 14439, 14438, 14434, 14519, 14513, 14461, 14484, 14478, 14479, 14498, + 14465, 14467, 14472, 14471, 14462, 14476, 14474, 14463, 14481, 14427, + 14424, 14418, 14423, 14422, 14420, 14425, 14429, 14406, 14448, 14452, + 14457, 14405, 14488, 14496, 14489, 14492, 14440, 14401, 14402, 14511, + 14400, 14522, 14526, 14529, 14445, 14404, 14397, 14395, 14396, 14398, + 14530, 14413, 14414, 14412, 14408, 14415, 14509, 12146, 12153, 12152, + 12147, 12151, 12150, 12148, 12149, 12373, 12381, 12380, 12374, 12378, + 12377, 12375, 12379, 12139, 12145, 12143, 12140, 12142, 12141, 12144, + 12130, 12190, 12198, 12197, 12191, 12195, 12194, 12192, 12188, 12302, + 12309, 12307, 12303, 12305, 12304, 12308, 12306, 12277, 12286, 12285, + 12278, 12282, 12281, 12279, 12283, 12317, 12323, 12322, 12318, 12292, + 12287, 12319, 12321, 12293, 12301, 12300, 12294, 12298, 12297, 12295, + 12299, 12269, 12276, 12275, 12270, 12274, 12273, 12271, 12272, 12257, + 35536, 12261, 12258, 12260, 12259, 35536, 35536, 12250, 12256, 12254, + 12251, 12253, 12252, 12255, 35536, 12245, 35536, 12249, 12246, 12248, + 12247, 35536, 35536, 11980, 11987, 11986, 11981, 11985, 11984, 11982, + 11971, 12442, 12449, 12447, 12443, 12445, 12444, 12448, 12446, 12355, + 12363, 12362, 12356, 12360, 12359, 12357, 12361, 12018, 12026, 12025, + 12019, 12023, 12022, 12020, 12024, 12410, 12417, 12416, 12411, 12415, + 12414, 12412, 12413, 12398, 35536, 12402, 12399, 12401, 12400, 35536, + 35536, 12208, 12216, 12215, 12209, 12213, 12212, 12210, 12214, 12199, + 12207, 12206, 12200, 12204, 12203, 12201, 12205, 12100, 12108, 12107, + 12101, 12105, 12104, 12102, 12106, 12178, 12185, 12184, 12179, 12183, + 12182, 12180, 12181, 12166, 35536, 12170, 12167, 12169, 12168, 35536, + 35536, 12159, 12165, 12163, 12160, 12162, 12161, 12164, 35536, 12154, + 35536, 12158, 12155, 12157, 12156, 35536, 35536, 12382, 12389, 12388, + 12383, 12387, 12386, 12384, 12385, 12218, 12224, 12222, 12219, 12221, + 12220, 12223, 35536, 12433, 12441, 12440, 12434, 12438, 12437, 12435, + 12439, 12418, 12425, 12423, 12419, 12421, 12420, 12424, 12422, 12390, + 12397, 12396, 12391, 12395, 12394, 12392, 12393, 12048, 12056, 12055, + 12049, 12053, 12052, 12050, 12054, 12033, 12041, 12040, 12034, 12038, + 12037, 12035, 12039, 12364, 12372, 12371, 12365, 12369, 12368, 12366, + 12370, 12121, 12069, 12127, 12122, 12126, 12125, 12123, 12124, 12109, + 35536, 12113, 12110, 12112, 12111, 35536, 35536, 12093, 12099, 12097, + 12094, 12096, 12095, 12098, 12089, 12324, 12332, 12331, 12325, 12329, + 12328, 12326, 12330, 12009, 12017, 12016, 12010, 12014, 12013, 12011, + 12015, 12217, 12232, 12231, 12225, 12229, 12228, 12226, 12230, 12347, + 12354, 12352, 12348, 12350, 12349, 12353, 12351, 12339, 12346, 12345, + 12340, 12344, 12343, 12341, 12342, 12061, 12068, 12066, 12062, 12064, + 12063, 12067, 12059, 12237, 12244, 12243, 12238, 12242, 12241, 12239, + 12235, 12284, 12196, 12065, 35536, 35536, 11949, 11951, 11950, 11968, + 12471, 12469, 11952, 11967, 11953, 11966, 12470, 11965, 12467, 12465, + 12464, 12461, 12460, 12463, 12462, 12468, 12466, 11954, 11957, 11956, + 11961, 11960, 11964, 11963, 11959, 11962, 11958, 11955, 35536, 35536, + 35536, 12290, 12189, 12187, 12186, 12288, 11972, 11970, 11969, 12289, + 12060, 12058, 12057, 12291, 12236, 12234, 12233, 12459, 12450, 12456, + 12457, 12452, 12454, 12458, 12453, 12451, 12455, 35536, 35536, 35536, + 35536, 35536, 35536, 6484, 6485, 6486, 6487, 6488, 6489, 6447, 6483, + 6448, 6449, 6450, 6451, 6452, 6412, 6413, 6414, 6415, 6416, 6417, 6453, + 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6418, 6411, + 6419, 6420, 6421, 6422, 6423, 6424, 6465, 6466, 6467, 6468, 6469, 6470, + 6426, 6425, 6427, 6428, 6429, 6430, 6431, 6405, 6444, 6406, 6445, 6407, + 6446, 6408, 6409, 6410, 6404, 6432, 6433, 6434, 6435, 6436, 6437, 6438, + 6439, 6440, 6441, 6442, 6443, 6471, 6472, 6473, 6474, 6475, 6476, 6477, + 6478, 6479, 6480, 6481, 6482, 6464, 35536, 35536, 6564, 6565, 6566, 6567, + 6568, 6550, 35536, 35536, 5626, 5598, 5371, 5628, 5629, 5778, 5792, 6075, + 5582, 5442, 5369, 5370, 5952, 6042, 6062, 6040, 6063, 6041, 6044, 6038, + 6045, 6039, 5707, 6059, 6036, 6060, 6037, 5708, 5373, 6076, 6094, 5615, + 5614, 5616, 5617, 5609, 5610, 5607, 5606, 5619, 5613, 5618, 5608, 5600, + 5630, 5791, 5377, 5812, 5805, 5810, 5811, 5807, 5808, 6066, 5440, 5441, + 5803, 5804, 5802, 5981, 5800, 5979, 5801, 5980, 5795, 5977, 5796, 5978, + 5798, 5975, 5799, 5976, 6065, 5794, 5974, 5433, 5951, 5934, 5949, 5950, + 5947, 5948, 6073, 5404, 5417, 5932, 5933, 5942, 6034, 5940, 6032, 5941, + 6033, 5938, 6030, 5939, 6031, 5936, 6028, 5937, 6029, 5713, 5894, 5929, + 5930, 5931, 5928, 5649, 5643, 5647, 5648, 5645, 5646, 6068, 5641, 5642, + 5640, 6026, 5638, 6024, 5639, 6025, 5636, 6022, 5637, 6023, 5633, 6020, + 5634, 6021, 5710, 5631, 5632, 5874, 5875, 5876, 5873, 5597, 5584, 5595, + 5596, 5593, 5594, 6067, 5401, 5583, 5591, 6019, 5589, 6017, 5590, 6018, + 5587, 6015, 5588, 6016, 5585, 6013, 5586, 6014, 5709, 5400, 5850, 5675, + 5683, 5692, 5693, 5678, 5679, 6070, 5681, 5682, 5691, 5973, 5689, 5971, + 5690, 5972, 5687, 5969, 5688, 5970, 5685, 5967, 5686, 5968, 5711, 5674, + 5966, 5694, 5375, 5851, 5767, 5728, 5765, 5766, 5755, 5756, 6071, 5699, + 5727, 5764, 5992, 5758, 5990, 5759, 5991, 5712, 5695, 5473, 5768, 5673, + 5660, 5671, 5672, 5669, 5670, 6069, 5658, 5659, 5668, 5960, 5666, 5958, + 5667, 5959, 5664, 5956, 5665, 5957, 5662, 5954, 5663, 5955, 5650, 5953, + 5676, 5893, 5853, 5891, 5892, 5872, 5877, 6072, 5833, 5852, 5886, 6012, + 5884, 6010, 5885, 6011, 5882, 6008, 5883, 6009, 5880, 6006, 5881, 6007, + 5705, 5832, 5376, 5879, 5396, 5680, 5703, 5706, 5701, 5702, 5704, 5700, + 5871, 5869, 5870, 5863, 5864, 5866, 5867, 5862, 6005, 5860, 6003, 5861, + 6004, 5855, 6001, 5856, 6002, 5858, 5999, 5859, 6000, 5854, 6093, 6079, + 6091, 6092, 6081, 6082, 6074, 6077, 6078, 6090, 5989, 6088, 5987, 6089, + 5988, 6086, 5985, 6087, 5986, 6084, 5983, 6085, 5984, 5714, 6064, 5397, + 5982, 5849, 5831, 5815, 5965, 5825, 5829, 5830, 5827, 5828, 5963, 5823, + 5824, 5961, 5817, 5994, 5813, 5993, 5677, 5625, 5604, 5605, 5620, 5622, + 5623, 5602, 5603, 5624, 6035, 5601, 5913, 5698, 5911, 5696, 5912, 5697, + 5909, 5910, 5907, 5908, 5905, 6027, 5895, 5926, 5927, 5923, 5921, 5920, + 5944, 5945, 5946, 5943, 5753, 5751, 5752, 5749, 5750, 5747, 5748, 5746, + 5754, 5627, 5772, 5776, 5777, 5774, 5775, 5770, 5771, 5769, 5918, 5919, + 5914, 5917, 5996, 5997, 5998, 5995, 5733, 5737, 5738, 5735, 5736, 5731, + 5732, 5730, 5739, 5847, 5848, 5843, 5846, 6055, 6056, 6057, 6054, 6046, + 5656, 5657, 5654, 5655, 5652, 5653, 5651, 5903, 5901, 5902, 5899, 5900, + 5897, 5898, 5896, 5374, 5393, 5394, 5395, 5392, 5381, 5382, 5383, 5380, + 5389, 5390, 5391, 5388, 5385, 5386, 5387, 5384, 5838, 5839, 5835, 5837, + 5423, 5422, 5418, 5419, 5421, 5420, 5569, 5568, 5564, 5565, 5567, 5566, + 5575, 5574, 5570, 5571, 5573, 5572, 5439, 5438, 5434, 5435, 5437, 5436, + 5533, 5532, 5528, 5529, 5531, 5530, 5527, 5526, 5522, 5523, 5525, 5524, + 5496, 5495, 5491, 5492, 5494, 5493, 5490, 5432, 5431, 5428, 5429, 5430, + 5426, 5469, 5468, 5464, 5465, 5467, 5466, 5463, 5462, 5458, 5459, 5461, + 5460, 5457, 5476, 5475, 5470, 5471, 5474, 5472, 5563, 5562, 5558, 5559, + 5561, 5560, 5581, 5580, 5576, 5577, 5579, 5578, 5456, 5840, 5455, 5450, + 5451, 5454, 5842, 5453, 5449, 5448, 5444, 5445, 5447, 5446, 5551, 5550, + 5546, 5547, 5549, 5548, 5410, 5409, 5405, 5406, 5408, 5407, 5545, 5544, + 5540, 5541, 5543, 5542, 5509, 5508, 5504, 5505, 5507, 5506, 5515, 5514, + 5510, 5511, 5513, 5512, 5503, 5502, 5498, 5499, 5501, 5500, 5497, 5443, + 5416, 5415, 5411, 5412, 5414, 5413, 5489, 5488, 5484, 5485, 5487, 5486, + 5483, 5482, 5478, 5479, 5481, 5480, 5477, 5539, 5538, 5534, 5535, 5537, + 5536, 5557, 5556, 5552, 5553, 5555, 5554, 5521, 5520, 5516, 5517, 5519, + 5518, 5592, 5621, 5773, 5734, 5744, 5745, 5742, 5743, 5740, 5741, 6053, + 6051, 6052, 6049, 6050, 6047, 6048, 6058, 5379, 24281, 24256, 24267, + 24263, 24273, 24270, 24276, 24279, 24280, 24259, 24258, 24278, 24264, + 24269, 24274, 24268, 24255, 24271, 24277, 24261, 24265, 24260, 24272, + 24275, 24266, 24262, 24257, 24253, 24254, 35536, 35536, 35536, 26606, + 26662, 26656, 26660, 26659, 26654, 26652, 26599, 26584, 26630, 26583, + 26582, 26627, 26642, 26629, 26633, 26634, 26636, 26622, 26588, 26621, + 26607, 26600, 26608, 26610, 26655, 26612, 26611, 26625, 26639, 26651, + 26641, 26593, 26615, 26596, 26619, 26609, 26624, 26645, 26616, 26658, + 26585, 26648, 26647, 26643, 26586, 26664, 26653, 26644, 26591, 26650, + 26638, 26594, 26632, 26597, 26657, 26626, 26640, 26623, 26592, 26614, + 26613, 26595, 26631, 26598, 26618, 26590, 26589, 26587, 26649, 26628, + 26646, 26617, 26661, 26663, 26665, 26666, 26581, 26667, 26668, 26580, + 26620, 26637, 26635, 26604, 26603, 26605, 26602, 26601, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 29374, 29391, 29392, 29382, 29380, + 29376, 29388, 29379, 29377, 29385, 29378, 29384, 29390, 29386, 29383, + 29389, 29387, 29381, 29395, 29396, 29394, 29393, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 29375, 14797, 14798, 14799, + 14788, 14786, 14782, 14794, 14785, 14783, 14791, 14784, 14790, 14796, + 14792, 14789, 14795, 14793, 14787, 14801, 14802, 14800, 25736, 25737, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 5092, + 5093, 5094, 5083, 5081, 5077, 5089, 5080, 5078, 5086, 5079, 5085, 5091, + 5087, 5084, 5090, 5088, 5082, 5095, 5096, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 29410, 29411, + 29412, 29402, 29401, 29397, 29407, 29400, 29398, 29405, 29399, 29404, + 29409, 35536, 29403, 29408, 29406, 35536, 29413, 29414, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 16913, 16911, 16914, 16912, 16915, 16909, 16907, 16910, 16908, 16917, + 16931, 16927, 16932, 16928, 16916, 16929, 16925, 16930, 16926, 16918, + 16939, 16919, 16921, 16920, 16935, 16938, 16936, 16934, 16937, 16923, + 16922, 16924, 16940, 16933, 16941, 16888, 16886, 16896, 16897, 16892, + 16895, 16893, 16894, 16905, 16906, 16903, 16904, 16898, 16887, 16891, + 16890, 16889, 17008, 17007, 17009, 17014, 17016, 17020, 17022, 17024, + 17026, 17025, 17017, 17021, 17015, 17027, 17011, 17012, 17019, 17013, + 16962, 16956, 16961, 16963, 16957, 16947, 16955, 16958, 16952, 16944, + 16945, 16964, 16951, 16946, 16953, 16948, 16950, 16959, 16949, 16960, + 16954, 16885, 16942, 16943, 35536, 35536, 17034, 17036, 17033, 17032, + 17029, 17028, 17031, 17030, 17037, 17035, 35536, 35536, 35536, 35536, + 35536, 35536, 16986, 16985, 16982, 16984, 16983, 16977, 16980, 16981, + 16979, 16978, 35536, 35536, 35536, 35536, 35536, 35536, 22862, 22874, + 22870, 22719, 22869, 22720, 22867, 22858, 22871, 22872, 22873, 22718, + 22717, 22716, 22868, 22715, 22711, 22713, 22710, 22709, 22706, 22705, + 22708, 22707, 22714, 22712, 35536, 35536, 35536, 35536, 35536, 35536, + 22723, 22837, 22854, 22839, 22841, 22840, 22842, 22838, 22848, 22751, + 22843, 22849, 22850, 22846, 22755, 22836, 22798, 22797, 22828, 22844, + 22752, 22847, 22853, 22851, 22852, 22845, 22834, 22833, 22827, 22831, + 22832, 22830, 22835, 22829, 22754, 22807, 22825, 22826, 22814, 22816, + 22815, 22817, 22801, 22818, 22821, 22822, 22808, 22820, 22811, 22803, + 22812, 22805, 22810, 22824, 22823, 22819, 22809, 22813, 22804, 22806, + 22802, 22796, 22781, 22782, 22790, 22789, 22786, 22794, 22775, 22777, + 22795, 22784, 22780, 22791, 22793, 22792, 22776, 22778, 22779, 22788, + 22785, 22783, 22787, 22774, 22772, 22773, 22771, 22770, 22753, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 22725, 22727, 22729, 22736, + 22735, 22743, 22739, 22724, 22734, 22750, 22737, 22749, 22741, 22740, + 22731, 22738, 22742, 22728, 22745, 22744, 22748, 22746, 22747, 22726, + 22800, 22799, 22763, 22768, 22759, 22764, 22760, 22756, 22761, 22757, + 22769, 22758, 22766, 22767, 22733, 22732, 22762, 22730, 22765, 35536, + 35536, 35536, 35536, 35536, 5793, 5378, 5372, 6061, 5809, 5806, 5797, + 5935, 5644, 5635, 5684, 5757, 5729, 5661, 5878, 5834, 5865, 5868, 5857, + 6083, 6080, 5826, 5762, 5782, 5763, 5783, 5760, 5780, 5761, 5781, 5822, + 5820, 5821, 5818, 5819, 5816, 5789, 5790, 5787, 5786, 5788, 5779, 5784, + 5785, 5599, 6043, 5612, 5611, 5814, 5964, 5962, 5906, 5904, 5925, 5924, + 5922, 5916, 5915, 5845, 5844, 5836, 5425, 5402, 5427, 5424, 5841, 5452, + 5398, 5399, 5403, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 19167, 19134, 19133, 19114, 19113, 19120, 19128, 19127, + 19132, 19131, 19119, 19117, 19115, 19130, 19129, 19121, 19136, 19135, + 19126, 19125, 19139, 19118, 19140, 19138, 19141, 19122, 19123, 19124, + 19137, 19112, 19116, 35536, 19158, 19165, 19166, 19164, 19159, 19162, + 19160, 19163, 19161, 19157, 19155, 19156, 35536, 35536, 35536, 35536, + 19149, 19146, 19148, 19154, 19147, 19152, 19151, 19153, 19150, 19143, + 19142, 19144, 35536, 35536, 35536, 35536, 19145, 35536, 35536, 35536, + 19168, 19169, 19176, 19178, 19175, 19174, 19171, 19170, 19173, 19172, + 19179, 19177, 29435, 29447, 29430, 29427, 29445, 29448, 29429, 29428, + 29442, 29437, 29436, 29443, 29440, 29446, 29441, 29444, 29434, 29426, + 29431, 29415, 29449, 29419, 29420, 29438, 29433, 29432, 29439, 29418, + 29416, 29417, 35536, 35536, 29421, 29422, 29423, 29424, 29425, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 23820, 23842, 23802, 23804, 23807, 23824, 23826, 23829, 23810, 23806, + 23822, 23832, 23828, 23844, 23811, 23809, 23808, 23833, 23831, 23830, + 23813, 23812, 23819, 23835, 23834, 23841, 23816, 23821, 23818, 23838, + 23843, 23840, 23817, 23815, 23814, 23839, 23837, 23836, 23801, 23803, + 23823, 23825, 23805, 23827, 35536, 35536, 35536, 35536, 23865, 23850, + 23854, 23860, 23863, 23866, 23852, 23856, 23857, 23861, 23853, 23851, + 23864, 23859, 23858, 23862, 23855, 23800, 23795, 23794, 23799, 23798, + 23797, 23796, 23847, 23848, 35536, 35536, 35536, 35536, 35536, 35536, + 23873, 23875, 23872, 23871, 23868, 23867, 23870, 23869, 23876, 23874, + 23849, 35536, 35536, 35536, 23845, 23846, 16987, 17006, 16999, 17002, + 17004, 16997, 16995, 16993, 16989, 16991, 16976, 16974, 16966, 16970, + 16972, 16968, 17000, 17005, 16998, 17001, 17003, 16996, 16994, 16992, + 16988, 16990, 16975, 16973, 16965, 16969, 16971, 16967, 5061, 5058, 5050, + 5049, 5063, 5055, 5048, 5047, 5066, 5057, 5054, 5053, 5056, 5060, 5052, + 5051, 5068, 5064, 5062, 5067, 5065, 5069, 5059, 5072, 5074, 5071, 5073, + 5070, 35536, 35536, 5076, 5075, 29483, 29481, 29482, 29499, 29498, 29497, + 29523, 29489, 29488, 29502, 29509, 29501, 29524, 29517, 29484, 29529, + 29500, 29516, 29493, 29492, 29506, 29505, 29525, 29528, 29491, 29490, + 29494, 29504, 29507, 29503, 29530, 29510, 29496, 29515, 29518, 29511, + 29513, 29531, 29485, 29486, 29487, 29495, 29514, 29532, 29508, 29521, + 29522, 29519, 29520, 29527, 29526, 29512, 29480, 29455, 29454, 29452, + 29543, 29450, 29451, 29453, 29456, 29457, 29458, 35536, 29551, 29558, + 29562, 29559, 29568, 29574, 29575, 29573, 29572, 29570, 29571, 29563, + 29564, 29567, 29576, 29560, 29566, 29561, 29569, 29565, 29542, 29555, + 29556, 29535, 29536, 29537, 29546, 29545, 29538, 35536, 35536, 29459, + 29466, 29468, 29465, 29464, 29461, 29460, 29463, 29462, 29469, 29467, + 35536, 35536, 35536, 35536, 35536, 35536, 29476, 29478, 29475, 29474, + 29471, 29470, 29473, 29472, 29479, 29477, 35536, 35536, 35536, 35536, + 35536, 35536, 29552, 29553, 29550, 29541, 29534, 29554, 29547, 29544, + 29539, 29540, 29548, 29549, 29533, 29557, 35536, 35536, 7299, 7263, 7388, + 7302, 7547, 7566, 7565, 7495, 7283, 7469, 7534, 7501, 7287, 7500, 7499, + 7436, 7430, 7454, 7517, 7455, 7518, 7531, 7488, 7387, 7504, 7286, 7285, + 7545, 7414, 7415, 7416, 7279, 7558, 7368, 7560, 7151, 7562, 7481, 7559, + 7561, 7483, 7530, 7314, 7301, 7262, 7269, 35536, 35536, 7460, 7520, 7487, + 7385, 7533, 7538, 7272, 7273, 7311, 7447, 7552, 7289, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 2762, 2761, 2763, + 2760, 2764, 2671, 2672, 2688, 2689, 2692, 2693, 2710, 2711, 2701, 2702, + 2685, 2675, 2690, 2691, 2696, 2698, 2686, 2687, 2705, 2678, 2679, 2694, + 2695, 2706, 2717, 2716, 2682, 2681, 2704, 2715, 2718, 2680, 2683, 2703, + 2707, 2708, 2676, 2677, 2723, 2725, 2709, 2700, 2724, 2713, 2714, 2712, + 2722, 2765, 2776, 2779, 2780, 2770, 2771, 2768, 2769, 2766, 2767, 2772, + 2773, 2775, 2774, 2777, 2778, 2781, 2697, 2699, 2719, 2684, 2720, 2721, + 2673, 2674, 35536, 2670, 2669, 2789, 2791, 2788, 2787, 2784, 2783, 2786, + 2785, 2792, 2790, 2757, 2754, 2782, 2667, 2668, 2666, 2756, 2743, 2741, + 2744, 2735, 2736, 2742, 2738, 2740, 2739, 2737, 2733, 2732, 2728, 2726, + 2730, 2729, 2727, 2731, 2734, 2753, 2752, 2751, 2750, 2745, 2747, 2748, + 2749, 2746, 2758, 2755, 2759, 28982, 28980, 28981, 28933, 28968, 28970, + 28935, 28969, 28945, 28946, 28953, 28961, 28956, 28947, 28954, 28958, + 28967, 28948, 28962, 28955, 28949, 28960, 28938, 28963, 28951, 28959, + 28966, 28942, 28940, 28964, 28944, 28965, 28957, 28928, 28929, 28930, + 28988, 28987, 28989, 28986, 28984, 28985, 28979, 28983, 28931, 28932, + 28952, 28943, 28996, 28998, 28995, 28994, 28991, 28990, 28993, 28992, + 28999, 28997, 28927, 28941, 28939, 28950, 28936, 28937, 3557, 3543, 3551, + 3535, 3523, 3547, 3546, 3532, 3538, 3531, 3524, 3555, 3541, 3533, 3550, + 3534, 3552, 3549, 3554, 3539, 3522, 3537, 3544, 3527, 3545, 3540, 3525, + 3556, 3542, 3529, 3553, 3536, 3530, 3548, 3528, 3526, 3558, 3559, 3566, + 3572, 3569, 3573, 3574, 3570, 3575, 3571, 3567, 3568, 3520, 3521, 3560, + 3561, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 3565, 3563, + 3564, 3562, 18996, 18995, 18994, 19008, 19007, 19013, 19023, 19022, + 19026, 19014, 19021, 19020, 19002, 19015, 18999, 18998, 18997, 19006, + 19005, 19004, 19003, 19012, 19011, 19017, 19016, 19001, 19031, 19028, + 19027, 19010, 19009, 19029, 19025, 19024, 19030, 19032, 19041, 19040, + 19046, 19048, 19044, 19045, 19042, 19043, 19047, 18985, 18990, 18989, + 18987, 18991, 18992, 18993, 18988, 18986, 19039, 19038, 35536, 35536, + 35536, 19033, 19036, 19037, 19035, 19034, 19055, 19057, 19054, 19053, + 19050, 19049, 19052, 19051, 19058, 19056, 35536, 35536, 35536, 19019, + 19018, 19000, 24327, 24329, 24326, 24325, 24322, 24321, 24324, 24323, + 24330, 24328, 24300, 24291, 24289, 24288, 24290, 24301, 24285, 24284, + 24286, 24287, 24303, 24299, 24297, 24296, 24298, 24305, 24311, 24312, + 24310, 24313, 24302, 24295, 24292, 24294, 24293, 24304, 24306, 24307, + 24309, 24308, 24315, 24316, 24314, 24320, 24319, 24331, 24318, 24317, + 9548, 9525, 9531, 9588, 9569, 9577, 9567, 9568, 9587, 9253, 9579, 35536, + 35536, 35536, 35536, 35536, 13004, 13035, 13012, 13041, 13010, 13040, + 13033, 13030, 13042, 13022, 13024, 13036, 13038, 13043, 13026, 13032, + 13034, 13028, 13031, 13044, 13025, 13021, 13011, 13039, 13027, 13005, + 13008, 13020, 13007, 13006, 13037, 13019, 13015, 13018, 13016, 13046, + 13013, 13017, 13047, 13045, 13009, 13029, 13003, 35536, 35536, 13002, + 13014, 13023, 28978, 28976, 28977, 28975, 28974, 28973, 28972, 28971, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 33381, 33394, + 33383, 33361, 33375, 33389, 33390, 33391, 33376, 33392, 33379, 33387, + 33382, 33380, 33388, 33386, 33385, 33393, 33374, 33372, 33363, 33370, + 33362, 33373, 33371, 33352, 33353, 33355, 33356, 33368, 33366, 33367, + 33365, 33354, 33358, 33364, 33377, 33360, 33369, 33357, 33384, 33378, + 33359, 35536, 35536, 35536, 35536, 35536, 17959, 17960, 18567, 17956, + 17961, 17962, 17933, 17932, 18552, 18545, 17965, 17966, 17939, 17967, + 17945, 17940, 17941, 18502, 18503, 18504, 18547, 17943, 18539, 18058, + 17969, 17946, 17954, 17949, 17972, 18507, 18506, 18505, 17973, 17974, + 17976, 17934, 17986, 17920, 13548, 13551, 13547, 13550, 13546, 9418, + 22400, 22401, 22391, 22392, 22403, 22404, 22394, 22406, 22396, 22407, + 22408, 22409, 22410, 22411, 22412, 22395, 22398, 22399, 22413, 22393, + 22416, 22417, 22419, 22550, 22657, 22551, 22659, 22554, 22579, 22593, + 22647, 22632, 22662, 22600, 22670, 22681, 22610, 22597, 22630, 22633, + 22654, 22556, 22634, 22649, 22674, 22648, 22660, 22678, 22552, 22558, + 22601, 22584, 22602, 22578, 18708, 18716, 18718, 18719, 13757, 13753, + 13756, 13755, 13754, 18628, 18044, 18093, 18179, 18322, 18342, 18419, + 18447, 18440, 18486, 18522, 18690, 18574, 22468, 18250, 18532, 17988, + 18257, 18415, 17989, 18627, 18045, 18097, 18180, 18193, 18276, 18303, + 18323, 18348, 18420, 18450, 18487, 18166, 18635, 18662, 18691, 18007, + 18033, 18096, 18156, 18408, 18457, 18495, 18247, 18404, 18168, 18614, + 18174, 22658, 22559, 22577, 22595, 22641, 22598, 22585, 22646, 22669, + 22612, 22613, 22560, 22562, 22615, 22619, 22621, 22565, 22611, 22661, + 22629, 22628, 22571, 22555, 22635, 22645, 22594, 22650, 22676, 22677, + 22573, 22680, 22671, 22590, 22592, 22591, 22596, 22673, 7271, 7270, 7536, + 7535, 7482, 7370, 7484, 7153, 7369, 7152, 7428, 7165, 7485, 7280, 7497, + 7525, 7389, 7553, 7554, 7411, 7402, 7403, 7404, 7406, 7413, 7409, 7438, + 7394, 7440, 7417, 7395, 7396, 7442, 7397, 7398, 7427, 7431, 7419, 7446, + 7401, 7433, 7434, 7432, 7410, 7418, 7422, 7443, 7408, 7425, 7435, 7400, + 7421, 7424, 7550, 7393, 7392, 7265, 7563, 7268, 7259, 7278, 7162, 7451, + 7508, 17441, 18005, 17477, 18047, 17476, 18046, 17475, 18043, 17484, + 18062, 17509, 18099, 17508, 18098, 17507, 18094, 17503, 18088, 17504, + 18089, 17537, 18142, 17538, 18143, 17526, 18130, 17535, 18140, 17517, + 18121, 17562, 18182, 17570, 18192, 17589, 18212, 17588, 18211, 17586, + 18209, 17583, 18206, 17582, 18205, 17606, 18239, 17600, 18227, 17637, + 18274, 17634, 18271, 17638, 18275, 17645, 18288, 17646, 18289, 17656, + 18298, 17652, 18285, 17662, 18320, 17664, 18325, 17663, 18324, 17682, + 18347, 17681, 18346, 17676, 18339, 17672, 18334, 17713, 18383, 17712, + 18382, 17690, 18375, 17691, 18376, 17741, 18418, 17743, 18422, 17753, + 18437, 17751, 18435, 17752, 18436, 17758, 18442, 17779, 18480, 17777, + 18478, 17776, 18471, 17771, 18473, 17778, 18479, 17800, 18520, 17799, + 18519, 17801, 18523, 17795, 18513, 17831, 18595, 17852, 18618, 17824, + 18588, 17851, 18617, 17843, 18607, 17864, 18638, 17863, 18634, 17877, + 18651, 17878, 18652, 17874, 18648, 17876, 18650, 17875, 18649, 17883, + 18657, 17882, 18656, 17888, 18667, 17899, 18681, 17903, 18685, 17905, + 18687, 18213, 18518, 18653, 18677, 18006, 18313, 18312, 18314, 17789, + 18103, 17435, 17999, 17451, 18017, 17447, 18013, 17446, 18012, 17445, + 18011, 17449, 18015, 17448, 18014, 17430, 17994, 17429, 17993, 17428, + 17992, 17432, 17996, 17431, 17995, 17531, 18135, 17542, 18148, 17534, + 18139, 17522, 18126, 17521, 18125, 17520, 18124, 17525, 18129, 17524, + 18128, 17607, 18240, 17597, 18231, 17704, 18368, 17724, 18394, 17696, + 18360, 17695, 18359, 17694, 18358, 17698, 18362, 17697, 18361, 17721, + 18391, 17720, 18390, 17719, 18389, 17723, 18393, 17722, 18392, 17834, + 18598, 17841, 18605, 17838, 18602, 17837, 18601, 17836, 18600, 17840, + 18604, 17839, 18603, 17889, 18668, 17887, 18666, 17891, 18670, 17895, + 18676, 17667, 18328, 17668, 18329, 17892, 18671, 13595, 13587, 13600, + 13592, 13596, 13588, 13598, 13590, 13361, 13353, 13364, 13356, 13362, + 13354, 13366, 13358, 13618, 13615, 13620, 13617, 13619, 13616, 35536, + 35536, 13401, 13398, 13403, 13400, 13402, 13399, 35536, 35536, 13633, + 13625, 13638, 13630, 13634, 13626, 13636, 13628, 13385, 13377, 13388, + 13380, 13386, 13378, 13390, 13382, 13659, 13650, 13662, 13653, 13661, + 13652, 13660, 13651, 13413, 13408, 13416, 13411, 13415, 13410, 13414, + 13409, 13720, 13717, 13722, 13719, 13721, 13718, 35536, 35536, 13447, + 13444, 13449, 13446, 13448, 13445, 35536, 35536, 13679, 13670, 13682, + 13673, 13681, 13672, 13680, 13671, 35536, 13459, 35536, 13462, 35536, + 13461, 35536, 13460, 13700, 13692, 13705, 13697, 13701, 13693, 13703, + 13695, 13431, 13423, 13434, 13426, 13432, 13424, 13436, 13428, 13585, + 13605, 13622, 13621, 13645, 13643, 13665, 13666, 13724, 13723, 13685, + 13686, 13712, 13710, 35536, 35536, 13602, 13594, 13601, 13593, 13597, + 13589, 13599, 13591, 13368, 13360, 13365, 13357, 13363, 13355, 13367, + 13359, 13640, 13632, 13639, 13631, 13635, 13627, 13637, 13629, 13392, + 13384, 13389, 13381, 13387, 13379, 13391, 13383, 13707, 13699, 13706, + 13698, 13702, 13694, 13704, 13696, 13438, 13430, 13435, 13427, 13433, + 13425, 13437, 13429, 13584, 13609, 13586, 13607, 13606, 35536, 13603, + 13604, 13370, 13374, 13371, 13372, 13369, 13544, 13572, 13573, 13577, + 13493, 13646, 13647, 13644, 35536, 13641, 13642, 13405, 13404, 13395, + 13394, 13393, 13576, 13575, 13574, 13664, 13668, 13657, 13656, 35536, + 35536, 13663, 13655, 13417, 13421, 13418, 13419, 35536, 13501, 13500, + 13499, 13684, 13688, 13677, 13676, 13732, 13731, 13683, 13675, 13464, + 13468, 13465, 13466, 13454, 13495, 13494, 13771, 35536, 35536, 13713, + 13714, 13711, 35536, 13708, 13709, 13451, 13450, 13441, 13440, 13439, + 13569, 13498, 35536, 11889, 11886, 11891, 11888, 31540, 12641, 28108, + 12566, 26028, 31513, 14126, 35342, 35341, 35343, 18877, 26357, 15608, + 24061, 12565, 11890, 11887, 15552, 10369, 10343, 18800, 26287, 27983, + 27981, 18753, 26252, 10342, 10337, 9647, 10336, 5097, 32125, 24830, + 32272, 15575, 15611, 19185, 25369, 18876, 26356, 25902, 18875, 26355, + 23662, 25605, 25606, 25988, 10351, 32139, 26195, 26189, 26203, 6109, + 27982, 27984, 26212, 10373, 15950, 25183, 32323, 6395, 6110, 2572, 15610, + 12645, 18808, 26298, 10374, 26052, 12480, 31914, 26194, 3956, 3998, + 19854, 26200, 7136, 32284, 7569, 29091, 15968, 12605, 31520, 26048, + 12634, 12591, 32273, 12635, 10315, 32150, 33402, 21670, 33948, 12768, + 15970, 15972, 15971, 35536, 18874, 26354, 12584, 25901, 15864, 7, 15863, + 6, 23657, 24059, 29062, 29050, 35536, 35536, 29057, 29056, 29059, 29058, + 29049, 29063, 29053, 29055, 29048, 29052, 29054, 29051, 28892, 28894, + 28891, 28890, 28887, 28886, 28889, 28888, 28882, 28893, 28883, 28885, + 28881, 28880, 28884, 35536, 18705, 18706, 18714, 18720, 18704, 18707, + 18710, 18711, 18712, 18713, 18715, 18703, 18717, 35536, 35536, 35536, + 12476, 7149, 7815, 12652, 19793, 22285, 23590, 25629, 26677, 33952, + 23793, 10309, 12477, 17238, 32160, 10491, 13049, 25630, 13821, 2585, + 15616, 6228, 19794, 28444, 31285, 15854, 32242, 24111, 20359, 26546, + 17422, 3862, 28424, 26838, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 7458, 7516, 7473, + 7529, 7158, 7174, 7453, 7513, 7522, 7173, 7157, 7539, 7313, 7303, 7306, + 7309, 7304, 7462, 7305, 7307, 7308, 7505, 7294, 7159, 7546, 7564, 7464, + 7470, 7521, 7463, 7452, 7512, 7161, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 0, + 100, 10385, 9671, 6232, 6111, 5362, 12479, 26866, 9673, 26863, 26855, + 4046, 10386, 25791, 25792, 26856, 4047, 26857, 26864, 20031, 10387, + 24155, 28340, 26859, 10383, 10388, 26860, 4048, 10389, 25964, 26173, + 26969, 31179, 32110, 33395, 10390, 25177, 25187, 15967, 4049, 32265, + 16764, 963, 26852, 4045, 11946, 26862, 26853, 26854, 32249, 26858, 26865, + 348, 3753, 13052, 9660, 15861, 26534, 12545, 10397, 10396, 10382, 10384, + 10398, 32258, 32259, 26199, 32260, 10395, 10391, 10392, 10393, 10394, + 25992, 32244, 25607, 2643, 32262, 29170, 33546, 33544, 33548, 33549, + 33554, 33542, 33553, 33552, 33540, 33547, 33539, 33541, 33550, 33538, + 33555, 12646, 26502, 26513, 26514, 26501, 26498, 26507, 26509, 26517, + 26518, 26510, 26516, 26512, 26495, 26503, 26499, 26505, 28170, 28174, + 28175, 28169, 28166, 28178, 28177, 28165, 28179, 28176, 28164, 28173, + 28168, 28171, 28167, 28172, 26506, 26500, 26511, 26515, 18463, 26508, + 26497, 26496, 26504, 33556, 32253, 32252, 35536, 35536, 35536, 35536, + 18878, 32474, 26359, 10427, 18782, 32345, 24092, 24065, 28312, 28327, + 18898, 26383, 18962, 26460, 18959, 32524, 26459, 10463, 18901, 26386, + 18909, 32487, 26366, 10441, 32346, 18907, 26392, 18892, 26378, 18790, + 18785, 10467, 32484, 32485, 10436, 10437, 26374, 10428, 974, 7120, 24094, + 18889, 979, 7122, 18928, 18922, 32501, 32498, 26419, 26413, 10478, 10475, + 26394, 32476, 18912, 18974, 32527, 26426, 10486, 18929, 26420, 18965, + 18789, 26402, 18963, 32491, 26400, 10468, 18787, 32348, 24105, 24078, + 28324, 28337, 18949, 26450, 18978, 26430, 32477, 10429, 18969, 32492, + 26406, 10469, 18888, 26373, 18960, 32528, 26461, 10465, 32533, 32529, + 32531, 32530, 32535, 32536, 26462, 24093, 28315, 32350, 26239, 10439, + 31528, 18908, 26393, 18784, 18894, 26376, 18783, 18973, 26425, 18792, + 12630, 7574, 25515, 31507, 31506, 11879, 15782, 23546, 11828, 24114, + 28150, 7582, 10135, 28143, 11893, 23505, 23493, 23497, 22289, 22296, + 10310, 10117, 26974, 2571, 26471, 5098, 28671, 7821, 12640, 25991, 15855, + 26229, 959, 21544, 28447, 10121, 10136, 25374, 24119, 19808, 19815, + 15943, 32325, 15928, 10340, 32149, 7588, 29084, 33534, 7123, 7114, 976, + 31508, 3754, 26083, 25990, 10311, 12482, 12874, 15596, 31818, 26201, + 15964, 28103, 33956, 24124, 22295, 2578, 24115, 1058, 1061, 23749, 364, + 24116, 366, 32140, 361, 11932, 12872, 10127, 1062, 12873, 1059, 15745, + 7148, 11930, 26469, 26470, 7767, 11947, 11933, 28836, 9676, 11915, 21555, + 26054, 24126, 15621, 24127, 28873, 19078, 13285, 19080, 13288, 19069, + 13278, 23242, 23241, 3752, 24125, 24129, 24128, 23754, 23751, 19077, + 13284, 23753, 23750, 19079, 13286, 23755, 23752, 25965, 28910, 25974, + 28919, 25973, 28918, 10138, 10141, 28898, 29070, 24112, 24113, 28904, + 29076, 23747, 23748, 28903, 29075, 22995, 22996, 22997, 28544, 28633, + 28546, 28635, 28479, 28486, 6909, 6855, 6914, 6647, 6660, 6910, 6636, + 6919, 6661, 28804, 28797, 28818, 28752, 26316, 18826, 10404, 32354, 2579, + 22304, 32157, 12631, 32143, 10367, 10140, 24123, 10143, 23746, 25975, + 28920, 24109, 7583, 24110, 7584, 24862, 15744, 22998, 15367, 15951, + 33977, 23591, 24064, 26235, 26312, 23502, 23503, 23504, 23498, 9955, + 10312, 28838, 10119, 4474, 18840, 26274, 18798, 26285, 26202, 9064, 9063, + 10361, 10360, 10339, 10364, 25785, 11916, 19083, 13294, 33445, 33444, + 19067, 13289, 11914, 11913, 11911, 11912, 10139, 10142, 24120, 24121, + 28545, 28634, 19068, 13277, 25972, 28917, 24117, 10133, 24118, 10134, + 33401, 22281, 32353, 10407, 11829, 11831, 28151, 11834, 11833, 28152, + 11832, 11830, 7585, 7586, 28144, 7587, 28145, 35254, 9956, 11826, 15590, + 32337, 10408, 25989, 25624, 33720, 18749, 26247, 18837, 26256, 4457, + 4454, 32058, 32054, 26192, 28577, 2567, 26876, 26872, 31177, 25910, + 33458, 25788, 32256, 33711, 15588, 32053, 32057, 4453, 4456, 32047, 4451, + 12656, 28210, 32338, 24852, 11943, 33961, 16766, 18847, 26337, 11942, + 3700, 9642, 362, 29180, 32074, 10128, 7593, 28135, 7769, 7770, 1004, 1042, 1028, 1016, 1017, 1033, 1014, 984, 989, 1039, 1044, 1030, 1029, 1024, 1031, 1012, 1036, 1025, 1032, 987, 996, 995, 1018, 1021, 997, 1050, 1023, 1047, 993, 1022, 1020, 1048, 1000, 1019, 1035, 994, 1001, 1010, 988, 1049, 1034, 985, 1015, 1046, 991, 1040, 1009, 986, 998, 1011, 1052, 1051, 990, 992, 1053, 1041, 1038, 1027, 1026, 999, 1045, 1002, 1037, - 1007, 1006, 1043, 1003, 1008, 1005, 29610, 32110, 33041, 3595, 39293, - 20936, 8605, 11056, 16894, 8587, 39741, 16916, 367, 20087, 6691, 6913, - 5038, 38200, 28358, 20623, 30724, 30725, 31405, 31406, 11051, 34104, - 1013, 10681, 31852, 29458, 31854, 8157, 24323, 24324, 24322, 32157, - 32158, 32156, 24285, 24292, 24284, 32171, 32178, 32170, 24227, 24225, - 24226, 10080, 32121, 32119, 32120, 20947, 20565, 38282, 38321, 34799, - 34797, 37937, 4460, 4461, 31939, 24326, 32194, 20574, 20575, 20576, - 20577, 10703, 10701, 10705, 10694, 10698, 10706, 10695, 10699, 10704, - 10693, 10697, 10692, 10696, 10702, 10700, 34388, 32050, 17518, 39288, - 27597, 27589, 27596, 27590, 27594, 27595, 27593, 27592, 27591, 11672, - 17781, 37925, 4464, 37907, 4463, 37938, 4467, 39750, 3701, 34740, 17605, - 8, 16836, 10682, 3987, 3949, 4030, 3926, 3988, 3950, 3990, 230, 34738, - 37702, 20598, 3966, 3969, 3971, 3963, 11379, 4009, 3871, 31800, 31797, - 31798, 31799, 30113, 35041, 35049, 35050, 35030, 35028, 35031, 35042, - 35013, 35014, 35035, 35037, 35036, 35034, 35015, 35047, 35048, 35017, - 35026, 35025, 35024, 35023, 35039, 35053, 35029, 35016, 35027, 35051, - 35032, 35033, 35044, 35043, 35045, 35054, 35018, 4053, 30711, 35040, - 35021, 35052, 35020, 35019, 35022, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 30125, 30120, 30123, - 30124, 30117, 30118, 30116, 30115, 30122, 30119, 30121, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 6657, - 6654, 6653, 6650, 6649, 6652, 6651, 6658, 6656, 6878, 6858, 6903, 6891, - 6873, 6861, 6877, 6875, 6857, 6904, 6892, 31337, 31335, 31334, 31331, - 31330, 31333, 31332, 31338, 31336, 31329, 31320, 31328, 31326, 31321, - 31322, 31324, 31325, 31319, 31323, 31327, 10991, 11003, 11000, 10985, - 10982, 10997, 10994, 11009, 10988, 29631, 29624, 29632, 29630, 29625, - 29626, 29627, 29629, 29623, 29634, 29633, 31365, 31366, 31367, 31368, - 31369, 31370, 31371, 31372, 31373, 31374, 31375, 31376, 31377, 31378, - 31379, 31380, 31381, 31382, 31383, 31384, 31385, 31386, 31387, 31388, - 31389, 31390, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, 6810, - 6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, 6822, - 6823, 6824, 6825, 6826, 6827, 6828, 6829, 6830, 6831, 6832, 6833, 6834, - 6835, 6836, 6837, 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, 6846, - 6847, 6848, 6849, 6850, 6851, 6852, 6655, 29151, 29149, 29147, 29152, - 29153, 29155, 29156, 29150, 29154, 29148, 11345, 11343, 11342, 11339, - 11338, 11341, 11340, 11346, 11344, 11337, 29146, 4586, 4532, 4602, 4518, - 4595, 4531, 4594, 4530, 4593, 4529, 4592, 4528, 4583, 4502, 4496, 4525, - 4582, 4500, 4494, 4524, 4601, 4630, 4624, 4517, 4600, 4628, 4622, 4515, - 4609, 4646, 4623, 4495, 4643, 4501, 4629, 4521, 4608, 4645, 4621, 4493, - 4642, 4499, 4627, 4520, 4581, 4536, 4614, 4504, 4498, 4617, 4539, 4523, - 4599, 4535, 4613, 4631, 4625, 4616, 4538, 4516, 4607, 4537, 4615, 4644, - 4620, 4497, 4641, 4541, 4619, 4534, 4612, 4503, 4626, 4618, 4540, 4519, - 4585, 4527, 4584, 4526, 4492, 4488, 4509, 4506, 4484, 4508, 4505, 4483, - 4636, 4633, 4487, 4635, 4632, 4486, 4648, 4639, 4491, 4647, 4638, 4490, - 4510, 4507, 4482, 4637, 4634, 4485, 4649, 4640, 4489, 4543, 4542, 4544, - 4545, 4574, 4568, 4578, 4590, 4597, 4611, 4580, 4511, 4513, 4533, 4522, - 4591, 4598, 4512, 4514, 38259, 25435, 25434, 25437, 25345, 25427, 25440, - 25436, 17672, 24279, 24302, 24315, 24243, 24303, 24258, 24259, 32136, - 24579, 27151, 10668, 38307, 32153, 31921, 31922, 31913, 31914, 31915, - 31916, 31917, 31918, 31919, 31920, 4007, 39728, 39737, 39731, 34566, - 34575, 34565, 34572, 34574, 34564, 4004, 39725, 4000, 39713, 4037, 39760, - 3981, 39709, 4032, 39757, 4031, 39756, 3989, 39717, 3994, 39716, 3993, - 39715, 3928, 39672, 3927, 39671, 3954, 39698, 3953, 39697, 3952, 39696, - 3918, 39661, 39662, 17597, 25442, 39647, 11328, 6630, 5101, 3867, 6622, - 6631, 6623, 6628, 6627, 6629, 24241, 32134, 20964, 20968, 38263, 25339, - 38287, 38323, 25389, 25369, 38268, 25346, 3961, 3960, 4033, 4034, 39611, - 34569, 34576, 34571, 34568, 39740, 39758, 38245, 38246, 22899, 39738, - 39734, 39735, 39739, 39654, 39652, 39653, 39655, 38285, 38340, 25380, - 39705, 3976, 39704, 3975, 25403, 4011, 8151, 38194, 34094, 8590, 4020, - 39747, 24589, 37421, 34800, 2568, 10711, 8608, 30732, 4026, 39749, 2795, - 2801, 2802, 32560, 38196, 20593, 39722, 4018, 33013, 32073, 3959, 3986, - 39695, 39754, 39719, 39670, 33990, 6225, 31937, 3864, 5361, 983, 30834, - 6585, 8816, 8815, 34715, 17564, 102, 19262, 31471, 41128, 38004, 38005, - 38010, 38007, 38009, 38008, 38006, 38003, 39607, 39682, 39726, 4006, - 39745, 17590, 22903, 27586, 17570, 11668, 25747, 21093, 32630, 38413, - 29460, 31766, 2566, 37042, 17864, 6099, 24463, 39336, 25277, 32724, - 32558, 6105, 2646, 31659, 39619, 39635, 39638, 39613, 39622, 39632, 3889, - 3905, 3908, 3883, 3892, 3902, 4019, 39685, 39666, 3917, 39727, 3938, - 3923, 39656, 20594, 31926, 16791, 3581, 3582, 28483, 28481, 28482, 39605, - 11673, 38210, 31967, 31968, 31969, 31970, 31971, 31972, 31973, 31974, - 4036, 31966, 31396, 31503, 39608, 10973, 10974, 10975, 10976, 10977, - 10978, 39649, 39651, 3868, 3870, 28355, 28356, 11013, 11016, 11015, - 11014, 39676, 3934, 19263, 981, 8824, 34709, 32719, 347, 17613, 17860, - 34710, 2581, 17610, 31040, 37398, 37397, 39581, 20444, 11414, 11415, - 20951, 25746, 25745, 25744, 39294, 20585, 27162, 27138, 27155, 25913, - 11136, 38212, 8807, 17778, 29270, 6235, 31205, 21094, 39323, 6588, 3977, - 32852, 32764, 31932, 32847, 34099, 3518, 34642, 39673, 39674, 3931, 3932, - 34095, 34802, 31942, 4013, 37420, 38124, 38123, 39667, 8825, 11055, - 30731, 31644, 6167, 20086, 6643, 6236, 29532, 368, 4027, 39752, 3957, - 39693, 11514, 19943, 24230, 34685, 17558, 4024, 32046, 32047, 2575, - 19869, 31478, 32212, 24353, 20974, 3880, 33018, 6620, 6227, 20549, 17861, - 17862, 25842, 28374, 38195, 17651, 17607, 17572, 32715, 34387, 33988, - 20629, 31490, 37162, 20991, 19845, 17780, 10073, 39677, 4014, 38252, - 4017, 25421, 39720, 39686, 37054, 37041, 226, 16913, 31955, 31947, 39327, - 39835, 25420, 31480, 38322, 39708, 3979, 6401, 19867, 28474, 19903, 2805, - 19859, 31042, 19950, 30715, 19905, 23392, 32857, 31039, 25748, 34713, - 17647, 17645, 19888, 17641, 3935, 39681, 34308, 34743, 6916, 30713, 3881, - 31041, 19907, 31656, 32856, 19858, 30714, 16790, 16785, 16783, 33982, - 16784, 19881, 38144, 33985, 37047, 30712, 19933, 33980, 3933, 39678, - 16786, 6905, 19932, 34097, 37692, 19866, 34307, 19926, 2794, 16789, - 19883, 8821, 32855, 29218, 25419, 38319, 25401, 38337, 4044, 39712, - 39675, 3920, 19885, 24586, 27159, 19949, 19916, 19917, 19877, 19878, - 19900, 19899, 10085, 19886, 19892, 19862, 32407, 17612, 32406, 27145, - 27148, 27139, 27140, 27146, 27149, 19896, 19909, 19895, 19908, 24578, - 24576, 27144, 27147, 11038, 11036, 11035, 11032, 11031, 11034, 11033, - 11039, 11037, 11030, 11049, 11046, 11045, 11042, 11041, 11044, 11043, - 11050, 11048, 11040, 11028, 11025, 11024, 11021, 11020, 11023, 11022, - 11029, 11027, 11019, 19945, 19948, 19904, 19874, 19922, 19910, 19929, - 11506, 19913, 37998, 19935, 10671, 19873, 3995, 37412, 37415, 3996, - 19860, 19861, 34703, 19872, 32228, 24343, 2658, 17663, 19901, 19940, - 29612, 10079, 29614, 6693, 39764, 4050, 4052, 4051, 19863, 19865, 19864, - 37048, 19934, 39601, 19946, 30726, 11347, 37395, 39751, 31484, 30722, - 30721, 24277, 32160, 30836, 32057, 34957, 39275, 26610, 25303, 26431, - 34670, 34671, 39665, 982, 16845, 25417, 38280, 24261, 32151, 17671, - 22891, 22890, 24208, 24207, 24257, 25325, 25308, 38231, 25443, 39657, - 39658, 39659, 39733, 39736, 26611, 26605, 26614, 26608, 26613, 26607, - 26612, 26606, 26615, 26609, 38381, 11496, 978, 8130, 32114, 25311, 25315, - 25305, 25309, 25320, 25307, 25312, 25319, 25310, 25321, 25324, 5027, - 4772, 4900, 4773, 4964, 4837, 4901, 4774, 4996, 4869, 4933, 4806, 4965, - 4838, 4902, 4775, 5012, 4885, 4949, 4822, 4981, 4854, 4918, 4791, 4997, - 4870, 4934, 4807, 4966, 4839, 4903, 4776, 5020, 4893, 4957, 4830, 4989, - 4862, 4926, 4799, 5005, 4878, 4942, 4815, 4974, 4847, 4911, 4784, 5013, - 4886, 4950, 4823, 4982, 4855, 4919, 4792, 4998, 4871, 4935, 4808, 4967, - 4840, 4904, 4777, 5024, 4897, 4961, 4834, 4993, 4866, 4930, 4803, 5009, - 4882, 4946, 4819, 4978, 4851, 4915, 4788, 5017, 4890, 4954, 4827, 4986, - 4859, 4923, 4796, 5002, 4875, 4939, 4812, 4971, 4844, 4908, 4781, 5021, - 4894, 4958, 4831, 4990, 4863, 4927, 4800, 5006, 4879, 4943, 4816, 4975, - 4848, 4912, 4785, 5014, 4887, 4951, 4824, 4983, 4856, 4920, 4793, 4999, - 4872, 4936, 4809, 4968, 4841, 4905, 4778, 5026, 4899, 4963, 4836, 4995, - 4868, 4932, 4805, 5011, 4884, 4948, 4821, 4980, 4853, 4917, 4790, 5019, - 4892, 4956, 4829, 4988, 4861, 4925, 4798, 5004, 4877, 4941, 4814, 4973, - 4846, 4910, 4783, 5023, 4896, 4960, 4833, 4992, 4865, 4929, 4802, 5008, - 4881, 4945, 4818, 4977, 4850, 4914, 4787, 5016, 4889, 4953, 4826, 4985, - 4858, 4922, 4795, 5001, 4874, 4938, 4811, 4970, 4843, 4907, 4780, 5025, - 4898, 4962, 4835, 4994, 4867, 4931, 4804, 5010, 4883, 4947, 4820, 4979, - 4852, 4916, 4789, 5018, 4891, 4955, 4828, 4987, 4860, 4924, 4797, 5003, - 4876, 4940, 4813, 4972, 4845, 4909, 4782, 5022, 4895, 4959, 4832, 4991, - 4864, 4928, 4801, 5007, 4880, 4944, 4817, 4976, 4849, 4913, 4786, 5015, - 4888, 4952, 4825, 4984, 4857, 4921, 4794, 5000, 4873, 4937, 4810, 4969, - 4842, 4906, 4779, 32332, 32331, 24444, 32277, 24268, 32333, 24446, 32279, - 11452, 38362, 38399, 11476, 24448, 32281, 24428, 32325, 32334, 32251, - 38364, 11456, 32264, 32263, 32327, 32329, 32328, 24393, 32271, 24447, - 32280, 24370, 32248, 24390, 32243, 29571, 29551, 29577, 29549, 34192, - 34205, 29576, 29548, 34189, 34204, 32351, 17556, 34190, 29546, 17557, - 32352, 29547, 29575, 39590, 2559, 2558, 2561, 2562, 32229, 24342, 37904, - 4462, 37906, 37905, 25399, 25363, 975, 8127, 32238, 24359, 33028, 32256, - 24375, 32247, 24266, 38402, 24220, 24219, 38219, 38218, 24221, 38220, - 24218, 38217, 24407, 32294, 38376, 11491, 24401, 32288, 38373, 11488, - 24406, 32293, 38375, 11490, 24400, 32287, 38372, 11487, 24403, 38371, - 32292, 11485, 24405, 24399, 32290, 32285, 24404, 24398, 32291, 32286, - 38370, 11486, 32126, 16930, 37696, 24363, 32240, 32239, 24544, 24366, - 18282, 34773, 24365, 34943, 24316, 32131, 38228, 11420, 38018, 41141, - 41142, 24308, 32197, 24310, 32199, 41136, 41132, 41137, 41133, 24289, - 32175, 24287, 32172, 24286, 32173, 24214, 32107, 24215, 32113, 11360, - 11385, 24223, 32117, 11335, 39308, 27033, 32112, 27034, 960, 5, 34324, - 34325, 38121, 32063, 961, 32064, 30111, 30110, 27032, 27031, 27026, - 27025, 27030, 27028, 27029, 27027, 32085, 16892, 16891, 16889, 16890, - 6632, 6920, 6907, 6911, 6908, 6633, 6625, 6634, 38216, 6915, 6638, 6853, - 6921, 6624, 6626, 34634, 34629, 34700, 34686, 34687, 38154, 37997, 37995, - 32555, 37994, 32189, 24294, 39272, 4475, 4476, 4043, 37703, 37704, 39690, - 3942, 24313, 32202, 24231, 32127, 20788, 37630, 20865, 11413, 34577, - 20790, 33048, 16931, 16932, 20631, 18166, 37386, 11433, 11434, 3921, - 3962, 39650, 3869, 16945, 16948, 16944, 16947, 16943, 16946, 32424, - 32058, 34151, 32059, 3857, 3856, 11367, 38014, 24330, 32215, 37705, - 27777, 28972, 28970, 28971, 28980, 28979, 28975, 28976, 38156, 38155, - 28974, 28180, 34798, 31923, 17583, 20946, 20938, 6925, 980, 24661, 24662, - 24663, 20939, 31925, 20943, 20940, 20944, 20942, 20945, 20941, 21091, - 22892, 41138, 41139, 41140, 31758, 31763, 31761, 31757, 31760, 31759, - 31762, 27770, 27771, 27773, 27772, 31754, 31755, 39325, 28473, 28472, - 32763, 34071, 28468, 28469, 6854, 28470, 6648, 31756, 27774, 28471, - 20961, 32234, 41134, 374, 20957, 38205, 38206, 20956, 20955, 38207, - 38203, 20954, 38202, 20953, 38204, 20958, 8143, 8149, 11368, 11369, 8144, - 25291, 25299, 11358, 11359, 38152, 38153, 34010, 34009, 25296, 25293, - 25301, 25292, 25300, 25290, 25294, 25289, 34061, 25298, 25297, 41135, - 41131, 16937, 20632, 38012, 38013, 37698, 37697, 33854, 8609, 16938, 365, - 1060, 16927, 31764, 16928, 11348, 38147, 37406, 16936, 16940, 24561, - 18301, 24562, 18302, 24553, 18288, 24556, 18291, 24554, 18289, 24555, - 18290, 24552, 18292, 24546, 18284, 24545, 18283, 24543, 18280, 24541, - 18278, 24540, 18277, 24539, 18281, 24542, 18279, 33995, 33993, 33996, - 33994, 11395, 11394, 11391, 11390, 33853, 33852, 33851, 33850, 11361, - 11363, 11362, 18296, 18285, 24550, 18299, 24551, 18300, 34069, 22900, - 34070, 22901, 16933, 31844, 34789, 31845, 34790, 31847, 34792, 31843, - 34788, 31846, 34791, 31842, 34787, 11364, 11373, 34784, 34956, 34783, - 34955, 34782, 34954, 34781, 34953, 34776, 34948, 34777, 34949, 34775, - 34947, 34778, 34950, 34455, 34542, 8138, 8140, 8139, 8141, 34771, 34942, - 34772, 34941, 34945, 34944, 16844, 31662, 37990, 17635, 29543, 33027, - 33033, 33030, 31485, 39274, 11382, 39273, 11380, 25302, 33034, 33032, - 33031, 11349, 11377, 11371, 32067, 11151, 39290, 39289, 11419, 31249, - 31248, 38017, 38020, 38011, 38024, 38023, 11393, 11392, 38021, 22889, - 11376, 39762, 28981, 29560, 29587, 34202, 34215, 24271, 24397, 38366, - 11458, 29557, 29584, 34199, 34212, 24273, 38223, 32260, 32261, 24379, - 24380, 34570, 34563, 34573, 34567, 10965, 10966, 10964, 10963, 11331, - 3948, 39691, 4041, 39763, 3982, 39710, 39688, 3939, 20560, 3943, 3965, - 39702, 3968, 39706, 4001, 4002, 39723, 3941, 39689, 4038, 39759, 24217, - 37399, 24216, 25313, 24436, 24435, 24437, 24438, 24373, 24383, 24382, - 24431, 24433, 24432, 24367, 39589, 16929, 32060, 24360, 32246, 32245, - 24462, 32341, 32061, 32236, 37695, 24362, 24361, 32237, 11472, 33025, - 33023, 39703, 4003, 39724, 3992, 39714, 19893, 19906, 19870, 19868, - 19871, 33997, 2656, 33998, 2655, 3698, 33024, 24413, 38385, 32310, 11461, - 24275, 38227, 29582, 29555, 34197, 34210, 24425, 38396, 32322, 11473, - 8135, 973, 24424, 38387, 32321, 11463, 41412, 41412, 29583, 29556, 34198, - 34211, 24415, 38395, 32312, 11471, 20581, 39303, 24414, 38386, 32311, - 11462, 24426, 38397, 32323, 11474, 24396, 38365, 32274, 11460, 970, 971, - 969, 972, 32051, 32052, 29455, 29456, 17642, 32275, 16935, 35055, 37410, - 37414, 37411, 37413, 3955, 4035, 3997, 3929, 11465, 11466, 38389, 38390, - 24418, 32315, 24417, 32314, 3872, 3873, 3874, 3875, 3876, 3878, 3877, - 3879, 32098, 32099, 32096, 32097, 32093, 32095, 32092, 32094, 38410, - 38215, 31057, 31056, 31058, 2800, 6923, 6637, 4008, 3919, 38122, 20559, - 4042, 3972, 3964, 3967, 3970, 29461, 37922, 4450, 24574, 32408, 39680, - 32409, 34527, 38198, 18828, 31770, 31769, 31768, 31767, 37989, 31869, - 2576, 20615, 31643, 29238, 39707, 3922, 38034, 10075, 19843, 41220, - 22725, 1055, 97, 39413, 31781, 24242, 32135, 34716, 34717, 24434, 38401, - 32330, 11478, 16950, 16949, 32853, 32550, 32548, 32549, 32547, 32551, - 32552, 16934, 38209, 32844, 11416, 31404, 32074, 20088, 18066, 18068, - 18102, 18076, 18072, 18103, 18110, 18073, 18109, 18082, 18078, 18077, - 18071, 18113, 18084, 18085, 18086, 18087, 18089, 18091, 18095, 18099, - 18112, 18074, 18111, 18088, 18090, 18092, 18101, 18070, 18094, 18105, - 18104, 18106, 18096, 18108, 18097, 18098, 18107, 18080, 18067, 18079, - 18075, 18081, 18093, 18100, 18083, 18069, 18114, 18116, 18150, 18124, - 18120, 18151, 18158, 18121, 18157, 18130, 18126, 18125, 18119, 18161, - 18132, 18133, 18134, 18135, 18137, 18139, 18143, 18147, 18160, 18122, - 18159, 18136, 18138, 18140, 18149, 18118, 18142, 18153, 18152, 18154, - 18144, 18156, 18145, 18146, 18155, 18128, 18115, 18127, 18123, 18129, - 18141, 18148, 18131, 18117, 23124, 23771, 23127, 23218, 23236, 23505, - 23997, 23067, 23690, 23113, 23750, 23382, 24164, 22945, 23146, 23286, - 23287, 24117, 23359, 24134, 24116, 23072, 23697, 24062, 23618, 24038, - 23852, 23430, 24189, 27898, 23262, 23386, 8617, 8711, 8667, 8761, 8631, - 8725, 8628, 8722, 8672, 8766, 8662, 8756, 8666, 8760, 8633, 8727, 8664, - 8758, 8670, 8764, 8636, 8730, 8641, 8735, 8673, 8767, 8674, 8768, 8637, - 8731, 8642, 8736, 8669, 8763, 8671, 8765, 8663, 8757, 8665, 8759, 8675, - 8769, 8639, 8733, 8635, 8729, 8668, 8762, 8658, 8752, 8625, 8719, 8653, - 8747, 8621, 8715, 8626, 8720, 8627, 8721, 8622, 8716, 8651, 8745, 8661, - 8755, 8623, 8717, 8649, 8743, 8652, 8746, 8616, 8710, 8624, 8718, 8644, - 8738, 8645, 8739, 8640, 8734, 8647, 8741, 8646, 8740, 8643, 8737, 8650, - 8744, 8648, 8742, 8656, 8750, 8654, 8748, 8655, 8749, 8657, 8751, 8771, - 8772, 8773, 8775, 8776, 8770, 8774, 8619, 8713, 8620, 8714, 8615, 8614, - 8613, 8618, 8712, 41412, 41412, 41412, 41412, 41412, 8709, 8706, 8707, - 8708, 8704, 8705, 8777, 17925, 17951, 17936, 17957, 17958, 17956, 17946, - 17947, 17959, 17940, 17949, 17952, 17954, 17960, 17942, 17945, 17950, - 17944, 17948, 17961, 17941, 17939, 17935, 17955, 17943, 17931, 17934, - 17938, 17933, 17932, 17953, 17937, 17926, 17930, 17928, 17963, 17927, - 17929, 41412, 17962, 41412, 41412, 41412, 41412, 41412, 17924, 41412, - 41412, 37645, 37665, 37666, 37646, 37648, 37635, 37674, 37661, 37664, - 37662, 37663, 37684, 37673, 37649, 37639, 37651, 37667, 37634, 37643, - 37668, 37672, 37650, 37640, 37679, 37644, 37685, 37659, 37633, 37641, - 37675, 37676, 37677, 37638, 37642, 37678, 37687, 37669, 37670, 37647, - 37637, 37632, 37652, 37654, 37653, 37655, 37656, 37671, 37657, 37680, - 37681, 37682, 37658, 37636, 37660, 37683, 37686, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 37688, 37689, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 37631, 17385, 17202, 17289, 17329, 17305, 16992, 17367, 17030, 17220, - 17211, 17112, 17445, 17060, 17045, 17376, 17336, 17021, 17236, 17249, - 17097, 17101, 17100, 17099, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 17319, 17325, 17323, 17320, 17322, 17321, 17324, - 41412, 17011, 17017, 17015, 17012, 17014, 17013, 17016, 41412, 17435, - 17441, 17439, 17436, 17438, 17437, 17440, 41412, 17004, 17010, 17008, - 17005, 17007, 17006, 17009, 41412, 17271, 17277, 17275, 17272, 17274, - 17273, 17276, 41412, 17180, 17186, 17184, 17181, 17183, 17182, 17185, - 41412, 17412, 17418, 17416, 17413, 17415, 17414, 17417, 41412, 17123, - 17129, 17127, 17124, 17126, 17125, 17128, 41412, 8197, 8235, 8232, 8199, - 8229, 8230, 8236, 8203, 8204, 8205, 8212, 8234, 8206, 8200, 8228, 8225, - 8227, 8231, 8215, 8214, 8233, 8201, 8237, 8211, 8198, 8224, 8220, 8222, - 8209, 8223, 8196, 8208, 32109, 32108, 24293, 32179, 24235, 32124, 31946, - 31945, 11334, 24296, 32187, 31954, 24276, 32159, 11675, 31247, 17634, - 32069, 20622, 11333, 11457, 38349, 11336, 11384, 20970, 31206, 20618, - 37701, 24256, 32149, 37700, 37699, 24325, 32193, 37931, 37935, 4455, - 4458, 24281, 32164, 24234, 32129, 38150, 30705, 34630, 17601, 32084, - 39306, 32344, 39823, 38126, 31944, 31956, 38137, 10662, 10663, 38127, - 37920, 38162, 37417, 34730, 39309, 39806, 6104, 11352, 32083, 11355, - 10669, 11372, 20971, 20972, 25335, 25336, 11370, 11330, 38022, 27135, - 31246, 31903, 8780, 8817, 8818, 37789, 27134, 27136, 24291, 32177, 24290, - 32176, 37912, 37916, 4441, 4445, 30112, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 8021, 7974, 8024, 8023, 8022, 8017, 7945, 8042, 8056, 8055, 7978, 8025, - 8038, 8037, 8007, 8006, 8005, 8004, 8034, 8043, 8033, 8032, 7993, 7992, - 7996, 8020, 41412, 7977, 8040, 8014, 7979, 8012, 7972, 8048, 8047, 7986, - 8016, 8015, 8026, 7976, 7980, 8001, 7943, 7985, 8036, 8035, 7948, 8031, - 7959, 8054, 8053, 8052, 8051, 8009, 8039, 8019, 7984, 8057, 7947, 7946, - 8008, 8013, 7990, 7989, 7988, 8044, 7975, 8050, 8049, 7963, 8027, 7995, - 7962, 7961, 7987, 7971, 8028, 8046, 8045, 7973, 7955, 8003, 8002, 7958, - 7956, 8011, 8010, 8018, 7949, 7965, 7957, 7967, 7953, 7983, 7982, 7981, - 7951, 7994, 7970, 7944, 7991, 7952, 7969, 7960, 8029, 8030, 7954, 8000, - 7950, 7998, 7966, 7999, 7968, 8041, 7997, 7964, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 21290, - 21272, 21206, 21326, 21314, 21258, 21358, 21273, 21286, 21269, 21221, - 21225, 21210, 21195, 21261, 21347, 21293, 21264, 21298, 21375, 21332, - 21303, 21255, 21360, 21204, 21315, 21191, 21295, 21166, 21284, 21220, - 21218, 21313, 21241, 21243, 21223, 21173, 21372, 21198, 21306, 21260, - 21342, 21265, 21193, 21331, 21282, 21304, 21373, 21291, 21356, 21216, - 21321, 21207, 21275, 21359, 21322, 21181, 21340, 21182, 21334, 21252, - 21249, 21212, 21250, 21183, 21301, 21312, 21205, 21168, 21343, 21288, - 21345, 21311, 21285, 21355, 21266, 21335, 21200, 21366, 21211, 21194, - 21240, 21189, 21333, 21365, 21232, 21190, 21227, 21209, 21248, 21327, - 21229, 21197, 21213, 21296, 21262, 21276, 21350, 21339, 21271, 21377, - 21230, 21177, 21323, 21208, 21368, 21344, 21203, 21226, 21328, 21164, - 21337, 21330, 21354, 21244, 21188, 21338, 21169, 21305, 21324, 21263, - 21289, 21319, 21238, 21294, 21167, 21297, 21217, 21184, 21277, 21278, - 21316, 21165, 21280, 21351, 21292, 21178, 21336, 21196, 21245, 21349, - 21259, 21174, 21364, 21192, 21367, 21317, 21257, 21329, 21361, 21185, - 21299, 21170, 21318, 21308, 21307, 21239, 21180, 21187, 21171, 21281, - 21363, 21199, 21371, 21202, 21362, 21242, 21274, 21247, 21283, 21325, - 21320, 21300, 21176, 21374, 21228, 21267, 21346, 21270, 21341, 21268, - 21370, 21235, 21219, 21253, 21236, 21256, 21179, 21348, 21251, 21231, - 21309, 21186, 21246, 21233, 21172, 21310, 21201, 21369, 21254, 21376, - 21279, 21175, 21224, 21237, 21353, 21215, 21302, 21287, 21222, 21352, - 21214, 21357, 21234, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 20655, - 20653, 20654, 20652, 20667, 20663, 20662, 20659, 20660, 20661, 20657, - 20656, 20664, 20658, 20668, 20666, 20752, 20651, 20750, 11140, 20990, - 20751, 20650, 20670, 24213, 32106, 24232, 32125, 24228, 32122, 24307, - 32196, 24222, 32116, 31783, 18059, 24304, 32191, 24309, 32198, 24312, - 32201, 24311, 32200, 39588, 32066, 11366, 25333, 31784, 19739, 19732, - 19729, 19735, 19734, 19737, 19736, 19740, 19738, 20748, 20747, 20669, - 20746, 19398, 19397, 39594, 39281, 39284, 39282, 39285, 39283, 6906, - 20744, 19733, 19731, 19730, 39280, 25992, 31401, 20749, 20745, 41412, - 20464, 20450, 20466, 20544, 20468, 20546, 20465, 20543, 20467, 20545, - 20505, 20495, 20507, 20497, 20509, 20499, 20506, 20496, 20508, 20498, - 20469, 20530, 20471, 20532, 20473, 20534, 20470, 20531, 20472, 20533, - 20525, 20490, 20527, 20492, 20463, 20529, 20494, 20526, 20491, 20528, - 20493, 20485, 20487, 20489, 20486, 20488, 20500, 20480, 20515, 20502, - 20474, 20517, 20504, 20483, 20519, 20501, 20481, 20516, 20503, 20482, - 20518, 20510, 20512, 20514, 20511, 20513, 20457, 20539, 20459, 20541, - 20458, 20540, 20520, 20522, 20524, 20521, 20523, 20453, 20535, 20537, - 20536, 20538, 20484, 20542, 20460, 20461, 41412, 41412, 8405, 8404, - 21616, 21615, 20548, 20547, 20449, 21613, 21543, 21472, 21545, 21606, - 21547, 21608, 21544, 21605, 21546, 21607, 21568, 21558, 21570, 21560, - 21572, 21562, 21569, 21559, 21571, 21561, 21548, 21593, 21550, 21595, - 21552, 21597, 21549, 21594, 21551, 21596, 21583, 21553, 21585, 21555, - 21530, 21587, 21557, 21584, 21554, 21586, 21556, 21510, 21512, 21514, - 21511, 21513, 21563, 21487, 21573, 21565, 21481, 21575, 21567, 21490, - 21577, 21564, 21488, 21574, 21566, 21489, 21576, 21505, 21491, 21508, - 21506, 21507, 21535, 21602, 21537, 21604, 21536, 21603, 21578, 21580, - 21582, 21579, 21581, 21531, 21598, 21600, 21599, 21601, 21509, 21592, - 21525, 21526, 21588, 21590, 21589, 21591, 21612, 21614, 21611, 21609, - 21610, 41412, 41412, 41412, 41412, 41412, 4422, 4430, 4429, 4427, 4426, - 4433, 4398, 4418, 4386, 4414, 4428, 4424, 4431, 4435, 4411, 4417, 4421, - 4432, 4410, 4416, 4420, 4366, 4402, 4378, 4383, 4367, 4384, 4369, 4409, - 4371, 4379, 4372, 4380, 4385, 4391, 4376, 4397, 4434, 4399, 4388, 4394, - 4405, 4401, 41412, 19651, 19695, 19652, 19657, 19658, 19660, 19687, - 19698, 19673, 19674, 19676, 19678, 19685, 19681, 19677, 19684, 19653, - 19663, 19697, 19664, 19688, 19700, 19645, 19640, 19694, 19639, 19650, - 19686, 19671, 19724, 19635, 19638, 19721, 19722, 19642, 19641, 19708, - 19707, 19725, 19704, 19705, 19726, 19713, 19727, 19703, 19702, 19706, - 19717, 19643, 19723, 19644, 19728, 19696, 19659, 19662, 19661, 19675, - 19682, 19679, 19680, 19683, 19654, 19656, 19655, 19649, 19670, 19668, - 19665, 19666, 19669, 19667, 19647, 19648, 19690, 19691, 19693, 19692, - 19689, 19672, 19701, 19710, 19712, 19711, 19646, 19699, 19709, 19714, - 19715, 19716, 19719, 19718, 19720, 19636, 19637, 41412, 20644, 20647, - 20646, 20642, 20640, 20636, 20643, 20638, 20634, 20637, 20645, 20641, - 20635, 20648, 20649, 20639, 4423, 4412, 4425, 4389, 4382, 4381, 4408, - 4404, 4396, 4373, 4392, 4377, 4395, 4400, 4368, 4370, 4375, 4407, 4403, - 4393, 4364, 4365, 4363, 4362, 4387, 4419, 4413, 4361, 4390, 4415, 4406, - 4374, 8088, 8091, 8092, 8090, 8078, 8064, 8070, 8059, 8069, 8082, 8071, - 8067, 8060, 8068, 8065, 8094, 8058, 8077, 8073, 8086, 8093, 8063, 8072, - 8081, 8080, 8087, 8085, 8074, 8076, 8089, 8084, 8079, 8061, 8066, 8075, - 8095, 8062, 8083, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 20665, 21528, 21540, 21541, 21529, 21539, 21515, 21517, 21519, - 21516, 21518, 21542, 21520, 21522, 21524, 21521, 21523, 31261, 31265, - 31277, 31271, 31263, 31269, 31273, 31279, 31254, 31252, 31259, 31275, - 31267, 31257, 31262, 31266, 31278, 31272, 31264, 31270, 31274, 31280, - 31255, 31253, 31260, 31276, 31268, 31258, 31256, 31318, 31317, 41412, - 31316, 31312, 31310, 31291, 31289, 31309, 31301, 31286, 31295, 31311, - 31294, 31288, 31314, 31313, 31293, 31285, 31308, 31306, 31315, 31303, - 31296, 31304, 31287, 31282, 31292, 31299, 31283, 31305, 31307, 31284, - 31297, 31281, 31290, 31298, 31302, 31300, 6725, 6713, 6735, 6714, 6879, - 6893, 6881, 6863, 6860, 6876, 6874, 6856, 31400, 6894, 6900, 6899, 6896, - 6895, 6898, 6897, 6902, 6901, 6880, 6882, 6888, 6887, 6884, 6883, 6673, - 6677, 6689, 6683, 6675, 6681, 6685, 6666, 6664, 6662, 6671, 6687, 6679, - 6669, 6674, 6678, 6690, 6684, 6676, 6682, 6686, 6667, 6665, 6663, 6672, - 6688, 6680, 6670, 6800, 6799, 6668, 22723, 6748, 6744, 6742, 6710, 6708, - 6740, 6731, 6705, 6723, 6743, 6721, 6707, 6746, 6745, 6719, 6703, 6734, - 6739, 6712, 6736, 6724, 6737, 6706, 6699, 6715, 6730, 6720, 6709, 6733, - 6704, 6741, 6696, 6747, 6727, 6700, 6698, 6711, 6701, 6716, 6717, 6729, - 6718, 6728, 6738, 6732, 6702, 6726, 6694, 6722, 6886, 6885, 6890, 6889, - 6862, 6864, 6870, 6869, 6866, 6865, 6868, 6867, 6872, 6871, 6859, 20735, - 20738, 20739, 20677, 20740, 20736, 20737, 20676, 20742, 20743, 20741, - 20709, 34415, 34381, 34383, 24660, 6794, 6796, 6798, 6795, 6797, 6757, - 6759, 6761, 6758, 6760, 6777, 6779, 6781, 6778, 6780, 6782, 6784, 6786, - 6783, 6785, 6767, 6769, 6771, 6768, 6770, 6752, 6754, 6756, 6753, 6755, - 6762, 6764, 6766, 6763, 6765, 6791, 6793, 6792, 6772, 6774, 6776, 6773, - 6775, 6787, 6789, 6788, 6790, 34379, 34340, 34342, 34341, 34343, 34418, - 34419, 34582, 34382, 34375, 34508, 34512, 34427, 34425, 34426, 34390, - 34391, 34395, 34394, 34441, 34393, 34428, 34431, 34429, 34430, 34396, - 34397, 34438, 34439, 34440, 34437, 34436, 34548, 34549, 34556, 34550, - 34551, 34366, 34370, 34371, 34561, 34501, 34502, 34403, 34515, 34516, - 34347, 34524, 34522, 34523, 34350, 34410, 34409, 34349, 34411, 34404, - 34521, 34519, 34405, 34520, 34518, 34352, 34525, 34351, 34408, 34526, - 34406, 34407, 34465, 34466, 34469, 34468, 34467, 34475, 34476, 34477, - 34472, 34473, 34474, 34580, 34579, 34581, 34543, 34544, 34546, 34545, - 34541, 34540, 34562, 20733, 20734, 20716, 20718, 20725, 20724, 20731, - 20729, 20720, 20727, 20719, 20722, 20715, 20717, 20726, 20723, 20732, - 20730, 20721, 20728, 20710, 20714, 20713, 20712, 20711, 34413, 34365, - 34345, 34348, 34513, 34529, 34367, 34369, 34368, 34423, 34376, 34380, - 34377, 34378, 34357, 34517, 34500, 34482, 34464, 34424, 34446, 34470, - 34400, 34354, 34443, 34530, 34503, 34483, 34484, 34497, 34447, 34416, - 34442, 34494, 34398, 34560, 34485, 34498, 34374, 34449, 34389, 34504, - 34486, 34479, 34358, 34432, 34481, 34360, 34463, 34435, 34480, 34359, - 34462, 34434, 34459, 34460, 34514, 34445, 34496, 34399, 34537, 34538, - 34539, 34534, 34505, 34487, 34499, 34535, 34506, 34488, 34490, 34451, - 34491, 34536, 34507, 34489, 34492, 34452, 34493, 34444, 34461, 34344, - 34353, 34363, 34364, 34361, 34356, 34372, 34401, 34402, 34412, 34417, - 34448, 34433, 34450, 34456, 34457, 34454, 34458, 34471, 34478, 34495, - 34531, 34532, 34528, 34533, 34557, 34558, 34578, 34346, 34338, 20708, - 20693, 20681, 20700, 20699, 20706, 20704, 20695, 20702, 20694, 20697, - 20692, 20680, 20701, 20698, 20707, 20705, 20696, 20703, 20682, 20690, - 20688, 20687, 20684, 20683, 20686, 20685, 20691, 20689, 20678, 20679, - 34392, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 20426, - 20429, 20390, 20440, 20437, 20385, 20423, 20402, 20419, 20436, 20414, - 20420, 20395, 20397, 20407, 20441, 20394, 20438, 20378, 20384, 20382, - 20401, 20421, 20415, 20403, 20400, 20408, 20399, 20424, 20427, 20406, - 20392, 20416, 20398, 20413, 20393, 20428, 20411, 20409, 20388, 20387, - 20405, 20383, 20386, 20396, 20412, 20410, 20430, 20417, 20425, 20422, - 20434, 20389, 20432, 20380, 20431, 20433, 20435, 20391, 20439, 20404, - 20418, 20379, 20381, 40345, 40352, 40344, 40351, 40349, 40350, 40347, - 40348, 41120, 41121, 41118, 41119, 41117, 41115, 41116, 41124, 41125, - 41122, 41123, 41127, 41126, 40992, 40012, 40013, 40006, 40011, 40009, - 40010, 40007, 40008, 40016, 40017, 40014, 40015, 39997, 39995, 39996, - 40020, 40021, 40018, 40019, 40005, 40003, 40004, 40001, 40002, 39994, - 40000, 39999, 39998, 40026, 40027, 40022, 40025, 40024, 40023, 40724, - 40725, 40719, 40723, 40722, 40720, 40721, 40728, 40729, 40726, 40727, - 40713, 40711, 40712, 40732, 40733, 40730, 40731, 40717, 40718, 40710, - 40716, 40715, 40714, 40738, 40739, 40734, 40737, 40736, 40735, 39980, - 39981, 39974, 39979, 39977, 39978, 39975, 39976, 39984, 39985, 39982, - 39983, 39965, 39963, 39964, 39988, 39989, 39986, 39987, 39973, 39971, - 39972, 39969, 39970, 39962, 39968, 39967, 39966, 39992, 39993, 39990, - 39991, 40527, 40528, 40522, 40526, 40525, 40523, 40524, 40531, 40532, - 40529, 40530, 40535, 40536, 40533, 40534, 40541, 40542, 40537, 40540, - 40539, 40538, 40547, 40548, 40543, 40546, 40545, 40544, 40270, 40271, - 40265, 40269, 40268, 40266, 40267, 40274, 40275, 40272, 40273, 40259, - 40257, 40258, 40278, 40279, 40276, 40277, 40263, 40264, 40256, 40262, - 40261, 40260, 40284, 40280, 40283, 40282, 40281, 40506, 40507, 40501, - 40505, 40504, 40502, 40503, 40510, 40511, 40508, 40509, 40494, 40495, - 40492, 40493, 40514, 40515, 40512, 40513, 40521, 40520, 40499, 40500, - 40491, 40498, 40497, 40496, 40518, 40519, 40516, 40517, 40151, 40152, - 40149, 40150, 40147, 40148, 40145, 40146, 40144, 40142, 40143, 40161, - 40162, 40157, 40160, 40159, 40158, 40155, 40156, 40153, 40154, 40970, - 40971, 40964, 40969, 40967, 40968, 40965, 40966, 40974, 40975, 40972, - 40973, 40978, 40979, 40976, 40977, 40963, 40962, 40984, 40985, 40980, - 40983, 40982, 40981, 40990, 40991, 40986, 40989, 40988, 40987, 40129, - 40130, 40124, 40128, 40127, 40125, 40126, 40136, 40137, 40134, 40135, - 40118, 40117, 40140, 40141, 40138, 40139, 40133, 40131, 40132, 40122, - 40123, 40116, 40121, 40120, 40119, 40949, 40950, 40944, 40948, 40947, - 40945, 40946, 40956, 40957, 40954, 40955, 40937, 40938, 40935, 40936, - 40960, 40961, 40958, 40959, 40953, 40951, 40952, 40942, 40943, 40934, - 40941, 40940, 40939, 40103, 40104, 40098, 40102, 40101, 40099, 40100, - 40110, 40111, 40108, 40109, 40092, 40090, 40091, 40114, 40115, 40112, - 40113, 40107, 40105, 40106, 40096, 40097, 40089, 40095, 40094, 40093, - 40553, 40554, 40549, 40552, 40551, 40550, 40560, 40561, 40558, 40559, - 40564, 40565, 40562, 40563, 40557, 40555, 40556, 40570, 40571, 40566, - 40569, 40568, 40567, 40300, 40301, 40294, 40299, 40297, 40298, 40295, - 40296, 40304, 40305, 40302, 40303, 40289, 40288, 40286, 40287, 40285, - 40293, 40291, 40292, 40290, 40698, 40699, 40693, 40697, 40696, 40694, - 40695, 40702, 40700, 40701, 40687, 40685, 40686, 40708, 40709, 40706, - 40707, 40705, 40703, 40704, 40691, 40692, 40684, 40690, 40689, 40688, - 40238, 40239, 40233, 40237, 40236, 40234, 40235, 40248, 40249, 40246, - 40247, 40227, 40225, 40226, 40245, 40243, 40244, 40242, 40240, 40241, - 40231, 40232, 40224, 40230, 40229, 40228, 40254, 40255, 40250, 40253, - 40252, 40251, 40453, 40454, 40447, 40452, 40450, 40451, 40448, 40449, - 40457, 40458, 40455, 40456, 40437, 40438, 40435, 40436, 40461, 40462, - 40459, 40460, 40446, 40444, 40445, 40442, 40443, 40434, 40441, 40440, - 40439, 40467, 40468, 40463, 40466, 40465, 40464, 40207, 40208, 40201, - 40206, 40204, 40205, 40202, 40203, 40211, 40212, 40209, 40210, 40194, - 40195, 40192, 40193, 40219, 40220, 40217, 40218, 40215, 40216, 40213, - 40214, 40199, 40200, 40191, 40198, 40197, 40196, 40420, 40421, 40415, - 40419, 40418, 40416, 40417, 40424, 40425, 40422, 40423, 40409, 40407, - 40408, 40432, 40433, 40430, 40431, 40428, 40429, 40426, 40427, 40413, - 40414, 40406, 40412, 40411, 40410, 40167, 40168, 40163, 40166, 40164, - 40165, 40181, 40182, 40179, 40180, 40172, 40173, 40170, 40171, 40189, - 40190, 40187, 40188, 40185, 40186, 40183, 40184, 40177, 40178, 40169, - 40176, 40175, 40174, 40490, 40489, 40483, 40484, 40481, 40482, 40472, - 40470, 40471, 40487, 40488, 40485, 40486, 40480, 40478, 40479, 40476, - 40477, 40469, 40475, 40474, 40473, 40319, 40320, 40313, 40318, 40316, - 40317, 40314, 40315, 40323, 40324, 40321, 40322, 40308, 40309, 40306, - 40307, 40327, 40328, 40325, 40326, 40312, 40310, 40311, 40580, 40578, - 40579, 40583, 40584, 40581, 40582, 40573, 40574, 40572, 40587, 40588, - 40585, 40586, 40577, 40575, 40576, 40223, 40222, 40221, 40338, 40339, - 40336, 40337, 40331, 40332, 40329, 40330, 40342, 40343, 40340, 40341, - 40335, 40333, 40334, 41004, 41005, 41002, 41003, 40995, 40993, 40994, - 41001, 40999, 41000, 40998, 40996, 40997, 41067, 41068, 41062, 41066, - 41065, 41063, 41064, 41103, 41104, 41101, 41102, 41056, 41054, 41055, - 41107, 41108, 41105, 41106, 41100, 41098, 41099, 41060, 41061, 41053, - 41059, 41058, 41057, 41113, 41114, 41109, 41112, 41111, 41110, 40073, - 40074, 40067, 40072, 40070, 40071, 40068, 40069, 40077, 40078, 40075, - 40076, 40058, 40056, 40057, 40081, 40082, 40079, 40080, 40066, 40064, - 40065, 40062, 40063, 40055, 40061, 40060, 40059, 40087, 40088, 40083, - 40086, 40085, 40084, 41081, 41082, 41075, 41080, 41078, 41079, 41076, - 41077, 41085, 41086, 41083, 41084, 41074, 41072, 41073, 41071, 41069, - 41070, 41091, 41087, 41090, 41089, 41088, 41096, 41097, 41092, 41095, - 41094, 41093, 40670, 40671, 40665, 40669, 40668, 40666, 40667, 40674, - 40675, 40672, 40673, 40658, 40657, 40664, 40663, 40683, 40682, 40662, - 40656, 40661, 40660, 40659, 40680, 40681, 40676, 40679, 40678, 40677, - 40915, 40916, 40910, 40914, 40913, 40911, 40912, 40922, 40923, 40920, - 40921, 40904, 40902, 40903, 40926, 40927, 40924, 40925, 40919, 40917, - 40918, 40908, 40909, 40901, 40907, 40906, 40905, 40932, 40933, 40928, - 40931, 40930, 40929, 40851, 40852, 40846, 40850, 40849, 40847, 40848, - 40858, 40859, 40856, 40857, 40862, 40863, 40860, 40861, 40855, 40853, - 40854, 40866, 40867, 40864, 40865, 40872, 40873, 40868, 40871, 40870, - 40869, 41037, 41038, 41035, 41036, 41029, 41027, 41028, 41045, 41046, - 41043, 41044, 41041, 41042, 41039, 41040, 41033, 41034, 41026, 41032, - 41031, 41030, 41051, 41052, 41047, 41050, 41049, 41048, 40039, 40040, - 40037, 40038, 40031, 40032, 40029, 40030, 40047, 40048, 40045, 40046, - 40043, 40044, 40041, 40042, 40036, 40028, 40035, 40034, 40033, 40053, - 40054, 40049, 40052, 40051, 40050, 40819, 40818, 40798, 40797, 40810, - 40811, 40808, 40809, 40806, 40807, 40804, 40805, 40802, 40803, 40796, - 40801, 40800, 40799, 40816, 40817, 40812, 40815, 40814, 40813, 40619, - 40620, 40617, 40618, 40616, 40614, 40615, 40623, 40624, 40621, 40622, - 40629, 40630, 40625, 40628, 40627, 40626, 40635, 40636, 40631, 40634, - 40633, 40632, 40885, 40886, 40883, 40884, 40877, 40875, 40876, 40893, - 40894, 40891, 40892, 40889, 40890, 40887, 40888, 40881, 40882, 40874, - 40880, 40879, 40878, 40899, 40900, 40895, 40898, 40897, 40896, 40834, - 40835, 40832, 40833, 40823, 40821, 40822, 40838, 40839, 40836, 40837, - 40831, 40829, 40830, 40827, 40828, 40820, 40826, 40825, 40824, 40844, - 40845, 40840, 40843, 40842, 40841, 40394, 40395, 40388, 40393, 40391, - 40392, 40389, 40390, 40381, 40382, 40379, 40380, 40398, 40399, 40396, - 40397, 40386, 40387, 40378, 40385, 40384, 40383, 40404, 40405, 40400, - 40403, 40402, 40401, 40756, 40757, 40750, 40755, 40753, 40754, 40751, - 40752, 40743, 40744, 40741, 40742, 40760, 40761, 40758, 40759, 40748, - 40749, 40740, 40747, 40746, 40745, 40766, 40767, 40762, 40765, 40764, - 40763, 40368, 40369, 40362, 40367, 40365, 40366, 40363, 40364, 40356, - 40354, 40355, 40372, 40373, 40370, 40371, 40360, 40361, 40353, 40359, - 40358, 40357, 40376, 40377, 40374, 40375, 40602, 40603, 40596, 40601, - 40599, 40600, 40597, 40598, 40591, 40590, 40606, 40607, 40604, 40605, - 40595, 40589, 40594, 40593, 40592, 40612, 40613, 40608, 40611, 40610, - 40609, 40650, 40651, 40644, 40649, 40647, 40648, 40645, 40646, 40640, - 40638, 40639, 40654, 40655, 40652, 40653, 40642, 40643, 40637, 40641, - 41012, 41013, 41006, 41011, 41009, 41010, 41007, 41008, 41025, 41024, - 41016, 41017, 41014, 41015, 41022, 41023, 41018, 41021, 41020, 41019, - 40784, 40785, 40778, 40783, 40781, 40782, 40779, 40780, 40771, 40772, - 40769, 40770, 40788, 40789, 40786, 40787, 40776, 40777, 40768, 40775, - 40774, 40773, 40794, 40795, 40790, 40793, 40792, 40791, 41412, 41412, - 41412, 39959, 39932, 39930, 39937, 39911, 39947, 39918, 39920, 39936, - 39923, 39934, 39907, 39935, 39953, 39941, 39922, 39948, 39921, 39954, - 39912, 39915, 39908, 39917, 39938, 39949, 39961, 39926, 39957, 39942, - 39925, 39952, 39950, 39946, 39951, 39958, 39929, 39939, 39928, 39919, - 39927, 39960, 39916, 39943, 39933, 39910, 39909, 39914, 39924, 39944, - 39955, 39945, 39913, 39956, 39940, 39931, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 25263, 25252, 25251, 25235, 25233, - 25232, 25246, 25250, 25249, 25265, 25244, 25243, 25234, 25231, 25230, - 25267, 25240, 25266, 25254, 25257, 25258, 25239, 25248, 25269, 25247, - 25264, 25268, 25253, 25256, 25245, 25259, 25260, 25241, 25242, 25270, - 25261, 25236, 25237, 25238, 25262, 25226, 25229, 25227, 25225, 25228, - 25224, 25271, 25272, 38679, 38680, 38516, 38665, 38666, 38639, 38442, - 38449, 38552, 38525, 38559, 38499, 38625, 38653, 38477, 38470, 38428, - 38421, 38543, 38646, 38435, 38578, 38463, 38456, 38491, 38484, 38618, - 38632, 38597, 38660, 38538, 38584, 38505, 38566, 38611, 38604, 38688, - 38689, 38520, 38521, 38674, 38675, 38641, 38444, 38451, 38554, 38531, - 38561, 38502, 38627, 38655, 38479, 38472, 38430, 38423, 38547, 38648, - 38437, 38580, 38465, 38458, 38493, 38486, 38620, 38634, 38599, 38662, - 38539, 38589, 38510, 38568, 38613, 38606, 38686, 38687, 38591, 38518, - 38519, 38672, 38673, 38640, 38443, 38450, 38553, 38529, 38530, 38560, - 38501, 38626, 38654, 38478, 38471, 38429, 38422, 38546, 38647, 38436, - 38579, 38464, 38457, 38492, 38485, 38619, 38633, 38598, 38661, 38535, - 38536, 38588, 38509, 38567, 38612, 38605, 38683, 38684, 38514, 38669, - 38670, 38637, 38440, 38447, 38550, 38528, 38557, 38497, 38623, 38651, - 38475, 38468, 38426, 38419, 38545, 38644, 38433, 38576, 38461, 38454, - 38489, 38482, 38616, 38630, 38595, 38658, 38534, 38587, 38508, 38564, - 38609, 38602, 38690, 38691, 38522, 38523, 38676, 38677, 38642, 38445, - 38452, 38555, 38532, 38562, 38503, 38628, 38656, 38480, 38473, 38431, - 38424, 38548, 38649, 38438, 38581, 38466, 38459, 38494, 38487, 38621, - 38635, 38600, 38663, 38540, 38590, 38511, 38569, 38614, 38607, 38682, - 38685, 38593, 38512, 38513, 38668, 38671, 38636, 38439, 38446, 38549, - 38527, 38556, 38495, 38496, 38622, 38650, 38474, 38467, 38425, 38418, - 38544, 38643, 38432, 38570, 38460, 38453, 38488, 38481, 38615, 38629, - 38594, 38657, 38533, 38586, 38507, 38563, 38608, 38601, 38678, 38681, - 38592, 38515, 38517, 38664, 38667, 38638, 38441, 38448, 38551, 38524, - 38526, 38558, 38498, 38500, 38624, 38652, 38476, 38469, 38427, 38420, - 38541, 38645, 38434, 38577, 38462, 38455, 38490, 38483, 38617, 38631, - 38596, 38659, 38537, 38583, 38585, 38504, 38506, 38565, 38610, 38603, - 38582, 38542, 38415, 38416, 38417, 38573, 38574, 38571, 38695, 38698, - 38701, 38700, 38704, 38696, 38703, 38694, 38692, 38699, 38702, 38693, - 38697, 38711, 38713, 38710, 38709, 38706, 38705, 38708, 38707, 38714, - 38712, 38575, 38572, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 10415, 10616, 10304, 10463, 10254, 10557, 10359, - 10518, 10300, 10459, 10380, 10543, 10288, 10447, 10247, 10544, 10408, - 10609, 10356, 10515, 10256, 10559, 10357, 10516, 10296, 10455, 10289, - 10448, 10353, 10512, 10410, 10611, 10255, 10558, 10399, 10577, 10396, - 10574, 10397, 10575, 10379, 10542, 10286, 10445, 10301, 10460, 10430, - 8251, 8243, 8194, 8244, 33999, 8218, 8207, 8221, 8217, 8226, 8219, 8216, - 8213, 8249, 8238, 10429, 10433, 10310, 10469, 10308, 10467, 10420, 10621, - 10298, 10457, 10306, 10465, 10260, 10585, 10268, 10594, 10264, 10589, - 10263, 10588, 10266, 10592, 10344, 10503, 10394, 10572, 10302, 10461, - 10297, 10456, 27910, 27947, 8202, 8210, 3462, 2824, 3465, 2826, 3461, - 3437, 3454, 3464, 2853, 3463, 2829, 3434, 3440, 3439, 2827, 2833, 3453, - 2852, 2846, 2832, 3449, 2840, 3444, 3450, 3443, 3447, 2822, 2818, 2850, - 2849, 2844, 3456, 3446, 3457, 3458, 2851, 2816, 3430, 2845, 2848, 3433, - 3459, 3431, 2813, 3442, 2831, 2838, 2855, 3436, 3441, 2817, 2841, 2842, - 2843, 3445, 3432, 2815, 2814, 3460, 2854, 2830, 3435, 2828, 2819, 2835, - 3438, 2834, 2837, 3455, 2825, 2839, 2836, 3452, 2823, 3451, 2847, 3448, - 2812, 2820, 2821, 2809, 2808, 3466, 3468, 2811, 2810, 3467, 3469, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 27907, 27903, 27906, - 27902, 27908, 27904, 27909, 27905, 27962, 27977, 28005, 27984, 27967, - 27961, 27976, 28004, 27983, 27966, 27963, 27978, 28006, 27988, 27968, - 27954, 27953, 27955, 27999, 28018, 28015, 28017, 28016, 27996, 28166, - 28167, 23034, 23638, 23035, 23639, 23074, 23700, 23301, 24063, 23300, - 24020, 22974, 23560, 22975, 23561, 23443, 23451, 22948, 23516, 22949, - 23517, 22950, 23518, 22946, 23514, 22947, 23515, 22951, 23519, 23245, - 23944, 23115, 23752, 23112, 23749, 23116, 23753, 22960, 23537, 23134, - 23776, 23167, 23851, 23168, 23853, 23214, 23891, 23219, 23896, 23217, - 23894, 23220, 23897, 23227, 23909, 23226, 23906, 23242, 23934, 23247, - 23947, 23342, 24113, 23351, 24125, 23346, 24120, 23295, 24014, 23296, - 24015, 23350, 24124, 23036, 23656, 23103, 23739, 22976, 23562, 28175, - 23598, 23797, 23811, 23834, 23946, 23428, 24058, 24110, 23096, 23728, - 23097, 23729, 23098, 23285, 24026, 23290, 24056, 23099, 23731, 23100, - 23732, 23101, 23733, 27982, 27951, 28028, 23268, 23970, 23288, 23781, - 23459, 23160, 23825, 22970, 23550, 23547, 23694, 22954, 23522, 23043, - 23663, 23347, 24121, 23348, 24122, 23349, 24123, 23051, 23674, 23119, - 23757, 23163, 23830, 23240, 23931, 23264, 23968, 23070, 23244, 23271, - 23122, 23267, 23450, 23289, 23292, 23106, 22977, 22961, 23539, 23212, - 23889, 23338, 24101, 23056, 23679, 23057, 23680, 23058, 23681, 23209, - 23880, 22943, 23511, 22968, 23265, 23388, 22981, 23564, 23261, 23962, - 23248, 23260, 23961, 23224, 23903, 22973, 23556, 22994, 23591, 22993, - 23588, 23149, 23810, 23270, 23988, 23138, 23786, 23139, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 27895, 27882, - 27885, 27894, 23243, 23935, 23398, 27877, 28107, 23433, 23396, 23397, - 23394, 23395, 23393, 34995, 34997, 35007, 34999, 34996, 34998, 35006, - 34987, 34986, 34983, 34982, 35005, 34981, 34980, 34985, 34984, 34975, - 34974, 34969, 34968, 34977, 34976, 34971, 34970, 34993, 34989, 34988, - 34979, 34978, 34992, 34973, 34991, 34972, 34994, 34990, 35009, 35011, - 35012, 35010, 35008, 35000, 35001, 35002, 35003, 35004, 41412, 41412, - 41412, 29568, 29567, 29570, 29565, 29566, 29569, 29562, 29561, 29564, - 29563, 41412, 41412, 41412, 41412, 41412, 41412, 31537, 31536, 31525, - 31526, 31513, 31515, 31547, 31528, 31535, 31534, 31518, 31529, 31539, - 31538, 31544, 31549, 31531, 31530, 31517, 31552, 31540, 31541, 31519, - 31554, 31551, 31548, 31520, 31521, 31546, 31510, 31555, 31557, 31542, - 31556, 31550, 31553, 31545, 31524, 31543, 31562, 31563, 31533, 31532, - 31516, 31527, 31511, 31523, 31522, 31512, 31561, 31564, 31514, 31560, - 31565, 31559, 31558, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 32682, 32684, 32631, 32632, 32652, 32653, 32648, 32649, 32643, - 32644, 32645, 32646, 32675, 32676, 32633, 32650, 32651, 32634, 32672, - 32671, 32668, 32667, 32656, 32666, 32665, 32670, 32669, 32658, 32640, - 32639, 32636, 32635, 32657, 32642, 32641, 32638, 32637, 32659, 32674, - 32673, 32664, 32663, 32678, 32680, 32679, 32655, 32647, 32660, 32661, - 32662, 32677, 32654, 32697, 32698, 32709, 32710, 32701, 32702, 32703, - 32704, 32705, 32706, 32711, 32712, 32699, 32707, 32708, 32700, 32683, - 32681, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 32686, - 32685, 32693, 32695, 32692, 32691, 32688, 32687, 32690, 32689, 32696, - 32694, 41412, 41412, 41412, 41412, 41412, 41412, 8269, 8271, 8268, 8267, - 8264, 8263, 8266, 8265, 8272, 8270, 8260, 8261, 8256, 8257, 8258, 8259, - 8255, 8262, 10903, 10897, 10910, 10899, 10898, 10896, 10911, 10800, - 10798, 10803, 10904, 10954, 10809, 10921, 21748, 21750, 21747, 21746, - 21743, 21742, 21745, 21744, 21751, 21749, 21712, 21711, 21722, 21708, - 21716, 21715, 21729, 21709, 21718, 21706, 21710, 21714, 21713, 21724, - 21721, 21719, 21725, 21728, 21723, 21727, 21717, 21707, 21726, 21720, - 21730, 21704, 21731, 21705, 21740, 21737, 21739, 21738, 21741, 21736, - 21734, 21735, 21732, 21733, 32024, 32021, 32013, 32029, 32020, 32015, - 32026, 32018, 32017, 32019, 32023, 32011, 32028, 32027, 32025, 32031, - 32030, 32022, 32016, 32012, 32014, 32010, 32032, 32039, 32041, 32034, - 32037, 32040, 32038, 32036, 32035, 32007, 32006, 32009, 32008, 32042, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 32033, 19386, 19389, 19390, 19387, 19344, 19345, 19353, 19347, - 19349, 19352, 19346, 19342, 19348, 19350, 19343, 19309, 19311, 19312, - 19325, 19332, 19339, 19374, 19291, 19298, 19372, 19376, 19322, 19395, - 19378, 41412, 41412, 41412, 21067, 21063, 21066, 21065, 21037, 21005, - 21004, 21006, 21046, 21025, 21011, 21012, 21044, 21038, 21045, 21007, - 21008, 21009, 21021, 21022, 21010, 21019, 21020, 21035, 21014, 21036, - 21013, 21033, 21034, 21000, 21001, 21016, 21031, 21032, 21002, 21003, - 21015, 21023, 21024, 21017, 21018, 21041, 21043, 21026, 21027, 21040, - 21042, 21029, 21030, 21028, 21039, 21064, 21070, 21072, 21073, 21074, - 21068, 21069, 21071, 21076, 21075, 20996, 20997, 20998, 21061, 20999, - 21047, 21050, 21059, 21052, 21057, 21055, 21053, 21051, 21048, 21049, - 21054, 21062, 41412, 21060, 21083, 21085, 21082, 21081, 21078, 21077, - 21080, 21079, 21086, 21084, 41412, 41412, 41412, 41412, 21056, 21058, - 28787, 28785, 28780, 28777, 28783, 28873, 28851, 28803, 28815, 28811, - 28810, 28813, 28812, 28805, 28804, 28802, 28915, 28917, 28914, 28913, - 28910, 28909, 28912, 28911, 28918, 28916, 28814, 28807, 28806, 28809, - 28808, 41412, 6347, 6365, 6367, 6364, 6348, 6366, 6356, 6355, 6352, 6351, - 6327, 6328, 6350, 6349, 6354, 6353, 6329, 6331, 6330, 6358, 6357, 6344, - 6343, 6332, 6333, 6342, 6338, 6337, 6336, 6341, 6340, 6334, 6335, 6339, - 6363, 6361, 6360, 6362, 6345, 6346, 6359, 6372, 6375, 6376, 6381, 6379, - 6378, 6377, 6373, 6374, 6380, 6315, 6313, 6312, 6314, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 6321, 6320, 6317, 6309, - 6319, 6325, 6316, 6323, 6326, 6324, 6322, 6318, 6311, 6310, 41412, 41412, - 6388, 6390, 6387, 6386, 6383, 6382, 6385, 6384, 6391, 6389, 41412, 41412, - 6368, 6370, 6369, 6371, 28757, 28750, 28749, 28754, 28753, 28747, 28746, - 28745, 28743, 28742, 28744, 28748, 28759, 28752, 28751, 28756, 28850, - 28760, 28761, 28758, 28847, 28848, 28849, 28888, 28890, 28889, 28732, - 28884, 28875, 28876, 28796, 28797, 35479, 35455, 35478, 35454, 35477, - 35453, 35492, 35468, 35486, 35462, 35481, 35457, 35480, 35456, 35497, - 35473, 35487, 35463, 35490, 35466, 35485, 35461, 35484, 35460, 35488, - 35464, 35489, 35465, 35483, 35459, 35482, 35458, 35491, 35467, 35495, - 35471, 35499, 35475, 35496, 35472, 35494, 35470, 35498, 35474, 35493, - 35469, 35500, 35476, 35501, 35513, 35521, 35518, 35517, 35523, 35524, - 35502, 35522, 35519, 35520, 35512, 35516, 35515, 35514, 35511, 35508, - 35509, 35510, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 35504, 35505, 35507, 35506, - 35503, 27214, 27215, 27173, 27190, 27201, 27200, 27177, 27176, 27189, - 27195, 27196, 27228, 27230, 27220, 27222, 27221, 27168, 27165, 27167, - 27217, 27218, 27232, 27233, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 17347, 17345, 17344, 17343, 17342, 17346, - 41412, 41412, 17041, 17039, 17038, 17037, 17036, 17040, 41412, 41412, - 17056, 17054, 17053, 17052, 17051, 17055, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 16997, 17003, 17001, 16998, 17000, - 16999, 17002, 41412, 16982, 16988, 16986, 16983, 16985, 16984, 16987, - 41412, 23530, 23506, 23536, 23531, 23627, 23790, 23980, 23779, 23770, - 23773, 23801, 23815, 23641, 23534, 23535, 23885, 23735, 24029, 24028, - 24030, 24031, 23990, 23427, 23933, 23589, 23913, 23590, 23977, 23978, - 23533, 24100, 24066, 24109, 24052, 24105, 23553, 23554, 23555, 24141, - 24138, 24139, 24140, 24152, 27864, 28088, 28097, 28098, 28155, 23971, - 23738, 23886, 24111, 23734, 18558, 23596, 24061, 24034, 28152, 28001, - 28025, 41412, 41412, 41412, 41412, 6570, 6571, 6572, 6573, 6574, 6575, - 6533, 6569, 6534, 6535, 6536, 6537, 6538, 6498, 6499, 6500, 6501, 6502, - 6503, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549, - 6504, 6497, 6505, 6506, 6507, 6508, 6509, 6510, 6551, 6552, 6553, 6554, - 6555, 6556, 6512, 6511, 6513, 6514, 6515, 6516, 6517, 6491, 6530, 6492, - 6531, 6493, 6532, 6494, 6495, 6496, 6490, 6518, 6519, 6520, 6521, 6522, - 6523, 6524, 6525, 6526, 6527, 6528, 6529, 6557, 6558, 6559, 6560, 6561, - 6562, 6563, 27182, 27194, 27204, 27206, 27191, 27185, 27172, 27197, - 27184, 27187, 27199, 27210, 27212, 27208, 27213, 27202, 27193, 27211, - 27179, 27180, 27209, 27171, 27181, 27175, 27178, 27174, 27170, 27183, - 27205, 27207, 27192, 27186, 27198, 27188, 27203, 27224, 27227, 27219, - 27226, 27225, 27229, 27223, 27231, 27169, 27216, 27166, 41412, 41412, - 27240, 27242, 27239, 27238, 27235, 27234, 27237, 27236, 27243, 27241, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 19583, 19581, 19614, 19615, 19616, 19592, 19593, 19625, - 19627, 19560, 19558, 19557, 19561, 19567, 19568, 19570, 19569, 19574, - 19571, 19572, 19576, 19544, 19542, 41412, 41412, 41412, 41412, 19440, - 19441, 19509, 19510, 19529, 19523, 19524, 19527, 19526, 19525, 19484, - 19469, 19508, 19475, 19479, 19478, 19492, 19491, 19412, 19437, 19430, - 19515, 19428, 19435, 19465, 19458, 19464, 19519, 19460, 19463, 19462, - 19503, 19496, 19513, 19514, 19502, 19500, 19499, 19504, 19506, 19451, - 19450, 19536, 19537, 19401, 19400, 19516, 19455, 19453, 41412, 41412, - 41412, 41412, 7687, 7688, 7689, 7690, 7691, 7692, 7693, 7694, 7695, 7696, - 7697, 7698, 7699, 7700, 7701, 7702, 7703, 7704, 7705, 7706, 7707, 7708, - 7709, 7710, 7711, 7712, 7713, 7714, 7715, 7716, 7717, 7718, 7719, 7720, - 7721, 7722, 7723, 7724, 7725, 7726, 7727, 7728, 7729, 7730, 7731, 7732, - 7733, 7734, 7735, 7736, 7737, 7738, 7739, 7740, 7741, 7742, 7743, 7744, - 7745, 7746, 7747, 7748, 7749, 7750, 7751, 7752, 7753, 7754, 7755, 7756, - 7757, 7758, 7759, 7760, 7761, 7762, 7763, 7764, 7765, 7766, 7767, 7768, - 7769, 7770, 7771, 7772, 7773, 7774, 7775, 7776, 7777, 7778, 7779, 7780, - 7781, 7782, 7783, 7784, 7785, 7786, 7787, 7788, 7789, 7790, 7791, 7792, - 7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7803, 7804, - 7805, 7806, 7807, 7808, 7809, 7810, 7811, 7812, 7813, 7814, 7815, 7816, - 7817, 7818, 7819, 7820, 7821, 7822, 7823, 7824, 7825, 7826, 7827, 7828, - 7829, 7830, 7831, 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7839, 7840, - 7841, 7842, 7843, 7844, 7845, 7846, 7847, 7848, 7849, 7850, 7851, 7852, - 7853, 7854, 7855, 7856, 7857, 7858, 7859, 7860, 7861, 7862, 7863, 7864, - 7865, 7866, 7867, 7868, 7869, 7870, 7871, 7872, 7873, 7874, 7875, 7876, - 7877, 7878, 7879, 7880, 7881, 7882, 7883, 7884, 7885, 7886, 7887, 7888, - 7889, 7890, 7891, 7892, 7893, 7894, 7895, 7896, 7897, 7898, 7899, 7900, - 7901, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, 7910, 7911, 7912, - 7913, 7914, 7915, 7916, 7917, 7918, 7919, 7920, 7921, 7922, 7923, 7924, - 7925, 7926, 7927, 7928, 7929, 7930, 7931, 7932, 7933, 7934, 7935, 7936, - 7937, 7938, 7939, 7940, 7941, 7942, 7485, 7486, 7487, 7488, 7489, 7490, - 7491, 7492, 7493, 7494, 7495, 7496, 7497, 7498, 7499, 7500, 7501, 7502, - 7503, 7504, 7505, 7506, 7507, 7508, 7509, 7510, 7511, 7512, 7513, 7514, - 7515, 7516, 7517, 7518, 7519, 7520, 7521, 7522, 7523, 7524, 7525, 7526, - 7527, 7528, 7529, 7530, 7531, 7532, 7533, 7534, 7535, 7536, 7537, 7538, - 7539, 7540, 7541, 7542, 7543, 7544, 7545, 7546, 7547, 7548, 7549, 7550, - 7551, 7552, 7553, 7554, 7555, 7556, 7557, 7558, 7559, 7560, 7561, 7562, - 7563, 7564, 7565, 7566, 7567, 7568, 7569, 7570, 7571, 7572, 7573, 7574, - 7575, 7576, 7577, 7578, 7579, 7580, 7471, 7472, 7473, 7474, 7475, 7476, - 7477, 7478, 7479, 7480, 7481, 7482, 7483, 7484, 41412, 41412, 7581, 7582, - 7583, 7584, 7585, 7586, 7587, 7588, 7589, 7590, 7591, 7592, 7593, 7594, - 7595, 7596, 7597, 7598, 7599, 7600, 7601, 7602, 7603, 7604, 7605, 7606, - 7607, 7608, 7609, 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618, - 7619, 7620, 7621, 7622, 7623, 7624, 7625, 7626, 7627, 7628, 7629, 7630, - 7631, 7632, 7633, 7634, 7635, 7636, 7637, 7638, 7639, 7640, 7641, 7642, - 7643, 7644, 7645, 7646, 7647, 7648, 7649, 7650, 7651, 7652, 7653, 7654, - 7655, 7656, 7657, 7658, 7659, 7660, 7661, 7662, 7663, 7664, 7665, 7666, - 7667, 7668, 7669, 7670, 7671, 7672, 7673, 7674, 7675, 7676, 7677, 7678, - 7679, 7680, 7681, 7682, 7683, 7684, 7685, 7686, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 24174, 24177, 24178, 24175, 24176, - 24180, 24181, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 2549, 2550, 2548, 2551, 2547, 41412, 41412, - 41412, 41412, 41412, 20049, 20076, 20054, 19985, 20041, 20044, 20046, - 20045, 20040, 20047, 20043, 20042, 19986, 20019, 20020, 20017, 20018, - 19983, 19984, 19982, 19990, 20032, 20030, 20007, 20039, 20012, 41412, - 20024, 20050, 19998, 19993, 20034, 41412, 20036, 41412, 20010, 20014, - 41412, 20000, 19996, 41412, 20028, 20005, 20022, 20016, 20026, 20038, - 19989, 19992, 19995, 20051, 1164, 1163, 1194, 1192, 1193, 1195, 1424, - 1422, 1423, 1425, 1189, 1187, 1188, 1190, 1555, 1553, 1554, 1556, 1534, - 1532, 1533, 1535, 1550, 1548, 1549, 1551, 1568, 1566, 1567, 1569, 1429, - 1427, 1428, 1430, 1230, 1228, 1229, 1231, 1401, 1399, 1400, 1402, 1511, - 1509, 1510, 1512, 1516, 1514, 1515, 1517, 1220, 1219, 1211, 1210, 1234, - 1233, 1223, 1222, 1330, 1329, 1459, 1458, 1353, 1351, 1352, 1354, 1264, - 1262, 1263, 1265, 1276, 1274, 1275, 1277, 1392, 1390, 1391, 1393, 1406, - 1405, 1463, 1461, 1462, 1464, 1306, 1305, 1301, 1299, 1300, 1302, 1310, - 1308, 1309, 1311, 1592, 1591, 1590, 1589, 2411, 2410, 2419, 2418, 2415, - 2414, 2413, 2412, 2423, 2422, 2409, 2417, 2416, 2425, 2421, 2420, 2424, - 1756, 1704, 1933, 1930, 1931, 1926, 1927, 1928, 1920, 1733, 1734, 1731, - 1732, 1956, 1645, 1649, 1396, 1394, 1395, 1397, 1561, 1560, 1614, 1613, - 1611, 1610, 1559, 1571, 1570, 1357, 1356, 1360, 1359, 1627, 1625, 1626, - 1628, 1562, 1563, 2100, 2099, 2102, 2101, 2121, 2120, 2129, 2128, 2119, - 2118, 2125, 2124, 2105, 2103, 2104, 2154, 2152, 2153, 1244, 1242, 1243, - 1245, 2111, 2109, 2115, 2098, 2123, 1675, 1666, 1671, 1678, 1673, 1684, - 2063, 2051, 2058, 2071, 2074, 2079, 2081, 2086, 2083, 2092, 1760, 1766, - 1743, 1738, 1799, 1795, 1801, 1970, 1963, 1975, 1983, 1940, 1944, 1697, - 1689, 1693, 1699, 2044, 2039, 2156, 1640, 1636, 1728, 1724, 1712, 1717, - 1708, 1715, 1710, 1719, 1905, 1901, 1903, 1907, 1774, 1776, 1784, 1782, - 1779, 1790, 1772, 1793, 1827, 1819, 1831, 1837, 1811, 1840, 1858, 1847, - 1852, 1862, 1841, 1863, 1879, 1869, 1891, 1884, 1887, 1894, 1753, 1749, - 1750, 1751, 2139, 2132, 2141, 2147, 2096, 2151, 2080, 1935, 1658, 1991, - 1994, 1998, 1992, 1995, 1997, 2127, 2126, 2113, 2117, 2097, 2122, 1682, - 1681, 1676, 1680, 1672, 1683, 2077, 2076, 2069, 2075, 2073, 2078, 2090, - 2089, 2084, 2088, 2082, 2091, 1709, 1718, 1902, 1906, 1773, 1777, 1788, - 1771, 1792, 1835, 1810, 1839, 1842, 1860, 1892, 1889, 1882, 1888, 1886, - 1893, 1657, 2149, 2136, 2145, 2135, 2095, 2150, 2110, 2108, 2112, 2114, - 2106, 1674, 1665, 1670, 1677, 1667, 2062, 2050, 2057, 2070, 2052, 2085, - 1759, 1765, 1742, 1737, 1798, 1800, 1969, 1962, 1974, 1982, 1939, 1947, - 1943, 1696, 1688, 1692, 1698, 2043, 2155, 1639, 1635, 1727, 1723, 1711, - 1716, 1707, 1714, 1904, 1900, 1775, 1783, 1781, 1778, 1789, 1826, 1818, - 1830, 1836, 1820, 1857, 1846, 1851, 1861, 1878, 1868, 1890, 1883, 1870, - 1752, 1748, 1754, 2138, 2131, 2140, 2146, 2133, 2116, 2107, 1679, 1668, - 2072, 2053, 2087, 2093, 1984, 1966, 2021, 2001, 1780, 1791, 1838, 1885, - 1871, 2148, 2134, 1999, 1993, 1996, 2042, 2046, 1642, 1644, 1726, 1730, - 1986, 1990, 2023, 2031, 1740, 1745, 1768, 1770, 1797, 1803, 1946, 1951, - 1695, 1703, 2012, 2007, 2026, 2020, 2029, 1988, 1949, 1701, 2041, 2045, - 1641, 1643, 1725, 1729, 1985, 1989, 2022, 2030, 1739, 1744, 1767, 1769, - 1796, 1802, 1945, 1950, 1694, 1702, 2010, 2005, 2024, 2018, 2028, 1987, - 1948, 1700, 2011, 2006, 2025, 2019, 1965, 2000, 2038, 1971, 1964, 1976, - 2013, 2008, 2027, 2040, 2157, 1659, 1660, 30832, 30833, 1923, 1914, 1918, - 1915, 1916, 1917, 1957, 1648, 1653, 1651, 1647, 1912, 1959, 1655, 2033, - 1925, 2060, 2049, 2048, 2047, 2055, 2065, 2067, 2066, 1762, 1761, 1736, - 1735, 1961, 1968, 1967, 1978, 1977, 1979, 1981, 1980, 1937, 1936, 1942, - 2003, 2002, 2009, 2015, 2014, 2017, 2016, 1686, 1691, 1690, 2035, 2034, - 2036, 2037, 1638, 1633, 1632, 1631, 1720, 1722, 1721, 1706, 1705, 1898, - 1896, 1816, 1817, 1814, 1821, 1822, 1829, 1828, 1833, 1832, 1843, 1844, - 1845, 1855, 1853, 1848, 1849, 1929, 1932, 1854, 1746, 1747, 1866, 1865, - 1876, 1875, 1874, 1881, 1880, 2143, 2142, 1669, 2061, 2059, 2056, 2054, - 2068, 2064, 1764, 1757, 1763, 1972, 1938, 2004, 1687, 1825, 1834, 2130, - 2137, 2144, 1859, 1899, 1867, 1897, 1815, 1634, 1787, 1872, 1850, 1823, - 1786, 1824, 1873, 1758, 1741, 1856, 1713, 1664, 1785, 1637, 1941, 1973, - 1877, 1924, 1919, 1922, 1921, 1958, 1646, 1794, 1953, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 1954, 1908, 1661, 1662, 1864, 1952, 1934, 1656, 2094, 1955, 1960, 1755, - 32353, 1685, 2032, 1663, 38715, 38826, 38894, 38905, 38916, 38927, 38938, - 38949, 38960, 38716, 38727, 38738, 38749, 38760, 38771, 38782, 31807, - 31812, 31813, 31806, 31837, 31808, 31839, 31815, 31829, 31811, 41412, - 41412, 41412, 41412, 41412, 41412, 8479, 8481, 8306, 8307, 8490, 8492, - 8192, 8480, 8482, 8555, 8556, 8491, 8493, 8193, 8246, 8247, 31838, 31809, - 31810, 31824, 31836, 31821, 31833, 31819, 31831, 31823, 31835, 31816, - 31825, 31817, 31826, 31820, 31832, 31818, 31830, 31814, 31827, 32848, - 39721, 31822, 31834, 10673, 6231, 39597, 11389, 10672, 6230, 39595, - 34023, 34032, 34067, 41412, 34057, 34024, 34068, 34030, 34031, 34034, - 34038, 34033, 34037, 34035, 34039, 34066, 34014, 34016, 34065, 34063, - 34036, 34062, 34029, 41412, 34056, 34025, 34064, 34022, 41412, 41412, - 41412, 41412, 1098, 2430, 1079, 2432, 1110, 41412, 1095, 1096, 1075, - 1076, 1107, 1108, 2335, 2336, 2405, 2406, 1295, 1159, 1158, 1149, 1148, - 1579, 1578, 1152, 1151, 1596, 1594, 1595, 1597, 1169, 1168, 1184, 1182, - 1183, 1185, 1521, 1520, 1530, 1528, 1529, 1523, 1544, 1542, 1543, 1545, - 1326, 1324, 1325, 1327, 1292, 1290, 1291, 1293, 1364, 1362, 1363, 1365, - 1208, 1207, 1538, 1537, 1456, 1455, 1622, 1621, 1485, 1483, 1484, 1486, - 1491, 1489, 1490, 1492, 1472, 1470, 1471, 1473, 1216, 1214, 1215, 1217, - 1504, 1502, 1503, 1505, 1618, 1616, 1617, 1619, 1127, 1125, 1126, 1128, - 1271, 1269, 1270, 1272, 1255, 1253, 1254, 1256, 1438, 1436, 1437, 1439, - 1340, 1338, 1339, 1341, 1376, 1374, 1375, 1377, 1385, 1383, 1384, 1386, - 1417, 1415, 1416, 1418, 1314, 1312, 1313, 1315, 1583, 1582, 1167, 1166, - 1607, 1605, 1606, 1608, 1809, 1808, 1805, 1804, 1807, 1806, 1813, 1812, - 41412, 41412, 41216, 41412, 17766, 17770, 17738, 17754, 17740, 17752, - 17751, 17681, 17744, 17753, 17741, 17676, 17769, 17774, 17748, 17761, - 17763, 17760, 17759, 17756, 17755, 17758, 17757, 17764, 17762, 17677, - 17747, 17683, 17765, 17768, 17771, 17675, 17684, 17685, 17686, 17687, - 17688, 17689, 17690, 17691, 17692, 17693, 17694, 17695, 17696, 17697, - 17698, 17699, 17700, 17701, 17702, 17703, 17704, 17705, 17706, 17707, - 17708, 17709, 17682, 17746, 17745, 17674, 17736, 17767, 17710, 17711, - 17712, 17713, 17714, 17715, 17716, 17717, 17718, 17719, 17720, 17721, - 17722, 17723, 17724, 17725, 17726, 17727, 17728, 17729, 17730, 17731, - 17732, 17733, 17734, 17735, 17680, 17776, 17743, 17773, 17679, 17742, - 19256, 19249, 19251, 19255, 19247, 19239, 19194, 19196, 19198, 19195, - 19197, 19190, 19192, 19191, 19193, 19248, 19240, 19242, 19244, 19241, - 19243, 19215, 19217, 19219, 19216, 19218, 19199, 19201, 19203, 19200, - 19202, 19230, 19232, 19234, 19231, 19233, 19205, 19207, 19209, 19206, - 19208, 19210, 19212, 19214, 19211, 19213, 19220, 19222, 19224, 19221, - 19223, 19235, 19237, 19236, 19225, 19227, 19229, 19226, 19228, 19238, - 19204, 19246, 19245, 19189, 19139, 19156, 19140, 19141, 19142, 19143, - 19177, 19158, 19147, 19152, 19151, 19150, 19154, 19148, 19149, 19153, - 19175, 19145, 19157, 19146, 19160, 19159, 19174, 19169, 19155, 19168, - 19138, 19176, 19144, 19183, 41412, 41412, 41412, 19184, 19185, 19163, - 19164, 19171, 19170, 41412, 41412, 19162, 19161, 19186, 19180, 19181, - 19187, 41412, 41412, 19166, 19188, 19179, 19178, 19182, 19167, 41412, - 41412, 19172, 19165, 19173, 41412, 41412, 41412, 17678, 17739, 17737, - 17750, 17775, 17749, 17772, 41412, 19253, 19250, 19254, 19252, 19259, - 19257, 19258, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 20948, 20950, 20949, 30114, 32045, 41412, 41412, 25137, - 25163, 25156, 25189, 25147, 25138, 25167, 25133, 25145, 25175, 25178, - 25172, 41412, 25161, 25188, 25192, 25171, 25186, 25193, 25200, 25203, - 25148, 25199, 25146, 25149, 25132, 25155, 25158, 25181, 25182, 25140, - 25197, 25162, 25143, 25179, 25141, 25198, 25157, 25165, 41412, 25190, - 25154, 25174, 25139, 25150, 25164, 25135, 25169, 25144, 25176, 25177, - 25134, 25160, 25136, 25187, 25180, 25194, 25168, 25170, 41412, 25142, - 25196, 41412, 25153, 25152, 25166, 25202, 25195, 25205, 25173, 25151, - 25183, 25191, 25159, 25184, 25185, 25201, 25204, 41412, 41412, 25215, - 25216, 25218, 25217, 25206, 25207, 25214, 25208, 25209, 25219, 25210, - 25211, 25212, 25213, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 25021, 25020, 25022, - 25009, 25010, 25011, 25012, 25013, 25014, 25015, 25017, 25016, 25019, - 25018, 25027, 25024, 25025, 25023, 25026, 25126, 25127, 25029, 25028, - 25030, 25129, 25128, 25032, 25033, 25034, 25031, 25035, 25038, 25037, - 25039, 25040, 25041, 25130, 25042, 25043, 25036, 25046, 25047, 25045, - 25044, 25048, 25049, 25050, 25051, 25052, 25053, 25056, 25057, 25058, - 25055, 25059, 25054, 25060, 25061, 25062, 25063, 25064, 25065, 25066, - 25067, 25068, 25069, 25071, 25070, 25072, 25073, 25075, 25076, 25077, - 25074, 25078, 25079, 25080, 25081, 25083, 25082, 25084, 25085, 25131, - 25086, 25087, 25089, 25090, 25091, 25088, 25092, 25093, 25094, 25095, - 25096, 25124, 25104, 25105, 25106, 25107, 25108, 25109, 25110, 25111, - 25112, 25113, 25114, 25115, 25116, 25117, 25118, 25119, 25120, 25121, - 25122, 25123, 25097, 25098, 25099, 25100, 25101, 25102, 25103, 25125, - 41412, 41412, 41412, 41412, 41412, 112, 113, 159, 41412, 41412, 41412, - 41412, 156, 151, 146, 126, 121, 139, 134, 114, 129, 154, 149, 144, 124, - 119, 140, 135, 115, 130, 157, 152, 147, 127, 122, 142, 137, 117, 132, - 158, 153, 148, 128, 123, 143, 138, 118, 133, 155, 150, 145, 125, 120, - 141, 136, 116, 131, 41412, 41412, 41412, 111, 107, 109, 110, 108, 103, - 104, 105, 106, 18323, 18320, 18324, 18310, 18305, 18311, 18314, 18306, - 18316, 18325, 18308, 18318, 18312, 18321, 18315, 18317, 18327, 18309, - 18319, 18313, 18322, 18326, 18307, 18328, 18340, 18349, 18339, 18335, - 18348, 18330, 18336, 18352, 18356, 18357, 18338, 18341, 18347, 18346, - 18354, 18355, 18337, 18344, 18350, 18345, 18334, 18353, 18342, 18329, - 18331, 18351, 18343, 18332, 18333, 18575, 18576, 18774, 18770, 18811, - 18776, 18506, 18580, 18773, 18769, 18512, 18511, 18572, 18554, 18570, - 18579, 18574, 18360, 18359, 18813, 18772, 18814, 18577, 18768, 18550, - 29540, 41412, 32397, 32400, 32395, 32398, 32369, 32399, 32367, 32370, - 32396, 32368, 32401, 32366, 2569, 41412, 41412, 41412, 18767, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 31590, 31591, 31602, 31571, - 31574, 31605, 31583, 31582, 31603, 31610, 31569, 31596, 31575, 31588, - 31589, 31598, 31587, 31568, 31572, 31579, 31577, 31599, 31576, 31567, - 31597, 31584, 31585, 31570, 31573, 31595, 31609, 31580, 31604, 31566, - 31592, 31611, 31593, 31594, 31586, 31608, 31607, 31581, 31600, 31601, - 31606, 31578, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 25459, 25461, 25457, 25458, 25466, 25465, 25468, 25476, - 25478, 25455, 25469, 25452, 25472, 25470, 25450, 25463, 25451, 25464, - 25475, 25471, 25453, 25473, 25474, 25454, 25456, 25460, 25462, 25467, - 25477, 41412, 41412, 41412, 6141, 6152, 6143, 6114, 6137, 6153, 6115, - 6142, 6159, 6157, 6117, 6158, 6144, 6132, 6127, 6128, 6126, 6112, 6135, - 6125, 6160, 6122, 6134, 6151, 6131, 6155, 6145, 6140, 6149, 6150, 6123, - 6136, 6147, 6148, 6129, 6130, 6124, 6156, 6113, 6133, 6138, 6154, 6118, - 6119, 6120, 6121, 6116, 6146, 6139, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 8703, 8701, 8699, 8698, 8695, 8694, 8697, 8696, 8702, 8700, 8693, 8692, - 8690, 8681, 8679, 8688, 8686, 8677, 8683, 8684, 8691, 8689, 8680, 8678, - 8687, 8685, 8676, 8682, 41412, 41412, 41412, 41412, 30395, 30389, 30375, - 30390, 30362, 30392, 30394, 30391, 30386, 30382, 30374, 30370, 30371, - 30372, 30364, 30396, 30385, 30378, 30376, 30366, 30363, 30387, 30380, - 30368, 30384, 30373, 30369, 30367, 30388, 30383, 30381, 30365, 30400, - 30398, 30399, 30397, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 30393, 30379, 30377, 18170, 18186, 18194, 18188, 18169, - 18179, 18173, 18172, 18181, 18190, 18195, 18191, 18189, 18177, 18193, - 18184, 18178, 18176, 18180, 18192, 18182, 18183, 18185, 18174, 18171, - 18187, 18175, 41412, 41412, 41412, 41412, 41412, 30467, 30466, 30463, - 30436, 30437, 30459, 30434, 30460, 30435, 30439, 30468, 30461, 30442, - 30443, 30450, 30444, 30462, 30447, 30449, 30470, 30433, 30446, 30445, - 30457, 30454, 30464, 30465, 30438, 30469, 30448, 30451, 30452, 30453, - 30456, 30441, 30458, 30455, 30440, 8508, 8506, 8504, 8505, 8507, 41412, - 41412, 41412, 41412, 41412, 38163, 38166, 38170, 38174, 38167, 38171, - 38189, 38185, 38172, 38182, 38184, 38173, 38179, 38175, 38190, 38168, - 38187, 38186, 38178, 38164, 38188, 38177, 38165, 38176, 38181, 38169, - 38183, 38191, 38192, 38180, 41412, 38193, 30476, 30518, 30519, 30499, - 30500, 30497, 30498, 30496, 30511, 30488, 30489, 30493, 30494, 30483, - 30486, 30487, 30492, 30515, 30480, 30512, 30501, 30502, 30505, 30506, - 30507, 30516, 30490, 30491, 30503, 30504, 30514, 30510, 30517, 30508, - 30509, 30513, 41412, 41412, 41412, 41412, 30477, 30478, 30479, 30495, - 30484, 30485, 30481, 30482, 30520, 30475, 30472, 30473, 30471, 30474, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 10727, 10726, 10722, 10723, 10724, 10725, 10733, 10732, - 10728, 10729, 10730, 10731, 10750, 10735, 10749, 10746, 10751, 10744, - 10741, 10737, 10742, 10740, 10743, 10748, 10747, 10717, 10745, 10716, - 10736, 10712, 10739, 10713, 10738, 10720, 10718, 10719, 10714, 10715, - 10734, 10721, 10767, 10766, 10762, 10763, 10764, 10765, 10773, 10772, - 10768, 10769, 10770, 10771, 10790, 10775, 10789, 10786, 10791, 10784, - 10781, 10777, 10782, 10780, 10783, 10788, 10787, 10757, 10785, 10756, - 10776, 10752, 10779, 10753, 10778, 10760, 10758, 10759, 10754, 10755, - 10774, 10761, 32992, 32998, 33009, 33006, 32996, 32995, 32994, 32973, - 33001, 32979, 33008, 33004, 33007, 33010, 32997, 33005, 32984, 33003, - 33000, 32978, 32983, 32985, 32982, 32977, 32971, 32968, 32990, 32999, - 32988, 32972, 32993, 33011, 32975, 32969, 32981, 33012, 32989, 32986, - 32987, 32970, 32966, 32991, 32967, 32976, 32965, 32974, 32980, 33002, - 30910, 30928, 30934, 30932, 30935, 30916, 30913, 30933, 30918, 30917, - 30914, 30912, 30930, 30929, 30920, 30915, 30923, 30919, 30924, 30925, - 30931, 30936, 30909, 30926, 30937, 30921, 30938, 30911, 30927, 30922, - 41412, 41412, 30945, 30947, 30944, 30943, 30940, 30939, 30942, 30941, - 30948, 30946, 41412, 41412, 41412, 41412, 41412, 41412, 30837, 30838, - 30839, 30840, 30865, 30858, 30844, 30841, 30847, 30857, 30856, 30871, - 30850, 30845, 30849, 30866, 30867, 30868, 30851, 30852, 30869, 30846, - 30862, 30861, 30855, 30843, 30854, 30842, 30853, 30859, 30872, 30870, - 30848, 30860, 30864, 30863, 41412, 41412, 41412, 41412, 30873, 30874, - 30875, 30876, 30901, 30894, 30880, 30877, 30883, 30893, 30892, 30907, - 30886, 30881, 30885, 30902, 30903, 30904, 30887, 30888, 30905, 30882, - 30898, 30897, 30891, 30879, 30890, 30878, 30889, 30895, 30908, 30906, - 30884, 30896, 30900, 30899, 41412, 41412, 41412, 41412, 16827, 16818, - 16807, 16806, 16809, 16798, 16808, 16805, 16804, 16819, 16795, 16794, - 16820, 16828, 16821, 16811, 16797, 16796, 16822, 16801, 16800, 16799, - 16829, 16823, 16824, 16803, 16802, 16813, 16812, 16815, 16814, 16830, - 16825, 16826, 16831, 16817, 16816, 16793, 16792, 16810, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 6173, 6222, 6189, 6185, 6187, - 6212, 6186, 6210, 6207, 6176, 6209, 6211, 6190, 6201, 6197, 6192, 6220, - 6184, 6175, 6193, 6196, 6198, 6223, 6214, 6172, 6178, 6179, 6181, 6215, - 6213, 6218, 6182, 6202, 6194, 6221, 6206, 6217, 6183, 6177, 6200, 6188, - 6219, 6204, 6216, 6205, 6203, 6191, 6180, 6174, 6208, 6199, 6195, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 6224, 39368, 39337, 39338, 39348, 39347, 39350, 39349, 39340, 39339, - 39357, 39365, 41412, 39356, 39355, 39341, 39342, 39358, 39366, 39344, - 39343, 39359, 39346, 39345, 39369, 39360, 39367, 39361, 41412, 39352, - 39351, 39354, 39353, 39370, 39362, 39363, 41412, 39371, 39364, 41412, - 39403, 39372, 39373, 39383, 39382, 39385, 39384, 39375, 39374, 39392, - 39400, 41412, 39391, 39390, 39376, 39377, 39393, 39401, 39379, 39378, - 39394, 39381, 39380, 39404, 39395, 39402, 39396, 41412, 39387, 39386, - 39389, 39388, 39405, 39397, 39398, 41412, 39406, 39399, 41412, 41412, - 41412, 37824, 37825, 37838, 37798, 37827, 37826, 37829, 37805, 37828, - 37821, 37820, 37839, 37795, 37801, 37794, 37800, 37808, 37807, 37842, - 37796, 37831, 37823, 37822, 37799, 37806, 37802, 37818, 37810, 37840, - 37817, 37816, 37815, 37812, 37811, 37833, 37832, 37843, 37841, 37835, - 37804, 37834, 37803, 37844, 37797, 37837, 37836, 37793, 37814, 37813, - 37830, 37809, 37819, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 24988, 24989, 24990, 24991, 24992, - 24993, 24994, 24995, 24996, 24927, 24928, 24929, 24930, 24931, 24940, - 24932, 24933, 24934, 24935, 24936, 24937, 24938, 24939, 24941, 24942, - 24943, 24944, 25008, 24945, 24946, 24947, 24948, 24949, 24950, 24951, - 24952, 24953, 24954, 24955, 24956, 24957, 24958, 24959, 24960, 24961, - 24962, 24963, 24964, 24965, 24966, 24967, 24968, 24969, 24970, 24971, - 24972, 24973, 24974, 24975, 24976, 24977, 24978, 24979, 24980, 24981, - 24982, 24983, 24984, 24985, 24986, 24987, 24668, 25004, 24997, 24669, - 24998, 24999, 25000, 25001, 24670, 25005, 25006, 25002, 25003, 25007, - 24674, 24675, 24676, 24677, 24678, 24679, 24680, 24681, 24671, 24672, - 24673, 24685, 24686, 24687, 24682, 24683, 24684, 24688, 24689, 24690, - 24691, 24692, 24693, 24696, 24697, 24698, 24699, 24700, 24701, 24702, - 24703, 24704, 24705, 24706, 24707, 24708, 24709, 24710, 24711, 24712, - 24713, 24714, 24715, 24716, 24717, 24718, 24719, 24720, 24721, 24722, - 24723, 24724, 24725, 24726, 24727, 24728, 24729, 24730, 24731, 24732, - 24733, 24734, 24735, 24736, 24737, 24738, 24739, 24740, 24741, 24742, - 24743, 24744, 24745, 24694, 24695, 24746, 24747, 24748, 24749, 24750, - 24751, 24752, 24753, 24754, 24755, 24756, 24757, 24758, 24759, 24760, - 24761, 24762, 24763, 24764, 24765, 24766, 24767, 24768, 24769, 24770, - 24771, 24772, 24773, 24774, 24775, 24776, 24777, 24778, 24810, 24811, - 24812, 24813, 24814, 24815, 24816, 24817, 24818, 24779, 24780, 24781, - 24782, 24783, 24784, 24785, 24786, 24787, 24788, 24789, 24790, 24791, - 24792, 24793, 24794, 24795, 24796, 24797, 24798, 24799, 24800, 24801, - 24802, 24803, 24804, 24805, 24806, 24807, 24808, 24809, 24825, 24826, - 24827, 24828, 24829, 24830, 24831, 24832, 24833, 24834, 24835, 24836, - 24837, 24838, 24839, 24840, 24841, 24842, 24843, 24844, 24819, 24820, - 24821, 24822, 24823, 24824, 24845, 24846, 24847, 24848, 24849, 24850, - 24851, 24852, 24887, 24888, 24889, 24890, 24891, 24892, 24893, 24894, - 24895, 24896, 24853, 24854, 24855, 24856, 24857, 24858, 24859, 24860, - 24861, 24862, 24863, 24864, 24865, 24866, 24867, 24868, 24869, 24870, - 24871, 24872, 24878, 24879, 24880, 24881, 24882, 24883, 24884, 24885, - 24886, 24873, 24874, 24875, 24876, 24877, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 24908, 24903, 24906, 24905, 24909, - 24904, 24902, 24907, 24901, 24897, 24900, 24899, 24898, 24915, 24913, - 24914, 24910, 24911, 24912, 24916, 24918, 24917, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 24919, 24920, 24921, - 24922, 24923, 24924, 24925, 24926, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28048, - 28169, 28168, 28033, 28049, 28037, 41412, 28067, 28069, 28068, 28063, - 28062, 28060, 28061, 28122, 28055, 28079, 28119, 28043, 28083, 28044, - 28087, 28050, 28089, 28066, 28103, 28104, 28102, 28046, 28100, 28105, - 28106, 28147, 28148, 28111, 28047, 28056, 28162, 28144, 28145, 28118, - 28117, 28052, 28132, 28135, 28136, 28133, 28131, 28159, 41412, 28054, - 27974, 28021, 27868, 27952, 27981, 27865, 28023, 28124, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 10140, 10141, 10142, - 10143, 10144, 10134, 41412, 41412, 10135, 41412, 10090, 10091, 10092, - 10093, 10094, 10095, 10096, 10097, 10098, 10099, 10100, 10101, 10102, - 10103, 10104, 10105, 10106, 10107, 10108, 10109, 10110, 10111, 10112, - 10113, 10114, 10115, 10116, 10117, 10118, 10119, 10120, 10121, 10122, - 10123, 10124, 10125, 10126, 10127, 10128, 10129, 10130, 10131, 10132, - 10133, 41412, 10138, 10139, 41412, 41412, 41412, 10136, 41412, 41412, - 10137, 20770, 20781, 20772, 20766, 20778, 20783, 20773, 20779, 20764, - 20777, 20780, 20767, 20785, 20782, 20774, 20771, 20784, 20775, 20768, - 20769, 20776, 20765, 41412, 20786, 20761, 20757, 20760, 20758, 20756, - 20762, 20763, 20759, 31218, 31229, 31220, 31214, 31226, 31231, 31221, - 31227, 31212, 31225, 31228, 31215, 31233, 31211, 31230, 31222, 31219, - 31232, 31223, 31216, 31217, 31224, 31213, 31210, 31234, 31241, 31236, - 31237, 31240, 31239, 31238, 31235, 28986, 29001, 28991, 29012, 29003, - 28997, 28993, 29009, 29014, 29004, 29010, 28995, 28989, 29008, 28990, - 29011, 28987, 28998, 28994, 29016, 28992, 29013, 29005, 29002, 29015, - 29006, 28999, 29000, 28988, 29007, 28996, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 29021, 29018, 29019, 29024, 29025, 29023, - 29020, 29017, 29022, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 19816, 19832, 19824, 19823, 19829, 19834, 19818, 19830, 19819, - 19828, 19831, 19821, 19836, 19833, 19825, 19817, 19835, 19826, 19822, - 41412, 19827, 19820, 41412, 41412, 41412, 41412, 41412, 19837, 19841, - 19840, 19839, 19838, 31614, 31633, 31629, 31616, 31617, 31625, 31626, - 31618, 31624, 31627, 31630, 31632, 31635, 31631, 31622, 31615, 31634, - 31620, 31619, 31628, 31621, 31623, 31640, 31639, 31636, 31641, 31637, - 31638, 41412, 41412, 41412, 31642, 25485, 25491, 25495, 25493, 25487, - 25503, 25496, 25504, 25497, 25481, 25498, 25489, 25499, 25501, 25484, - 25479, 25502, 25494, 25500, 25483, 25480, 25486, 25488, 25482, 25490, - 25492, 41412, 41412, 41412, 41412, 41412, 25505, 33150, 33151, 33152, - 33153, 33154, 33155, 33156, 33157, 33158, 33159, 33160, 33161, 33162, - 33163, 33164, 33165, 33166, 33167, 33168, 33143, 33144, 33145, 33146, - 33147, 33148, 33149, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 27580, 27581, 27582, 27583, 27579, 27578, 27554, 27555, 27576, - 27575, 27558, 27559, 27560, 27561, 27556, 27557, 27574, 27571, 27570, - 27562, 27563, 27564, 27572, 27577, 27565, 27566, 27567, 27568, 27569, - 27573, 27584, 27585, 27476, 27497, 27498, 27499, 27496, 27495, 27488, - 27492, 27491, 27481, 27482, 27494, 27490, 27486, 27485, 27483, 27477, - 27484, 27487, 27493, 27478, 27479, 27480, 27489, 41412, 41412, 41412, - 41412, 27464, 27469, 27501, 27500, 27550, 27542, 27536, 27513, 27507, - 27530, 27524, 27502, 27519, 27548, 27546, 27540, 27517, 27511, 27534, - 27528, 41412, 41412, 27551, 27543, 27537, 27514, 27508, 27531, 27525, - 27504, 27521, 27553, 27545, 27539, 27516, 27510, 27533, 27527, 27506, - 27523, 27549, 27547, 27541, 27518, 27512, 27535, 27529, 27503, 27520, - 27552, 27544, 27538, 27515, 27509, 27532, 27526, 27505, 27522, 27468, - 27474, 27473, 27467, 27466, 27471, 27470, 27465, 27475, 27472, 21831, - 21853, 21855, 21851, 41412, 21852, 21854, 41412, 41412, 41412, 41412, - 41412, 21856, 21847, 21850, 21849, 21797, 21795, 21819, 21818, 41412, - 21817, 21816, 21825, 41412, 21805, 21801, 21800, 21808, 21807, 21804, - 21803, 21802, 21810, 21809, 21806, 21821, 21820, 21815, 21814, 21827, - 21829, 21828, 21826, 21823, 21811, 21812, 21813, 21830, 21824, 21796, - 21798, 21799, 21822, 41412, 41412, 21845, 21846, 21848, 41412, 41412, - 41412, 41412, 21857, 21794, 21793, 21792, 21791, 21833, 21832, 21834, - 21835, 21858, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 21839, - 21844, 21837, 21836, 21843, 21841, 21840, 21838, 21842, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 30585, 30581, 30586, 30591, 30582, - 30589, 30575, 30583, 30587, 30579, 30574, 30570, 30588, 30571, 30573, - 30572, 30590, 30563, 30564, 30566, 30569, 30567, 30568, 30578, 30580, - 30565, 30584, 30577, 30576, 30593, 30592, 30594, 30406, 30424, 30405, - 30415, 30427, 30428, 30417, 30421, 30419, 30412, 30416, 30408, 30423, - 30407, 30429, 30418, 30420, 30401, 30402, 30425, 30404, 30426, 30403, - 30411, 30413, 30409, 30422, 30410, 30414, 30432, 30431, 30430, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 25786, 25790, 25789, 25794, 25793, 25791, 25815, 25818, 25834, - 25798, 25797, 25796, 25795, 25816, 25808, 25814, 25800, 25810, 25799, - 25812, 25792, 25807, 25821, 25817, 25804, 25788, 25787, 25820, 25819, - 25805, 25802, 25811, 25801, 25813, 25806, 25803, 25809, 25836, 25835, - 41412, 41412, 41412, 41412, 25822, 25826, 25825, 25824, 25823, 25833, - 25831, 25829, 25828, 25827, 25832, 25830, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 2587, 2588, 2594, 2590, 2593, 2589, - 2591, 2592, 2630, 2631, 2620, 2621, 2622, 2623, 2618, 2619, 2635, 2608, - 2607, 2606, 2597, 2595, 2596, 2632, 2634, 2617, 2615, 2627, 2626, 2616, - 2638, 2633, 2625, 2624, 2602, 2601, 2600, 2605, 2604, 2603, 2637, 2598, - 2613, 2614, 2640, 2639, 2636, 2612, 2629, 2610, 2628, 2609, 2611, 2599, - 41412, 41412, 41412, 2641, 37706, 34058, 22832, 22827, 22833, 22828, - 20912, 20923, 20914, 20908, 20920, 20925, 20915, 20921, 20906, 20919, - 20922, 20909, 20927, 20924, 20916, 20913, 20926, 20917, 20910, 20911, - 20918, 20907, 41412, 41412, 20932, 20929, 20930, 20935, 20931, 20928, - 20933, 20934, 20881, 20895, 20886, 20882, 20892, 20885, 20887, 20893, - 20879, 20891, 20894, 20883, 20884, 20896, 20888, 20897, 20889, 20890, - 20880, 41412, 41412, 41412, 41412, 41412, 20902, 20899, 20900, 20905, - 20901, 20898, 20903, 20904, 31875, 31889, 31880, 31876, 31886, 31879, - 31881, 31887, 31885, 31888, 31877, 31878, 31890, 31882, 31892, 31883, - 31884, 31891, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 31900, - 31901, 31873, 31874, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 31897, 31894, 31895, 31899, 31896, - 31893, 31898, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 30595, 30637, 30638, 30627, 30663, 30656, 30630, 30631, - 30665, 30608, 30648, 30596, 30641, 30610, 30650, 30598, 30642, 30609, - 30649, 30597, 30626, 30662, 30616, 30655, 30605, 30645, 30599, 30643, - 30632, 30666, 30611, 30651, 30600, 30621, 30624, 30612, 30601, 30639, - 30619, 30658, 30617, 30657, 30620, 30659, 30647, 30618, 30640, 30625, - 30633, 30628, 30623, 30661, 30613, 30652, 30629, 30664, 30634, 30667, - 30614, 30653, 30602, 30606, 30603, 30607, 30646, 30622, 30660, 30615, - 30654, 30604, 30644, 30635, 30636, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 30254, 30257, 30280, 30255, 30269, 30265, 30271, 30281, 30256, 30259, - 30302, 30282, 30283, 30272, 30273, 30284, 30303, 30304, 30285, 30286, - 30258, 30299, 30274, 30275, 30260, 30262, 30266, 30294, 30296, 30290, - 30292, 30295, 30287, 30261, 30288, 30297, 30267, 30268, 30276, 30263, - 30277, 30270, 30298, 30301, 30291, 30293, 30289, 30278, 30279, 30264, - 30300, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 30305, 30308, 30331, 30306, 30320, 30316, - 30322, 30332, 30307, 30310, 30353, 30333, 30334, 30323, 30324, 30335, - 30354, 30355, 30336, 30337, 30309, 30350, 30325, 30326, 30311, 30313, - 30317, 30345, 30347, 30341, 30343, 30346, 30338, 30312, 30339, 30348, - 30318, 30319, 30327, 30314, 30328, 30321, 30349, 30352, 30342, 30344, - 30340, 30329, 30330, 30315, 30351, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 30358, 30357, 30361, 30356, 30359, 30360, 19769, 19756, - 19764, 19748, 19747, 19761, 19757, 19760, 19745, 19758, 19742, 19741, - 19750, 19749, 19768, 19755, 19754, 19746, 19759, 19762, 19763, 19753, - 19766, 19743, 19767, 19744, 19751, 19752, 19765, 19776, 19778, 19780, - 19777, 19779, 19771, 19770, 19775, 19772, 19774, 19773, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 19787, 19789, 19786, 19785, - 19782, 19781, 19784, 19783, 19790, 19788, 41412, 41412, 41412, 41412, - 41412, 41412, 17854, 17856, 17853, 17852, 17849, 17848, 17851, 17850, - 17857, 17855, 17840, 17841, 17842, 17839, 17843, 17837, 17814, 17798, - 17806, 17804, 17797, 17803, 17809, 17811, 17805, 17801, 17799, 17812, - 17813, 17810, 17808, 17795, 17800, 17796, 17807, 17802, 17793, 17794, - 41412, 41412, 41412, 17838, 17792, 17790, 17789, 17791, 17845, 17844, - 17836, 17820, 17828, 17826, 17819, 17825, 17831, 17833, 17827, 17823, - 17821, 17834, 17835, 17832, 17830, 17817, 17822, 17818, 17829, 17824, - 17815, 17816, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 17846, 17847, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 32454, 32452, 32451, 32448, 32447, 32450, 32449, 32455, 32453, 32446, - 32445, 32443, 32434, 32432, 32441, 32439, 32430, 32436, 32437, 32444, - 32442, 32433, 32431, 32440, 32438, 32429, 32435, 32426, 32427, 32425, - 32428, 41412, 39869, 39903, 39883, 39882, 39888, 39887, 39865, 39864, - 39863, 39874, 39895, 39868, 39899, 39902, 39901, 39898, 39906, 39885, - 39884, 39886, 39867, 39889, 39900, 39870, 39894, 39905, 39890, 39891, - 39878, 39876, 39875, 39877, 39879, 39866, 39881, 39904, 39892, 39893, - 39872, 39873, 39896, 39871, 41412, 39861, 39860, 39862, 41412, 41412, - 39880, 39897, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 1201, 1497, 1332, - 2388, 1540, 1604, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 1065, 1654, 1652, 1650, 1909, 1910, 1911, 1913, 1895, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 1083, 2389, 1066, 2395, 2396, 2393, 30525, 30533, 30547, 30534, - 30538, 30544, 30535, 30550, 30539, 30545, 30543, 30546, 30537, 30552, - 30548, 30527, 30528, 30540, 30526, 30524, 30551, 30541, 30529, 30530, - 30536, 30542, 30549, 30531, 30532, 30559, 30557, 30554, 30562, 30561, - 30558, 30556, 30555, 30560, 30523, 30553, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 34118, 34132, 34120, 34129, 34136, 34124, - 34130, 34128, 34131, 34121, 34138, 34134, 34125, 34119, 34137, 34126, - 34123, 34127, 34135, 34133, 34122, 34117, 34112, 34110, 34113, 34111, - 34116, 34115, 34107, 34106, 34108, 34114, 34109, 34139, 34142, 34141, - 34140, 34145, 34146, 34143, 34147, 34144, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 30672, 30684, - 30682, 30687, 30676, 30681, 30680, 30683, 30674, 30689, 30685, 30677, - 30688, 30678, 30673, 30679, 30686, 30675, 30671, 30670, 30669, 30668, - 30693, 30690, 30691, 30692, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 6596, 6590, 6604, 6598, 6593, 6601, 6607, 6589, 6599, 6602, - 6600, 6603, 6594, 6609, 6605, 6591, 6597, 6608, 6595, 6592, 6606, 6614, - 6611, 6612, 6616, 6613, 6610, 6615, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 16854, 16865, 16856, 16850, 16862, - 16867, 16857, 16863, 16848, 16861, 16864, 16851, 16869, 16866, 16858, - 16855, 16868, 16859, 16852, 16853, 16860, 16849, 16870, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 4737, 4742, 4740, 4739, - 4741, 4664, 4665, 4683, 4684, 4681, 4682, 4676, 4677, 4678, 4679, 4710, - 4666, 4657, 4667, 4703, 4702, 4699, 4698, 4687, 4697, 4696, 4701, 4700, - 4689, 4673, 4672, 4669, 4668, 4688, 4675, 4674, 4671, 4670, 4690, 4705, - 4704, 4695, 4694, 4707, 4709, 4708, 4686, 4680, 4691, 4692, 4693, 4706, - 4685, 4658, 4663, 4662, 4747, 4746, 4756, 4757, 4750, 4751, 4752, 4753, - 4754, 4755, 4758, 4748, 4743, 4749, 4759, 4761, 4760, 4735, 4734, 4733, - 4736, 4732, 41412, 41412, 41412, 41412, 4728, 4726, 4723, 4714, 4716, - 4721, 4719, 4711, 4717, 4727, 4725, 4724, 4713, 4715, 4722, 4720, 4712, - 4718, 4729, 4730, 4768, 4770, 4767, 4766, 4763, 4762, 4765, 4764, 4771, - 4769, 4738, 4660, 4661, 4744, 4745, 4659, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 4731, 21141, 21143, 21145, 21101, - 21102, 21111, 21112, 21109, 21110, 21139, 21103, 21140, 21104, 21129, - 21128, 21125, 21124, 21113, 21123, 21122, 21127, 21126, 21115, 21106, - 21105, 21098, 21096, 21097, 21132, 21114, 21108, 21107, 21100, 21099, - 21116, 21131, 21130, 21121, 21120, 21136, 21138, 21133, 21135, 21137, - 21117, 21118, 21119, 21134, 21151, 21156, 21157, 21154, 21155, 21158, - 21152, 21159, 21153, 21144, 21142, 21162, 21163, 21160, 21146, 21147, - 21149, 21148, 21150, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 21161, 41412, 41412, 34170, 34171, 34160, 34161, - 34162, 34163, 34156, 34157, 34167, 34159, 34172, 34168, 34173, 34169, - 34164, 34166, 34165, 34158, 34174, 34153, 34175, 34177, 34176, 34154, - 34155, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 34184, 34186, - 34183, 34182, 34179, 34178, 34181, 34180, 34187, 34185, 41412, 41412, - 41412, 41412, 41412, 41412, 6276, 6278, 6277, 6272, 6274, 6275, 6273, - 6261, 6260, 6257, 6256, 6242, 6255, 6254, 6259, 6258, 6244, 6247, 6246, - 6239, 6238, 6243, 6249, 6248, 6241, 6240, 6245, 6265, 6264, 6253, 6252, - 6267, 6250, 6251, 6268, 6263, 6271, 6269, 6266, 6280, 6288, 6289, 6284, - 6285, 6286, 6282, 6290, 6283, 6291, 6308, 6307, 6292, 6306, 41412, 6301, - 6303, 6300, 6299, 6296, 6295, 6298, 6297, 6304, 6302, 6279, 6294, 6293, - 6305, 6262, 6281, 6287, 6270, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 25547, 25549, 25551, 25548, 25550, 25539, 25538, 25535, - 25534, 25533, 25532, 25537, 25536, 25518, 25527, 25526, 25521, 25520, - 25517, 25529, 25528, 25523, 25522, 25519, 25541, 25540, 25531, 25530, - 25544, 25525, 25543, 25546, 25545, 25542, 25524, 25554, 25555, 25553, - 25552, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 32928, 32931, 32935, 32874, 32875, 32893, 32894, 32891, 32892, 32886, - 32887, 32888, 32889, 32920, 32876, 32921, 32877, 32913, 32912, 32909, - 32908, 32897, 32907, 32906, 32911, 32910, 32899, 32883, 32882, 32879, - 32878, 32898, 32885, 32884, 32881, 32880, 32900, 32915, 32914, 32905, - 32904, 32917, 32919, 32918, 32896, 32895, 32890, 32901, 32902, 32903, - 32916, 32950, 32957, 32958, 32944, 32945, 32953, 32954, 32955, 32956, - 32959, 32951, 32940, 32952, 32934, 32930, 32932, 32933, 32962, 32860, - 32859, 32960, 32925, 32922, 32929, 32937, 32871, 32936, 32943, 32926, - 32867, 32869, 32866, 32865, 32862, 32861, 32864, 32863, 32870, 32868, - 32872, 32927, 32873, 32961, 32923, 32924, 41412, 33872, 33870, 33869, - 33866, 33865, 33868, 33867, 33873, 33871, 33884, 33883, 33882, 33878, - 33877, 33881, 33880, 33876, 33879, 33874, 33875, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 22537, 22538, - 22564, 22566, 22563, 22539, 22565, 22540, 22554, 22553, 22529, 22527, - 22528, 22547, 22552, 22551, 22536, 22535, 41412, 22549, 22542, 22541, - 22532, 22531, 22548, 22544, 22543, 22534, 22530, 22533, 22550, 22556, - 22555, 22526, 22524, 22525, 22558, 22562, 22560, 22546, 22561, 22523, - 22557, 22545, 22574, 22577, 22578, 22581, 22579, 22575, 22580, 22576, - 22571, 22570, 22569, 22567, 22521, 22520, 22582, 22572, 22519, 22583, - 22568, 22559, 22522, 22573, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 28461, 28463, 28464, 28462, - 28452, 28451, 28450, 41412, 28449, 41412, 28448, 28447, 28440, 28439, - 41412, 28434, 28442, 28441, 28430, 28428, 28429, 28433, 28444, 28443, - 28432, 28431, 28435, 28454, 28453, 28446, 41412, 28445, 28457, 28460, - 28438, 28456, 28459, 28458, 28455, 28437, 28436, 28465, 41412, 41412, - 41412, 41412, 41412, 41412, 22598, 22599, 22610, 22611, 22608, 22609, - 22629, 22600, 22630, 22601, 22619, 22618, 22589, 22587, 22588, 22612, - 22617, 22616, 22597, 22596, 22595, 22614, 22605, 22604, 22592, 22590, - 22602, 22591, 22613, 22607, 22606, 22594, 22593, 22615, 22621, 22620, - 22586, 22584, 22585, 22626, 22628, 22603, 22625, 22627, 22622, 22623, - 22624, 22633, 22634, 22639, 22640, 22637, 22638, 22641, 22635, 22642, - 22636, 22631, 22632, 41412, 41412, 41412, 41412, 41412, 22649, 22651, - 22648, 22647, 22644, 22643, 22646, 22645, 22652, 22650, 41412, 41412, - 41412, 41412, 41412, 41412, 18252, 18253, 18256, 18259, 41412, 18209, - 18210, 18223, 18224, 18221, 18222, 18204, 18206, 41412, 41412, 18247, - 18211, 41412, 41412, 18246, 18212, 18243, 18242, 18239, 18238, 18227, - 18237, 18236, 18241, 18240, 18229, 18218, 18217, 18214, 18213, 18228, - 18220, 18219, 18216, 18215, 18230, 41412, 18245, 18244, 18235, 18234, - 18249, 18251, 18250, 41412, 18226, 18225, 41412, 18208, 18231, 18232, - 18233, 18248, 41412, 8183, 18254, 18255, 18261, 18270, 18271, 18264, - 18265, 18266, 18267, 41412, 41412, 18273, 18262, 41412, 41412, 18272, - 18263, 18258, 41412, 41412, 18274, 41412, 41412, 41412, 41412, 41412, - 41412, 18260, 41412, 41412, 41412, 41412, 41412, 18257, 18203, 18202, - 18205, 18207, 18268, 18269, 41412, 41412, 8372, 8373, 8371, 8370, 8369, - 8368, 8367, 41412, 41412, 41412, 8378, 8375, 8376, 8374, 8377, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 38042, 38043, 38066, 38067, 38064, 38065, 38059, 38060, 38061, 38062, - 41412, 38088, 41412, 41412, 38044, 41412, 38087, 38045, 38084, 38083, - 38080, 38079, 38068, 38078, 38077, 38082, 38081, 38070, 38056, 38055, - 38047, 38046, 38069, 38058, 38057, 38049, 38048, 38071, 38086, 38085, - 38076, 38075, 38090, 38091, 38054, 38052, 38063, 38072, 38073, 38074, - 38089, 38051, 38053, 38050, 41412, 38093, 38104, 38113, 38114, 38107, - 38108, 38109, 38110, 38111, 38112, 41412, 38116, 41412, 41412, 38105, - 41412, 38115, 38106, 38037, 38098, 41412, 38094, 38101, 38100, 38095, - 38038, 38092, 38041, 38099, 38040, 38039, 41412, 38096, 38097, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 38103, 38102, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29384, 29385, - 29398, 29399, 29396, 29397, 29380, 29381, 29382, 29383, 29424, 29386, - 29425, 29387, 29412, 29411, 29408, 29407, 29373, 29372, 29406, 29405, - 29410, 29409, 29375, 29374, 29393, 29392, 29389, 29388, 29377, 29395, - 29394, 29391, 29390, 29378, 29376, 29418, 29417, 29404, 29403, 29416, - 29415, 29423, 29420, 29419, 29414, 29413, 29422, 29400, 29401, 29402, - 29421, 29438, 29447, 29448, 29441, 29442, 29443, 29444, 29445, 29446, - 29449, 29439, 29450, 29440, 29433, 29426, 29429, 29434, 29427, 29428, - 29431, 29454, 29435, 29360, 29358, 29453, 29371, 29451, 29367, 29369, - 29366, 29365, 29362, 29361, 29364, 29363, 29370, 29368, 29359, 29437, - 41412, 29452, 29436, 29379, 29430, 29432, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 37708, 37709, 37710, 37728, - 37729, 37726, 37727, 37721, 37722, 37723, 37724, 37754, 37711, 37755, - 37712, 37746, 37745, 37742, 37741, 37730, 37740, 37739, 37744, 37743, - 37732, 37718, 37717, 37714, 37713, 37731, 37720, 37719, 37716, 37715, - 37733, 37748, 37747, 37738, 37737, 37751, 37753, 37752, 37750, 37725, - 37734, 37735, 37736, 37749, 37764, 37773, 37774, 37767, 37768, 37769, - 37770, 37771, 37772, 37775, 37762, 37765, 37776, 37763, 37766, 37756, - 37759, 37761, 37760, 37757, 37758, 37787, 37707, 37788, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 37783, 37785, 37782, 37781, - 37778, 37777, 37780, 37779, 37786, 37784, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 33052, 33054, 33075, 33076, 33073, 33074, 33068, 33069, - 33070, 33071, 33101, 33055, 33102, 33056, 33093, 33092, 33089, 33088, - 33077, 33087, 33086, 33091, 33090, 33079, 33062, 33061, 33065, 33064, - 33078, 33063, 33058, 33067, 33066, 33080, 33095, 33094, 33085, 33084, - 33098, 33100, 33099, 33097, 33072, 33081, 33082, 33083, 33096, 33130, - 33137, 33138, 33135, 33136, 33133, 33134, 41412, 41412, 33139, 33131, - 33140, 33132, 33123, 33125, 33127, 33126, 33124, 33122, 33142, 33141, - 33121, 33120, 33103, 33104, 33105, 33051, 33118, 33117, 33115, 33113, - 33114, 33106, 33107, 33116, 33119, 33111, 33112, 33110, 33109, 33108, - 33057, 33059, 33060, 33053, 33128, 33129, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 27815, 27816, 27834, 27835, 27832, 27833, 27827, 27828, 27829, 27830, - 27861, 27817, 27862, 27818, 27854, 27853, 27850, 27849, 27838, 27848, - 27847, 27852, 27851, 27840, 27824, 27823, 27820, 27819, 27839, 27826, - 27825, 27822, 27821, 27841, 27856, 27855, 27846, 27845, 27858, 27860, - 27859, 27837, 27831, 27842, 27843, 27844, 27857, 27836, 27790, 27799, - 27800, 27793, 27794, 27795, 27796, 27797, 27798, 27801, 27791, 27802, - 27792, 27786, 27789, 27788, 27785, 27804, 27803, 27863, 27787, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 27811, 27813, 27810, 27809, 27806, 27805, 27808, 27807, 27814, 27812, - 41412, 41412, 41412, 41412, 41412, 41412, 28344, 28339, 28184, 28345, - 28343, 28341, 28340, 28201, 28202, 28335, 28337, 28336, 28346, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35581, 35583, - 35598, 35599, 35596, 35597, 35623, 35584, 35624, 35585, 35613, 35612, - 35609, 35608, 35600, 35607, 35606, 35611, 35610, 35602, 35593, 35592, - 35587, 35586, 35601, 35595, 35594, 35589, 35588, 35603, 35615, 35614, - 35605, 35604, 35620, 35622, 35591, 35619, 35621, 35616, 35617, 35618, - 35590, 35626, 35628, 35629, 35634, 35635, 35632, 35633, 35636, 35630, - 35637, 35631, 35627, 35625, 35582, 35580, 41412, 41412, 41412, 41412, - 41412, 41412, 35644, 35646, 35643, 35642, 35639, 35638, 35641, 35640, - 35647, 35645, 41412, 41412, 41412, 41412, 41412, 41412, 28953, 28955, - 28952, 28951, 28948, 28947, 28950, 28949, 28956, 28954, 28903, 28905, - 28902, 28901, 28898, 28897, 28900, 28899, 28906, 28904, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 191, 190, 178, 181, 175, 167, - 193, 192, 183, 195, 189, 184, 174, 196, 177, 197, 180, 194, 164, 171, - 170, 187, 166, 186, 182, 188, 165, 41412, 41412, 162, 163, 161, 203, 204, - 210, 211, 208, 209, 212, 207, 213, 205, 206, 200, 41412, 41412, 41412, - 41412, 222, 224, 221, 220, 217, 216, 219, 218, 225, 223, 215, 214, 198, - 199, 201, 202, 185, 173, 172, 169, 168, 179, 176, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 11159, 11160, 11175, 11176, 11173, 11174, 11201, 11161, - 11202, 11162, 11193, 11192, 11189, 11188, 11177, 11187, 11186, 11191, - 11190, 11179, 11170, 11169, 11164, 11163, 11178, 11172, 11171, 11166, - 11165, 11180, 11195, 11194, 11185, 11184, 11198, 11200, 11168, 11197, - 11199, 11181, 11182, 11183, 11196, 11167, 11205, 11210, 11211, 11208, - 11209, 11203, 11204, 11212, 11206, 11213, 11207, 11216, 11218, 11217, - 11215, 11214, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 39508, 39497, 39526, 39516, 39518, 39519, 39525, 39515, - 39501, 39510, 39498, 39528, 39524, 39503, 39517, 39514, 39502, 39511, - 39520, 39509, 39527, 39500, 39499, 39522, 39523, 39506, 39505, 39504, - 39507, 39512, 39513, 39521, 39540, 39529, 39558, 39548, 39550, 39551, - 39557, 39547, 39533, 39542, 39530, 39560, 39556, 39535, 39549, 39546, - 39534, 39543, 39552, 39541, 39559, 39532, 39531, 39554, 39555, 39538, - 39537, 39536, 39539, 39544, 39545, 39553, 39567, 39569, 39566, 39565, - 39562, 39561, 39564, 39563, 39570, 39568, 39579, 39578, 39577, 39573, - 39572, 39576, 39575, 39571, 39574, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 39580, 11075, 11076, - 11083, 11084, 11081, 11082, 11110, 41412, 41412, 11111, 41412, 41412, - 11101, 11100, 11099, 11098, 11087, 11097, 11096, 11105, 41412, 11089, - 11071, 41412, 11078, 11077, 11088, 11072, 11070, 11080, 11079, 11090, - 11103, 11102, 11095, 11094, 11106, 11074, 11073, 11107, 11086, 11108, - 11091, 11092, 11093, 11104, 11085, 11109, 11116, 11120, 11121, 11118, - 11119, 11122, 41412, 11117, 11123, 41412, 41412, 11115, 11113, 11112, - 11124, 11129, 11126, 11130, 11125, 11114, 11059, 11127, 11128, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 11066, 11068, - 11065, 11064, 11061, 11060, 11063, 11062, 11069, 11067, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29075, 29076, - 29091, 29092, 29089, 29090, 29072, 29073, 41412, 41412, 29117, 29077, - 29118, 29078, 29111, 29110, 29107, 29106, 29095, 29105, 29104, 29109, - 29108, 29097, 29086, 29085, 29080, 29079, 29096, 29088, 29087, 29082, - 29081, 29098, 29113, 29112, 29103, 29102, 29115, 29116, 29084, 29094, - 29074, 29099, 29100, 29101, 29114, 29093, 29083, 29127, 29132, 29133, - 29130, 29131, 29125, 29126, 41412, 41412, 29134, 29128, 29135, 29129, - 29121, 29123, 29122, 29120, 29119, 29136, 29124, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41193, 41214, 41211, 41210, 41213, 41209, - 41208, 41206, 41207, 41212, 41205, 41161, 41160, 41180, 41179, 41162, - 41178, 41177, 41187, 41164, 41172, 41171, 41154, 41153, 41163, 41174, - 41173, 41158, 41157, 41165, 41182, 41181, 41176, 41175, 41189, 41170, - 41169, 41156, 41155, 41183, 41184, 41185, 41192, 41190, 41188, 41191, - 41166, 41167, 41168, 41186, 41159, 41152, 41202, 41199, 41200, 41201, - 41198, 41203, 41149, 41148, 41146, 41145, 41147, 41151, 41144, 41197, - 41195, 41194, 41196, 41150, 41143, 41204, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 34276, 34297, 34295, 34294, 34296, 34292, - 34293, 34290, 34291, 34289, 34288, 34298, 34243, 34242, 34262, 34261, - 34244, 34260, 34259, 34264, 34263, 34246, 34254, 34253, 34237, 34236, - 34245, 34256, 34255, 34240, 34238, 34247, 34266, 34265, 34258, 34257, - 34272, 34252, 34251, 34239, 34267, 34268, 34269, 34275, 34273, 34271, - 34274, 34248, 34249, 34250, 34270, 34241, 34281, 34283, 34220, 34219, - 34217, 34218, 34228, 34229, 34224, 34227, 34223, 34226, 34231, 34232, - 34230, 34222, 34221, 34225, 34284, 34282, 34299, 34285, 34280, 34279, - 34278, 34277, 34235, 34234, 34233, 34286, 34287, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 5719, 5720, 5717, 5718, 5715, 5716, 5725, 5726, 5723, 5724, 5721, 5722, - 5888, 5889, 5890, 5887, 31432, 31430, 31439, 31440, 31436, 31444, 31443, - 31425, 31438, 31437, 31429, 31442, 31435, 31428, 31434, 31433, 31426, - 31431, 31441, 31420, 31427, 31445, 31446, 31421, 31447, 31423, 31424, - 31422, 31416, 31413, 31417, 31415, 31411, 31414, 31418, 31412, 31419, - 31453, 31452, 31463, 31454, 31455, 31464, 31460, 31459, 31461, 31462, - 31456, 31410, 31457, 31458, 31449, 31448, 31408, 31450, 31451, 31409, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 10801, 10802, 10891, - 10892, 10893, 10894, 10901, 10900, 10902, 10906, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 32942, 32941, 32947, 32946, 32948, 32949, 32938, - 32939, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 34883, - 34902, 34909, 34906, 34896, 34893, 34888, 34910, 34878, 34895, 34905, - 34885, 34882, 34891, 34908, 34886, 34904, 34892, 34897, 34903, 34907, - 34880, 34879, 34884, 34900, 34894, 34890, 34889, 34898, 34881, 34899, - 34901, 34887, 34911, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 34918, 34920, 34917, - 34916, 34913, 34912, 34915, 34914, 34921, 34919, 41412, 41412, 41412, - 41412, 41412, 41412, 3761, 3762, 3775, 3776, 3773, 3774, 3757, 3758, - 3759, 41412, 3801, 3763, 3802, 3764, 3793, 3792, 3789, 3788, 3777, 3787, - 3786, 3791, 3790, 3779, 3770, 3769, 3766, 3765, 3778, 3772, 3771, 3768, - 3767, 3780, 3795, 3794, 3785, 3784, 3798, 3800, 3799, 3797, 3760, 3781, - 3782, 3783, 3796, 3829, 3834, 3835, 3832, 3833, 3826, 3827, 3828, 41412, - 3836, 3830, 3837, 3831, 3821, 3823, 3825, 3824, 3822, 3839, 3838, 3850, - 3851, 3852, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 3846, 3848, 3845, 3844, 3841, 3840, 3843, 3842, 3849, 3847, - 3820, 3818, 3815, 3806, 3808, 3813, 3811, 3803, 3809, 3819, 3817, 3816, - 3805, 3807, 3814, 3812, 3804, 3810, 3853, 41412, 41412, 41412, 25911, - 25912, 25857, 25856, 25866, 25851, 25855, 25854, 25868, 25852, 25848, - 25847, 25850, 25853, 25859, 25858, 25865, 25870, 25846, 25845, 25849, - 25872, 25862, 25863, 25864, 25873, 25871, 25869, 25860, 25861, 25867, - 25874, 41412, 41412, 25889, 25888, 25897, 25883, 25887, 25886, 25899, - 25884, 25880, 25879, 25882, 25885, 25891, 25890, 25896, 25901, 25878, - 25877, 25881, 25903, 25894, 25895, 41412, 25904, 25902, 25900, 25892, - 25893, 25898, 25905, 25906, 25908, 25910, 25907, 25909, 25876, 25875, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 25923, 25924, 25933, 25934, 25931, 25932, 25960, - 41412, 25925, 25961, 41412, 25926, 25939, 25938, 25952, 25951, 25940, - 25950, 25949, 25917, 25916, 25942, 25919, 25918, 25928, 25927, 25941, - 25922, 25920, 25930, 25929, 25943, 25954, 25953, 25948, 25947, 25956, - 25959, 25957, 25936, 25958, 25944, 25945, 25946, 25955, 25935, 25937, - 25915, 25921, 25970, 25975, 25976, 25973, 25974, 25969, 41412, 41412, - 41412, 25977, 41412, 25971, 25978, 41412, 25972, 25968, 25967, 25966, - 25964, 25965, 25979, 25963, 25962, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 25986, 25988, 25985, 25984, 25981, 25980, 25983, - 25982, 25989, 25987, 41412, 41412, 41412, 41412, 41412, 41412, 18927, - 18928, 18941, 18942, 18939, 18940, 41412, 18958, 18929, 41412, 18957, - 18930, 18964, 18963, 18946, 18945, 18960, 18954, 18953, 18938, 18937, - 18944, 18950, 18949, 18934, 18933, 18926, 18948, 18947, 18936, 18935, - 18943, 18952, 18951, 18932, 18931, 18925, 18956, 18955, 18959, 18961, - 18962, 18967, 18972, 18973, 18970, 18971, 41412, 18975, 18968, 41412, - 18974, 18969, 18966, 18965, 18976, 18987, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 18983, 18985, 18982, 18981, 18978, 18977, 18980, - 18979, 18986, 18984, 41412, 41412, 41412, 41412, 41412, 41412, 37877, - 37875, 37882, 37880, 37845, 37846, 37873, 37874, 37863, 37864, 37879, - 37859, 37862, 37847, 37850, 37851, 37860, 37861, 37848, 37849, 37852, - 37865, 37866, 37869, 37870, 37855, 37871, 37872, 37867, 37868, 37854, - 37885, 37856, 37878, 37883, 37853, 37881, 37876, 37884, 37857, 37858, - 37886, 37887, 37888, 41412, 41412, 41412, 41412, 37895, 37897, 37894, - 37893, 37890, 37889, 37892, 37891, 37898, 37896, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 25609, 25607, 25601, 25612, 25604, 25611, 25615, - 25606, 25603, 25605, 25608, 25602, 25617, 25613, 25610, 25616, 25614, - 25618, 25624, 25621, 25623, 25620, 25622, 25619, 25600, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 21676, 21680, 21678, 21679, 21617, - 21618, 21637, 21638, 21631, 21632, 21633, 21634, 21635, 21636, 21662, - 21619, 21663, 41412, 21653, 21652, 21651, 21650, 21639, 21649, 21648, - 21622, 21621, 21641, 21628, 21627, 21624, 21623, 21640, 21630, 21629, - 21626, 21625, 21642, 21655, 21654, 21647, 21646, 21658, 21661, 21659, - 21657, 21660, 21643, 21644, 21645, 21656, 21620, 21682, 21681, 21689, - 21690, 21687, 21688, 21684, 41412, 41412, 41412, 21685, 21683, 21686, - 21675, 21703, 21692, 21691, 21670, 21673, 21669, 21671, 21667, 21666, - 21674, 21665, 21668, 21672, 21664, 21699, 21701, 21698, 21697, 21694, - 21693, 21696, 21695, 21702, 21700, 21677, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 25255, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35704, 35700, 35694, - 35703, 35696, 35705, 35709, 35711, 35706, 35701, 35702, 35707, 35695, - 35712, 35710, 35697, 35708, 35698, 35699, 35713, 35714, 35778, 35761, - 35759, 35768, 35767, 35763, 35769, 35765, 35764, 35771, 35772, 35773, - 35770, 35762, 35775, 35693, 35680, 35751, 35758, 36048, 36049, 35678, - 35653, 35779, 36047, 35715, 35780, 35766, 35774, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 35756, 8952, 8960, 8958, 8954, 8959, 8955, 8953, 8956, 8957, 9021, 8961, - 8970, 8969, 8963, 8962, 8974, 8964, 8965, 8973, 8967, 8968, 8975, 8976, - 8981, 8978, 8977, 8979, 8980, 8983, 8985, 8987, 8986, 8988, 8994, 8991, - 8992, 8996, 8989, 8990, 8995, 8993, 8998, 8997, 8999, 9001, 9002, 9006, - 9005, 9003, 9004, 9007, 9020, 9008, 9009, 9010, 9019, 9011, 9015, 9016, - 9014, 9012, 9013, 9018, 9017, 9022, 9023, 9034, 9025, 9029, 9030, 9031, - 9032, 9033, 9035, 9038, 9037, 9036, 9039, 9041, 9042, 9043, 9044, 9045, - 9046, 9047, 9048, 9049, 9050, 9051, 9052, 9053, 9054, 9055, 9056, 9057, - 9058, 9073, 9059, 9060, 9070, 9064, 9061, 9062, 9063, 9071, 9068, 9072, - 9069, 9065, 9067, 9080, 9076, 9077, 9078, 9081, 9092, 9082, 9085, 9086, - 9088, 9089, 9090, 9093, 9096, 9094, 9095, 9097, 9098, 9100, 9101, 9130, - 9137, 9131, 9132, 9133, 9134, 9135, 9136, 9138, 9140, 9139, 9141, 9144, - 9145, 9148, 9142, 9143, 9149, 9194, 9193, 9195, 9150, 9153, 9154, 9155, - 9151, 9152, 9156, 9159, 9157, 9160, 9162, 9171, 9172, 9173, 9174, 9192, - 9175, 9176, 9189, 9190, 9188, 9177, 9178, 9179, 9180, 9181, 9182, 9183, - 9186, 9187, 9196, 9286, 9197, 9198, 9200, 9199, 9206, 9201, 9203, 9205, - 9209, 9208, 9210, 9211, 9218, 9212, 9213, 9217, 9221, 9222, 9219, 9220, - 9228, 9225, 9229, 9230, 9231, 9232, 9233, 9235, 9236, 9238, 9237, 9240, - 9239, 9242, 9241, 9243, 9244, 9246, 9247, 9251, 9253, 9257, 9258, 9271, - 9263, 9264, 9259, 9260, 9261, 9265, 9269, 9266, 9267, 9268, 9272, 9273, - 9275, 9276, 9277, 9278, 9279, 9280, 9290, 9281, 9282, 9285, 9284, 9283, - 9287, 9288, 9289, 9291, 9292, 9295, 9296, 9297, 9298, 9299, 9301, 9300, - 9317, 9308, 9309, 9302, 9303, 9305, 9306, 9304, 9307, 9316, 9310, 9315, - 9313, 9312, 9314, 9319, 9338, 9320, 9321, 9322, 9325, 9324, 9326, 9327, - 9329, 9330, 9331, 9339, 9332, 9333, 9334, 9337, 9336, 9335, 9340, 9341, - 9343, 9344, 9345, 9346, 9348, 9352, 9349, 9353, 9351, 9350, 9354, 9355, - 9356, 9357, 9361, 9360, 9358, 9359, 9362, 9363, 9365, 9384, 9386, 9366, - 9368, 9367, 9369, 9370, 9373, 9374, 9372, 9371, 9375, 9376, 9377, 9378, - 9381, 9379, 9380, 9382, 9383, 9387, 9388, 9385, 9389, 9390, 9391, 9392, - 9394, 9397, 9396, 9398, 9399, 9401, 9402, 9403, 9407, 9406, 9404, 9405, - 9408, 9412, 9411, 9410, 9413, 9414, 9416, 9417, 9421, 9418, 9419, 9424, - 9422, 9425, 9426, 9428, 9427, 9429, 9430, 9452, 9451, 9454, 9455, 9436, - 9437, 9434, 9435, 9433, 9431, 9439, 9438, 9440, 9442, 9448, 9449, 9446, - 9447, 9456, 9457, 9458, 9476, 9461, 9462, 9463, 9459, 9460, 9464, 9465, - 9466, 9467, 9468, 9470, 9471, 9472, 9473, 9474, 9499, 9477, 9480, 9478, - 9479, 9485, 9486, 9483, 9484, 9481, 9482, 9487, 9488, 9496, 9489, 9490, - 9497, 9494, 9495, 9498, 9491, 9492, 9493, 9500, 9501, 9502, 9503, 9504, - 9505, 9506, 9508, 9509, 9507, 9510, 9511, 9552, 9553, 9514, 9515, 9512, - 9513, 9518, 9519, 9517, 9523, 9520, 9522, 9521, 9527, 9528, 9526, 9524, - 9525, 9529, 9530, 9531, 9532, 9533, 9534, 9535, 9554, 9540, 9536, 9537, - 9538, 9539, 9541, 9543, 9542, 9544, 9545, 9547, 9546, 9548, 9550, 9549, - 9555, 9556, 9559, 9560, 9557, 9558, 9634, 9629, 9630, 9631, 9632, 9633, - 9635, 9638, 9636, 9637, 9639, 9681, 9640, 9670, 9671, 9647, 9649, 9666, - 9650, 9672, 9654, 9652, 9653, 9655, 9656, 9657, 9658, 9667, 9668, 9661, - 9662, 9664, 9673, 9641, 9642, 9646, 9644, 9682, 9674, 9676, 9675, 9677, - 9683, 9684, 9678, 9679, 9680, 9685, 9686, 9687, 9690, 9691, 9692, 9688, - 9689, 9693, 9694, 9696, 9698, 9699, 9717, 9715, 9716, 9719, 9718, 9700, - 9707, 9705, 9706, 9701, 9702, 9708, 9709, 9710, 9711, 9712, 9714, 9720, - 9729, 9721, 9723, 9724, 9722, 9725, 9727, 9726, 9728, 9731, 9733, 9732, - 9734, 9735, 9768, 9770, 9736, 9738, 9737, 9740, 9743, 9741, 9742, 9746, - 9750, 9753, 9752, 9755, 9758, 9756, 9757, 9761, 9763, 9769, 9771, 9772, - 9776, 9783, 9781, 9779, 9780, 9782, 9785, 9784, 9777, 9778, 9786, 9789, - 9795, 9790, 9793, 9788, 9787, 9796, 9794, 9791, 9792, 9797, 9798, 9799, - 9800, 9801, 9802, 9803, 9805, 9808, 9809, 9812, 9813, 9814, 9810, 9811, - 9806, 9807, 9815, 9816, 9817, 9818, 9819, 9820, 9822, 9823, 9824, 9825, - 9826, 9830, 9827, 9851, 9844, 9845, 9850, 9833, 9832, 9846, 9849, 9847, - 9836, 9835, 9838, 9840, 9841, 9842, 9843, 9839, 9852, 9828, 9853, 9854, - 9855, 9856, 9857, 9858, 9866, 9864, 9862, 9865, 9861, 9863, 9859, 9860, - 9867, 9869, 9870, 9871, 9878, 9873, 9874, 9882, 9883, 9879, 9881, 9880, - 9884, 9886, 9885, 9887, 9898, 9889, 9888, 9897, 9895, 9890, 9891, 9892, - 9894, 9893, 9896, 9902, 9899, 9901, 9900, 9903, 9904, 9905, 9906, 9909, - 9910, 9912, 9913, 9914, 9915, 9917, 9916, 9918, 9925, 9919, 9920, 9926, - 9921, 9922, 9923, 9924, 9927, 9931, 9928, 9929, 9930, 9932, 9933, 9934, - 9935, 9941, 9939, 9937, 9938, 9936, 9940, 9942, 9944, 9961, 9962, 9945, - 9950, 9952, 9946, 9949, 9947, 9948, 9953, 9959, 9960, 9954, 9957, 9958, - 9963, 9969, 9968, 9964, 9966, 9965, 10050, 10051, 9970, 9971, 9976, 9977, - 9974, 9975, 9978, 9972, 9973, 9979, 9982, 9983, 9985, 9986, 9987, 9991, - 9988, 9989, 9990, 9980, 9981, 9992, 9994, 9993, 9995, 9997, 9998, 9999, - 10005, 10004, 10000, 10001, 10002, 10037, 10006, 10007, 10008, 10009, - 10010, 10029, 10012, 10013, 10015, 10014, 10016, 10017, 10033, 10018, - 10020, 10019, 10032, 10022, 10030, 10034, 10025, 10024, 10031, 10026, - 10028, 10027, 10035, 10036, 10038, 10042, 10040, 10041, 10039, 10045, - 10044, 10043, 10049, 10046, 10047, 10048, 10052, 10054, 10053, 10057, - 10055, 10072, 10058, 10061, 10063, 10059, 10060, 10064, 10062, 10065, - 10067, 10069, 10070, 10071, 9475, 8971, 8982, 9000, 9066, 9075, 9091, - 9099, 9191, 9184, 9202, 9204, 9294, 9318, 9364, 9393, 9395, 9409, 9415, - 9450, 9423, 9453, 9432, 9441, 9445, 9516, 9645, 9648, 9663, 9695, 9713, - 9730, 9739, 9767, 9765, 9744, 9775, 9804, 9821, 9831, 9951, 9984, 9967, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 8936, 8931, 8868, 8854, 8915, 8911, 8843, 8888, 8935, 8876, - 8860, 8921, 8910, 8842, 8887, 8874, 8858, 8917, 8907, 8837, 8884, 8897, - 8941, 8933, 8870, 8856, 8919, 8909, 8839, 8886, 8898, 8942, 8934, 8871, - 8857, 8943, 8925, 8926, 8872, 8848, 8914, 8906, 8836, 8883, 8901, 8944, - 8927, 8928, 8873, 8849, 8912, 8913, 8896, 8939, 8922, 8923, 8863, 8853, - 8929, 8930, 8864, 8867, 8865, 8866, 8920, 8905, 8903, 8904, 8840, 8841, - 8879, 8881, 8882, 8880, 8937, 8932, 8869, 8855, 8916, 8895, 8938, 8924, - 8861, 8862, 8851, 8852, 8878, 8877, 8891, 8940, 8900, 8946, 8850, 8899, - 8945, 8892, 8893, 8889, 8890, 8894, 8902, 8844, 8847, 8846, 8845, 8875, - 8859, 8918, 8908, 8838, 8885, 41412, 8951, 8950, 8949, 8947, 8948, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 8972, 8966, 8984, 9024, 9026, 9027, 9028, 9040, 9079, 9074, 9084, 9083, - 9087, 9104, 9102, 9103, 9105, 9106, 9124, 9110, 9107, 9108, 9109, 9126, - 9127, 9125, 9114, 9113, 9111, 9112, 9117, 9115, 9116, 9118, 9119, 9120, - 9121, 9128, 9129, 9123, 9122, 9147, 9146, 9158, 9161, 9166, 9170, 9163, - 9167, 9168, 9164, 9165, 9169, 9185, 9207, 9214, 9215, 9216, 9223, 9224, - 9227, 9226, 9234, 9245, 9248, 9249, 9250, 9252, 9254, 9255, 9256, 9262, - 9270, 9274, 9293, 9311, 9323, 9328, 9342, 9347, 9400, 9420, 9443, 9444, - 9551, 9571, 9561, 9562, 9570, 9566, 9567, 9568, 9565, 9564, 9563, 9569, - 9573, 9572, 9579, 9580, 9574, 9575, 9576, 9581, 9577, 9578, 9582, 9583, - 9584, 9585, 9586, 9587, 9594, 9588, 9593, 9592, 9590, 9589, 9591, 9595, - 9596, 9601, 9602, 9597, 9598, 9599, 9600, 9628, 9624, 9603, 9611, 9612, - 9610, 9609, 9613, 9604, 9605, 9607, 9608, 9606, 9625, 9614, 9621, 9623, - 9618, 9619, 9622, 9617, 9620, 9616, 9615, 9626, 9627, 9643, 9669, 9651, - 9659, 9660, 9665, 9697, 9704, 9703, 9764, 9745, 9747, 9766, 9748, 9749, - 9751, 9754, 9759, 9760, 9762, 9829, 9848, 9834, 9837, 9868, 9872, 9875, - 9876, 9877, 9908, 9907, 9911, 9943, 9955, 9956, 9996, 10003, 10011, - 10023, 10021, 10056, 10066, 10068, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 10145, 10146, 10147, - 10148, 10149, 10150, 10151, 10152, 10155, 10156, 10153, 10154, 10157, - 10158, 10159, 10160, 10161, 10162, 10163, 10164, 10165, 10166, 10167, - 10168, 10169, 10170, 10171, 10172, 10173, 10174, 10175, 10176, 10177, - 10178, 10179, 10180, 10181, 10182, 10183, 10184, 10185, 10186, 10187, - 10188, 10189, 10190, 10191, 10211, 10212, 10213, 10214, 10215, 10216, - 10217, 10218, 10219, 10194, 10195, 10196, 10197, 10198, 10192, 10193, - 10199, 10200, 10201, 10220, 10221, 10222, 10223, 10224, 10225, 10226, - 10227, 10228, 10229, 10202, 10203, 10204, 10205, 10206, 10207, 10208, - 10209, 10210, 10230, 10231, 10232, 10233, 10234, 10235, 10236, 10237, - 10238, 10239, 10240, 10241, 10242, 10243, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 11681, - 11682, 11683, 11684, 11679, 11680, 11676, 11677, 11678, 11685, 11686, - 11687, 11692, 11693, 11694, 11695, 11688, 11689, 11696, 11697, 11690, - 11691, 11698, 11699, 11726, 11727, 11728, 11729, 11730, 11731, 11732, - 11733, 11734, 11735, 11716, 11717, 11714, 11715, 11718, 11719, 11720, - 11721, 11722, 11723, 11724, 11700, 11701, 11708, 11702, 11703, 11704, - 11705, 11709, 11706, 11707, 11710, 11711, 11712, 11713, 11736, 11737, - 11738, 11739, 11740, 11741, 11742, 11743, 11744, 11745, 11746, 11747, - 11748, 11749, 11750, 11751, 11752, 11753, 11754, 11755, 11725, 11795, - 11796, 11797, 11798, 11793, 11794, 11799, 11800, 11801, 11802, 11807, - 11803, 11804, 11805, 11806, 11808, 11809, 11810, 11811, 11812, 11813, - 11814, 11815, 11816, 11817, 11818, 11819, 11820, 11821, 11822, 11823, - 11824, 11825, 11826, 11827, 11828, 11829, 11830, 11833, 11834, 11835, - 11836, 11837, 11838, 11839, 11831, 11832, 11840, 11913, 11914, 11915, - 11916, 11917, 11918, 11919, 11920, 11921, 11922, 11904, 11905, 11906, - 11907, 11908, 11909, 11910, 11902, 11903, 11911, 11912, 11845, 11841, - 11842, 11846, 11847, 11843, 11844, 11848, 11849, 11850, 11851, 11852, - 11857, 11858, 11859, 11860, 11861, 11862, 11853, 11854, 11863, 11855, - 11856, 11864, 11865, 11866, 11867, 11868, 11869, 11870, 11871, 11872, - 11873, 11874, 11879, 11875, 11876, 11880, 11877, 11878, 11881, 11882, - 11883, 11884, 11885, 11895, 11896, 11897, 11898, 11899, 11900, 11901, - 11886, 11887, 11888, 11889, 11890, 11891, 11892, 11893, 11894, 11927, - 11928, 11929, 11930, 11931, 11932, 11933, 11923, 11924, 11925, 11926, - 11959, 11960, 11961, 11962, 11963, 11964, 11955, 11956, 11957, 11958, - 11965, 11966, 11934, 11935, 11938, 11939, 11940, 11941, 11942, 11943, - 11944, 11936, 11937, 11945, 11948, 11949, 11950, 11951, 11946, 11947, - 11952, 11953, 11954, 11970, 11971, 11972, 11973, 11974, 11975, 11976, - 11977, 11978, 11979, 11982, 11983, 11984, 11980, 11981, 11985, 11986, - 11987, 11988, 11989, 11990, 12026, 12024, 12025, 12027, 12028, 12029, - 12030, 12031, 12032, 12033, 12034, 11997, 11991, 11992, 11998, 11999, - 12000, 12001, 12002, 11993, 11994, 11995, 11996, 12003, 12010, 12011, - 12012, 12013, 12014, 12004, 12005, 12006, 12007, 12008, 12009, 12015, - 12016, 12021, 12017, 12018, 12019, 12020, 12022, 12023, 12041, 12042, - 12043, 12044, 12045, 12039, 12040, 12036, 12037, 12038, 12046, 12047, - 12050, 12048, 12049, 12051, 12052, 12053, 12054, 12055, 12056, 12057, - 12058, 12083, 12084, 12087, 12088, 12089, 12090, 12091, 12085, 12086, - 12092, 12093, 12094, 12063, 12064, 12065, 12066, 12067, 12068, 12059, - 12060, 12061, 12062, 12069, 12070, 12075, 12076, 12077, 12071, 12072, - 12078, 12073, 12074, 12079, 12080, 12081, 12082, 12095, 12096, 12097, - 12098, 12099, 12102, 12103, 12104, 12105, 12106, 12100, 12101, 12107, - 12108, 12116, 12117, 12118, 12119, 12112, 12113, 12120, 12121, 12122, - 12114, 12115, 12123, 12124, 12125, 12126, 12127, 12128, 12129, 12130, - 12771, 12772, 12773, 12774, 12775, 12776, 12777, 12778, 12142, 12138, - 12139, 12143, 12144, 12145, 12140, 12141, 12146, 12147, 12149, 12150, - 12151, 12154, 12152, 12153, 12155, 12156, 12157, 12158, 12159, 12160, - 12170, 12171, 12178, 12161, 12162, 12163, 12164, 12165, 12166, 12167, - 12168, 12169, 12179, 12180, 12172, 12173, 12174, 12175, 12176, 12177, - 12181, 12182, 12189, 12190, 12183, 12184, 12191, 12185, 12186, 12192, - 12193, 12194, 12187, 12188, 12195, 12201, 12199, 12200, 12202, 12196, - 12197, 12198, 12203, 12204, 12205, 12206, 12207, 12208, 12209, 12210, - 12211, 12212, 12213, 12214, 12271, 12272, 12273, 12274, 12275, 12276, - 12277, 12278, 12279, 12234, 12235, 12236, 12237, 12238, 12239, 12240, - 12241, 12231, 12232, 12233, 12242, 12259, 12260, 12261, 12262, 12263, - 12257, 12258, 12264, 12265, 12266, 12267, 12251, 12252, 12253, 12243, - 12244, 12245, 12246, 12247, 12248, 12254, 12249, 12250, 12255, 12256, - 12268, 12269, 12270, 12282, 12283, 12284, 12285, 12280, 12281, 12286, - 12287, 12288, 12289, 12292, 12293, 12294, 12295, 12296, 12297, 12298, - 12290, 12291, 12299, 12300, 12301, 12319, 12320, 12321, 12322, 12323, - 12324, 12325, 12326, 12327, 12302, 12303, 12304, 12305, 12308, 12309, - 12310, 12311, 12312, 12313, 12306, 12307, 12314, 12317, 12318, 12315, - 12316, 12335, 12336, 12339, 12340, 12341, 12337, 12338, 12328, 12329, - 12330, 12331, 12332, 12333, 12334, 12342, 12343, 12344, 12345, 12346, - 12347, 12348, 12351, 12352, 12353, 12354, 12355, 12356, 12357, 12358, - 12349, 12350, 12359, 12360, 12367, 12368, 12369, 12361, 12362, 12363, - 12364, 12370, 12371, 12372, 12365, 12366, 12378, 12379, 12382, 12383, - 12380, 12381, 12384, 12385, 12373, 12374, 12375, 12376, 12377, 12386, - 12387, 12388, 12393, 12394, 12395, 12396, 12397, 12398, 12399, 12400, - 12401, 12402, 12389, 12390, 12391, 12392, 12404, 12405, 12408, 12406, - 12407, 12409, 12410, 12411, 12412, 12413, 12414, 12415, 12416, 12779, - 12780, 12781, 12782, 12783, 12784, 12785, 12422, 12420, 12421, 12417, - 12418, 12419, 12423, 12424, 12425, 12426, 12427, 12428, 12429, 12430, - 12433, 12434, 12435, 12436, 12437, 12431, 12432, 12438, 12439, 12440, - 12441, 12442, 12443, 12444, 12445, 12446, 12447, 12448, 12449, 12450, - 12455, 12451, 12452, 12456, 12457, 12458, 12453, 12454, 12459, 12460, - 12461, 12467, 12468, 12469, 12470, 12462, 12463, 12464, 12471, 12472, - 12465, 12466, 12473, 12474, 12478, 12479, 12480, 12481, 12482, 12483, - 12475, 12476, 12477, 12484, 12485, 12486, 12489, 12490, 12491, 12492, - 12493, 12487, 12488, 12494, 12495, 12496, 12497, 12498, 12499, 12500, - 12501, 12502, 12503, 12504, 12513, 12514, 12505, 12506, 12515, 12516, - 12517, 12507, 12508, 12509, 12510, 12511, 12512, 12522, 12518, 12519, - 12523, 12524, 12525, 12526, 12520, 12521, 12527, 12528, 12529, 12539, - 12540, 12541, 12542, 12543, 12544, 12545, 12546, 12547, 12548, 12534, - 12535, 12530, 12531, 12532, 12533, 12536, 12537, 12538, 12553, 12554, - 12555, 12556, 12557, 12550, 12551, 12552, 12558, 12559, 12560, 12587, - 12588, 12589, 12590, 12591, 12592, 12593, 12594, 12595, 12596, 12565, - 12566, 12567, 12561, 12562, 12568, 12569, 12570, 12571, 12572, 12563, - 12564, 12575, 12576, 12573, 12574, 12577, 12578, 12579, 12580, 12581, - 12582, 12583, 12584, 12585, 12586, 12600, 12601, 12602, 12603, 12604, - 12605, 12606, 12607, 12608, 12609, 12610, 12611, 12612, 12613, 12614, - 12615, 12597, 12598, 12599, 12616, 12617, 12626, 12618, 12619, 12620, - 12621, 12623, 12624, 12625, 12627, 12628, 12629, 12630, 12631, 12632, - 12633, 12634, 12635, 12636, 12637, 12638, 12639, 12640, 12641, 12642, - 12643, 12644, 12645, 12646, 12653, 12654, 12647, 12648, 12655, 12656, - 12657, 12658, 12649, 12650, 12651, 12652, 12659, 12660, 12661, 12662, - 12667, 12663, 12664, 12668, 12669, 12670, 12665, 12666, 12671, 12672, - 12673, 12674, 12680, 12681, 12676, 12677, 12682, 12683, 12684, 12685, - 12686, 12678, 12679, 12687, 12688, 12695, 12696, 12697, 12689, 12690, - 12698, 12699, 12691, 12692, 12693, 12694, 12700, 12703, 12704, 12705, - 12706, 12701, 12702, 12707, 12716, 12717, 12718, 12709, 12710, 12711, - 12719, 12712, 12713, 12720, 12714, 12715, 12721, 12722, 12723, 12724, - 12725, 12726, 12727, 12728, 12729, 12742, 12730, 12731, 12732, 12733, - 12734, 12735, 12736, 12737, 12738, 12739, 12740, 12741, 12743, 12744, - 12745, 12746, 12766, 12767, 12768, 12769, 12770, 12747, 12748, 12749, - 12750, 12751, 12752, 12753, 12754, 12755, 12756, 12757, 12758, 12759, - 12760, 12761, 12762, 12763, 12764, 12765, 11759, 11760, 11761, 11762, - 11763, 11764, 11756, 11757, 11758, 11765, 11766, 11770, 11771, 11772, - 11773, 11774, 11775, 11776, 11777, 11778, 11779, 11780, 11781, 11782, - 11783, 11784, 11785, 11786, 11787, 11788, 11789, 11767, 11768, 11769, - 12622, 12675, 12111, 12136, 12133, 12135, 12132, 12403, 11792, 11969, - 12137, 12134, 12131, 11791, 11968, 11790, 11967, 12230, 12035, 12109, - 12148, 12110, 12549, 12708, 12226, 12217, 12221, 12228, 12224, 12218, - 12223, 12220, 12227, 12216, 12222, 12229, 12225, 12219, 12215, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 12786, - 12787, 12788, 12789, 12790, 12791, 12792, 12793, 12794, 12795, 12796, - 12797, 12798, 12799, 12800, 12801, 12802, 12803, 12804, 12805, 12806, - 12807, 12808, 12809, 12810, 12811, 12812, 12813, 12814, 12815, 12816, - 12817, 12818, 12819, 12820, 12821, 12822, 12823, 12824, 12825, 12826, - 12827, 12828, 12829, 12830, 12831, 12832, 12833, 12834, 12835, 12836, - 12837, 12838, 12839, 12840, 12841, 12842, 12843, 12844, 12845, 12846, - 12847, 12848, 12849, 12850, 12851, 12852, 12853, 12854, 12855, 12856, - 12857, 12858, 12859, 12860, 12861, 12862, 12863, 12864, 12865, 12866, - 12867, 12868, 12869, 12870, 12871, 12872, 12873, 12874, 12875, 12876, - 12877, 12878, 12879, 12880, 12881, 12882, 12883, 12884, 12885, 12886, - 12887, 12888, 12889, 12890, 12891, 12892, 12893, 12894, 12895, 12896, - 12897, 12898, 12899, 12900, 12901, 12902, 12903, 12904, 12905, 12906, - 12907, 12908, 12909, 12910, 12911, 12912, 12913, 12914, 12915, 12916, - 12917, 12918, 12919, 12920, 12921, 12922, 12923, 12924, 12925, 12926, - 12927, 12928, 12929, 12930, 12931, 12932, 12933, 12934, 12935, 12936, - 12937, 12938, 12939, 12940, 12941, 12942, 12943, 12944, 12945, 12946, - 12947, 12948, 12949, 12950, 12951, 12952, 12953, 12954, 12955, 12956, - 12957, 12958, 12959, 12960, 12961, 12962, 12963, 12964, 12965, 12966, - 12967, 12968, 12969, 12970, 12971, 12972, 12973, 12974, 12975, 12976, - 12977, 12978, 12979, 12980, 12981, 12982, 12983, 12984, 12985, 12986, - 12987, 12988, 12989, 12990, 12991, 12992, 12993, 12994, 12995, 12996, - 12997, 12998, 12999, 13000, 13001, 13002, 13003, 13004, 13005, 13006, - 13007, 13008, 13009, 13010, 13011, 13012, 13013, 13014, 13015, 13016, - 13017, 13018, 13019, 13020, 13021, 13022, 13023, 13024, 13025, 13026, - 13027, 13028, 13029, 13030, 13031, 13032, 13033, 13034, 13035, 13036, - 13037, 13038, 13039, 13040, 13041, 13042, 13043, 13044, 13045, 13046, - 13047, 13048, 13049, 13050, 13051, 13052, 13053, 13054, 13055, 13056, - 13057, 13058, 13059, 13060, 13061, 13062, 13063, 13064, 13065, 13066, - 13067, 13068, 13069, 13070, 13071, 13072, 13073, 13074, 13075, 13076, - 13077, 13078, 13079, 13080, 13081, 13082, 13083, 13084, 13085, 13086, - 13087, 13088, 13089, 13090, 13091, 13092, 13093, 13094, 13095, 13096, - 13097, 13098, 13099, 13100, 13101, 13102, 13103, 13104, 13105, 13106, - 13107, 13108, 13109, 13110, 13111, 13112, 13113, 13114, 13115, 13116, - 13117, 13118, 13119, 13120, 13121, 13122, 13123, 13124, 13125, 13126, - 13127, 13128, 13129, 13130, 13131, 13132, 13133, 13134, 13135, 13136, - 13137, 13138, 13139, 13140, 13141, 13142, 13143, 13144, 13145, 13146, - 13147, 13148, 13149, 13150, 13151, 13152, 13153, 13154, 13155, 13156, - 13157, 13158, 13159, 13160, 13161, 13162, 13163, 13164, 13165, 13166, - 13167, 13168, 13169, 13170, 13171, 13172, 13173, 13174, 13175, 13176, - 13177, 13178, 13179, 13180, 13181, 13182, 13183, 13184, 13185, 13186, - 13187, 13188, 13189, 13190, 13191, 13192, 13193, 13194, 13195, 13196, - 13197, 13198, 13199, 13200, 13201, 13202, 13203, 13204, 13205, 13206, - 13207, 13208, 13209, 13210, 13211, 13212, 13213, 13214, 13215, 13216, - 13217, 13218, 13219, 13220, 13221, 13222, 13223, 13224, 13225, 13226, - 13227, 13228, 13229, 13230, 13231, 13232, 13233, 13234, 13235, 13236, - 13237, 13238, 13239, 13240, 13241, 13242, 13243, 13244, 13245, 13246, - 13247, 13248, 13249, 13250, 13251, 13252, 13253, 13254, 13255, 13256, - 13257, 13258, 13259, 13260, 13261, 13262, 13263, 13264, 13265, 13266, - 13267, 13268, 13269, 13270, 13271, 13272, 13273, 13274, 13275, 13276, - 13277, 13278, 13279, 13280, 13281, 13282, 13283, 13284, 13285, 13286, - 13287, 13288, 13289, 13290, 13291, 13292, 13293, 13294, 13295, 13296, - 13297, 13298, 13299, 13300, 13301, 13302, 13303, 13304, 13305, 13306, - 13307, 13308, 13309, 13310, 13311, 13312, 13313, 13314, 13315, 13316, - 13317, 13318, 13319, 13320, 13321, 13322, 13323, 13324, 13325, 13326, - 13327, 13328, 13329, 13330, 13331, 13332, 13333, 13334, 13335, 13336, - 13337, 13338, 13339, 13340, 13341, 13342, 13343, 13344, 13345, 13346, - 13347, 13348, 13349, 13350, 13351, 13352, 13353, 13354, 13355, 13356, - 13357, 13358, 13359, 13360, 13361, 13362, 13363, 13364, 13365, 13366, - 13367, 13368, 13369, 13370, 13371, 13372, 13373, 13374, 13375, 13376, - 13377, 13378, 13379, 13380, 13381, 13382, 13383, 13384, 13385, 13386, - 13387, 13388, 13389, 13390, 13391, 13392, 13393, 13394, 13395, 13396, - 13397, 13398, 13399, 13400, 13401, 13402, 13403, 13404, 13405, 13406, - 13407, 13408, 13409, 13410, 13411, 13412, 13413, 13414, 13415, 13416, - 13417, 13418, 13419, 13420, 13421, 13422, 13423, 13424, 13425, 13426, - 13427, 13428, 13429, 13430, 13431, 13432, 13433, 13434, 13435, 13436, - 13437, 13438, 13439, 13440, 13441, 13442, 13443, 13444, 13445, 13446, - 13447, 13448, 13449, 13450, 13451, 13452, 13453, 13454, 13455, 13456, - 13457, 13458, 13459, 13460, 13461, 13462, 13463, 13464, 13465, 13466, - 13467, 13468, 13469, 13470, 13471, 13472, 13473, 13474, 13475, 13476, - 13477, 13478, 13479, 13480, 13481, 13482, 13483, 13484, 13485, 13486, - 13487, 13488, 13489, 13490, 13491, 13492, 13493, 13494, 13495, 13496, - 13497, 13498, 13499, 13500, 13501, 13502, 13503, 13504, 13505, 13506, - 13507, 13508, 13509, 13510, 13511, 13512, 13513, 13514, 13515, 13516, - 13517, 13518, 13519, 13520, 13521, 13522, 13523, 13524, 13525, 13526, - 13527, 13528, 13529, 13530, 13531, 13532, 13533, 13534, 13535, 13536, - 13537, 13538, 13539, 13540, 13541, 13542, 13543, 13544, 13545, 13546, - 13547, 13548, 13549, 13550, 13551, 13552, 13553, 13554, 13555, 13556, - 13557, 13558, 13559, 13560, 13561, 13562, 13563, 13564, 13565, 13566, - 13567, 13568, 13569, 13570, 13571, 13572, 13573, 13574, 13575, 13576, - 13577, 13578, 13579, 13580, 13581, 13582, 13583, 13584, 13585, 13586, - 13587, 13588, 13589, 13590, 13591, 13592, 13593, 13594, 13595, 13596, - 13597, 13598, 13599, 13600, 13601, 13602, 13603, 13604, 13605, 13606, - 13607, 13608, 13609, 13610, 13611, 13612, 13613, 13614, 13615, 13616, - 13617, 13618, 13619, 13620, 13621, 13622, 13623, 13624, 13625, 13626, - 13627, 13628, 13629, 13630, 13631, 13632, 13633, 13634, 13635, 13636, - 13637, 13638, 13639, 13640, 13641, 13642, 13643, 13644, 13645, 13646, - 13647, 13648, 13649, 13650, 13651, 13652, 13653, 13654, 13655, 13656, - 13657, 13658, 13659, 13660, 13661, 13662, 13663, 13664, 13665, 13666, - 13667, 13668, 13669, 13670, 13671, 13672, 13673, 13674, 13675, 13676, - 13677, 13678, 13679, 13680, 13681, 13682, 13683, 13684, 13685, 13686, - 13687, 13688, 13689, 13690, 13691, 13692, 13693, 13694, 13695, 13696, - 13697, 13698, 13699, 13700, 13701, 13702, 13703, 13704, 13705, 13706, - 13707, 13708, 13709, 13710, 13711, 13712, 13713, 13714, 13715, 13716, - 13717, 13718, 13719, 13720, 13721, 13722, 13723, 13724, 13725, 13726, - 13727, 13728, 13729, 13730, 13731, 13732, 13733, 13734, 13735, 13736, - 13737, 13738, 13739, 13740, 13741, 13742, 13743, 13744, 13745, 13746, - 13747, 13748, 13749, 13750, 13751, 13752, 13753, 13754, 13755, 13756, - 13757, 13758, 13759, 13760, 13761, 13762, 13763, 13764, 13765, 13766, - 13767, 13768, 13769, 13770, 13771, 13772, 13773, 13774, 13775, 13776, - 13777, 13778, 13779, 13780, 13781, 13782, 13783, 13784, 13785, 13786, - 13787, 13788, 13789, 13790, 13791, 13792, 13793, 13794, 13795, 13796, - 13797, 13798, 13799, 13800, 13801, 13802, 13803, 13804, 13805, 13806, - 13807, 13808, 13809, 13810, 13811, 13812, 13813, 13814, 13815, 13816, - 13817, 13818, 13819, 13820, 13821, 13822, 13823, 13824, 13825, 13826, - 13827, 13828, 13829, 13830, 13831, 13832, 13833, 13834, 13835, 13836, - 13837, 13838, 13839, 13840, 13841, 13842, 13843, 13844, 13845, 13846, - 13847, 13848, 13849, 13850, 13851, 13852, 13853, 13854, 13855, 13856, - 13857, 13858, 13859, 13860, 13861, 13862, 13863, 13864, 13865, 13866, - 13867, 13868, 13869, 13870, 13871, 13872, 13873, 13874, 13875, 13876, - 13877, 13878, 13879, 13880, 13881, 13882, 13883, 13884, 13885, 13886, - 13887, 13888, 13889, 13890, 13891, 13892, 13893, 13894, 13895, 13896, - 13897, 13898, 13899, 13900, 13901, 13902, 13903, 13904, 13905, 13906, - 13907, 13908, 13909, 13910, 13911, 13912, 13913, 13914, 13915, 13916, - 13917, 13918, 13919, 13920, 13921, 13922, 13923, 13924, 13925, 13926, - 13927, 13928, 13929, 13930, 13931, 13932, 13933, 13934, 13935, 13936, - 13937, 13938, 13939, 13940, 13941, 13942, 13943, 13944, 13945, 13946, - 13947, 13948, 13949, 13950, 13951, 13952, 13953, 13954, 13955, 13956, - 13957, 13958, 13959, 13960, 13961, 13962, 13963, 13964, 13965, 13966, - 13967, 13968, 13969, 13970, 13971, 13972, 13973, 13974, 13975, 13976, - 13977, 13978, 13979, 13980, 13981, 13982, 13983, 13984, 13985, 13986, - 13987, 13988, 13989, 13990, 13991, 13992, 13993, 13994, 13995, 13996, - 13997, 13998, 13999, 14000, 14001, 14002, 14003, 14004, 14005, 14006, - 14007, 14008, 14009, 14010, 14011, 14012, 14013, 14014, 14015, 14016, - 14017, 14018, 14019, 14020, 14021, 14022, 14023, 14024, 14025, 14026, - 14027, 14028, 14029, 14030, 14031, 14032, 14033, 14034, 14035, 14036, - 14037, 14038, 14039, 14040, 14041, 14042, 14043, 14044, 14045, 14046, - 14047, 14048, 14049, 14050, 14051, 14052, 14053, 14054, 14055, 14056, - 14057, 14058, 14059, 14060, 14061, 14062, 14063, 14064, 14065, 14066, - 14067, 14068, 14069, 14070, 14071, 14072, 14073, 14074, 14075, 14076, - 14077, 14078, 14079, 14080, 14081, 14082, 14083, 14084, 14085, 14086, - 14087, 14088, 14089, 14090, 14091, 14092, 14093, 14094, 14095, 14096, - 14097, 14098, 14099, 14100, 14101, 14102, 14103, 14104, 14105, 14106, - 14107, 14108, 14109, 14110, 14111, 14112, 14113, 14114, 14115, 14116, - 14117, 14118, 14119, 14120, 14121, 14122, 14123, 14124, 14125, 14126, - 14127, 14128, 14129, 14130, 14131, 14132, 14133, 14134, 14135, 14136, - 14137, 14138, 14139, 14140, 14141, 14142, 14143, 14144, 14145, 14146, - 14147, 14148, 14149, 14150, 14151, 14152, 14153, 14154, 14155, 14156, - 14157, 14158, 14159, 14160, 14161, 14162, 14163, 14164, 14165, 14166, - 14167, 14168, 14169, 14170, 14171, 14172, 14173, 14174, 14175, 14176, - 14177, 14178, 14179, 14180, 14181, 14182, 14183, 14184, 14185, 14186, - 14187, 14188, 14189, 14190, 14191, 14192, 14193, 14194, 14195, 14196, - 14197, 14198, 14199, 14200, 14201, 14202, 14203, 14204, 14205, 14206, - 14207, 14208, 14209, 14210, 14211, 14212, 14213, 14214, 14215, 14216, - 14217, 14218, 14219, 14220, 14221, 14222, 14223, 14224, 14225, 14226, - 14227, 14228, 14229, 14230, 14231, 14232, 14233, 14234, 14235, 14236, - 14237, 14238, 14239, 14240, 14241, 14242, 14243, 14244, 14245, 14246, - 14247, 14248, 14249, 14250, 14251, 14252, 14253, 14254, 14255, 14256, - 14257, 14258, 14259, 14260, 14261, 14262, 14263, 14264, 14265, 14266, - 14267, 14268, 14269, 14270, 14271, 14272, 14273, 14274, 14275, 14276, - 14277, 14278, 14279, 14280, 14281, 14282, 14283, 14284, 14285, 14286, - 14287, 14288, 14289, 14290, 14291, 14292, 14293, 14294, 14295, 14296, - 14297, 14298, 14299, 14300, 14301, 14302, 14303, 14304, 14305, 14306, - 14307, 14308, 14309, 14310, 14311, 14312, 14313, 14314, 14315, 14316, - 14317, 14318, 14319, 14320, 14321, 14322, 14323, 14324, 14325, 14326, - 14327, 14328, 14329, 14330, 14331, 14332, 14333, 14334, 14335, 14336, - 14337, 14338, 14339, 14340, 14341, 14342, 14343, 14344, 14345, 14346, - 14347, 14348, 14349, 14350, 14351, 14352, 14353, 14354, 14355, 14356, - 14357, 14358, 14359, 14360, 14361, 14362, 14363, 14364, 14365, 14366, - 14367, 14368, 14369, 14370, 14371, 14372, 14373, 14374, 14375, 14376, - 14377, 14378, 14379, 14380, 14381, 14382, 14383, 14384, 14385, 14386, - 14387, 14388, 14389, 14390, 14391, 14392, 14393, 14394, 14395, 14396, - 14397, 14398, 14399, 14400, 14401, 14402, 14403, 14404, 14405, 14406, - 14407, 14408, 14409, 14410, 14411, 14412, 14413, 14414, 14415, 14416, - 14417, 14418, 14419, 14420, 14421, 14422, 14423, 14424, 14425, 14426, - 14427, 14428, 14429, 14430, 14431, 14432, 14433, 14434, 14435, 14436, - 14437, 14438, 14439, 14440, 14441, 14442, 14443, 14444, 14445, 14446, - 14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, - 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, - 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, - 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, - 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496, - 14497, 14498, 14499, 14500, 14501, 14502, 14503, 14504, 14505, 14506, - 14507, 14508, 14509, 14510, 14511, 14512, 14513, 14514, 14515, 14516, - 14517, 14518, 14519, 14520, 14521, 14522, 14523, 14524, 14525, 14526, - 14527, 14528, 14529, 14530, 14531, 14532, 14533, 14534, 14535, 14536, - 14537, 14538, 14539, 14540, 14541, 14542, 14543, 14544, 14545, 14546, - 14547, 14548, 14549, 14550, 14551, 14552, 14553, 14554, 14555, 14556, - 14557, 14558, 14559, 14560, 14561, 14562, 14563, 14564, 14565, 14566, - 14567, 14568, 14569, 14570, 14571, 14572, 14573, 14574, 14575, 14576, - 14577, 14578, 14579, 14580, 14581, 14582, 14583, 14584, 14585, 14586, - 14587, 14588, 14589, 14590, 14591, 14592, 14593, 14594, 14595, 14596, - 14597, 14598, 14599, 14600, 14601, 14602, 14603, 14604, 14605, 14606, - 14607, 14608, 14609, 14610, 14611, 14612, 14613, 14614, 14615, 14616, - 14617, 14618, 14619, 14620, 14621, 14622, 14623, 14624, 14625, 14626, - 14627, 14628, 14629, 14630, 14631, 14632, 14633, 14634, 14635, 14636, - 14637, 14638, 14639, 14640, 14641, 14642, 14643, 14644, 14645, 14646, - 14647, 14648, 14649, 14650, 14651, 14652, 14653, 14654, 14655, 14656, - 14657, 14658, 14659, 14660, 14661, 14662, 14663, 14664, 14665, 14666, - 14667, 14668, 14669, 14670, 14671, 14672, 14673, 14674, 14675, 14676, - 14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, - 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, - 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, - 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, - 14717, 14718, 14719, 14720, 14721, 14722, 14723, 14724, 14725, 14726, - 14727, 14728, 14729, 14730, 14731, 14732, 14733, 14734, 14735, 14736, - 14737, 14738, 14739, 14740, 14741, 14742, 14743, 14744, 14745, 14746, - 14747, 14748, 14749, 14750, 14751, 14752, 14753, 14754, 14755, 14756, - 14757, 14758, 14759, 14760, 14761, 14762, 14763, 14764, 14765, 14766, - 14767, 14768, 14769, 14770, 14771, 14772, 14773, 14774, 14775, 14776, - 14777, 14778, 14779, 14780, 14781, 14782, 14783, 14784, 14785, 14786, - 14787, 14788, 14789, 14790, 14791, 14792, 14793, 14794, 14795, 14796, - 14797, 14798, 14799, 14800, 14801, 14802, 14803, 14804, 14805, 14806, - 14807, 14808, 14809, 14810, 14811, 14812, 14813, 14814, 14815, 14816, - 14817, 14818, 14819, 14820, 14821, 14822, 14823, 14824, 14825, 14826, - 14827, 14828, 14829, 14830, 14831, 14832, 14833, 14834, 14835, 14836, - 14837, 14838, 14839, 14840, 14841, 14842, 14843, 14844, 14845, 14846, - 14847, 14848, 14849, 14850, 14851, 14852, 14853, 14854, 14855, 14856, - 14857, 14858, 14859, 14860, 14861, 14862, 14863, 14864, 14865, 14866, - 14867, 14868, 14869, 14870, 14871, 14872, 14873, 14874, 14875, 14876, - 14877, 14878, 14879, 14880, 14881, 14882, 14883, 14884, 14885, 14886, - 14887, 14888, 14889, 14890, 14891, 14892, 14893, 14894, 14895, 14896, - 14897, 14898, 14899, 14900, 14901, 14902, 14903, 14904, 14905, 14906, - 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, - 14917, 14918, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, - 14927, 14928, 14929, 14930, 14931, 14932, 14933, 14934, 14935, 14936, - 14937, 14938, 14939, 14940, 14941, 14942, 14943, 14944, 14945, 14946, - 14947, 14948, 14949, 14950, 14951, 14952, 14953, 14954, 14955, 14956, - 14957, 14958, 14959, 14960, 14961, 14962, 14963, 14964, 14965, 14966, - 14967, 14968, 14969, 14970, 14971, 14972, 14973, 14974, 14975, 14976, - 14977, 14978, 14979, 14980, 14981, 14982, 14983, 14984, 14985, 14986, - 14987, 14988, 14989, 14990, 14991, 14992, 14993, 14994, 14995, 14996, - 14997, 14998, 14999, 15000, 15001, 15002, 15003, 15004, 15005, 15006, - 15007, 15008, 15009, 15010, 15011, 15012, 15013, 15014, 15015, 15016, - 15017, 15018, 15019, 15020, 15021, 15022, 15023, 15024, 15025, 15026, - 15027, 15028, 15029, 15030, 15031, 15032, 15033, 15034, 15035, 15036, - 15037, 15038, 15039, 15040, 15041, 15042, 15043, 15044, 15045, 15046, - 15047, 15048, 15049, 15050, 15051, 15052, 15053, 15054, 15055, 15056, - 15057, 15058, 15059, 15060, 15061, 15062, 15063, 15064, 15065, 15066, - 15067, 15068, 15069, 15070, 15071, 15072, 15073, 15074, 15075, 15076, - 15077, 15078, 15079, 15080, 15081, 15082, 15083, 15084, 15085, 15086, - 15087, 15088, 15089, 15090, 15091, 15092, 15093, 15094, 15095, 15096, - 15097, 15098, 15099, 15100, 15101, 15102, 15103, 15104, 15105, 15106, - 15107, 15108, 15109, 15110, 15111, 15112, 15113, 15114, 15115, 15116, - 15117, 15118, 15119, 15120, 15121, 15122, 15123, 15124, 15125, 15126, - 15127, 15128, 15129, 15130, 15131, 15132, 15133, 15134, 15135, 15136, - 15137, 15138, 15139, 15140, 15141, 15142, 15143, 15144, 15145, 15146, - 15147, 15148, 15149, 15150, 15151, 15152, 15153, 15154, 15155, 15156, - 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, - 15167, 15168, 15169, 15170, 15171, 15172, 15173, 15174, 15175, 15176, - 15177, 15178, 15179, 15180, 15181, 15182, 15183, 15184, 15185, 15186, - 15187, 15188, 15189, 15190, 15191, 15192, 15193, 15194, 15195, 15196, - 15197, 15198, 15199, 15200, 15201, 15202, 15203, 15204, 15205, 15206, - 15207, 15208, 15209, 15210, 15211, 15212, 15213, 15214, 15215, 15216, - 15217, 15218, 15219, 15220, 15221, 15222, 15223, 15224, 15225, 15226, - 15227, 15228, 15229, 15230, 15231, 15232, 15233, 15234, 15235, 15236, - 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, - 15247, 15248, 15249, 15250, 15251, 15252, 15253, 15254, 15255, 15256, - 15257, 15258, 15259, 15260, 15261, 15262, 15263, 15264, 15265, 15266, - 15267, 15268, 15269, 15270, 15271, 15272, 15273, 15274, 15275, 15276, - 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, - 15287, 15288, 15289, 15290, 15291, 15292, 15293, 15294, 15295, 15296, - 15297, 15298, 15299, 15300, 15301, 15302, 15303, 15304, 15305, 15306, - 15307, 15308, 15309, 15310, 15311, 15312, 15313, 15314, 15315, 15316, - 15317, 15318, 15319, 15320, 15321, 15322, 15323, 15324, 15325, 15326, - 15327, 15328, 15329, 15330, 15331, 15332, 15333, 15334, 15335, 15336, - 15337, 15338, 15339, 15340, 15341, 15342, 15343, 15344, 15345, 15346, - 15347, 15348, 15349, 15350, 15351, 15352, 15353, 15354, 15355, 15356, - 15357, 15358, 15359, 15360, 15361, 15362, 15363, 15364, 15365, 15366, - 15367, 15368, 15369, 15370, 15371, 15372, 15373, 15374, 15375, 15376, - 15377, 15378, 15379, 15380, 15381, 15382, 15383, 15384, 15385, 15386, - 15387, 15388, 15389, 15390, 15391, 15392, 15393, 15394, 15395, 15396, - 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, - 15407, 15408, 15409, 15410, 15411, 15412, 15413, 15414, 15415, 15416, - 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, - 15427, 15428, 15429, 15430, 15431, 15432, 15433, 15434, 15435, 15436, - 15437, 15438, 15439, 15440, 15441, 15442, 15443, 15444, 15445, 15446, - 15447, 15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456, - 15457, 15458, 15459, 15460, 15461, 15462, 15463, 15464, 15465, 15466, - 15467, 15468, 15469, 15470, 15471, 15472, 15473, 15474, 15475, 15476, - 15477, 15478, 15479, 15480, 15481, 15482, 15483, 15484, 15485, 15486, - 15487, 15488, 15489, 15490, 15491, 15492, 15493, 15494, 15495, 15496, - 15497, 15498, 15499, 15500, 15501, 15502, 15503, 15504, 15505, 15506, - 15507, 15508, 15509, 15510, 15511, 15512, 15513, 15514, 15515, 15516, - 15517, 15518, 15519, 15520, 15521, 15522, 15523, 15524, 15525, 15526, - 15527, 15528, 15529, 15530, 15531, 15532, 15533, 15534, 15535, 15536, - 15537, 15538, 15539, 15540, 15541, 15542, 15543, 15544, 15545, 15546, - 15547, 15548, 15549, 15550, 15551, 15552, 15553, 15554, 15555, 15556, - 15557, 15558, 15559, 15560, 15561, 15562, 15563, 15564, 15565, 15566, - 15567, 15568, 15569, 15570, 15571, 15572, 15573, 15574, 15575, 15576, - 15577, 15578, 15579, 15580, 15581, 15582, 15583, 15584, 15585, 15586, - 15587, 15588, 15589, 15590, 15591, 15592, 15593, 15594, 15595, 15596, - 15597, 15598, 15599, 15600, 15601, 15602, 15603, 15604, 15605, 15606, - 15607, 15608, 15609, 15610, 15611, 15612, 15613, 15614, 15615, 15616, - 15617, 15618, 15619, 15620, 15621, 15622, 15623, 15624, 15625, 15626, - 15627, 15628, 15629, 15630, 15631, 15632, 15633, 15634, 15635, 15636, - 15637, 15638, 15639, 15640, 15641, 15642, 15643, 15644, 15645, 15646, - 15647, 15648, 15649, 15650, 15651, 15652, 15653, 15654, 15655, 15656, - 15657, 15658, 15659, 15660, 15661, 15662, 15663, 15664, 15665, 15666, - 15667, 15668, 15669, 15670, 15671, 15672, 15673, 15674, 15675, 15676, - 15677, 15678, 15679, 15680, 15681, 15682, 15683, 15684, 15685, 15686, - 15687, 15688, 15689, 15690, 15691, 15692, 15693, 15694, 15695, 15696, - 15697, 15698, 15699, 15700, 15701, 15702, 15703, 15704, 15705, 15706, - 15707, 15708, 15709, 15710, 15711, 15712, 15713, 15714, 15715, 15716, - 15717, 15718, 15719, 15720, 15721, 15722, 15723, 15724, 15725, 15726, - 15727, 15728, 15729, 15730, 15731, 15732, 15733, 15734, 15735, 15736, - 15737, 15738, 15739, 15740, 15741, 15742, 15743, 15744, 15745, 15746, - 15747, 15748, 15749, 15750, 15751, 15752, 15753, 15754, 15755, 15756, - 15757, 15758, 15759, 15760, 15761, 16013, 16014, 16015, 16016, 16017, - 16018, 16019, 16020, 16021, 16022, 16023, 16024, 16025, 16026, 16027, - 16028, 16029, 16030, 16031, 16032, 16033, 16034, 16035, 16036, 16037, - 16038, 16039, 16040, 16041, 16042, 16043, 16044, 16045, 16046, 16047, - 16048, 16049, 16050, 16051, 16052, 16053, 16054, 16055, 16056, 16057, - 16058, 16059, 16060, 16061, 16062, 16063, 16064, 16065, 16066, 16067, - 16068, 16069, 16070, 16071, 16072, 16073, 16074, 16075, 16076, 16077, - 16078, 16079, 16080, 16081, 16082, 16083, 16084, 16085, 16086, 16087, - 16088, 16089, 16090, 16091, 16092, 16093, 16094, 16095, 16096, 16097, - 16098, 16099, 16100, 16101, 16102, 16103, 16104, 16105, 16106, 16107, - 16108, 16109, 16110, 16111, 16112, 16113, 16114, 16115, 16116, 16117, - 16118, 16119, 16120, 16121, 16122, 16123, 16124, 16125, 16126, 16127, - 16128, 16129, 16130, 16131, 16132, 16133, 16134, 16135, 16136, 16137, - 16138, 16139, 16140, 16141, 16142, 16143, 16144, 16145, 16146, 16147, - 16148, 16149, 16150, 16151, 16152, 16153, 16154, 16155, 16156, 16157, - 16158, 16159, 16160, 16161, 16162, 16163, 16164, 16165, 16166, 16167, - 16168, 16169, 16170, 16171, 16172, 16173, 16174, 16175, 16176, 16177, - 16178, 16179, 16180, 16181, 16182, 16183, 16184, 16185, 16186, 16187, - 16188, 16189, 16190, 16191, 16192, 16193, 16194, 16195, 16196, 16197, - 16198, 16199, 16200, 16201, 16202, 16203, 16204, 16205, 16206, 16207, - 16208, 16209, 16210, 16211, 16212, 16213, 16214, 16215, 16216, 16217, - 16218, 16219, 16220, 16221, 16222, 16223, 16224, 16225, 16226, 16227, - 16228, 16229, 16230, 16231, 16232, 16233, 16234, 16235, 16236, 16237, - 16238, 16239, 16240, 16241, 16242, 16243, 16244, 16245, 16246, 16247, - 16248, 16249, 16250, 16251, 16252, 16253, 16254, 16255, 16256, 16257, - 16258, 16259, 16260, 16261, 16262, 16263, 16264, 16265, 16266, 16267, - 16268, 16269, 16270, 16271, 16272, 16273, 16274, 16275, 16276, 16277, - 16278, 16279, 16280, 16281, 16282, 16283, 16284, 16285, 16286, 16287, - 16288, 16289, 16290, 16291, 16292, 16293, 16294, 16295, 16296, 16297, - 16298, 16299, 16300, 16301, 16302, 16303, 16304, 16305, 16306, 16307, - 16308, 16309, 16310, 16311, 16312, 16313, 16314, 16315, 16316, 16317, - 16318, 16319, 16320, 16321, 16322, 16323, 16324, 16325, 16326, 16327, - 16328, 16329, 16330, 16331, 16332, 16333, 16334, 16335, 16336, 16337, - 16338, 16339, 16340, 16341, 16342, 16343, 16344, 16345, 16346, 16347, - 16348, 16349, 16350, 16351, 16352, 16353, 16354, 16355, 16356, 16357, - 16358, 16359, 16360, 16361, 16362, 16363, 16364, 16365, 16366, 16367, - 16368, 16369, 16370, 16371, 16372, 16373, 16374, 16375, 16376, 16377, - 16378, 16379, 16380, 16381, 16382, 16383, 16384, 16385, 16386, 16387, - 16388, 16389, 16390, 16391, 16392, 16393, 16394, 16395, 16396, 16397, - 16398, 16399, 16400, 16401, 16402, 16403, 16404, 16405, 16406, 16407, - 16408, 16409, 16410, 16411, 16412, 16413, 16414, 16415, 16416, 16417, - 16418, 16419, 16420, 16421, 16422, 16423, 16424, 16425, 16426, 16427, - 16428, 16429, 16430, 16431, 16432, 16433, 16434, 16435, 16436, 16437, - 16438, 16439, 16440, 16441, 16442, 16443, 16444, 16445, 16446, 16447, - 16448, 16449, 16450, 16451, 16452, 16453, 16454, 16455, 16456, 16457, - 16458, 16459, 16460, 16461, 16462, 16463, 16464, 16465, 16466, 16467, - 16468, 16469, 16470, 16471, 16472, 16473, 16474, 16475, 16476, 16477, - 16478, 16479, 16480, 16481, 16482, 16483, 16484, 16485, 16486, 16487, - 16488, 16489, 16490, 16491, 16492, 16493, 16494, 16495, 16496, 16497, - 16498, 16499, 16500, 16501, 16502, 16503, 16504, 16505, 16506, 16507, - 16508, 16509, 16510, 16511, 16512, 16513, 16514, 16515, 16516, 16517, - 16518, 16519, 16520, 16521, 16522, 16523, 16524, 16525, 16526, 16527, - 16528, 16529, 16530, 16531, 16532, 16533, 16534, 16535, 16536, 16537, - 16538, 16539, 16540, 16541, 16542, 16543, 16544, 16545, 16546, 16547, - 16548, 16549, 16550, 16551, 16552, 16553, 16554, 16555, 16556, 16557, - 16558, 16559, 16560, 16561, 16562, 16563, 16564, 16565, 16566, 16567, - 16568, 16569, 16570, 16571, 16572, 16573, 16574, 16575, 16576, 16577, - 16578, 16579, 16580, 16581, 16582, 16583, 16584, 16585, 16586, 16587, - 16588, 16589, 16590, 16591, 16592, 16593, 16594, 16595, 16596, 16597, - 16598, 16599, 16600, 16601, 16602, 16603, 16604, 16605, 16606, 16607, - 16608, 16609, 16610, 16611, 16612, 16613, 16614, 16615, 16616, 16617, - 16618, 16619, 16620, 16621, 16622, 16623, 16624, 16625, 16626, 16627, - 16628, 16629, 16630, 16631, 16632, 16633, 16634, 16635, 16636, 16637, - 16638, 16639, 16640, 16641, 16642, 16643, 16644, 16645, 16646, 16647, - 16648, 16649, 16650, 16651, 16652, 16653, 16654, 16655, 16656, 16657, - 16658, 16659, 16660, 16661, 16662, 16663, 16664, 16665, 16666, 16667, - 16668, 16669, 16670, 16671, 16672, 16673, 16674, 16675, 16676, 16677, - 16678, 16679, 16680, 16681, 16682, 16683, 16684, 16685, 16686, 16687, - 16688, 16689, 16690, 16691, 16692, 16693, 16694, 16695, 16696, 16697, - 16698, 16699, 16700, 16701, 16702, 16703, 16704, 16705, 16706, 16707, - 16708, 16709, 16710, 16711, 16712, 16713, 16714, 16715, 16716, 16717, - 16718, 16719, 16720, 16721, 16722, 16723, 16724, 16725, 16726, 16727, - 16728, 16729, 16730, 16731, 16732, 16733, 16734, 16735, 16736, 16737, - 16738, 16739, 16740, 16741, 16742, 16743, 16744, 16745, 16746, 16747, - 16748, 16749, 16750, 16751, 16752, 16753, 16754, 16755, 16756, 16757, - 16758, 16759, 16760, 16761, 16762, 16763, 16764, 16765, 16766, 16767, - 16768, 16769, 16770, 16771, 16772, 16773, 16774, 16775, 16776, 16777, - 16778, 16779, 16780, 15773, 15774, 15775, 15776, 15777, 15778, 15779, - 15780, 15781, 15782, 15783, 15784, 15785, 15786, 15787, 15788, 15789, - 15790, 15791, 15792, 15793, 15794, 15795, 15796, 15797, 15798, 15799, - 15800, 15801, 15802, 15803, 15804, 15805, 15806, 15807, 15808, 15809, - 15810, 15811, 15812, 15813, 15814, 15815, 15816, 15817, 15818, 15819, - 15820, 15821, 15822, 15823, 15824, 15825, 15826, 15827, 15828, 15829, - 15830, 15831, 15832, 15833, 15834, 15835, 15836, 15837, 15838, 15839, - 15840, 15841, 15842, 15843, 15844, 15845, 15846, 15847, 15848, 15849, - 15850, 15851, 15852, 15853, 15854, 15855, 15856, 15857, 15858, 15859, - 15860, 15861, 15862, 15863, 15864, 15865, 15866, 15867, 15868, 15869, - 15870, 15871, 15872, 15873, 15874, 15875, 15876, 15877, 15878, 15879, - 15880, 15881, 15882, 15883, 15884, 15885, 15886, 15887, 15888, 15889, - 15890, 15891, 15892, 15893, 15894, 15895, 15896, 15897, 15898, 15899, - 15900, 15901, 15902, 15903, 15904, 15905, 15906, 15907, 15908, 15909, - 15910, 15911, 15912, 15913, 15914, 15915, 15916, 15917, 15918, 15919, - 15920, 15921, 15922, 15923, 15924, 15925, 15926, 15927, 15928, 15929, - 15930, 15931, 15932, 15933, 15934, 15935, 15936, 15937, 15938, 15939, - 15940, 15941, 15942, 15943, 15944, 15945, 15946, 15947, 15948, 15949, - 15950, 15951, 15952, 15953, 15954, 15955, 15956, 15957, 15958, 15959, - 15960, 15961, 15962, 15963, 15964, 15965, 15966, 15967, 15968, 15969, - 15970, 15971, 15972, 15973, 15974, 15975, 15976, 15977, 15978, 15979, - 15980, 15981, 15982, 15983, 15984, 15985, 15986, 15987, 15988, 15989, - 15990, 15991, 15992, 15993, 15994, 15995, 15996, 15997, 15998, 15999, - 16000, 16001, 16002, 16003, 16004, 16005, 16006, 16007, 16008, 16009, - 16010, 16011, 16012, 15762, 15763, 15764, 15765, 15766, 15767, 15768, - 15769, 15770, 15771, 15772, 41412, 41412, 41412, 41412, 41412, 447, 448, - 449, 450, 451, 452, 453, 454, 455, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 377, 378, 379, 380, 381, 382, 375, 376, 383, 384, - 385, 427, 428, 429, 430, 431, 432, 433, 434, 435, 425, 426, 393, 389, - 390, 394, 395, 396, 391, 392, 386, 387, 388, 397, 398, 399, 456, 457, - 458, 459, 460, 461, 462, 463, 464, 465, 404, 405, 406, 407, 408, 409, - 400, 401, 402, 403, 410, 411, 412, 466, 467, 468, 469, 470, 471, 472, - 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 417, - 418, 419, 420, 421, 422, 423, 413, 414, 415, 416, 424, 497, 498, 499, - 500, 501, 502, 503, 486, 487, 488, 489, 494, 495, 496, 504, 490, 491, - 492, 493, 505, 506, 507, 508, 509, 512, 513, 514, 515, 510, 511, 516, - 517, 518, 519, 522, 523, 524, 525, 526, 520, 521, 527, 528, 529, 530, - 533, 534, 535, 536, 537, 531, 532, 538, 539, 540, 541, 542, 543, 544, - 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, - 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, - 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, - 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, - 601, 609, 610, 602, 603, 604, 611, 612, 613, 614, 605, 606, 615, 607, - 608, 620, 621, 622, 623, 624, 616, 617, 618, 619, 625, 626, 627, 653, - 654, 655, 656, 657, 658, 659, 651, 652, 660, 661, 673, 674, 675, 676, - 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, - 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 664, 665, - 666, 667, 668, 669, 670, 662, 663, 671, 672, 703, 704, 705, 706, 707, - 708, 709, 710, 711, 712, 642, 643, 644, 645, 646, 647, 648, 649, 650, - 640, 641, 632, 633, 634, 635, 628, 629, 636, 637, 638, 639, 630, 631, - 715, 716, 717, 718, 719, 720, 721, 722, 723, 713, 714, 807, 808, 809, - 810, 811, 812, 813, 814, 815, 816, 726, 727, 728, 729, 730, 731, 732, - 733, 734, 724, 725, 753, 754, 750, 751, 752, 755, 756, 757, 746, 747, - 748, 749, 758, 759, 760, 817, 818, 819, 820, 821, 822, 823, 824, 825, - 826, 737, 738, 739, 740, 741, 742, 743, 744, 745, 735, 736, 765, 766, - 767, 768, 761, 762, 769, 770, 771, 763, 764, 772, 798, 796, 797, 799, - 800, 801, 802, 803, 804, 805, 806, 779, 775, 776, 780, 773, 774, 781, - 782, 777, 778, 783, 784, 785, 787, 788, 789, 786, 790, 791, 792, 793, - 794, 795, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 827, 828, - 829, 830, 831, 832, 833, 834, 835, 836, 837, 868, 869, 870, 871, 872, - 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, - 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 838, 839, 842, - 843, 844, 845, 846, 847, 840, 841, 848, 849, 898, 899, 900, 901, 902, - 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, - 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 850, 851, 852, - 853, 854, 855, 856, 857, 929, 930, 931, 932, 933, 934, 935, 936, 937, - 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, - 952, 953, 954, 955, 956, 957, 928, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 19107, 19097, 19096, 19093, 19092, 19078, 19091, 19090, 19095, 19094, - 19100, 19085, 19084, 19081, 19080, 19105, 19087, 19086, 19083, 19082, - 19079, 19099, 19098, 19089, 19088, 19102, 19106, 19103, 19101, 19104, - 19110, 19117, 19118, 19113, 19114, 19119, 19120, 19111, 19115, 19116, - 19112, 19121, 19077, 19076, 19074, 19108, 19075, 19109, 19128, 19130, - 19127, 19126, 19123, 19122, 19125, 19124, 19131, 19129, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 2892, 2858, 2917, 2918, 2888, - 2925, 2936, 2907, 2924, 2919, 2920, 2871, 2937, 2894, 2873, 2878, 2885, - 2931, 2903, 2861, 2897, 2932, 2893, 2868, 2869, 2901, 2875, 2916, 2857, - 2915, 2884, 2908, 2939, 2856, 2902, 2933, 2887, 2886, 2882, 2859, 2914, - 2891, 2921, 2874, 2911, 2922, 2938, 2866, 2928, 2935, 2876, 2862, 2890, - 2864, 2883, 2926, 2867, 2941, 2943, 2863, 2929, 2879, 2923, 2900, 2927, - 2905, 2912, 2896, 2940, 2895, 2877, 2909, 2880, 2906, 2934, 2930, 2913, - 2898, 2870, 2904, 2860, 2899, 2942, 2865, 2910, 2889, 2881, 2976, 2993, - 2991, 2990, 2954, 2960, 2949, 2997, 2959, 2951, 2984, 2996, 2953, 2980, - 2981, 2944, 2986, 2994, 2988, 2989, 2966, 2963, 2979, 2947, 2945, 2946, - 2952, 2985, 3001, 2974, 2971, 2998, 2987, 2995, 2965, 2969, 2970, 2967, - 2992, 2962, 2968, 2978, 2983, 2964, 2999, 2961, 3000, 2948, 2958, 2957, - 2955, 2972, 2977, 2956, 2950, 2975, 3053, 3073, 3095, 3091, 3052, 3041, - 3054, 3002, 3030, 3004, 3074, 3070, 3027, 3075, 3045, 3024, 3007, 3003, - 3009, 3094, 3072, 3035, 3065, 3033, 3096, 3014, 3015, 3079, 3046, 3084, - 3061, 3088, 3083, 3048, 3090, 3039, 3021, 3071, 3049, 3017, 3032, 3037, - 3068, 3085, 3051, 3099, 3042, 3067, 3064, 3098, 3089, 3029, 3100, 3057, - 3016, 3087, 3062, 3059, 3011, 3047, 3023, 3034, 3019, 3013, 3058, 3056, - 3092, 3050, 3066, 3069, 3012, 3063, 3043, 3020, 3097, 3044, 3081, 3078, - 3031, 3022, 3026, 3008, 3028, 3010, 3025, 3093, 3060, 3038, 3036, 3082, - 3006, 3005, 3055, 3040, 3018, 3076, 3077, 3086, 3128, 3212, 3161, 3135, - 3162, 3121, 3160, 3166, 3148, 3175, 3211, 3157, 3191, 3158, 3105, 3204, - 3189, 3164, 3196, 3109, 3213, 3111, 3198, 3133, 3143, 3124, 3130, 3200, - 3217, 3159, 3106, 3154, 3206, 3104, 3156, 3101, 3144, 3138, 3116, 3145, - 3140, 3139, 3181, 3137, 3134, 3122, 3167, 3126, 3114, 3173, 3202, 3201, - 3214, 3107, 3188, 3205, 3153, 3132, 3168, 3108, 3184, 3179, 3174, 3119, - 3147, 3136, 3151, 3215, 3183, 3216, 3146, 3170, 3195, 3112, 3150, 3155, - 3207, 3129, 3113, 3169, 3203, 3125, 3149, 3117, 3152, 3165, 3163, 3103, - 3110, 3185, 3209, 3208, 3176, 3187, 3118, 3131, 3123, 3197, 3142, 3193, - 3190, 3115, 3178, 3194, 3171, 3180, 3177, 3192, 3182, 3141, 3120, 3186, - 3210, 3172, 3127, 3199, 3102, 3271, 3349, 3258, 3245, 3356, 3248, 3312, - 3338, 3328, 3298, 3274, 3323, 3343, 3284, 3238, 3359, 3331, 3276, 3313, - 3348, 3240, 3250, 3300, 3290, 3255, 3287, 3291, 3299, 3330, 3297, 3316, - 3339, 3279, 3262, 3232, 3286, 3294, 3256, 3249, 3277, 3273, 3340, 3332, - 3326, 3270, 3278, 3364, 3231, 3353, 3360, 3320, 3352, 3235, 3337, 3346, - 3354, 3357, 3244, 3322, 3342, 3229, 3292, 3333, 3261, 3259, 3305, 3309, - 3228, 3351, 3239, 3372, 3303, 3365, 3260, 3272, 3318, 3368, 3247, 3221, - 3227, 3289, 3237, 3254, 3285, 3233, 3223, 3301, 3314, 3362, 3275, 3304, - 3306, 3321, 3264, 3222, 3308, 3265, 3230, 3220, 3268, 3324, 3288, 3241, - 3319, 3302, 3361, 3280, 3310, 3219, 3226, 3295, 3373, 3350, 3375, 3374, - 3246, 3311, 3341, 3344, 3269, 3336, 3363, 3282, 3369, 3366, 3367, 3371, - 3370, 3236, 3315, 3296, 3325, 3358, 3225, 3355, 3252, 3263, 3329, 3327, - 3283, 3293, 3334, 3335, 3218, 3307, 3317, 3251, 3243, 3266, 3253, 3257, - 3345, 3242, 3267, 3347, 3224, 3234, 3380, 3429, 3382, 3427, 3407, 3420, - 3401, 3384, 3410, 3409, 3389, 3419, 3399, 3395, 3386, 3417, 3412, 3418, - 3415, 3378, 3377, 3397, 3396, 3394, 3422, 3414, 3423, 3398, 3403, 3400, - 3424, 3404, 3411, 3402, 3406, 3376, 3392, 3393, 3413, 3405, 3428, 3425, - 3385, 3383, 3381, 3387, 3408, 3390, 3391, 3388, 3421, 3379, 3416, 3426, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28399, 28391, 28412, - 28389, 28413, 28400, 28415, 28395, 28386, 28403, 28401, 28409, 28385, - 28393, 28388, 28390, 28396, 28394, 28392, 28405, 28406, 28397, 28411, - 28414, 28410, 28387, 28408, 28407, 28402, 28404, 28398, 41412, 28424, - 28426, 28423, 28422, 28419, 28418, 28421, 28420, 28427, 28425, 41412, - 41412, 41412, 41412, 28417, 28416, 36122, 36119, 36120, 36121, 36074, - 36071, 36072, 36073, 36126, 36123, 36124, 36125, 36114, 36111, 36112, - 36113, 36118, 36115, 36116, 36117, 36110, 36107, 36108, 36109, 36070, - 36067, 36068, 36069, 36102, 36099, 36100, 36101, 36075, 36080, 36091, - 36092, 36103, 36106, 36104, 36105, 36098, 36095, 36096, 36097, 36086, - 36083, 36084, 36085, 36137, 36136, 36135, 36087, 36094, 36144, 36142, - 36139, 36089, 36138, 36140, 36082, 36090, 36079, 36081, 36078, 36129, - 36133, 36141, 36088, 36093, 36131, 36128, 36134, 36077, 36127, 36143, - 36076, 36132, 36130, 36145, 41412, 36152, 36154, 36151, 36150, 36147, - 36146, 36149, 36148, 36155, 36153, 41412, 41412, 41412, 41412, 41412, - 41412, 3490, 3495, 3511, 3513, 3503, 3501, 3493, 3487, 3494, 3507, 3502, - 3498, 3509, 3492, 3488, 3510, 3497, 3508, 3512, 3506, 3500, 3514, 3499, - 3515, 3504, 3505, 3496, 3491, 3489, 3516, 41412, 41412, 3483, 3485, 3486, - 3484, 3482, 3517, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 31177, 31178, 31183, 31184, 31171, 31172, 31187, 31188, - 31179, 31180, 31169, 31170, 31189, 31190, 31173, 31174, 31185, 31186, - 31191, 31192, 31181, 31182, 31175, 31176, 31193, 31194, 31167, 31168, - 31113, 31104, 31110, 31101, 31106, 31112, 31105, 31109, 31115, 31099, - 31111, 31097, 31102, 31100, 31108, 31103, 31107, 31116, 31114, 31098, - 31121, 31120, 31118, 31117, 31119, 31123, 31122, 31153, 31154, 31132, - 31152, 31150, 31158, 31160, 31159, 31161, 31151, 31143, 31156, 31141, - 31163, 31136, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 31201, 31203, 31200, 31199, 31196, 31195, 31198, 31197, - 31204, 31202, 41412, 31128, 31125, 31127, 31130, 31124, 31126, 31129, - 41412, 31155, 31162, 31140, 31148, 31164, 31139, 31146, 31157, 31145, - 31166, 31147, 31142, 31149, 31165, 31144, 31138, 31131, 31134, 31135, - 31137, 31133, 41412, 41412, 41412, 41412, 41412, 31085, 31092, 31084, - 31083, 31093, 31081, 31078, 31096, 31088, 31086, 31094, 31080, 31079, - 31089, 31095, 31091, 31087, 31082, 31090, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 22688, 22685, 22690, 22684, 22673, 22672, 22669, 22668, - 22661, 22667, 22666, 22671, 22670, 22662, 22658, 22657, 22654, 22653, - 22660, 22659, 22656, 22655, 22663, 22675, 22674, 22665, 22664, 22680, - 22683, 22681, 22679, 22682, 22677, 22676, 22678, 22691, 22697, 22694, - 22695, 22696, 22692, 22698, 22693, 22689, 22687, 22686, 22700, 22699, - 22707, 22709, 22706, 22705, 22702, 22701, 22704, 22703, 22710, 22708, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 27062, 27066, - 27069, 27070, 27040, 27072, 27048, 27063, 27067, 27058, 27057, 27059, - 27047, 27039, 27060, 27056, 27053, 27054, 27068, 27050, 27061, 27064, - 27046, 27044, 27071, 27055, 27052, 27042, 27065, 27051, 27041, 27049, - 27120, 27124, 27127, 27128, 27098, 27130, 27106, 27121, 27125, 27116, - 27115, 27117, 27105, 27097, 27118, 27114, 27111, 27112, 27126, 27108, - 27119, 27122, 27104, 27102, 27129, 27113, 27110, 27100, 27123, 27109, - 27099, 27107, 27084, 27078, 27076, 27074, 27081, 27080, 27083, 27082, - 27086, 27085, 27089, 27091, 27088, 27087, 27092, 27093, 27095, 27096, - 27090, 27094, 27079, 27077, 27075, 27073, 27133, 27131, 27132, 41412, - 41412, 41412, 41412, 41412, 3702, 3719, 3704, 3708, 3721, 3709, 3716, - 3726, 3705, 3717, 3722, 3715, 3711, 3710, 3712, 3723, 3724, 3706, 3707, - 3714, 3713, 3718, 3725, 3720, 3703, 41412, 41412, 3727, 3744, 3729, 3733, - 3746, 3734, 3741, 3751, 3730, 3742, 3747, 3740, 3736, 3735, 3737, 3748, - 3749, 3731, 3732, 3739, 3738, 3743, 3750, 3745, 3728, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 27681, 27607, 27669, 27680, 27685, 27684, 27604, 27686, - 27661, 27660, 27658, 27615, 27664, 27665, 27657, 27614, 27623, 27631, - 27667, 27603, 27628, 27627, 27622, 27621, 27620, 27619, 27645, 27613, - 27644, 27612, 27687, 27618, 27668, 27679, 27678, 27626, 27625, 27602, - 27683, 27689, 27617, 27616, 27654, 27610, 27630, 27629, 27653, 27609, - 27662, 27666, 27638, 27641, 27642, 27676, 27674, 27655, 27611, 27663, - 27643, 27677, 27675, 27673, 27671, 27601, 27672, 27670, 27688, 27605, - 27682, 27606, 27640, 27608, 27659, 27656, 27639, 41412, 41412, 41412, - 41412, 27693, 27624, 27692, 27691, 27690, 27698, 27704, 27703, 27699, - 27700, 27725, 27729, 27746, 27745, 27707, 27710, 27711, 27727, 27714, - 27715, 27716, 27717, 27718, 27721, 27723, 27724, 27720, 27731, 27732, - 27733, 27734, 27739, 27735, 27736, 27740, 27742, 27701, 27702, 27709, - 27744, 27708, 27743, 27705, 27713, 27706, 27730, 27747, 27748, 27737, - 27741, 27728, 27726, 27749, 27722, 27712, 27719, 27738, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 27697, 27695, 27696, 27694, 27646, - 27647, 27648, 27649, 27650, 27651, 27652, 27632, 27633, 27634, 27635, - 27636, 27637, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 37039, 30032, 30253, 30252, - 22331, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 39333, 39332, 6583, 6584, 39854, 39855, 39856, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 36156, 36157, - 36158, 36159, 36160, 36161, 36162, 36163, 36164, 36165, 36166, 36167, - 36168, 36169, 36170, 36171, 36172, 36173, 36174, 36175, 36176, 36177, - 36178, 36179, 36180, 36181, 36182, 36183, 36184, 36185, 36186, 36187, - 36188, 36189, 36190, 36191, 36192, 36193, 36194, 36195, 36196, 36197, - 36198, 36199, 36200, 36201, 36202, 36203, 36204, 36205, 36206, 36207, - 36208, 36209, 36210, 36211, 36212, 36213, 36214, 36215, 36216, 36217, - 36218, 36219, 36220, 36221, 36222, 36223, 36224, 36225, 36226, 36227, - 36228, 36229, 36230, 36231, 36232, 36233, 36234, 36235, 36236, 36237, - 36238, 36239, 36240, 36241, 36242, 36243, 36244, 36245, 36246, 36247, - 36248, 36249, 36250, 36251, 36252, 36253, 36254, 36255, 36256, 36257, - 36258, 36259, 36260, 36261, 36262, 36263, 36264, 36265, 36266, 36267, - 36268, 36269, 36270, 36271, 36272, 36273, 36274, 36275, 36276, 36277, - 36278, 36279, 36280, 36281, 36282, 36283, 36284, 36285, 36286, 36287, - 36288, 36289, 36290, 36291, 36292, 36293, 36294, 36295, 36296, 36297, - 36298, 36299, 36300, 36301, 36302, 36303, 36304, 36305, 36306, 36307, - 36308, 36309, 36310, 36311, 36312, 36313, 36314, 36315, 36316, 36317, - 36318, 36319, 36320, 36321, 36322, 36323, 36324, 36325, 36326, 36327, - 36328, 36329, 36330, 36331, 36332, 36333, 36334, 36335, 36336, 36337, - 36338, 36339, 36340, 36341, 36342, 36343, 36344, 36345, 36346, 36347, - 36348, 36349, 36350, 36351, 36352, 36353, 36354, 36355, 36356, 36357, - 36358, 36359, 36360, 36361, 36362, 36363, 36364, 36365, 36366, 36367, - 36368, 36369, 36370, 36371, 36372, 36373, 36374, 36375, 36376, 36377, - 36378, 36379, 36380, 36381, 36382, 36383, 36384, 36385, 36386, 36387, - 36388, 36389, 36390, 36391, 36392, 36393, 36394, 36395, 36396, 36397, - 36398, 36399, 36400, 36401, 36402, 36403, 36404, 36405, 36406, 36407, - 36408, 36409, 36410, 36411, 36412, 36413, 36414, 36415, 36416, 36417, - 36418, 36419, 36420, 36421, 36422, 36423, 36424, 36425, 36426, 36427, - 36428, 36429, 36430, 36431, 36432, 36433, 36434, 36435, 36436, 36437, - 36438, 36439, 36440, 36441, 36442, 36443, 36444, 36445, 36446, 36447, - 36448, 36449, 36450, 36451, 36452, 36453, 36454, 36455, 36456, 36457, - 36458, 36459, 36460, 36461, 36462, 36463, 36464, 36465, 36466, 36467, - 36468, 36469, 36470, 36471, 36472, 36473, 36474, 36475, 36476, 36477, - 36478, 36479, 36480, 36481, 36482, 36483, 36484, 36485, 36486, 36487, - 36488, 36489, 36490, 36491, 36492, 36493, 36494, 36495, 36496, 36497, - 36498, 36499, 36500, 36501, 36502, 36503, 36504, 36505, 36506, 36507, - 36508, 36509, 36510, 36511, 36512, 36513, 36514, 36515, 36516, 36517, - 36518, 36519, 36520, 36521, 36522, 36523, 36524, 36525, 36526, 36527, - 36528, 36529, 36530, 36531, 36532, 36533, 36534, 36535, 36536, 36537, - 36538, 36539, 36540, 36541, 36542, 36543, 36544, 36545, 36546, 36547, - 36548, 36549, 36550, 36551, 36552, 36553, 36554, 36555, 36556, 36557, - 36558, 36559, 36560, 36561, 36562, 36563, 36564, 36565, 36566, 36567, - 36568, 36569, 36570, 36571, 36572, 36573, 36574, 36575, 36576, 36577, - 36578, 36579, 36580, 36581, 36582, 36583, 36584, 36585, 36586, 36587, - 36588, 36589, 36590, 36591, 36592, 36593, 36594, 36595, 36596, 36597, - 36598, 36599, 36600, 36601, 36602, 36603, 36604, 36605, 36606, 36607, - 36608, 36609, 36610, 36611, 36612, 36613, 36614, 36615, 36616, 36617, - 36618, 36619, 36620, 36621, 36622, 36623, 36624, 36625, 36626, 36627, - 36628, 36629, 36630, 36631, 36632, 36633, 36634, 36635, 36636, 36637, - 36638, 36639, 36640, 36641, 36642, 36643, 36644, 36645, 36646, 36647, - 36648, 36649, 36650, 36651, 36652, 36653, 36654, 36655, 36656, 36657, - 36658, 36659, 36660, 36661, 36662, 36663, 36664, 36665, 36666, 36667, - 36668, 36669, 36670, 36671, 36672, 36673, 36674, 36675, 36676, 36677, - 36678, 36679, 36680, 36681, 36682, 36683, 36684, 36685, 36686, 36687, - 36688, 36689, 36690, 36691, 36692, 36693, 36694, 36695, 36696, 36697, - 36698, 36699, 36700, 36701, 36702, 36703, 36704, 36705, 36706, 36707, - 36708, 36709, 36710, 36711, 36712, 36713, 36714, 36715, 36716, 36717, - 36718, 36719, 36720, 36721, 36722, 36723, 36724, 36725, 36726, 36727, - 36728, 36729, 36730, 36731, 36732, 36733, 36734, 36735, 36736, 36737, - 36738, 36739, 36740, 36741, 36742, 36743, 36744, 36745, 36746, 36747, - 36748, 36749, 36750, 36751, 36752, 36753, 36754, 36755, 36756, 36757, - 36758, 36759, 36760, 36761, 36762, 36763, 36764, 36765, 36766, 36767, - 36768, 36769, 36770, 36771, 36772, 36773, 36774, 36775, 36776, 36777, - 36778, 36779, 36780, 36781, 36782, 36783, 36784, 36785, 36786, 36787, - 36788, 36789, 36790, 36791, 36792, 36793, 36794, 36795, 36796, 36797, - 36798, 36799, 36800, 36801, 36802, 36803, 36804, 36805, 36806, 36807, - 36808, 36809, 36810, 36811, 36812, 36813, 36814, 36815, 36816, 36817, - 36818, 36819, 36820, 36821, 36822, 36823, 36824, 36825, 36826, 36827, - 36828, 36829, 36830, 36831, 36832, 36833, 36834, 36835, 36836, 36837, - 36838, 36839, 36840, 36841, 36842, 36843, 36844, 36845, 36846, 36847, - 36848, 36849, 36850, 36851, 36852, 36853, 36854, 36855, 36856, 36857, - 36858, 36859, 36860, 36861, 36862, 36863, 36864, 36865, 36866, 36867, - 36868, 36869, 36870, 36871, 36872, 36873, 36874, 36875, 36876, 36877, - 36878, 36879, 36880, 36881, 36882, 36883, 36884, 36885, 36886, 36887, - 36888, 36889, 36890, 36891, 36892, 36893, 36894, 36895, 36896, 36897, - 36898, 36899, 36900, 36901, 36902, 36903, 36904, 36905, 36906, 36907, - 36908, 36909, 36910, 36911, 36912, 36913, 36914, 36915, 36916, 36917, - 36918, 36919, 36920, 36921, 36922, 36923, 21860, 21861, 21862, 21863, - 21864, 21865, 21866, 21867, 21868, 21869, 21870, 21871, 21872, 21873, - 21874, 21875, 21876, 21877, 21878, 21879, 21880, 21881, 21882, 21883, - 21884, 21885, 21886, 21887, 21888, 21889, 21890, 21891, 21892, 21893, - 21894, 21895, 21896, 21897, 21898, 21899, 21900, 21901, 21902, 21903, - 21904, 21905, 21906, 21907, 21908, 21909, 21910, 21911, 21912, 21913, - 21914, 21915, 21916, 21917, 21918, 21919, 21920, 21921, 21922, 21923, - 21924, 21925, 21926, 21927, 21928, 21929, 21930, 21931, 21932, 21933, - 21934, 21935, 21936, 21937, 21938, 21939, 21940, 21941, 21942, 21943, - 21944, 21945, 21946, 21947, 21948, 21949, 21950, 21951, 21952, 21953, - 21954, 21955, 21956, 21957, 21958, 21959, 21960, 21961, 21962, 21963, - 21964, 21965, 21966, 21967, 21968, 21969, 21970, 21971, 21972, 21973, - 21974, 21975, 21976, 21977, 21978, 21979, 21980, 21981, 21982, 21983, - 21984, 21985, 21986, 21987, 21988, 21989, 21990, 21991, 21992, 21993, - 21994, 21995, 21996, 21997, 21998, 21999, 22000, 22001, 22002, 22003, - 22004, 22005, 22006, 22007, 22008, 22009, 22010, 22011, 22012, 22013, - 22014, 22015, 22016, 22017, 22018, 22019, 22020, 22021, 22022, 22023, - 22024, 22025, 22026, 22027, 22028, 22029, 22030, 22031, 22032, 22033, - 22034, 22035, 22036, 22037, 22038, 22039, 22040, 22041, 22042, 22043, - 22044, 22045, 22046, 22047, 22048, 22049, 22050, 22051, 22052, 22053, - 22054, 22055, 22056, 22057, 22058, 22059, 22060, 22061, 22062, 22063, - 22064, 22065, 22066, 22067, 22068, 22069, 22070, 22071, 22072, 22073, - 22074, 22075, 22076, 22077, 22078, 22079, 22080, 22081, 22082, 22083, - 22084, 22085, 22086, 22087, 22088, 22089, 22090, 22091, 22092, 22093, - 22094, 22095, 22096, 22097, 22098, 22099, 22100, 22101, 22102, 22103, - 22104, 22105, 22106, 22107, 22108, 22109, 22110, 22111, 22112, 22113, - 22114, 22115, 22122, 22123, 22124, 22125, 22126, 22127, 22128, 22129, - 22130, 22131, 22132, 22133, 22134, 22135, 22136, 22137, 22138, 22139, - 22140, 22141, 22142, 22143, 22144, 22145, 22146, 22147, 22148, 22149, - 22150, 22151, 22152, 22153, 22154, 22155, 22156, 22157, 22158, 22159, - 22160, 22161, 22162, 22163, 22164, 22165, 22166, 22167, 22168, 22169, - 22170, 22171, 22172, 22173, 22174, 22175, 22176, 22177, 22178, 22179, - 22180, 22181, 22182, 22183, 22184, 22185, 22186, 22187, 22188, 22189, - 22190, 22191, 22192, 22193, 22194, 22195, 22196, 22197, 22198, 22199, - 22200, 22201, 22202, 22203, 22204, 22205, 22206, 22207, 22208, 22209, - 22210, 22211, 22212, 22213, 22214, 22215, 22216, 22217, 22218, 22219, - 22220, 22221, 22222, 22223, 22224, 22225, 22226, 22227, 22228, 22229, - 22230, 22231, 22232, 22233, 22234, 22235, 22236, 22237, 22238, 22239, - 22240, 22241, 22242, 22243, 22244, 22245, 22246, 22247, 22248, 22249, - 22250, 22251, 22252, 22253, 22254, 22255, 22256, 22257, 22258, 22259, - 22260, 22261, 22262, 22263, 22264, 22265, 22266, 22267, 22268, 22269, - 22270, 22271, 22272, 22273, 22274, 22275, 22276, 22277, 22278, 22279, - 22280, 22281, 22282, 22283, 22284, 22285, 22286, 22287, 22288, 22289, - 22290, 22291, 22292, 22293, 22294, 22295, 22296, 22297, 22298, 22299, - 22300, 22301, 22302, 22303, 22304, 22305, 22306, 22307, 22308, 22309, - 22310, 22311, 22312, 22313, 22314, 22315, 22316, 22317, 22318, 22319, - 22320, 22321, 22322, 22323, 22324, 22325, 22326, 22327, 22328, 22329, - 22116, 22117, 22118, 22119, 22120, 22121, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 22330, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 36924, 36925, 36926, 36927, - 36928, 36929, 36930, 36931, 36932, 36933, 36934, 36935, 36936, 36937, - 36938, 36939, 36940, 36941, 36942, 36943, 36944, 36945, 36946, 36947, - 36948, 36949, 36950, 36951, 36952, 36953, 36954, 36955, 36956, 36957, - 36958, 36959, 36960, 36961, 36962, 36963, 36964, 36965, 36966, 36967, - 36968, 36969, 36970, 36971, 36972, 36973, 36974, 36975, 36976, 36977, - 36978, 36979, 36980, 36981, 36982, 36983, 36984, 36985, 36986, 36987, - 36988, 36989, 36990, 36991, 36992, 36993, 36994, 36995, 36996, 36997, - 36998, 36999, 37000, 37001, 37002, 37003, 37004, 37005, 37006, 37007, - 37008, 37009, 37010, 37011, 37012, 37013, 37014, 37015, 37016, 37017, - 37018, 37019, 37020, 37021, 37022, 37023, 37024, 37025, 37026, 37027, - 37028, 37029, 37030, 37031, 37032, 37033, 37034, 37035, 37036, 37037, - 37038, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 21499, 21500, 21501, 21502, 41412, 21503, - 21504, 21492, 21493, 21494, 21495, 21496, 41412, 21497, 21498, 41412, - 21480, 20452, 20091, 20092, 20093, 20090, 20372, 20373, 20374, 20375, - 20364, 20365, 20366, 20367, 20368, 20359, 20360, 20361, 20362, 20363, - 20369, 20370, 20371, 20130, 20134, 20135, 20136, 20137, 20138, 20139, - 20140, 20141, 20131, 20132, 20133, 20146, 20147, 20148, 20149, 20150, - 20151, 20152, 20153, 20160, 20161, 20162, 20163, 20164, 20165, 20166, - 20154, 20155, 20156, 20157, 20158, 20159, 20143, 20144, 20145, 20142, - 20255, 20256, 20257, 20258, 20259, 20260, 20261, 20262, 20271, 20272, - 20273, 20274, 20275, 20276, 20263, 20264, 20265, 20266, 20267, 20268, - 20269, 20270, 20277, 20278, 20279, 20280, 20281, 20282, 20283, 20284, - 20285, 20286, 20287, 20288, 20317, 20318, 20319, 20320, 20310, 20311, - 20312, 20313, 20314, 20315, 20316, 20306, 20307, 20308, 20309, 20305, - 20289, 20290, 20291, 20292, 20293, 20294, 20295, 20296, 20297, 20299, - 20300, 20301, 20302, 20303, 20304, 20298, 20209, 20210, 20211, 20212, - 20213, 20214, 20215, 20216, 20217, 20202, 20203, 20204, 20205, 20206, - 20207, 20208, 20201, 20223, 20224, 20225, 20195, 20196, 20197, 20198, - 20199, 20200, 20194, 20218, 20219, 20220, 20221, 20222, 20102, 20105, - 20106, 20107, 20108, 20109, 20110, 20111, 20112, 20103, 20104, 20123, - 20124, 20125, 20126, 20127, 20128, 20129, 20113, 20114, 20115, 20116, - 20117, 20118, 20119, 20120, 20121, 20122, 20094, 20095, 20096, 20097, - 20098, 20099, 20100, 20101, 20176, 20177, 20178, 20179, 20180, 20181, - 20182, 20183, 20184, 20185, 20186, 20187, 20188, 20189, 20190, 20191, - 20192, 20193, 20168, 20169, 20167, 20170, 20171, 20172, 20173, 20174, - 20175, 20343, 20344, 20345, 20346, 20347, 20342, 20354, 20355, 20356, - 20357, 20348, 20349, 20350, 20351, 20352, 20353, 20247, 20248, 20249, - 20250, 20240, 20241, 20242, 20243, 20244, 20245, 20246, 20234, 20235, - 20236, 20237, 20238, 20239, 20251, 20252, 20253, 20254, 20228, 20229, - 20230, 20231, 20232, 20233, 20321, 20322, 20323, 20324, 20325, 20326, - 20327, 20328, 20329, 20330, 20338, 20339, 20340, 20341, 20331, 20332, - 20333, 20334, 20335, 20336, 20337, 20226, 20227, 20451, 21478, 21477, - 21479, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 20462, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 20455, 20454, 20456, 41412, - 41412, 21527, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 21533, 21532, 21534, 21538, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29636, 29637, - 29638, 29639, 29640, 29641, 29642, 29643, 29644, 29645, 29646, 29647, - 29648, 29649, 29650, 29651, 29652, 29653, 29654, 29655, 29656, 29657, - 29658, 29659, 29660, 29661, 29662, 29663, 29664, 29665, 29666, 29667, - 29668, 29669, 29670, 29671, 29672, 29673, 29674, 29675, 29676, 29677, - 29678, 29679, 29680, 29681, 29682, 29683, 29684, 29685, 29686, 29687, - 29688, 29689, 29690, 29691, 29692, 29693, 29694, 29695, 29696, 29697, - 29698, 29699, 29700, 29701, 29702, 29703, 29704, 29705, 29706, 29707, - 29708, 29709, 29710, 29711, 29712, 29713, 29714, 29715, 29716, 29717, - 29718, 29719, 29720, 29721, 29722, 29723, 29724, 29725, 29726, 29727, - 29728, 29729, 29730, 29731, 29732, 29733, 29734, 29735, 29736, 29737, - 29738, 29739, 29740, 29741, 29742, 29743, 29744, 29745, 29746, 29747, - 29748, 29749, 29750, 29751, 29752, 29753, 29754, 29755, 29756, 29757, - 29758, 29759, 29760, 29761, 29762, 29763, 29764, 29765, 29766, 29767, - 29768, 29769, 29770, 29771, 29772, 29773, 29774, 29775, 29776, 29777, - 29778, 29779, 29780, 29781, 29782, 29783, 29784, 29785, 29786, 29787, - 29788, 29789, 29790, 29791, 29792, 29793, 29794, 29795, 29796, 29797, - 29798, 29799, 29800, 29801, 29802, 29803, 29804, 29805, 29806, 29807, - 29808, 29809, 29810, 29811, 29812, 29813, 29814, 29815, 29816, 29817, - 29818, 29819, 29820, 29821, 29822, 29823, 29824, 29825, 29826, 29827, - 29828, 29829, 29830, 29831, 29832, 29833, 29834, 29835, 29836, 29837, - 29838, 29839, 29840, 29841, 29842, 29843, 29844, 29845, 29846, 29847, - 29848, 29849, 29850, 29851, 29852, 29853, 29854, 29855, 29856, 29857, - 29858, 29859, 29860, 29861, 29862, 29863, 29864, 29865, 29866, 29867, - 29868, 29869, 29870, 29871, 29872, 29873, 29874, 29875, 29876, 29877, - 29878, 29879, 29880, 29881, 29882, 29883, 29884, 29885, 29886, 29887, - 29888, 29889, 29890, 29891, 29892, 29893, 29894, 29895, 29896, 29897, - 29898, 29899, 29900, 29901, 29902, 29903, 29904, 29905, 29906, 29907, - 29908, 29909, 29910, 29911, 29912, 29913, 29914, 29915, 29916, 29917, - 29918, 29919, 29920, 29921, 29922, 29923, 29924, 29925, 29926, 29927, - 29928, 29929, 29930, 29931, 29932, 29933, 29934, 29935, 29936, 29937, - 29938, 29939, 29940, 29941, 29942, 29943, 29944, 29945, 29946, 29947, - 29948, 29949, 29950, 29951, 29952, 29953, 29954, 29955, 29956, 29957, - 29958, 29959, 29960, 29961, 29962, 29963, 29964, 29965, 29966, 29967, - 29968, 29969, 29970, 29971, 29972, 29973, 29974, 29975, 29976, 29977, - 29978, 29979, 29980, 29981, 29982, 29983, 29984, 29985, 29986, 29987, - 29988, 29989, 29990, 29991, 29992, 29993, 29994, 29995, 29996, 29997, - 29998, 29999, 30000, 30001, 30002, 30003, 30004, 30005, 30006, 30007, - 30008, 30009, 30010, 30011, 30012, 30013, 30014, 30015, 30016, 30017, - 30018, 30019, 30020, 30021, 30022, 30023, 30024, 30025, 30026, 30027, - 30028, 30029, 30030, 30031, 41412, 41412, 41412, 41412, 11649, 11647, - 11596, 11629, 11556, 11569, 11573, 11654, 11550, 11637, 11558, 11600, - 11599, 11551, 11557, 11571, 11603, 11632, 11625, 11552, 11572, 11626, - 11650, 11576, 11604, 11577, 11582, 11560, 11605, 11578, 11583, 11563, - 11606, 11580, 11585, 11561, 11562, 11614, 11615, 11581, 11586, 11567, - 11618, 11579, 11584, 11564, 11607, 11568, 11565, 11566, 11612, 11613, - 11610, 11611, 11631, 11630, 11639, 11645, 11642, 11617, 11616, 11570, - 11559, 11608, 11609, 11548, 11623, 11593, 11591, 11549, 11651, 11553, - 11652, 11628, 11636, 11554, 11620, 11601, 11619, 11574, 11653, 11633, - 11555, 11648, 11634, 11575, 11602, 11635, 11627, 11592, 11595, 11594, - 11644, 11640, 11646, 11643, 11641, 11590, 11589, 11588, 11587, 11598, - 11597, 11621, 11624, 11622, 11638, 41412, 41412, 41412, 41412, 41412, - 11533, 11546, 11545, 11540, 11547, 11527, 11520, 11519, 11516, 11518, - 11521, 11522, 11517, 41412, 41412, 41412, 11529, 11525, 11528, 11523, - 11532, 11531, 11524, 11530, 11526, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 11534, 11538, 11541, 11536, 11544, 11543, 11537, 11542, - 11539, 11535, 41412, 41412, 11658, 11655, 11656, 11657, 33036, 33035, - 33037, 33038, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 38247, 32227, 24339, 32224, 11423, 25347, - 32195, 25405, 967, 20587, 39302, 24297, 27756, 32180, 24332, 32217, - 30107, 31773, 31965, 20583, 39276, 25287, 25286, 25285, 25284, 25282, - 25283, 4587, 4588, 4596, 4610, 4480, 4479, 32766, 32774, 32767, 32778, - 32771, 32775, 32768, 32780, 32773, 32777, 32770, 32779, 32772, 32776, - 32769, 38286, 38254, 38256, 38341, 38303, 38299, 38335, 38305, 25431, - 25378, 25398, 25433, 25381, 25423, 25425, 25404, 34309, 34310, 30835, - 10972, 10708, 10707, 34321, 34322, 24345, 32204, 17621, 17622, 352, 351, - 358, 357, 360, 359, 355, 356, 353, 354, 24335, 38239, 32220, 11429, - 37913, 37909, 37917, 4442, 4440, 4446, 24328, 38234, 32214, 11425, 28480, - 24338, 38242, 32223, 11432, 16787, 16788, 3944, 3947, 3946, 3945, 3978, - 24351, 38232, 32210, 11435, 24352, 38233, 32211, 11436, 24341, 38236, - 32226, 11427, 34554, 34555, 34553, 34552, 34746, 34748, 34747, 34745, - 39286, 20566, 39699, 39700, 38159, 34386, 34385, 34384, 34339, 20962, - 24211, 20963, 39291, 20564, 24346, 32205, 24347, 32206, 17606, 24337, - 38241, 32222, 11431, 20586, 39301, 39279, 24340, 32225, 24334, 32219, - 24336, 32221, 24245, 32138, 38295, 38331, 38294, 38330, 25367, 25387, - 25366, 25386, 25364, 25384, 25365, 25385, 38298, 38334, 25377, 25397, - 38296, 38332, 25376, 25396, 38289, 38325, 25371, 25391, 38292, 38328, - 25374, 25394, 38293, 38329, 25375, 25395, 38288, 38324, 25370, 25390, - 38290, 38326, 25372, 25392, 38291, 38327, 25373, 25393, 38297, 38333, - 25368, 25388, 31013, 31014, 31015, 31016, 31017, 31018, 31019, 31020, - 31021, 31022, 31023, 31024, 31025, 31026, 31027, 31028, 31029, 31030, - 31031, 31032, 31033, 31034, 31035, 31036, 31037, 31038, 31049, 31051, - 31048, 31047, 31044, 31043, 31046, 31045, 31052, 31050, 34090, 17623, - 29621, 41412, 41412, 41412, 4239, 4183, 4054, 4269, 4140, 4081, 4240, - 4121, 4184, 4230, 4156, 4215, 4097, 4112, 4200, 4066, 4273, 4141, 4171, - 4082, 4241, 4122, 4185, 4055, 4236, 4164, 4223, 4105, 4262, 4118, 4208, - 4074, 4149, 4177, 4090, 4248, 4130, 4193, 4060, 4231, 4157, 4216, 4098, - 4255, 4113, 4201, 4067, 4274, 4142, 4172, 4083, 4242, 4123, 4186, 4168, - 4227, 4109, 4266, 4137, 4212, 4078, 4281, 4153, 4180, 4094, 4252, 4134, - 4197, 4063, 4161, 4220, 4102, 4259, 4205, 4071, 4278, 4146, 4087, 4245, - 4127, 4190, 4237, 4165, 4224, 4106, 4263, 4119, 4209, 4075, 4270, 4150, - 4178, 4091, 4249, 4131, 4194, 4061, 4232, 4158, 4217, 4099, 4256, 4114, - 4202, 4068, 4275, 4143, 4173, 4084, 4243, 4124, 4187, 4056, 4170, 4229, - 4111, 4268, 4139, 4214, 4080, 4283, 4155, 4182, 4096, 4254, 4136, 4199, - 4065, 4235, 4163, 4222, 4104, 4261, 4117, 4207, 4073, 4280, 4148, 4176, - 4089, 4247, 4129, 4192, 4059, 4167, 4226, 4108, 4265, 4211, 4077, 4272, - 4152, 4093, 4251, 4133, 4196, 4233, 4160, 4219, 4101, 4258, 4115, 4204, - 4070, 4277, 4145, 4174, 4086, 4244, 4126, 4189, 4057, 4169, 4228, 4110, - 4267, 4138, 4213, 4079, 4282, 4154, 4181, 4095, 4253, 4135, 4198, 4064, - 4234, 4162, 4221, 4103, 4260, 4116, 4206, 4072, 4279, 4147, 4175, 4088, - 4246, 4128, 4191, 4058, 4238, 4166, 4225, 4107, 4264, 4120, 4210, 4076, - 4271, 4151, 4179, 4092, 4250, 4132, 4195, 4062, 4159, 4218, 4100, 4257, - 4203, 4069, 4276, 4144, 4085, 4125, 4188, 37921, 4449, 37918, 4447, - 37919, 4448, 37914, 4443, 37915, 4444, 37908, 4436, 4437, 4438, 4439, - 28364, 37910, 37911, 11426, 24329, 34060, 38237, 11428, 17492, 17493, - 17494, 32133, 25338, 17495, 38261, 25340, 19942, 39761, 37932, 17779, - 4481, 4478, 24249, 32142, 24248, 32141, 20563, 24246, 32139, 20562, - 25341, 38264, 39292, 4606, 4604, 4605, 4603, 22883, 22882, 22887, 22881, - 22859, 22838, 22839, 22879, 22845, 22863, 22886, 22861, 22884, 22885, - 22867, 22864, 22844, 22843, 22846, 22862, 22847, 22835, 22856, 22880, - 22836, 22837, 22834, 22860, 22865, 22851, 22842, 22866, 22868, 22841, - 22858, 22850, 22848, 22849, 22840, 22888, 22857, 22852, 22855, 22853, - 22854, 22876, 22874, 22875, 22878, 22873, 22870, 22877, 22872, 22871, - 22869, 32781, 32813, 32782, 32829, 32798, 32814, 32783, 32837, 32806, - 32822, 32791, 32830, 32799, 32815, 32784, 32841, 32810, 32826, 32795, - 32834, 32803, 32819, 32788, 32838, 32807, 32823, 32792, 32831, 32800, - 32816, 32785, 32843, 32812, 32828, 32797, 32836, 32805, 32821, 32790, - 32840, 32809, 32825, 32794, 32833, 32802, 32818, 32787, 32842, 32811, - 32827, 32796, 32835, 32804, 32820, 32789, 32839, 32808, 32824, 32793, - 32832, 32801, 32817, 32786, 38281, 38253, 38255, 38320, 38302, 38300, - 38301, 38304, 25430, 25428, 25429, 25432, 25383, 25422, 25424, 25418, - 32143, 32183, 24300, 24250, 25343, 25438, 38344, 38266, 24251, 24301, - 32184, 32144, 38267, 38345, 25439, 25344, 20588, 21790, 30522, 3984, - 41412, 41412, 41412, 41412, 41412, 41412, 17659, 31062, 37993, 1057, - 6577, 34742, 20085, 20984, 17611, 27599, 31398, 39328, 16781, 20983, - 17487, 31902, 37387, 27244, 17637, 2574, 3597, 369, 24565, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 17878, 17875, 17867, 17873, 17879, 17865, 17871, - 17868, 17874, 17870, 17866, 17876, 17872, 17877, 17869, 17880, 27156, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41228, 41233, 41267, 41230, 41235, - 41263, 41257, 41251, 41274, 41253, 41247, 41271, 41229, 41234, 41268, - 41231, 41236, 41264, 41258, 41252, 41275, 41254, 41248, 41272, 41269, - 41255, 41262, 41249, 41250, 41273, 41256, 41232, 41278, 41243, 41260, - 41270, 41281, 41280, 41246, 41279, 41240, 41239, 41277, 41261, 41259, - 41238, 41412, 41412, 41283, 41284, 41285, 41276, 41226, 41241, 41244, - 41245, 41223, 41224, 41242, 41265, 41266, 41227, 41282, 41225, 41237, - 41222, 41404, 41405, 41402, 41403, 41406, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41302, 41303, 41319, 41291, 41300, - 41399, 41354, 41355, 41322, 41323, 41356, 41286, 41320, 41400, 41298, - 41295, 41297, 41296, 41294, 41396, 41395, 41398, 41397, 41392, 41391, - 41394, 41393, 41292, 41326, 41288, 41299, 41287, 41324, 41337, 41338, - 41336, 41335, 41289, 41333, 41334, 41332, 41330, 41331, 41329, 41328, - 41339, 41341, 41342, 41340, 41304, 41327, 41293, 41301, 41401, 41343, - 41348, 41345, 41349, 41346, 41351, 41352, 41347, 41344, 41350, 41325, - 41353, 41386, 41383, 41374, 41384, 41385, 41375, 41363, 41362, 41390, - 41360, 41359, 41357, 41361, 41358, 41377, 41382, 41376, 41380, 41381, - 41378, 41379, 41306, 41310, 41309, 41308, 41307, 41389, 41387, 41388, - 41313, 41318, 41317, 41316, 41315, 41314, 41364, 41373, 41366, 41371, - 41365, 41369, 41370, 41367, 41368, 41372, 41305, 41312, 41290, 41311, - 41321, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 5296, 5168, 5289, 5271, 5272, 5340, 5341, 5221, 5318, 5278, 5352, - 5353, 5244, 5123, 5174, 5321, 5222, 5126, 5127, 5316, 5328, 5267, 5204, - 5295, 5147, 5344, 5216, 5230, 5226, 5319, 5281, 5310, 5274, 5343, 5129, - 5131, 5231, 5297, 5282, 5339, 5121, 5299, 5313, 5315, 5269, 5323, 5251, - 5169, 5331, 5322, 5241, 5122, 5181, 5212, 5333, 5219, 5287, 5291, 5234, - 5145, 5298, 5276, 5279, 5218, 5356, 5286, 5235, 5334, 5311, 5210, 5217, - 5268, 5273, 5285, 5237, 5284, 5242, 5288, 5225, 5229, 5355, 5128, 5124, - 5354, 5243, 5177, 5148, 5266, 5342, 5283, 5292, 5275, 5120, 5252, 5280, - 5277, 5173, 5245, 5119, 5335, 5176, 5314, 5317, 5146, 5175, 5300, 5357, - 5337, 5293, 5332, 5336, 5290, 5338, 5294, 5207, 5133, 5172, 5270, 5325, - 5326, 5324, 5327, 5220, 5170, 5345, 5346, 5309, 5233, 5166, 5238, 5239, - 5240, 5130, 5132, 5165, 5330, 5320, 5236, 5246, 5250, 5249, 5248, 5247, - 5206, 5203, 5202, 5160, 5162, 5163, 5161, 5329, 5134, 5214, 5153, 5117, - 5111, 5112, 5115, 5116, 5114, 5113, 5118, 5259, 5254, 5255, 5253, 5264, - 5263, 5262, 5261, 5265, 5257, 5215, 5125, 5180, 5179, 5178, 5260, 5258, - 5256, 5208, 5209, 5171, 5213, 5211, 5182, 5189, 5185, 5193, 5188, 5197, - 5187, 5186, 5183, 5184, 5191, 5192, 5199, 5196, 5194, 5143, 5144, 5142, - 5190, 5198, 5351, 5156, 5154, 5157, 5159, 5158, 5155, 5347, 5349, 5348, - 5350, 5200, 5201, 5150, 5149, 5151, 5152, 5305, 5308, 5306, 5307, 5301, - 5304, 5302, 5303, 5164, 5167, 5312, 5141, 5135, 5140, 5138, 5137, 5136, - 5139, 5223, 5227, 5224, 5228, 5232, 5205, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 28669, 28546, 28562, 28654, - 28541, 28666, 28604, 28655, 28653, 28542, 28538, 28665, 28532, 28650, - 28651, 28652, 28557, 28558, 28495, 28496, 28491, 28490, 28621, 28692, - 28689, 28564, 28563, 28670, 28671, 28565, 28574, 28575, 28576, 28535, - 28567, 28568, 28569, 28548, 28549, 41412, 41412, 28612, 28545, 28547, - 28573, 28572, 28617, 28616, 28668, 28667, 28644, 28645, 28531, 28537, - 28633, 28634, 28648, 28649, 28613, 28715, 28587, 28647, 28556, 28673, - 28691, 28675, 28620, 28713, 28636, 28536, 28676, 28677, 28700, 28701, - 28704, 28705, 28702, 28703, 28696, 28697, 28698, 28699, 28610, 28611, - 28706, 28707, 28635, 28711, 28618, 28615, 28499, 28500, 28494, 28714, - 28586, 28646, 28555, 28672, 28690, 28674, 28619, 28520, 28521, 28524, - 28525, 28526, 28559, 28560, 28561, 28503, 28510, 28511, 28512, 28513, - 28514, 28488, 28553, 28489, 28554, 28487, 28551, 28486, 28550, 28501, - 28519, 28527, 28518, 28504, 28505, 28502, 28529, 28584, 28583, 28508, - 28530, 28515, 28522, 28528, 28507, 28523, 28656, 28679, 28718, 28643, - 28606, 28566, 28534, 28543, 28580, 28579, 28695, 28708, 28717, 28709, - 28710, 28622, 28625, 28626, 28627, 28628, 28629, 28630, 28631, 28632, - 28623, 28624, 28588, 28614, 28552, 28544, 28506, 28509, 28516, 28517, - 28638, 28637, 28585, 28578, 28577, 28716, 28539, 28540, 28605, 28601, - 28492, 28659, 28661, 28607, 28609, 28662, 28664, 28570, 28571, 28603, - 28602, 28493, 28660, 28608, 28663, 28687, 28686, 28688, 28685, 28681, - 28682, 28683, 28684, 28533, 28581, 28582, 28678, 28712, 28640, 28498, - 28657, 28497, 28693, 28641, 28642, 28658, 28694, 28639, 28589, 28592, - 28596, 28599, 28598, 28597, 28593, 28594, 28590, 28591, 28595, 28680, - 28600, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 18793, 18781, 18804, 18805, 18787, 18806, 18807, 18808, - 18809, 18794, 18795, 18796, 18797, 18798, 18799, 18800, 18801, 18802, - 18803, 18782, 18783, 18784, 18785, 18786, 18788, 18789, 18790, 18791, - 18792, 18513, 18521, 18534, 18542, 18548, 18549, 18514, 18515, 18516, - 18517, 18518, 18519, 18520, 18522, 18523, 18524, 18525, 18526, 18527, - 18528, 18529, 18530, 18531, 18532, 18533, 18535, 18536, 18537, 18538, - 18539, 18540, 18541, 18543, 18544, 18545, 18546, 18547, 8387, 8386, 8388, - 18573, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 21770, 21771, 21768, 21766, 21757, 21756, 21763, - 21761, 21752, 21759, 21769, 21754, 21767, 21765, 21758, 21755, 21764, - 21762, 21753, 21760, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 27020, 27021, 27018, 27016, 27007, - 27006, 27013, 27011, 27002, 27009, 27019, 27004, 27017, 27015, 27008, - 27005, 27014, 27012, 27003, 27010, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28357, 11017, 11018, - 11012, 11011, 11010, 37181, 37201, 37222, 37170, 37215, 37179, 37165, - 37224, 37169, 37183, 37189, 37212, 37213, 37227, 37233, 37180, 37211, - 37241, 37199, 37166, 37229, 37231, 37198, 37244, 37178, 37193, 37190, - 37171, 37185, 37168, 37226, 37219, 37173, 37216, 37205, 37239, 37228, - 37202, 37230, 37218, 37232, 37207, 37195, 37238, 37208, 37194, 37225, - 37234, 37204, 37240, 37177, 37221, 37197, 37243, 37187, 37172, 37209, - 37206, 37220, 37164, 37192, 37191, 37242, 37236, 37214, 37184, 37182, - 37188, 37196, 37235, 37237, 37210, 37176, 37174, 37203, 37167, 37175, - 37223, 37186, 37217, 37200, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 8801, 8799, 8798, 8795, 8794, 8797, 8796, 8802, - 8800, 8792, 8790, 8789, 8786, 8785, 8788, 8787, 8793, 8791, 20675, 20674, - 20673, 20672, 20671, 35650, 35649, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 26000, 26002, 26030, 25993, 26006, 26038, 26009, 26039, 26011, 26040, - 26013, 26015, 26032, 26034, 26017, 26020, 26041, 26024, 26026, 25996, - 26028, 26042, 26043, 26036, 26044, 26004, 26048, 26050, 26083, 26045, - 26054, 26057, 26059, 26091, 26061, 26092, 26063, 26065, 26085, 26087, - 26067, 26070, 26093, 26074, 26076, 26078, 26081, 26094, 26095, 26089, - 26096, 26052, 26488, 26490, 26520, 26494, 26496, 26528, 26499, 26529, - 26501, 26530, 26503, 26505, 26522, 26524, 26507, 26510, 26531, 26514, - 26516, 26484, 26518, 26532, 26533, 26526, 26534, 26492, 26436, 26438, - 26471, 26432, 26442, 26445, 26447, 41412, 26449, 26479, 26451, 26453, - 26473, 26475, 26455, 26458, 26480, 26462, 26464, 26466, 26469, 26481, - 26482, 26477, 26483, 26440, 26153, 26155, 26185, 26159, 26161, 26193, - 26164, 26194, 26166, 26195, 26168, 26170, 26187, 26189, 26172, 26175, - 26196, 26179, 26181, 26149, 26183, 26197, 26198, 26191, 26199, 26157, - 26207, 26209, 26244, 26213, 26215, 26218, 26220, 26252, 26222, 26253, - 26224, 26226, 26246, 26248, 26228, 26231, 26254, 26235, 26237, 26239, - 26242, 26255, 26256, 26250, 26257, 26211, 26960, 41412, 26961, 26962, - 41412, 41412, 26963, 41412, 41412, 26964, 26965, 41412, 41412, 26966, - 26967, 26968, 26969, 41412, 26970, 26971, 26972, 26973, 26974, 26975, - 26976, 26977, 26978, 26979, 26980, 26981, 41412, 26982, 41412, 26983, - 26984, 26985, 26986, 26987, 26988, 26989, 41412, 26990, 26991, 26992, - 26993, 26994, 26995, 26996, 26997, 26998, 26999, 27000, 26097, 26098, - 26099, 26100, 26101, 26102, 26103, 26104, 26105, 26106, 26107, 26108, - 26109, 26110, 26111, 26112, 26113, 26114, 26115, 26116, 26117, 26118, - 26119, 26120, 26121, 26122, 26123, 26124, 26125, 26126, 26127, 26128, - 26129, 26130, 26131, 26132, 26133, 26134, 26135, 26136, 26137, 26138, - 26139, 26140, 26141, 26142, 26143, 26144, 26145, 26146, 26147, 26148, - 26384, 26385, 41412, 26386, 26387, 26388, 26389, 41412, 41412, 26390, - 26391, 26392, 26393, 26394, 26395, 26396, 26397, 41412, 26398, 26399, - 26400, 26401, 26402, 26403, 26404, 41412, 26405, 26406, 26407, 26408, - 26409, 26410, 26411, 26412, 26413, 26414, 26415, 26416, 26417, 26418, - 26419, 26420, 26421, 26422, 26423, 26424, 26425, 26426, 26427, 26428, - 26429, 26430, 26329, 26330, 41412, 26331, 26332, 26333, 26334, 41412, - 26335, 26336, 26337, 26338, 26339, 41412, 26340, 41412, 41412, 41412, - 26341, 26342, 26343, 26344, 26345, 26346, 26347, 41412, 26348, 26349, - 26350, 26351, 26352, 26353, 26354, 26355, 26356, 26357, 26358, 26359, - 26360, 26361, 26362, 26363, 26364, 26365, 26366, 26367, 26368, 26369, - 26370, 26371, 26372, 26373, 26267, 26268, 26269, 26270, 26271, 26272, - 26273, 26274, 26275, 26276, 26277, 26278, 26279, 26280, 26281, 26282, - 26283, 26284, 26285, 26286, 26287, 26288, 26289, 26290, 26291, 26292, - 26293, 26294, 26295, 26296, 26297, 26298, 26299, 26300, 26301, 26302, - 26303, 26304, 26305, 26306, 26307, 26308, 26309, 26310, 26311, 26312, - 26313, 26314, 26315, 26316, 26317, 26318, 26898, 26899, 26900, 26901, - 26902, 26903, 26904, 26905, 26906, 26907, 26908, 26909, 26910, 26911, - 26912, 26913, 26914, 26915, 26916, 26917, 26918, 26919, 26920, 26921, - 26922, 26923, 26924, 26925, 26926, 26927, 26928, 26929, 26930, 26931, - 26932, 26933, 26934, 26935, 26936, 26937, 26938, 26939, 26940, 26941, - 26942, 26943, 26944, 26945, 26946, 26947, 26948, 26949, 26730, 26732, - 26762, 26736, 26738, 26770, 26741, 26771, 26743, 26772, 26745, 26747, - 26764, 26766, 26749, 26752, 26773, 26756, 26758, 26726, 26760, 26774, - 26775, 26768, 26776, 26734, 26784, 26786, 26821, 26790, 26792, 26795, - 26797, 26829, 26799, 26830, 26801, 26803, 26823, 26825, 26805, 26808, - 26831, 26812, 26814, 26816, 26819, 26832, 26833, 26827, 26834, 26788, - 26846, 26847, 26848, 26849, 26850, 26851, 26852, 26853, 26854, 26855, - 26856, 26857, 26858, 26859, 26860, 26861, 26862, 26863, 26864, 26865, - 26866, 26867, 26868, 26869, 26870, 26871, 26872, 26873, 26874, 26875, - 26876, 26877, 26878, 26879, 26880, 26881, 26882, 26883, 26884, 26885, - 26886, 26887, 26888, 26889, 26890, 26891, 26892, 26893, 26894, 26895, - 26896, 26897, 26620, 26622, 26652, 26626, 26628, 26660, 26631, 26661, - 26633, 26662, 26635, 26637, 26654, 26656, 26639, 26642, 26663, 26646, - 26648, 26616, 26650, 26664, 26665, 26658, 26666, 26624, 26674, 26676, - 26711, 26680, 26682, 26685, 26687, 26719, 26689, 26720, 26691, 26693, - 26713, 26715, 26695, 26698, 26721, 26702, 26704, 26706, 26709, 26722, - 26723, 26717, 26724, 26678, 26543, 26544, 26545, 26546, 26547, 26548, - 26549, 26550, 26551, 26552, 26553, 26554, 26555, 26556, 26557, 26558, - 26559, 26560, 26561, 26562, 26563, 26564, 26565, 26566, 26567, 26568, - 26569, 26570, 26571, 26572, 26573, 26574, 26575, 26576, 26577, 26578, - 26579, 26580, 26581, 26582, 26583, 26584, 26585, 26586, 26587, 26588, - 26589, 26590, 26591, 26592, 26593, 26594, 26433, 26434, 41412, 41412, - 26001, 26003, 26010, 25995, 26007, 26005, 26008, 25997, 26012, 26014, - 26016, 26033, 26035, 26037, 26018, 26023, 26025, 25998, 26027, 25999, - 26029, 26021, 26031, 26022, 26019, 26261, 26049, 26051, 26060, 26047, - 26055, 26053, 26056, 26079, 26062, 26064, 26066, 26086, 26088, 26090, - 26068, 26073, 26075, 26058, 26077, 26080, 26082, 26071, 26084, 26072, - 26069, 26263, 26259, 26266, 26260, 26262, 26265, 26264, 26489, 26491, - 26500, 26495, 26497, 26493, 26498, 26485, 26502, 26504, 26506, 26523, - 26525, 26527, 26508, 26513, 26515, 26486, 26517, 26487, 26519, 26511, - 26521, 26512, 26509, 26537, 26437, 26439, 26448, 26435, 26443, 26441, - 26444, 26467, 26450, 26452, 26454, 26474, 26476, 26478, 26456, 26461, - 26463, 26446, 26465, 26468, 26470, 26459, 26472, 26460, 26457, 26539, - 26535, 26542, 26536, 26538, 26541, 26540, 26154, 26156, 26165, 26160, - 26162, 26158, 26163, 26150, 26167, 26169, 26171, 26188, 26190, 26192, - 26173, 26178, 26180, 26151, 26182, 26152, 26184, 26176, 26186, 26177, - 26174, 26202, 26208, 26210, 26221, 26214, 26216, 26212, 26217, 26240, - 26223, 26225, 26227, 26247, 26249, 26251, 26229, 26234, 26236, 26219, - 26238, 26241, 26243, 26232, 26245, 26233, 26230, 26204, 26200, 26258, - 26201, 26203, 26206, 26205, 26731, 26733, 26742, 26737, 26739, 26735, - 26740, 26727, 26744, 26746, 26748, 26765, 26767, 26769, 26750, 26755, - 26757, 26728, 26759, 26729, 26761, 26753, 26763, 26754, 26751, 26779, - 26785, 26787, 26798, 26791, 26793, 26789, 26794, 26817, 26800, 26802, - 26804, 26824, 26826, 26828, 26806, 26811, 26813, 26796, 26815, 26818, - 26820, 26809, 26822, 26810, 26807, 26781, 26777, 26835, 26778, 26780, - 26783, 26782, 26621, 26623, 26632, 26627, 26629, 26625, 26630, 26617, - 26634, 26636, 26638, 26655, 26657, 26659, 26640, 26645, 26647, 26618, - 26649, 26619, 26651, 26643, 26653, 26644, 26641, 26669, 26675, 26677, - 26688, 26681, 26683, 26679, 26684, 26707, 26690, 26692, 26694, 26714, - 26716, 26718, 26696, 26701, 26703, 26686, 26705, 26708, 26710, 26699, - 26712, 26700, 26697, 26671, 26667, 26725, 26668, 26670, 26673, 26672, - 25994, 26046, 41412, 41412, 26325, 26327, 26324, 26323, 26320, 26319, - 26322, 26321, 26328, 26326, 26380, 26382, 26379, 26378, 26375, 26374, - 26377, 26376, 26383, 26381, 26956, 26958, 26955, 26954, 26951, 26950, - 26953, 26952, 26959, 26957, 26842, 26844, 26841, 26840, 26837, 26836, - 26839, 26838, 26845, 26843, 26601, 26603, 26600, 26599, 26596, 26595, - 26598, 26597, 26604, 26602, 33315, 33271, 33296, 33512, 33467, 33253, - 33316, 33280, 33429, 33381, 33357, 33318, 33321, 33278, 33322, 33272, - 33323, 33345, 33340, 33378, 33319, 33325, 33334, 33335, 33326, 33332, - 33336, 33274, 33408, 33317, 33346, 33275, 33355, 33324, 33354, 33341, - 33380, 33379, 33320, 33339, 33349, 33350, 33353, 33352, 33420, 33328, - 33329, 33330, 33402, 33370, 33333, 33337, 33331, 33327, 33401, 33362, - 33400, 33399, 33359, 33358, 33361, 33351, 33348, 33347, 33397, 33396, - 33398, 33369, 33445, 33449, 33448, 33446, 33447, 33290, 33436, 33466, - 33438, 33451, 33443, 33452, 33444, 33453, 33442, 33300, 33301, 33465, - 33506, 33439, 33440, 33441, 33437, 33463, 33450, 33461, 33454, 33462, - 33460, 33458, 33455, 33456, 33457, 33459, 33287, 33293, 33291, 33292, - 33496, 33495, 33303, 33295, 33306, 33309, 33304, 33307, 33305, 33308, - 33313, 33310, 33270, 33505, 33511, 33508, 33510, 33484, 33486, 33464, - 33494, 33487, 33491, 33485, 33493, 33492, 33490, 33252, 33342, 33277, - 33469, 33255, 33478, 33344, 33343, 33470, 33383, 33386, 33385, 33384, - 33393, 33433, 33282, 33507, 33264, 33389, 33392, 33387, 33388, 33481, - 33391, 33480, 33263, 33262, 33390, 33281, 33479, 33261, 33356, 33276, - 33471, 33488, 33254, 33338, 33273, 33409, 33489, 33265, 33417, 33413, - 33415, 33286, 33509, 33266, 33410, 33412, 33411, 33416, 33414, 33504, - 33382, 33279, 33311, 33498, 33499, 33497, 33299, 33477, 33257, 33256, - 33406, 33482, 33404, 33285, 33394, 33405, 33503, 33403, 33407, 33395, - 33283, 33312, 33302, 33483, 33268, 33269, 33267, 33284, 33288, 33289, - 33501, 33502, 33500, 33468, 33371, 33473, 33374, 33375, 33376, 33373, - 33377, 33372, 33366, 33367, 33368, 33365, 33363, 33294, 33364, 33360, - 33297, 33298, 33475, 33476, 33472, 33474, 33259, 33260, 33258, 33418, - 33423, 33426, 33427, 33428, 33434, 33419, 33421, 33422, 33430, 33425, - 33431, 33432, 33424, 33314, 33435, 33826, 33825, 33824, 33846, 33845, - 33844, 33801, 33800, 33799, 33185, 33184, 33183, 33787, 33786, 33785, - 33797, 33798, 33793, 33796, 33792, 33795, 33794, 33242, 33245, 33241, - 33244, 33243, 33791, 33661, 33662, 33663, 33664, 33659, 33660, 33665, - 33705, 33610, 33723, 33722, 33720, 33721, 33724, 33699, 33702, 33700, - 33701, 33698, 33729, 33728, 33726, 33727, 33675, 33674, 33673, 33679, - 33678, 33677, 33676, 33697, 33696, 33695, 33672, 33671, 33670, 33745, - 33744, 33743, 33719, 33718, 33717, 33842, 33841, 33840, 33839, 33838, - 33837, 33843, 33836, 33835, 33834, 33579, 33578, 33576, 33577, 33583, - 33582, 33580, 33581, 33571, 33570, 33568, 33569, 33575, 33574, 33572, - 33573, 33633, 33632, 33630, 33631, 33634, 33648, 33651, 33649, 33650, - 33607, 33638, 33637, 33636, 33635, 33593, 33606, 33605, 33604, 33594, - 33592, 33591, 33590, 33657, 33656, 33655, 33654, 33653, 33652, 33829, - 33828, 33827, 33832, 33831, 33830, 33833, 33692, 33691, 33689, 33690, - 33683, 33682, 33680, 33681, 33688, 33687, 33710, 33709, 33706, 33711, - 33716, 33713, 33712, 33732, 33731, 33730, 33735, 33734, 33733, 33686, - 33694, 33693, 33782, 33779, 33778, 33725, 33684, 33707, 33714, 33739, - 33783, 33780, 33776, 33685, 33708, 33715, 33740, 33784, 33781, 33777, - 33738, 33737, 33736, 33597, 33596, 33614, 33612, 33613, 33611, 33623, - 33621, 33622, 33620, 33640, 33639, 33771, 33768, 33774, 33599, 33598, - 33615, 33616, 33618, 33617, 33627, 33625, 33626, 33624, 33642, 33641, - 33772, 33769, 33775, 33603, 33602, 33600, 33601, 33595, 33619, 33628, - 33643, 33644, 33645, 33770, 33767, 33773, 33629, 33669, 33667, 33668, - 33666, 33589, 33587, 33585, 33588, 33586, 33584, 33742, 33741, 33647, - 33646, 33704, 33703, 33609, 33608, 33201, 33200, 33196, 33199, 33203, - 33202, 33197, 33198, 33195, 33204, 33514, 33521, 33519, 33518, 33516, - 33517, 33515, 33520, 33234, 33232, 33233, 33210, 33209, 33208, 33193, - 33191, 33192, 33194, 33249, 33248, 33247, 33228, 33229, 33225, 33206, - 33205, 33224, 33226, 33223, 33227, 33207, 33222, 33220, 33221, 33217, - 33219, 33218, 33211, 33213, 33212, 33215, 33214, 33216, 33188, 33187, - 33186, 33811, 33810, 33812, 33231, 33748, 33747, 33749, 33750, 33178, - 33180, 33177, 33179, 33182, 33181, 33543, 33541, 33542, 33548, 33550, - 33549, 33545, 33547, 33546, 33562, 33561, 33560, 33554, 33555, 33556, - 33557, 33558, 33559, 33551, 33553, 33552, 33563, 33564, 33565, 33532, - 33530, 33531, 33544, 33567, 33566, 33819, 33818, 33816, 33817, 33815, - 33820, 33814, 33813, 33803, 33808, 33806, 33807, 33804, 33805, 33809, - 33746, 33658, 33751, 33513, 33230, 33789, 33788, 33251, 33246, 33790, - 33822, 33821, 33823, 33847, 33522, 33523, 33524, 33525, 33526, 33527, - 33528, 33529, 33240, 33540, 33539, 33534, 33537, 33536, 33533, 33535, - 33538, 33190, 33250, 33802, 33189, 33848, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 33235, 33236, 33237, 33238, 33239, 41412, 33759, 33760, 33761, - 33762, 33763, 33764, 33765, 33766, 33752, 33753, 33754, 33755, 33756, - 33757, 33758, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 23665, 23940, 23431, 23945, 23418, 23789, 24051, 23942, - 24037, 24006, 23411, 23644, 23645, 24041, 23405, 23458, 23432, 23782, - 23581, 23762, 23642, 24035, 23921, 24010, 23653, 23582, 23726, 23879, - 24011, 23548, 23957, 41412, 41412, 41412, 41412, 41412, 41412, 23572, - 23775, 23821, 23926, 23965, 24001, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 8342, 8344, 8354, - 8348, 8330, 8355, 8362, 41412, 8361, 8335, 8332, 8331, 8329, 8366, 8350, - 8349, 8351, 8365, 8352, 8353, 8337, 8340, 8364, 8346, 8363, 41412, 41412, - 8338, 8341, 8345, 8339, 8357, 8356, 8358, 41412, 8360, 8336, 41412, 8359, - 8334, 8343, 8333, 8347, 41412, 41412, 41412, 41412, 41412, 27944, 27913, - 27941, 27939, 27915, 27937, 27934, 27935, 27936, 27943, 27920, 27921, - 27945, 27924, 27922, 27917, 27930, 27946, 27919, 27942, 27929, 27938, - 27928, 27931, 27916, 27933, 27914, 27927, 27911, 27940, 27912, 27925, - 27923, 10652, 10630, 10650, 10637, 10633, 10647, 10644, 10645, 10646, - 10651, 10635, 10653, 10649, 10636, 10654, 10634, 10639, 10643, 10648, - 10642, 10640, 10641, 10638, 10629, 10632, 10631, 27918, 27932, 27926, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 8250, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 30063, 30047, 30038, 30049, - 30054, 30046, 30051, 30042, 30068, 30072, 30074, 30077, 30041, 30036, - 30071, 30061, 30045, 30044, 30075, 30037, 30048, 30069, 30057, 30073, - 30076, 30043, 30065, 30050, 30040, 30060, 30039, 30055, 30062, 30064, - 30070, 30056, 30052, 30053, 30078, 30079, 30058, 30059, 30066, 30067, - 30080, 41412, 41412, 41412, 30089, 30093, 30092, 30095, 30094, 30091, - 30090, 30086, 30083, 30082, 30085, 30084, 30087, 30088, 41412, 41412, - 30103, 30105, 30102, 30101, 30098, 30097, 30100, 30099, 30106, 30104, - 41412, 41412, 41412, 41412, 30081, 30096, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 37973, 37956, 37976, 37966, - 37970, 37967, 37972, 37958, 37957, 37975, 37963, 37978, 37977, 37969, - 37968, 37974, 37971, 37959, 37951, 37960, 37952, 37980, 37961, 37953, - 37962, 37954, 37979, 37965, 37955, 37964, 37981, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 39435, 39434, 39466, 39467, 39468, 39470, - 39459, 39462, 39448, 39451, 39463, 39455, 39452, 39469, 39465, 39464, - 39472, 39477, 39476, 39475, 39461, 39440, 39439, 39474, 39473, 39460, - 39471, 39443, 39445, 39449, 39456, 39447, 39454, 39453, 39442, 39437, - 39438, 39446, 39441, 39444, 39436, 39450, 39457, 39458, 39481, 39482, - 39479, 39480, 39489, 39491, 39488, 39487, 39484, 39483, 39486, 39485, - 39492, 39490, 41412, 41412, 41412, 41412, 41412, 39478, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 29044, 29047, 29046, 29048, - 29045, 29027, 29031, 29029, 29028, 29030, 29039, 29042, 29040, 29043, - 29041, 29049, 29050, 29051, 29052, 29053, 29032, 29034, 29037, 29038, - 29033, 29036, 29035, 29057, 29054, 29058, 29056, 29055, 29065, 29067, - 29064, 29063, 29060, 29059, 29062, 29061, 29068, 29066, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 30226, 30229, 30228, 30227, 30230, 30231, 30208, 30210, - 30209, 30211, 30212, 30213, 30220, 30221, 30225, 30222, 30223, 30224, - 30232, 30236, 30233, 30235, 30234, 30237, 30214, 30219, 30218, 30216, - 30215, 30217, 30240, 30238, 30239, 30248, 30250, 30247, 30246, 30243, - 30242, 30245, 30244, 30251, 30249, 41412, 41412, 41412, 41412, 30241, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 35536, 35545, 35534, 35543, 35567, 35552, 35565, 35542, - 35551, 35537, 35546, 35566, 35541, 35550, 35559, 35553, 35564, 35540, - 35549, 35558, 35538, 35547, 35568, 35571, 35533, 35570, 35539, 35548, - 35569, 35535, 35544, 41412, 35526, 35560, 35555, 35576, 35554, 35527, - 35574, 35562, 35572, 35561, 35556, 35557, 35563, 35525, 35575, 35573, - 35530, 35529, 35528, 35532, 35531, 35577, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 35578, 35579, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 17141, 17147, 17145, 17142, 17144, 17143, 17146, 41412, 17096, 17140, - 17138, 17137, 41412, 17084, 17083, 41412, 17095, 17094, 17093, 17080, - 17079, 17092, 17091, 17090, 17089, 17088, 17087, 17082, 17081, 17086, - 17085, 41412, 27254, 27255, 27256, 27322, 27343, 27331, 27295, 27431, - 27257, 27258, 27262, 27381, 27366, 27371, 27294, 27449, 27398, 27320, - 27300, 27392, 27261, 27259, 27260, 27307, 27351, 27404, 27444, 27267, - 27263, 27271, 27408, 27346, 27356, 27383, 27272, 27269, 27268, 27421, - 27359, 27419, 27397, 27388, 27386, 27387, 27450, 27429, 27266, 27281, - 27273, 27420, 27365, 27390, 27325, 27451, 27277, 27278, 27279, 27335, - 27327, 27311, 27412, 27363, 27264, 27270, 27265, 27338, 27435, 27436, - 27274, 27275, 27276, 27349, 27304, 27354, 27321, 27282, 27280, 27283, - 27407, 27364, 27413, 27315, 27427, 27284, 27288, 27292, 27361, 27333, - 27401, 27382, 27285, 27289, 27290, 27332, 27324, 27389, 27342, 27452, - 27353, 27291, 27286, 27287, 27369, 27422, 27430, 27299, 27442, 27293, - 27352, 27302, 27399, 27339, 27377, 27309, 27391, 27341, 27308, 27448, - 27297, 27344, 27301, 27340, 27368, 27395, 27406, 27376, 27411, 27378, - 27337, 27357, 27438, 27405, 27372, 27415, 27445, 27418, 27416, 27441, - 27312, 27428, 27318, 27347, 27303, 27334, 27310, 27358, 27314, 27394, - 27313, 27373, 27298, 27439, 27329, 27424, 27425, 27443, 27414, 27355, - 27393, 27385, 27348, 27323, 27296, 27362, 27370, 27409, 27375, 27305, - 27400, 27345, 27360, 27326, 27328, 27434, 27374, 27380, 27379, 27446, - 27367, 27316, 27317, 27403, 27447, 27396, 27384, 27437, 27440, 27410, - 27432, 27336, 27402, 27330, 27417, 27306, 27433, 27350, 27319, 41412, - 41412, 27460, 27458, 27457, 27454, 27453, 27456, 27455, 27461, 27459, - 27249, 27248, 27252, 27250, 27247, 27251, 27253, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 27, 9, 24, 14, - 29, 21, 34, 28, 37, 39, 35, 40, 41, 10, 30, 32, 18, 15, 31, 42, 13, 25, - 36, 23, 12, 20, 33, 19, 38, 17, 11, 26, 16, 22, 62, 44, 59, 49, 64, 56, - 69, 63, 72, 74, 70, 75, 76, 45, 65, 67, 53, 50, 66, 77, 48, 60, 71, 58, - 47, 55, 68, 54, 73, 52, 46, 61, 51, 57, 85, 86, 79, 84, 43, 78, 83, 82, - 41412, 41412, 41412, 41412, 93, 95, 92, 91, 88, 87, 90, 89, 96, 94, - 41412, 41412, 41412, 41412, 80, 81, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 20858, 20844, - 20839, 20819, 20814, 20832, 20827, 20807, 20822, 20847, 20842, 20837, - 20817, 20812, 20833, 20828, 20808, 20823, 20859, 20845, 20840, 20820, - 20815, 20835, 20830, 20810, 20825, 20860, 20846, 20841, 20821, 20816, - 20836, 20831, 20811, 20826, 20848, 20843, 20838, 20818, 20813, 20834, - 20829, 20809, 20824, 20805, 20806, 20796, 20803, 20804, 20856, 20854, - 20853, 20850, 20849, 20852, 20851, 20857, 20855, 20862, 20798, 20797, - 20799, 20861, 20802, 20801, 20800, 20795, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 31008, 31003, 30998, 30978, 30973, 30991, 30986, 30966, - 30981, 31006, 31001, 30996, 30976, 30971, 30992, 30987, 30967, 30982, - 31009, 31004, 30999, 30979, 30974, 30994, 30989, 30969, 30984, 31010, - 31005, 31000, 30980, 30975, 30995, 30990, 30970, 30985, 31007, 31002, - 30997, 30977, 30972, 30993, 30988, 30968, 30983, 30965, 30958, 30960, - 30950, 30952, 30953, 30955, 30962, 30961, 30956, 30951, 30954, 30959, - 30957, 30964, 30963, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 2288, 2296, 2294, 2192, - 41412, 2304, 2292, 2300, 2284, 2299, 2291, 2240, 2295, 2302, 2267, 2289, + 1007, 1006, 1043, 1003, 1008, 1005, 24130, 26234, 27165, 3595, 33417, + 15927, 7591, 10042, 11885, 7573, 33865, 11907, 367, 15078, 6691, 6913, + 5038, 32324, 22878, 15614, 24848, 24849, 25529, 25530, 10037, 28228, + 1013, 9667, 25976, 23978, 25978, 7143, 18843, 18844, 18842, 26281, 26282, + 26280, 18805, 18812, 18804, 26295, 26302, 26294, 18747, 18745, 18746, + 9066, 26245, 26243, 26244, 15938, 15556, 32406, 32445, 28923, 28921, + 32061, 4460, 4461, 26063, 18846, 26318, 15565, 15566, 15567, 15568, 9689, + 9687, 9691, 9680, 9684, 9692, 9681, 9685, 9690, 9679, 9683, 9678, 9682, + 9688, 9686, 28512, 26174, 12509, 33412, 22117, 22109, 22116, 22110, + 22114, 22115, 22113, 22112, 22111, 10658, 12772, 32049, 4464, 32031, + 4463, 32062, 4467, 33874, 3701, 28864, 12596, 8, 11827, 9668, 3987, 3949, + 4030, 3926, 3988, 3950, 3990, 230, 28862, 31826, 15589, 3966, 3969, 3971, + 3963, 10365, 4009, 3871, 25924, 25921, 25922, 25923, 24237, 29165, 29173, + 29174, 29154, 29152, 29155, 29166, 29137, 29138, 29159, 29161, 29160, + 29158, 29139, 29171, 29172, 29141, 29150, 29149, 29148, 29147, 29163, + 29177, 29153, 29140, 29151, 29175, 29156, 29157, 29168, 29167, 29169, + 29178, 29142, 4053, 24835, 29164, 29145, 29176, 29144, 29143, 29146, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 24249, 24244, 24247, 24248, 24241, 24242, 24240, 24239, + 24246, 24243, 24245, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 6657, 6654, 6653, 6650, 6649, 6652, 6651, + 6658, 6656, 6878, 6858, 6903, 6891, 6873, 6861, 6877, 6875, 6857, 6904, + 6892, 25461, 25459, 25458, 25455, 25454, 25457, 25456, 25462, 25460, + 25453, 25444, 25452, 25450, 25445, 25446, 25448, 25449, 25443, 25447, + 25451, 9977, 9989, 9986, 9971, 9968, 9983, 9980, 9995, 9974, 24151, + 24144, 24152, 24150, 24145, 24146, 24147, 24149, 24143, 24154, 24153, + 25489, 25490, 25491, 25492, 25493, 25494, 25495, 25496, 25497, 25498, + 25499, 25500, 25501, 25502, 25503, 25504, 25505, 25506, 25507, 25508, + 25509, 25510, 25511, 25512, 25513, 25514, 6801, 6802, 6803, 6804, 6805, + 6806, 6807, 6808, 6809, 6810, 6811, 6812, 6813, 6814, 6815, 6816, 6817, + 6818, 6819, 6820, 6821, 6822, 6823, 6824, 6825, 6826, 6827, 6828, 6829, + 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, 6838, 6839, 6840, 6841, + 6842, 6843, 6844, 6845, 6846, 6847, 6848, 6849, 6850, 6851, 6852, 6655, + 23671, 23669, 23667, 23672, 23673, 23675, 23676, 23670, 23674, 23668, + 10331, 10329, 10328, 10325, 10324, 10327, 10326, 10332, 10330, 10323, + 23666, 4586, 4532, 4602, 4518, 4595, 4531, 4594, 4530, 4593, 4529, 4592, + 4528, 4583, 4502, 4496, 4525, 4582, 4500, 4494, 4524, 4601, 4630, 4624, + 4517, 4600, 4628, 4622, 4515, 4609, 4646, 4623, 4495, 4643, 4501, 4629, + 4521, 4608, 4645, 4621, 4493, 4642, 4499, 4627, 4520, 4581, 4536, 4614, + 4504, 4498, 4617, 4539, 4523, 4599, 4535, 4613, 4631, 4625, 4616, 4538, + 4516, 4607, 4537, 4615, 4644, 4620, 4497, 4641, 4541, 4619, 4534, 4612, + 4503, 4626, 4618, 4540, 4519, 4585, 4527, 4584, 4526, 4492, 4488, 4509, + 4506, 4484, 4508, 4505, 4483, 4636, 4633, 4487, 4635, 4632, 4486, 4648, + 4639, 4491, 4647, 4638, 4490, 4510, 4507, 4482, 4637, 4634, 4485, 4649, + 4640, 4489, 4543, 4542, 4544, 4545, 4574, 4568, 4578, 4590, 4597, 4611, + 4580, 4511, 4513, 4533, 4522, 4591, 4598, 4512, 4514, 32383, 19955, + 19954, 19957, 19865, 19947, 19960, 19956, 12663, 18799, 18822, 18835, + 18763, 18823, 18778, 18779, 26260, 19099, 21671, 9654, 32431, 26277, + 26045, 26046, 26037, 26038, 26039, 26040, 26041, 26042, 26043, 26044, + 4007, 33852, 33861, 33855, 28690, 28699, 28689, 28696, 28698, 28688, + 4004, 33849, 4000, 33837, 4037, 33884, 3981, 33833, 4032, 33881, 4031, + 33880, 3989, 33841, 3994, 33840, 3993, 33839, 3928, 33796, 3927, 33795, + 3954, 33822, 3953, 33821, 3952, 33820, 3918, 33785, 33786, 12588, 19962, + 33771, 10314, 6630, 5101, 3867, 6622, 6631, 6623, 6628, 6627, 6629, + 18761, 26258, 15955, 15959, 32387, 19859, 32411, 32447, 19909, 19889, + 32392, 19866, 3961, 3960, 4033, 4034, 33735, 28693, 28700, 28695, 28692, + 33864, 33882, 32369, 32370, 17419, 33862, 33858, 33859, 33863, 33778, + 33776, 33777, 33779, 32409, 32464, 19900, 33829, 3976, 33828, 3975, + 19923, 4011, 7137, 32318, 28218, 7576, 4020, 33871, 19109, 31545, 28924, + 2568, 9697, 7594, 24856, 4026, 33873, 2795, 2801, 2802, 26684, 32320, + 15584, 33846, 4018, 27137, 26197, 3959, 3986, 33819, 33878, 33843, 33794, + 28114, 6225, 26061, 3864, 5361, 983, 24958, 6585, 7802, 7801, 28839, + 12555, 102, 14253, 25595, 35252, 32128, 32129, 32134, 32131, 32133, + 32132, 32130, 32127, 33731, 33806, 33850, 4006, 33869, 12581, 17423, + 22106, 12561, 10654, 20267, 16084, 26754, 32537, 23980, 25890, 2566, + 31166, 12855, 6099, 18983, 33460, 19797, 26848, 26682, 6105, 2646, 25783, + 33743, 33759, 33762, 33737, 33746, 33756, 3889, 3905, 3908, 3883, 3892, + 3902, 4019, 33809, 33790, 3917, 33851, 3938, 3923, 33780, 15585, 26050, + 11782, 3581, 3582, 23003, 23001, 23002, 33729, 10659, 32334, 26091, + 26092, 26093, 26094, 26095, 26096, 26097, 26098, 4036, 26090, 25520, + 25627, 33732, 9959, 9960, 9961, 9962, 9963, 9964, 33773, 33775, 3868, + 3870, 22875, 22876, 9999, 10002, 10001, 10000, 33800, 3934, 14254, 981, + 7810, 28833, 26843, 347, 12604, 12851, 28834, 2581, 12601, 25164, 31522, + 31521, 33705, 15435, 10400, 10401, 15942, 20266, 20265, 20264, 33418, + 15576, 21682, 21658, 21675, 20433, 10122, 32336, 7793, 12769, 23790, + 6235, 25329, 16085, 33447, 6588, 3977, 26976, 26888, 26056, 26971, 28223, + 3518, 28766, 33797, 33798, 3931, 3932, 28219, 28926, 26066, 4013, 31544, + 32248, 32247, 33791, 7811, 10041, 24855, 25768, 6167, 15077, 6643, 6236, + 24052, 368, 4027, 33876, 3957, 33817, 10500, 14934, 18750, 28809, 12549, + 4024, 26170, 26171, 2575, 14860, 25602, 26336, 18873, 15965, 3880, 27142, + 6620, 6227, 15540, 12852, 12853, 20362, 22894, 32319, 12642, 12598, + 12563, 26839, 28511, 28112, 15620, 25614, 31286, 15982, 14836, 12771, + 9059, 33801, 4014, 32376, 4017, 19941, 33844, 33810, 31178, 31165, 226, + 11904, 26079, 26071, 33451, 33959, 19940, 25604, 32446, 33832, 3979, + 6401, 14858, 22994, 14894, 2805, 14850, 25166, 14941, 24839, 14896, + 17912, 26981, 25163, 20268, 28837, 12638, 12636, 14879, 12632, 3935, + 33805, 28432, 28867, 6916, 24837, 3881, 25165, 14898, 25780, 26980, + 14849, 24838, 11781, 11776, 11774, 28106, 11775, 14872, 32268, 28109, + 31171, 24836, 14924, 28104, 3933, 33802, 11777, 6905, 14923, 28221, + 31816, 14857, 28431, 14917, 2794, 11780, 14874, 7807, 26979, 23738, + 19939, 32443, 19921, 32461, 4044, 33836, 33799, 3920, 14876, 19106, + 21679, 14940, 14907, 14908, 14868, 14869, 14891, 14890, 9071, 14877, + 14883, 14853, 26531, 12603, 26530, 21665, 21668, 21659, 21660, 21666, + 21669, 14887, 14900, 14886, 14899, 19098, 19096, 21664, 21667, 10024, + 10022, 10021, 10018, 10017, 10020, 10019, 10025, 10023, 10016, 10035, + 10032, 10031, 10028, 10027, 10030, 10029, 10036, 10034, 10026, 10014, + 10011, 10010, 10007, 10006, 10009, 10008, 10015, 10013, 10005, 14936, + 14939, 14895, 14865, 14913, 14901, 14920, 10492, 14904, 32122, 14926, + 9657, 14864, 3995, 31536, 31539, 3996, 14851, 14852, 28827, 14863, 26352, + 18863, 2658, 12654, 14892, 14931, 24132, 9065, 24134, 6693, 33888, 4050, + 4052, 4051, 14854, 14856, 14855, 31172, 14925, 33725, 14937, 24850, + 10333, 31519, 33875, 25608, 24846, 24845, 18797, 26284, 24960, 26181, + 29081, 33399, 21130, 19823, 20951, 28794, 28795, 33789, 982, 11836, + 19937, 32404, 18781, 26275, 12662, 17411, 17410, 18728, 18727, 18777, + 19845, 19828, 32355, 19963, 33781, 33782, 33783, 33857, 33860, 21131, + 21125, 21134, 21128, 21133, 21127, 21132, 21126, 21135, 21129, 32505, + 10482, 978, 7116, 26238, 19831, 19835, 19825, 19829, 19840, 19827, 19832, + 19839, 19830, 19841, 19844, 5027, 4772, 4900, 4773, 4964, 4837, 4901, + 4774, 4996, 4869, 4933, 4806, 4965, 4838, 4902, 4775, 5012, 4885, 4949, + 4822, 4981, 4854, 4918, 4791, 4997, 4870, 4934, 4807, 4966, 4839, 4903, + 4776, 5020, 4893, 4957, 4830, 4989, 4862, 4926, 4799, 5005, 4878, 4942, + 4815, 4974, 4847, 4911, 4784, 5013, 4886, 4950, 4823, 4982, 4855, 4919, + 4792, 4998, 4871, 4935, 4808, 4967, 4840, 4904, 4777, 5024, 4897, 4961, + 4834, 4993, 4866, 4930, 4803, 5009, 4882, 4946, 4819, 4978, 4851, 4915, + 4788, 5017, 4890, 4954, 4827, 4986, 4859, 4923, 4796, 5002, 4875, 4939, + 4812, 4971, 4844, 4908, 4781, 5021, 4894, 4958, 4831, 4990, 4863, 4927, + 4800, 5006, 4879, 4943, 4816, 4975, 4848, 4912, 4785, 5014, 4887, 4951, + 4824, 4983, 4856, 4920, 4793, 4999, 4872, 4936, 4809, 4968, 4841, 4905, + 4778, 5026, 4899, 4963, 4836, 4995, 4868, 4932, 4805, 5011, 4884, 4948, + 4821, 4980, 4853, 4917, 4790, 5019, 4892, 4956, 4829, 4988, 4861, 4925, + 4798, 5004, 4877, 4941, 4814, 4973, 4846, 4910, 4783, 5023, 4896, 4960, + 4833, 4992, 4865, 4929, 4802, 5008, 4881, 4945, 4818, 4977, 4850, 4914, + 4787, 5016, 4889, 4953, 4826, 4985, 4858, 4922, 4795, 5001, 4874, 4938, + 4811, 4970, 4843, 4907, 4780, 5025, 4898, 4962, 4835, 4994, 4867, 4931, + 4804, 5010, 4883, 4947, 4820, 4979, 4852, 4916, 4789, 5018, 4891, 4955, + 4828, 4987, 4860, 4924, 4797, 5003, 4876, 4940, 4813, 4972, 4845, 4909, + 4782, 5022, 4895, 4959, 4832, 4991, 4864, 4928, 4801, 5007, 4880, 4944, + 4817, 4976, 4849, 4913, 4786, 5015, 4888, 4952, 4825, 4984, 4857, 4921, + 4794, 5000, 4873, 4937, 4810, 4969, 4842, 4906, 4779, 26456, 26455, + 18964, 26401, 18788, 26457, 18966, 26403, 10438, 32486, 32523, 10462, + 18968, 26405, 18948, 26449, 26458, 26375, 32488, 10442, 26388, 26387, + 26451, 26453, 26452, 18913, 26395, 18967, 26404, 18890, 26372, 18910, + 26367, 24091, 24071, 24097, 24069, 28316, 28329, 24096, 24068, 28313, + 28328, 26475, 12547, 28314, 24066, 12548, 26476, 24067, 24095, 33714, + 2559, 2558, 2561, 2562, 26353, 18862, 32028, 4462, 32030, 32029, 19919, + 19883, 975, 7113, 26362, 18879, 27152, 26380, 18895, 26371, 18786, 32526, + 18740, 18739, 32343, 32342, 18741, 32344, 18738, 32341, 18927, 26418, + 32500, 10477, 18921, 26412, 32497, 10474, 18926, 26417, 32499, 10476, + 18920, 26411, 32496, 10473, 18923, 32495, 26416, 10471, 18925, 18919, + 26414, 26409, 18924, 18918, 26415, 26410, 32494, 10472, 26250, 11921, + 31820, 18883, 26364, 26363, 19064, 18886, 13273, 28897, 18885, 29067, + 18836, 26255, 32352, 10406, 32142, 35265, 35266, 18828, 26321, 18830, + 26323, 35260, 35256, 35261, 35257, 18809, 26299, 18807, 26296, 18806, + 26297, 18734, 26231, 18735, 26237, 10346, 10371, 18743, 26241, 10321, + 33432, 21553, 26236, 21554, 960, 5, 28448, 28449, 32245, 26187, 961, + 26188, 24235, 24234, 21552, 21551, 21546, 21545, 21550, 21548, 21549, + 21547, 26209, 11883, 11882, 11880, 11881, 6632, 6920, 6907, 6911, 6908, + 6633, 6625, 6634, 32340, 6915, 6638, 6853, 6921, 6624, 6626, 28758, + 28753, 28824, 28810, 28811, 32278, 32121, 32119, 26679, 32118, 26313, + 18814, 33396, 4475, 4476, 4043, 31827, 31828, 33814, 3942, 18833, 26326, + 18751, 26251, 15779, 31754, 15856, 10399, 28701, 15781, 27172, 11922, + 11923, 15622, 13157, 31510, 10419, 10420, 3921, 3962, 33774, 3869, 11936, + 11939, 11935, 11938, 11934, 11937, 26548, 26182, 28275, 26183, 3857, + 3856, 10353, 32138, 18850, 26339, 31829, 22297, 23492, 23490, 23491, + 23500, 23499, 23495, 23496, 32280, 32279, 23494, 22700, 28922, 26047, + 12574, 15937, 15929, 6925, 980, 19181, 19182, 19183, 15930, 26049, 15934, + 15931, 15935, 15933, 15936, 15932, 16082, 17412, 35262, 35263, 35264, + 25882, 25887, 25885, 25881, 25884, 25883, 25886, 22290, 22291, 22293, + 22292, 25878, 25879, 33449, 22993, 22992, 26887, 28195, 22988, 22989, + 6854, 22990, 6648, 25880, 22294, 22991, 15952, 26358, 35258, 374, 15948, + 32329, 32330, 15947, 15946, 32331, 32327, 15945, 32326, 15944, 32328, + 15949, 7129, 7135, 10354, 10355, 7130, 19811, 19819, 10344, 10345, 32276, + 32277, 28134, 28133, 19816, 19813, 19821, 19812, 19820, 19810, 19814, + 19809, 28185, 19818, 19817, 35259, 35255, 11928, 15623, 32136, 32137, + 31822, 31821, 27978, 7595, 11929, 365, 1060, 11918, 25888, 11919, 10334, + 32271, 31530, 11927, 11931, 19081, 13292, 19082, 13293, 19073, 13279, + 19076, 13282, 19074, 13280, 19075, 13281, 19072, 13283, 19066, 13275, + 19065, 13274, 19063, 13271, 19061, 13269, 19060, 13268, 19059, 13272, + 19062, 13270, 28119, 28117, 28120, 28118, 10381, 10380, 10377, 10376, + 27977, 27976, 27975, 27974, 10347, 10349, 10348, 13287, 13276, 19070, + 13290, 19071, 13291, 28193, 17420, 28194, 17421, 11924, 25968, 28913, + 25969, 28914, 25971, 28916, 25967, 28912, 25970, 28915, 25966, 28911, + 10350, 10359, 28908, 29080, 28907, 29079, 28906, 29078, 28905, 29077, + 28900, 29072, 28901, 29073, 28899, 29071, 28902, 29074, 28579, 28666, + 7124, 7126, 7125, 7127, 28895, 29066, 28896, 29065, 29069, 29068, 11835, + 25786, 32114, 12626, 24063, 27151, 27157, 27154, 25609, 33398, 10368, + 33397, 10366, 19822, 27158, 27156, 27155, 10335, 10363, 10357, 26191, + 10137, 33414, 33413, 10405, 25373, 25372, 32141, 32144, 32135, 32148, + 32147, 10379, 10378, 32145, 17409, 10362, 33886, 23501, 24080, 24107, + 28326, 28339, 18791, 18917, 32490, 10444, 24077, 24104, 28323, 28336, + 18793, 32347, 26384, 26385, 18899, 18900, 28694, 28687, 28697, 28691, + 9951, 9952, 9950, 9949, 10317, 3948, 33815, 4041, 33887, 3982, 33834, + 33812, 3939, 15551, 3943, 3965, 33826, 3968, 33830, 4001, 4002, 33847, + 3941, 33813, 4038, 33883, 18737, 31523, 18736, 19833, 18956, 18955, + 18957, 18958, 18893, 18903, 18902, 18951, 18953, 18952, 18887, 33713, + 11920, 26184, 18880, 26370, 26369, 18982, 26465, 26185, 26360, 31819, + 18882, 18881, 26361, 10458, 27149, 27147, 33827, 4003, 33848, 3992, + 33838, 14884, 14897, 14861, 14859, 14862, 28121, 2656, 28122, 2655, 3698, + 27148, 18933, 32509, 26434, 10447, 18795, 32351, 24102, 24075, 28321, + 28334, 18945, 32520, 26446, 10459, 7121, 973, 18944, 32511, 26445, 10449, + 35536, 35536, 24103, 24076, 28322, 28335, 18935, 32519, 26436, 10457, + 15572, 33427, 18934, 32510, 26435, 10448, 18946, 32521, 26447, 10460, + 18916, 32489, 26398, 10446, 970, 971, 969, 972, 26175, 26176, 23975, + 23976, 12633, 26399, 11926, 29179, 31534, 31538, 31535, 31537, 3955, + 4035, 3997, 3929, 10451, 10452, 32513, 32514, 18938, 26439, 18937, 26438, + 3872, 3873, 3874, 3875, 3876, 3878, 3877, 3879, 26222, 26223, 26220, + 26221, 26217, 26219, 26216, 26218, 32534, 32339, 25181, 25180, 25182, + 2800, 6923, 6637, 4008, 3919, 32246, 15550, 4042, 3972, 3964, 3967, 3970, + 23981, 32046, 4450, 19094, 26532, 33804, 26533, 28651, 32322, 13819, + 25894, 25893, 25892, 25891, 32113, 25993, 2576, 15606, 25767, 23758, + 33831, 3922, 32158, 9061, 14834, 35344, 17245, 1055, 97, 33537, 25905, + 18762, 26259, 28840, 28841, 18954, 32525, 26454, 10464, 11941, 11940, + 26977, 26674, 26672, 26673, 26671, 26675, 26676, 11925, 32333, 26968, + 10402, 25528, 26198, 15079, 13057, 13059, 13093, 13067, 13063, 13094, + 13101, 13064, 13100, 13073, 13069, 13068, 13062, 13104, 13075, 13076, + 13077, 13078, 13080, 13082, 13086, 13090, 13103, 13065, 13102, 13079, + 13081, 13083, 13092, 13061, 13085, 13096, 13095, 13097, 13087, 13099, + 13088, 13089, 13098, 13071, 13058, 13070, 13066, 13072, 13084, 13091, + 13074, 13060, 13105, 13107, 13141, 13115, 13111, 13142, 13149, 13112, + 13148, 13121, 13117, 13116, 13110, 13152, 13123, 13124, 13125, 13126, + 13128, 13130, 13134, 13138, 13151, 13113, 13150, 13127, 13129, 13131, + 13140, 13109, 13133, 13144, 13143, 13145, 13135, 13147, 13136, 13137, + 13146, 13119, 13106, 13118, 13114, 13120, 13132, 13139, 13122, 13108, + 17644, 18291, 17647, 17738, 17756, 18025, 18517, 17587, 18210, 17633, + 18270, 17902, 18684, 17465, 17666, 17806, 17807, 18637, 17879, 18654, + 18636, 17592, 18217, 18582, 18138, 18558, 18372, 17950, 18709, 22418, + 17782, 17906, 7603, 7697, 7653, 7747, 7617, 7711, 7614, 7708, 7658, 7752, + 7648, 7742, 7652, 7746, 7619, 7713, 7650, 7744, 7656, 7750, 7622, 7716, + 7627, 7721, 7659, 7753, 7660, 7754, 7623, 7717, 7628, 7722, 7655, 7749, + 7657, 7751, 7649, 7743, 7651, 7745, 7661, 7755, 7625, 7719, 7621, 7715, + 7654, 7748, 7644, 7738, 7611, 7705, 7639, 7733, 7607, 7701, 7612, 7706, + 7613, 7707, 7608, 7702, 7637, 7731, 7647, 7741, 7609, 7703, 7635, 7729, + 7638, 7732, 7602, 7696, 7610, 7704, 7630, 7724, 7631, 7725, 7626, 7720, + 7633, 7727, 7632, 7726, 7629, 7723, 7636, 7730, 7634, 7728, 7642, 7736, + 7640, 7734, 7641, 7735, 7643, 7737, 7757, 7758, 7759, 7761, 7762, 7756, + 7760, 7605, 7699, 7606, 7700, 7601, 7600, 7599, 7604, 7698, 35536, 35536, + 35536, 35536, 35536, 7695, 7692, 7693, 7694, 7690, 7691, 7763, 12916, + 12942, 12927, 12948, 12949, 12947, 12937, 12938, 12950, 12931, 12940, + 12943, 12945, 12951, 12933, 12936, 12941, 12935, 12939, 12952, 12932, + 12930, 12926, 12946, 12934, 12922, 12925, 12929, 12924, 12923, 12944, + 12928, 12917, 12921, 12919, 12954, 12918, 12920, 35536, 12953, 35536, + 35536, 35536, 35536, 35536, 12915, 35536, 35536, 31769, 31789, 31790, + 31770, 31772, 31759, 31798, 31785, 31788, 31786, 31787, 31808, 31797, + 31773, 31763, 31775, 31791, 31758, 31767, 31792, 31796, 31774, 31764, + 31803, 31768, 31809, 31783, 31757, 31765, 31799, 31800, 31801, 31762, + 31766, 31802, 31811, 31793, 31794, 31771, 31761, 31756, 31776, 31778, + 31777, 31779, 31780, 31795, 31781, 31804, 31805, 31806, 31782, 31760, + 31784, 31807, 31810, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 31812, 31813, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 31755, 12376, 12193, 12280, + 12320, 12296, 11983, 12358, 12021, 12211, 12202, 12103, 12436, 12051, + 12036, 12367, 12327, 12012, 12227, 12240, 12088, 12092, 12091, 12090, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 12310, + 12316, 12314, 12311, 12313, 12312, 12315, 35536, 12002, 12008, 12006, + 12003, 12005, 12004, 12007, 35536, 12426, 12432, 12430, 12427, 12429, + 12428, 12431, 35536, 11995, 12001, 11999, 11996, 11998, 11997, 12000, + 35536, 12262, 12268, 12266, 12263, 12265, 12264, 12267, 35536, 12171, + 12177, 12175, 12172, 12174, 12173, 12176, 35536, 12403, 12409, 12407, + 12404, 12406, 12405, 12408, 35536, 12114, 12120, 12118, 12115, 12117, + 12116, 12119, 35536, 7183, 7221, 7218, 7185, 7215, 7216, 7222, 7189, + 7190, 7191, 7198, 7220, 7192, 7186, 7214, 7211, 7213, 7217, 7201, 7200, + 7219, 7187, 7223, 7197, 7184, 7210, 7206, 7208, 7195, 7209, 7182, 7194, + 26233, 26232, 18813, 26303, 18755, 26248, 26070, 26069, 10320, 18816, + 26311, 26078, 18796, 26283, 10661, 25371, 12625, 26193, 15613, 10319, + 10443, 32473, 10322, 10370, 15961, 25330, 15609, 31825, 18776, 26273, + 31824, 31823, 18845, 26317, 32055, 32059, 4455, 4458, 18801, 26288, + 18754, 26253, 32274, 24829, 28754, 12592, 26208, 33430, 26468, 33947, + 32250, 26068, 26080, 32261, 9648, 9649, 32251, 32044, 32286, 31541, + 28854, 33433, 33930, 6104, 10338, 26207, 10341, 9655, 10358, 15962, + 15963, 19855, 19856, 10356, 10316, 32146, 21655, 25370, 26027, 7766, + 7803, 7804, 31913, 21654, 21656, 18811, 26301, 18810, 26300, 32036, + 32040, 4441, 4445, 24236, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 7007, 6960, 7010, + 7009, 7008, 7003, 6931, 7028, 7042, 7041, 6964, 7011, 7024, 7023, 6993, + 6992, 6991, 6990, 7020, 7029, 7019, 7018, 6979, 6978, 6982, 7006, 35536, + 6963, 7026, 7000, 6965, 6998, 6958, 7034, 7033, 6972, 7002, 7001, 7012, + 6962, 6966, 6987, 6929, 6971, 7022, 7021, 6934, 7017, 6945, 7040, 7039, + 7038, 7037, 6995, 7025, 7005, 6970, 7043, 6933, 6932, 6994, 6999, 6976, + 6975, 6974, 7030, 6961, 7036, 7035, 6949, 7013, 6981, 6948, 6947, 6973, + 6957, 7014, 7032, 7031, 6959, 6941, 6989, 6988, 6944, 6942, 6997, 6996, + 7004, 6935, 6951, 6943, 6953, 6939, 6969, 6968, 6967, 6937, 6980, 6956, + 6930, 6977, 6938, 6955, 6946, 7015, 7016, 6940, 6986, 6936, 6984, 6952, + 6985, 6954, 7027, 6983, 6950, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 16281, 16263, 16197, 16317, + 16305, 16249, 16349, 16264, 16277, 16260, 16212, 16216, 16201, 16186, + 16252, 16338, 16284, 16255, 16289, 16366, 16323, 16294, 16246, 16351, + 16195, 16306, 16182, 16286, 16157, 16275, 16211, 16209, 16304, 16232, + 16234, 16214, 16164, 16363, 16189, 16297, 16251, 16333, 16256, 16184, + 16322, 16273, 16295, 16364, 16282, 16347, 16207, 16312, 16198, 16266, + 16350, 16313, 16172, 16331, 16173, 16325, 16243, 16240, 16203, 16241, + 16174, 16292, 16303, 16196, 16159, 16334, 16279, 16336, 16302, 16276, + 16346, 16257, 16326, 16191, 16357, 16202, 16185, 16231, 16180, 16324, + 16356, 16223, 16181, 16218, 16200, 16239, 16318, 16220, 16188, 16204, + 16287, 16253, 16267, 16341, 16330, 16262, 16368, 16221, 16168, 16314, + 16199, 16359, 16335, 16194, 16217, 16319, 16155, 16328, 16321, 16345, + 16235, 16179, 16329, 16160, 16296, 16315, 16254, 16280, 16310, 16229, + 16285, 16158, 16288, 16208, 16175, 16268, 16269, 16307, 16156, 16271, + 16342, 16283, 16169, 16327, 16187, 16236, 16340, 16250, 16165, 16355, + 16183, 16358, 16308, 16248, 16320, 16352, 16176, 16290, 16161, 16309, + 16299, 16298, 16230, 16171, 16178, 16162, 16272, 16354, 16190, 16362, + 16193, 16353, 16233, 16265, 16238, 16274, 16316, 16311, 16291, 16167, + 16365, 16219, 16258, 16337, 16261, 16332, 16259, 16361, 16226, 16210, + 16244, 16227, 16247, 16170, 16339, 16242, 16222, 16300, 16177, 16237, + 16224, 16163, 16301, 16192, 16360, 16245, 16367, 16270, 16166, 16215, + 16228, 16344, 16206, 16293, 16278, 16213, 16343, 16205, 16348, 16225, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 15646, 15644, 15645, 15643, + 15658, 15654, 15653, 15650, 15651, 15652, 15648, 15647, 15655, 15649, + 15659, 15657, 15743, 15642, 15741, 10126, 15981, 15742, 15641, 15661, + 18733, 26230, 18752, 26249, 18748, 26246, 18827, 26320, 18742, 26240, + 25907, 13050, 18824, 26315, 18829, 26322, 18832, 26325, 18831, 26324, + 33712, 26190, 10352, 19853, 25908, 14730, 14723, 14720, 14726, 14725, + 14728, 14727, 14731, 14729, 15739, 15738, 15660, 15737, 14389, 14388, + 33718, 33405, 33408, 33406, 33409, 33407, 6906, 15735, 14724, 14722, + 14721, 33404, 20512, 25525, 15740, 15736, 35536, 15455, 15441, 15457, + 15535, 15459, 15537, 15456, 15534, 15458, 15536, 15496, 15486, 15498, + 15488, 15500, 15490, 15497, 15487, 15499, 15489, 15460, 15521, 15462, + 15523, 15464, 15525, 15461, 15522, 15463, 15524, 15516, 15481, 15518, + 15483, 15454, 15520, 15485, 15517, 15482, 15519, 15484, 15476, 15478, + 15480, 15477, 15479, 15491, 15471, 15506, 15493, 15465, 15508, 15495, + 15474, 15510, 15492, 15472, 15507, 15494, 15473, 15509, 15501, 15503, + 15505, 15502, 15504, 15448, 15530, 15450, 15532, 15449, 15531, 15511, + 15513, 15515, 15512, 15514, 15444, 15526, 15528, 15527, 15529, 15475, + 15533, 15451, 15452, 35536, 35536, 7391, 7390, 16607, 16606, 15539, + 15538, 15440, 16604, 16534, 16463, 16536, 16597, 16538, 16599, 16535, + 16596, 16537, 16598, 16559, 16549, 16561, 16551, 16563, 16553, 16560, + 16550, 16562, 16552, 16539, 16584, 16541, 16586, 16543, 16588, 16540, + 16585, 16542, 16587, 16574, 16544, 16576, 16546, 16521, 16578, 16548, + 16575, 16545, 16577, 16547, 16501, 16503, 16505, 16502, 16504, 16554, + 16478, 16564, 16556, 16472, 16566, 16558, 16481, 16568, 16555, 16479, + 16565, 16557, 16480, 16567, 16496, 16482, 16499, 16497, 16498, 16526, + 16593, 16528, 16595, 16527, 16594, 16569, 16571, 16573, 16570, 16572, + 16522, 16589, 16591, 16590, 16592, 16500, 16583, 16516, 16517, 16579, + 16581, 16580, 16582, 16603, 16605, 16602, 16600, 16601, 35536, 35536, + 35536, 35536, 35536, 4422, 4430, 4429, 4427, 4426, 4433, 4398, 4418, + 4386, 4414, 4428, 4424, 4431, 4435, 4411, 4417, 4421, 4432, 4410, 4416, + 4420, 4366, 4402, 4378, 4383, 4367, 4384, 4369, 4409, 4371, 4379, 4372, + 4380, 4385, 4391, 4376, 4397, 4434, 4399, 4388, 4394, 4405, 4401, 35536, + 14642, 14686, 14643, 14648, 14649, 14651, 14678, 14689, 14664, 14665, + 14667, 14669, 14676, 14672, 14668, 14675, 14644, 14654, 14688, 14655, + 14679, 14691, 14636, 14631, 14685, 14630, 14641, 14677, 14662, 14715, + 14626, 14629, 14712, 14713, 14633, 14632, 14699, 14698, 14716, 14695, + 14696, 14717, 14704, 14718, 14694, 14693, 14697, 14708, 14634, 14714, + 14635, 14719, 14687, 14650, 14653, 14652, 14666, 14673, 14670, 14671, + 14674, 14645, 14647, 14646, 14640, 14661, 14659, 14656, 14657, 14660, + 14658, 14638, 14639, 14681, 14682, 14684, 14683, 14680, 14663, 14692, + 14701, 14703, 14702, 14637, 14690, 14700, 14705, 14706, 14707, 14710, + 14709, 14711, 14627, 14628, 35536, 15635, 15638, 15637, 15633, 15631, + 15627, 15634, 15629, 15625, 15628, 15636, 15632, 15626, 15639, 15640, + 15630, 4423, 4412, 4425, 4389, 4382, 4381, 4408, 4404, 4396, 4373, 4392, + 4377, 4395, 4400, 4368, 4370, 4375, 4407, 4403, 4393, 4364, 4365, 4363, + 4362, 4387, 4419, 4413, 4361, 4390, 4415, 4406, 4374, 7074, 7077, 7078, + 7076, 7064, 7050, 7056, 7045, 7055, 7068, 7057, 7053, 7046, 7054, 7051, + 7080, 7044, 7063, 7059, 7072, 7079, 7049, 7058, 7067, 7066, 7073, 7071, + 7060, 7062, 7075, 7070, 7065, 7047, 7052, 7061, 7081, 7048, 7069, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 15656, 16519, + 16531, 16532, 16520, 16530, 16506, 16508, 16510, 16507, 16509, 16533, + 16511, 16513, 16515, 16512, 16514, 25385, 25389, 25401, 25395, 25387, + 25393, 25397, 25403, 25378, 25376, 25383, 25399, 25391, 25381, 25386, + 25390, 25402, 25396, 25388, 25394, 25398, 25404, 25379, 25377, 25384, + 25400, 25392, 25382, 25380, 25442, 25441, 35536, 25440, 25436, 25434, + 25415, 25413, 25433, 25425, 25410, 25419, 25435, 25418, 25412, 25438, + 25437, 25417, 25409, 25432, 25430, 25439, 25427, 25420, 25428, 25411, + 25406, 25416, 25423, 25407, 25429, 25431, 25408, 25421, 25405, 25414, + 25422, 25426, 25424, 6725, 6713, 6735, 6714, 6879, 6893, 6881, 6863, + 6860, 6876, 6874, 6856, 25524, 6894, 6900, 6899, 6896, 6895, 6898, 6897, + 6902, 6901, 6880, 6882, 6888, 6887, 6884, 6883, 6673, 6677, 6689, 6683, + 6675, 6681, 6685, 6666, 6664, 6662, 6671, 6687, 6679, 6669, 6674, 6678, + 6690, 6684, 6676, 6682, 6686, 6667, 6665, 6663, 6672, 6688, 6680, 6670, + 6800, 6799, 6668, 17243, 6748, 6744, 6742, 6710, 6708, 6740, 6731, 6705, + 6723, 6743, 6721, 6707, 6746, 6745, 6719, 6703, 6734, 6739, 6712, 6736, + 6724, 6737, 6706, 6699, 6715, 6730, 6720, 6709, 6733, 6704, 6741, 6696, + 6747, 6727, 6700, 6698, 6711, 6701, 6716, 6717, 6729, 6718, 6728, 6738, + 6732, 6702, 6726, 6694, 6722, 6886, 6885, 6890, 6889, 6862, 6864, 6870, + 6869, 6866, 6865, 6868, 6867, 6872, 6871, 6859, 15726, 15729, 15730, + 15668, 15731, 15727, 15728, 15667, 15733, 15734, 15732, 15700, 28539, + 28505, 28507, 19180, 6794, 6796, 6798, 6795, 6797, 6757, 6759, 6761, + 6758, 6760, 6777, 6779, 6781, 6778, 6780, 6782, 6784, 6786, 6783, 6785, + 6767, 6769, 6771, 6768, 6770, 6752, 6754, 6756, 6753, 6755, 6762, 6764, + 6766, 6763, 6765, 6791, 6793, 6792, 6772, 6774, 6776, 6773, 6775, 6787, + 6789, 6788, 6790, 28503, 28464, 28466, 28465, 28467, 28542, 28543, 28706, + 28506, 28499, 28632, 28636, 28551, 28549, 28550, 28514, 28515, 28519, + 28518, 28565, 28517, 28552, 28555, 28553, 28554, 28520, 28521, 28562, + 28563, 28564, 28561, 28560, 28672, 28673, 28680, 28674, 28675, 28490, + 28494, 28495, 28685, 28625, 28626, 28527, 28639, 28640, 28471, 28648, + 28646, 28647, 28474, 28534, 28533, 28473, 28535, 28528, 28645, 28643, + 28529, 28644, 28642, 28476, 28649, 28475, 28532, 28650, 28530, 28531, + 28589, 28590, 28593, 28592, 28591, 28599, 28600, 28601, 28596, 28597, + 28598, 28704, 28703, 28705, 28667, 28668, 28670, 28669, 28665, 28664, + 28686, 15724, 15725, 15707, 15709, 15716, 15715, 15722, 15720, 15711, + 15718, 15710, 15713, 15706, 15708, 15717, 15714, 15723, 15721, 15712, + 15719, 15701, 15705, 15704, 15703, 15702, 28537, 28489, 28469, 28472, + 28637, 28653, 28491, 28493, 28492, 28547, 28500, 28504, 28501, 28502, + 28481, 28641, 28624, 28606, 28588, 28548, 28570, 28594, 28524, 28478, + 28567, 28654, 28627, 28607, 28608, 28621, 28571, 28540, 28566, 28618, + 28522, 28684, 28609, 28622, 28498, 28573, 28513, 28628, 28610, 28603, + 28482, 28556, 28605, 28484, 28587, 28559, 28604, 28483, 28586, 28558, + 28583, 28584, 28638, 28569, 28620, 28523, 28661, 28662, 28663, 28658, + 28629, 28611, 28623, 28659, 28630, 28612, 28614, 28575, 28615, 28660, + 28631, 28613, 28616, 28576, 28617, 28568, 28585, 28468, 28477, 28487, + 28488, 28485, 28480, 28496, 28525, 28526, 28536, 28541, 28572, 28557, + 28574, 28580, 28581, 28578, 28582, 28595, 28602, 28619, 28655, 28656, + 28652, 28657, 28681, 28682, 28702, 28470, 28462, 15699, 15684, 15672, + 15691, 15690, 15697, 15695, 15686, 15693, 15685, 15688, 15683, 15671, + 15692, 15689, 15698, 15696, 15687, 15694, 15673, 15681, 15679, 15678, + 15675, 15674, 15677, 15676, 15682, 15680, 15669, 15670, 28516, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 15417, 15420, 15381, + 15431, 15428, 15376, 15414, 15393, 15410, 15427, 15405, 15411, 15386, + 15388, 15398, 15432, 15385, 15429, 15369, 15375, 15373, 15392, 15412, + 15406, 15394, 15391, 15399, 15390, 15415, 15418, 15397, 15383, 15407, + 15389, 15404, 15384, 15419, 15402, 15400, 15379, 15378, 15396, 15374, + 15377, 15387, 15403, 15401, 15421, 15408, 15416, 15413, 15425, 15380, + 15423, 15371, 15422, 15424, 15426, 15382, 15430, 15395, 15409, 15370, + 15372, 34469, 34476, 34468, 34475, 34473, 34474, 34471, 34472, 35244, + 35245, 35242, 35243, 35241, 35239, 35240, 35248, 35249, 35246, 35247, + 35251, 35250, 35116, 34136, 34137, 34130, 34135, 34133, 34134, 34131, + 34132, 34140, 34141, 34138, 34139, 34121, 34119, 34120, 34144, 34145, + 34142, 34143, 34129, 34127, 34128, 34125, 34126, 34118, 34124, 34123, + 34122, 34150, 34151, 34146, 34149, 34148, 34147, 34848, 34849, 34843, + 34847, 34846, 34844, 34845, 34852, 34853, 34850, 34851, 34837, 34835, + 34836, 34856, 34857, 34854, 34855, 34841, 34842, 34834, 34840, 34839, + 34838, 34862, 34863, 34858, 34861, 34860, 34859, 34104, 34105, 34098, + 34103, 34101, 34102, 34099, 34100, 34108, 34109, 34106, 34107, 34089, + 34087, 34088, 34112, 34113, 34110, 34111, 34097, 34095, 34096, 34093, + 34094, 34086, 34092, 34091, 34090, 34116, 34117, 34114, 34115, 34651, + 34652, 34646, 34650, 34649, 34647, 34648, 34655, 34656, 34653, 34654, + 34659, 34660, 34657, 34658, 34665, 34666, 34661, 34664, 34663, 34662, + 34671, 34672, 34667, 34670, 34669, 34668, 34394, 34395, 34389, 34393, + 34392, 34390, 34391, 34398, 34399, 34396, 34397, 34383, 34381, 34382, + 34402, 34403, 34400, 34401, 34387, 34388, 34380, 34386, 34385, 34384, + 34408, 34404, 34407, 34406, 34405, 34630, 34631, 34625, 34629, 34628, + 34626, 34627, 34634, 34635, 34632, 34633, 34618, 34619, 34616, 34617, + 34638, 34639, 34636, 34637, 34645, 34644, 34623, 34624, 34615, 34622, + 34621, 34620, 34642, 34643, 34640, 34641, 34275, 34276, 34273, 34274, + 34271, 34272, 34269, 34270, 34268, 34266, 34267, 34285, 34286, 34281, + 34284, 34283, 34282, 34279, 34280, 34277, 34278, 35094, 35095, 35088, + 35093, 35091, 35092, 35089, 35090, 35098, 35099, 35096, 35097, 35102, + 35103, 35100, 35101, 35087, 35086, 35108, 35109, 35104, 35107, 35106, + 35105, 35114, 35115, 35110, 35113, 35112, 35111, 34253, 34254, 34248, + 34252, 34251, 34249, 34250, 34260, 34261, 34258, 34259, 34242, 34241, + 34264, 34265, 34262, 34263, 34257, 34255, 34256, 34246, 34247, 34240, + 34245, 34244, 34243, 35073, 35074, 35068, 35072, 35071, 35069, 35070, + 35080, 35081, 35078, 35079, 35061, 35062, 35059, 35060, 35084, 35085, + 35082, 35083, 35077, 35075, 35076, 35066, 35067, 35058, 35065, 35064, + 35063, 34227, 34228, 34222, 34226, 34225, 34223, 34224, 34234, 34235, + 34232, 34233, 34216, 34214, 34215, 34238, 34239, 34236, 34237, 34231, + 34229, 34230, 34220, 34221, 34213, 34219, 34218, 34217, 34677, 34678, + 34673, 34676, 34675, 34674, 34684, 34685, 34682, 34683, 34688, 34689, + 34686, 34687, 34681, 34679, 34680, 34694, 34695, 34690, 34693, 34692, + 34691, 34424, 34425, 34418, 34423, 34421, 34422, 34419, 34420, 34428, + 34429, 34426, 34427, 34413, 34412, 34410, 34411, 34409, 34417, 34415, + 34416, 34414, 34822, 34823, 34817, 34821, 34820, 34818, 34819, 34826, + 34824, 34825, 34811, 34809, 34810, 34832, 34833, 34830, 34831, 34829, + 34827, 34828, 34815, 34816, 34808, 34814, 34813, 34812, 34362, 34363, + 34357, 34361, 34360, 34358, 34359, 34372, 34373, 34370, 34371, 34351, + 34349, 34350, 34369, 34367, 34368, 34366, 34364, 34365, 34355, 34356, + 34348, 34354, 34353, 34352, 34378, 34379, 34374, 34377, 34376, 34375, + 34577, 34578, 34571, 34576, 34574, 34575, 34572, 34573, 34581, 34582, + 34579, 34580, 34561, 34562, 34559, 34560, 34585, 34586, 34583, 34584, + 34570, 34568, 34569, 34566, 34567, 34558, 34565, 34564, 34563, 34591, + 34592, 34587, 34590, 34589, 34588, 34331, 34332, 34325, 34330, 34328, + 34329, 34326, 34327, 34335, 34336, 34333, 34334, 34318, 34319, 34316, + 34317, 34343, 34344, 34341, 34342, 34339, 34340, 34337, 34338, 34323, + 34324, 34315, 34322, 34321, 34320, 34544, 34545, 34539, 34543, 34542, + 34540, 34541, 34548, 34549, 34546, 34547, 34533, 34531, 34532, 34556, + 34557, 34554, 34555, 34552, 34553, 34550, 34551, 34537, 34538, 34530, + 34536, 34535, 34534, 34291, 34292, 34287, 34290, 34288, 34289, 34305, + 34306, 34303, 34304, 34296, 34297, 34294, 34295, 34313, 34314, 34311, + 34312, 34309, 34310, 34307, 34308, 34301, 34302, 34293, 34300, 34299, + 34298, 34614, 34613, 34607, 34608, 34605, 34606, 34596, 34594, 34595, + 34611, 34612, 34609, 34610, 34604, 34602, 34603, 34600, 34601, 34593, + 34599, 34598, 34597, 34443, 34444, 34437, 34442, 34440, 34441, 34438, + 34439, 34447, 34448, 34445, 34446, 34432, 34433, 34430, 34431, 34451, + 34452, 34449, 34450, 34436, 34434, 34435, 34704, 34702, 34703, 34707, + 34708, 34705, 34706, 34697, 34698, 34696, 34711, 34712, 34709, 34710, + 34701, 34699, 34700, 34347, 34346, 34345, 34462, 34463, 34460, 34461, + 34455, 34456, 34453, 34454, 34466, 34467, 34464, 34465, 34459, 34457, + 34458, 35128, 35129, 35126, 35127, 35119, 35117, 35118, 35125, 35123, + 35124, 35122, 35120, 35121, 35191, 35192, 35186, 35190, 35189, 35187, + 35188, 35227, 35228, 35225, 35226, 35180, 35178, 35179, 35231, 35232, + 35229, 35230, 35224, 35222, 35223, 35184, 35185, 35177, 35183, 35182, + 35181, 35237, 35238, 35233, 35236, 35235, 35234, 34197, 34198, 34191, + 34196, 34194, 34195, 34192, 34193, 34201, 34202, 34199, 34200, 34182, + 34180, 34181, 34205, 34206, 34203, 34204, 34190, 34188, 34189, 34186, + 34187, 34179, 34185, 34184, 34183, 34211, 34212, 34207, 34210, 34209, + 34208, 35205, 35206, 35199, 35204, 35202, 35203, 35200, 35201, 35209, + 35210, 35207, 35208, 35198, 35196, 35197, 35195, 35193, 35194, 35215, + 35211, 35214, 35213, 35212, 35220, 35221, 35216, 35219, 35218, 35217, + 34794, 34795, 34789, 34793, 34792, 34790, 34791, 34798, 34799, 34796, + 34797, 34782, 34781, 34788, 34787, 34807, 34806, 34786, 34780, 34785, + 34784, 34783, 34804, 34805, 34800, 34803, 34802, 34801, 35039, 35040, + 35034, 35038, 35037, 35035, 35036, 35046, 35047, 35044, 35045, 35028, + 35026, 35027, 35050, 35051, 35048, 35049, 35043, 35041, 35042, 35032, + 35033, 35025, 35031, 35030, 35029, 35056, 35057, 35052, 35055, 35054, + 35053, 34975, 34976, 34970, 34974, 34973, 34971, 34972, 34982, 34983, + 34980, 34981, 34986, 34987, 34984, 34985, 34979, 34977, 34978, 34990, + 34991, 34988, 34989, 34996, 34997, 34992, 34995, 34994, 34993, 35161, + 35162, 35159, 35160, 35153, 35151, 35152, 35169, 35170, 35167, 35168, + 35165, 35166, 35163, 35164, 35157, 35158, 35150, 35156, 35155, 35154, + 35175, 35176, 35171, 35174, 35173, 35172, 34163, 34164, 34161, 34162, + 34155, 34156, 34153, 34154, 34171, 34172, 34169, 34170, 34167, 34168, + 34165, 34166, 34160, 34152, 34159, 34158, 34157, 34177, 34178, 34173, + 34176, 34175, 34174, 34943, 34942, 34922, 34921, 34934, 34935, 34932, + 34933, 34930, 34931, 34928, 34929, 34926, 34927, 34920, 34925, 34924, + 34923, 34940, 34941, 34936, 34939, 34938, 34937, 34743, 34744, 34741, + 34742, 34740, 34738, 34739, 34747, 34748, 34745, 34746, 34753, 34754, + 34749, 34752, 34751, 34750, 34759, 34760, 34755, 34758, 34757, 34756, + 35009, 35010, 35007, 35008, 35001, 34999, 35000, 35017, 35018, 35015, + 35016, 35013, 35014, 35011, 35012, 35005, 35006, 34998, 35004, 35003, + 35002, 35023, 35024, 35019, 35022, 35021, 35020, 34958, 34959, 34956, + 34957, 34947, 34945, 34946, 34962, 34963, 34960, 34961, 34955, 34953, + 34954, 34951, 34952, 34944, 34950, 34949, 34948, 34968, 34969, 34964, + 34967, 34966, 34965, 34518, 34519, 34512, 34517, 34515, 34516, 34513, + 34514, 34505, 34506, 34503, 34504, 34522, 34523, 34520, 34521, 34510, + 34511, 34502, 34509, 34508, 34507, 34528, 34529, 34524, 34527, 34526, + 34525, 34880, 34881, 34874, 34879, 34877, 34878, 34875, 34876, 34867, + 34868, 34865, 34866, 34884, 34885, 34882, 34883, 34872, 34873, 34864, + 34871, 34870, 34869, 34890, 34891, 34886, 34889, 34888, 34887, 34492, + 34493, 34486, 34491, 34489, 34490, 34487, 34488, 34480, 34478, 34479, + 34496, 34497, 34494, 34495, 34484, 34485, 34477, 34483, 34482, 34481, + 34500, 34501, 34498, 34499, 34726, 34727, 34720, 34725, 34723, 34724, + 34721, 34722, 34715, 34714, 34730, 34731, 34728, 34729, 34719, 34713, + 34718, 34717, 34716, 34736, 34737, 34732, 34735, 34734, 34733, 34774, + 34775, 34768, 34773, 34771, 34772, 34769, 34770, 34764, 34762, 34763, + 34778, 34779, 34776, 34777, 34766, 34767, 34761, 34765, 35136, 35137, + 35130, 35135, 35133, 35134, 35131, 35132, 35149, 35148, 35140, 35141, + 35138, 35139, 35146, 35147, 35142, 35145, 35144, 35143, 34908, 34909, + 34902, 34907, 34905, 34906, 34903, 34904, 34895, 34896, 34893, 34894, + 34912, 34913, 34910, 34911, 34900, 34901, 34892, 34899, 34898, 34897, + 34918, 34919, 34914, 34917, 34916, 34915, 35536, 35536, 35536, 34083, + 34056, 34054, 34061, 34035, 34071, 34042, 34044, 34060, 34047, 34058, + 34031, 34059, 34077, 34065, 34046, 34072, 34045, 34078, 34036, 34039, + 34032, 34041, 34062, 34073, 34085, 34050, 34081, 34066, 34049, 34076, + 34074, 34070, 34075, 34082, 34053, 34063, 34052, 34043, 34051, 34084, + 34040, 34067, 34057, 34034, 34033, 34038, 34048, 34068, 34079, 34069, + 34037, 34080, 34064, 34055, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 19783, 19772, 19771, 19755, 19753, 19752, 19766, + 19770, 19769, 19785, 19764, 19763, 19754, 19751, 19750, 19787, 19760, + 19786, 19774, 19777, 19778, 19759, 19768, 19789, 19767, 19784, 19788, + 19773, 19776, 19765, 19779, 19780, 19761, 19762, 19790, 19781, 19756, + 19757, 19758, 19782, 19746, 19749, 19747, 19745, 19748, 19744, 19791, + 19792, 32803, 32804, 32640, 32789, 32790, 32763, 32566, 32573, 32676, + 32649, 32683, 32623, 32749, 32777, 32601, 32594, 32552, 32545, 32667, + 32770, 32559, 32702, 32587, 32580, 32615, 32608, 32742, 32756, 32721, + 32784, 32662, 32708, 32629, 32690, 32735, 32728, 32812, 32813, 32644, + 32645, 32798, 32799, 32765, 32568, 32575, 32678, 32655, 32685, 32626, + 32751, 32779, 32603, 32596, 32554, 32547, 32671, 32772, 32561, 32704, + 32589, 32582, 32617, 32610, 32744, 32758, 32723, 32786, 32663, 32713, + 32634, 32692, 32737, 32730, 32810, 32811, 32715, 32642, 32643, 32796, + 32797, 32764, 32567, 32574, 32677, 32653, 32654, 32684, 32625, 32750, + 32778, 32602, 32595, 32553, 32546, 32670, 32771, 32560, 32703, 32588, + 32581, 32616, 32609, 32743, 32757, 32722, 32785, 32659, 32660, 32712, + 32633, 32691, 32736, 32729, 32807, 32808, 32638, 32793, 32794, 32761, + 32564, 32571, 32674, 32652, 32681, 32621, 32747, 32775, 32599, 32592, + 32550, 32543, 32669, 32768, 32557, 32700, 32585, 32578, 32613, 32606, + 32740, 32754, 32719, 32782, 32658, 32711, 32632, 32688, 32733, 32726, + 32814, 32815, 32646, 32647, 32800, 32801, 32766, 32569, 32576, 32679, + 32656, 32686, 32627, 32752, 32780, 32604, 32597, 32555, 32548, 32672, + 32773, 32562, 32705, 32590, 32583, 32618, 32611, 32745, 32759, 32724, + 32787, 32664, 32714, 32635, 32693, 32738, 32731, 32806, 32809, 32717, + 32636, 32637, 32792, 32795, 32760, 32563, 32570, 32673, 32651, 32680, + 32619, 32620, 32746, 32774, 32598, 32591, 32549, 32542, 32668, 32767, + 32556, 32694, 32584, 32577, 32612, 32605, 32739, 32753, 32718, 32781, + 32657, 32710, 32631, 32687, 32732, 32725, 32802, 32805, 32716, 32639, + 32641, 32788, 32791, 32762, 32565, 32572, 32675, 32648, 32650, 32682, + 32622, 32624, 32748, 32776, 32600, 32593, 32551, 32544, 32665, 32769, + 32558, 32701, 32586, 32579, 32614, 32607, 32741, 32755, 32720, 32783, + 32661, 32707, 32709, 32628, 32630, 32689, 32734, 32727, 32706, 32666, + 32539, 32540, 32541, 32697, 32698, 32695, 32819, 32822, 32825, 32824, + 32828, 32820, 32827, 32818, 32816, 32823, 32826, 32817, 32821, 32835, + 32837, 32834, 32833, 32830, 32829, 32832, 32831, 32838, 32836, 32699, + 32696, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 9401, 9602, 9290, 9449, 9240, 9543, 9345, 9504, 9286, 9445, 9366, + 9529, 9274, 9433, 9233, 9530, 9394, 9595, 9342, 9501, 9242, 9545, 9343, + 9502, 9282, 9441, 9275, 9434, 9339, 9498, 9396, 9597, 9241, 9544, 9385, + 9563, 9382, 9560, 9383, 9561, 9365, 9528, 9272, 9431, 9287, 9446, 9416, + 7237, 7229, 7180, 7230, 28123, 7204, 7193, 7207, 7203, 7212, 7205, 7202, + 7199, 7235, 7224, 9415, 9419, 9296, 9455, 9294, 9453, 9406, 9607, 9284, + 9443, 9292, 9451, 9246, 9571, 9254, 9580, 9250, 9575, 9249, 9574, 9252, + 9578, 9330, 9489, 9380, 9558, 9288, 9447, 9283, 9442, 22430, 22467, 7188, + 7196, 3462, 2824, 3465, 2826, 3461, 3437, 3454, 3464, 2853, 3463, 2829, + 3434, 3440, 3439, 2827, 2833, 3453, 2852, 2846, 2832, 3449, 2840, 3444, + 3450, 3443, 3447, 2822, 2818, 2850, 2849, 2844, 3456, 3446, 3457, 3458, + 2851, 2816, 3430, 2845, 2848, 3433, 3459, 3431, 2813, 3442, 2831, 2838, + 2855, 3436, 3441, 2817, 2841, 2842, 2843, 3445, 3432, 2815, 2814, 3460, + 2854, 2830, 3435, 2828, 2819, 2835, 3438, 2834, 2837, 3455, 2825, 2839, + 2836, 3452, 2823, 3451, 2847, 3448, 2812, 2820, 2821, 2809, 2808, 3466, + 3468, 2811, 2810, 3467, 3469, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 22427, 22423, 22426, 22422, 22428, 22424, 22429, 22425, + 22482, 22497, 22525, 22504, 22487, 22481, 22496, 22524, 22503, 22486, + 22483, 22498, 22526, 22508, 22488, 22474, 22473, 22475, 22519, 22538, + 22535, 22537, 22536, 22516, 22686, 22687, 17554, 18158, 17555, 18159, + 17594, 18220, 17821, 18583, 17820, 18540, 17494, 18080, 17495, 18081, + 17963, 17971, 17468, 18036, 17469, 18037, 17470, 18038, 17466, 18034, + 17467, 18035, 17471, 18039, 17765, 18464, 17635, 18272, 17632, 18269, + 17636, 18273, 17480, 18057, 17654, 18296, 17687, 18371, 17688, 18373, + 17734, 18411, 17739, 18416, 17737, 18414, 17740, 18417, 17747, 18429, + 17746, 18426, 17762, 18454, 17767, 18467, 17862, 18633, 17871, 18645, + 17866, 18640, 17815, 18534, 17816, 18535, 17870, 18644, 17556, 18176, + 17623, 18259, 17496, 18082, 22695, 18118, 18317, 18331, 18354, 18466, + 17948, 18578, 18630, 17616, 18248, 17617, 18249, 17618, 17805, 18546, + 17810, 18576, 17619, 18251, 17620, 18252, 17621, 18253, 22502, 22471, + 22548, 17788, 18490, 17808, 18301, 17979, 17680, 18345, 17490, 18070, + 18067, 18214, 17474, 18042, 17563, 18183, 17867, 18641, 17868, 18642, + 17869, 18643, 17571, 18194, 17639, 18277, 17683, 18350, 17760, 18451, + 17784, 18488, 17590, 17764, 17791, 17642, 17787, 17970, 17809, 17812, + 17626, 17497, 17481, 18059, 17732, 18409, 17858, 18621, 17576, 18199, + 17577, 18200, 17578, 18201, 17729, 18400, 17463, 18031, 17488, 17785, + 17908, 17501, 18084, 17781, 18482, 17768, 17780, 18481, 17744, 18423, + 17493, 18076, 17514, 18111, 17513, 18108, 17669, 18330, 17790, 18508, + 17658, 18306, 17659, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 22415, 22402, 22405, 22414, 17763, 18455, 17918, + 22397, 22627, 17953, 17916, 17917, 17914, 17915, 17913, 29119, 29121, + 29131, 29123, 29120, 29122, 29130, 29111, 29110, 29107, 29106, 29129, + 29105, 29104, 29109, 29108, 29099, 29098, 29093, 29092, 29101, 29100, + 29095, 29094, 29117, 29113, 29112, 29103, 29102, 29116, 29097, 29115, + 29096, 29118, 29114, 29133, 29135, 29136, 29134, 29132, 29124, 29125, + 29126, 29127, 29128, 35536, 35536, 35536, 24088, 24087, 24090, 24085, + 24086, 24089, 24082, 24081, 24084, 24083, 35536, 35536, 35536, 35536, + 35536, 35536, 25661, 25660, 25649, 25650, 25637, 25639, 25671, 25652, + 25659, 25658, 25642, 25653, 25663, 25662, 25668, 25673, 25655, 25654, + 25641, 25676, 25664, 25665, 25643, 25678, 25675, 25672, 25644, 25645, + 25670, 25634, 25679, 25681, 25666, 25680, 25674, 25677, 25669, 25648, + 25667, 25686, 25687, 25657, 25656, 25640, 25651, 25635, 25647, 25646, + 25636, 25685, 25688, 25638, 25684, 25689, 25683, 25682, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 26806, 26808, 26755, 26756, + 26776, 26777, 26772, 26773, 26767, 26768, 26769, 26770, 26799, 26800, + 26757, 26774, 26775, 26758, 26796, 26795, 26792, 26791, 26780, 26790, + 26789, 26794, 26793, 26782, 26764, 26763, 26760, 26759, 26781, 26766, + 26765, 26762, 26761, 26783, 26798, 26797, 26788, 26787, 26802, 26804, + 26803, 26779, 26771, 26784, 26785, 26786, 26801, 26778, 26821, 26822, + 26833, 26834, 26825, 26826, 26827, 26828, 26829, 26830, 26835, 26836, + 26823, 26831, 26832, 26824, 26807, 26805, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 26810, 26809, 26817, 26819, 26816, 26815, + 26812, 26811, 26814, 26813, 26820, 26818, 35536, 35536, 35536, 35536, + 35536, 35536, 7255, 7257, 7254, 7253, 7250, 7249, 7252, 7251, 7258, 7256, + 7246, 7247, 7242, 7243, 7244, 7245, 7241, 7248, 9889, 9883, 9896, 9885, + 9884, 9882, 9897, 9786, 9784, 9789, 9890, 9940, 9795, 9907, 16739, 16741, + 16738, 16737, 16734, 16733, 16736, 16735, 16742, 16740, 16703, 16702, + 16713, 16699, 16707, 16706, 16720, 16700, 16709, 16697, 16701, 16705, + 16704, 16715, 16712, 16710, 16716, 16719, 16714, 16718, 16708, 16698, + 16717, 16711, 16721, 16695, 16722, 16696, 16731, 16728, 16730, 16729, + 16732, 16727, 16725, 16726, 16723, 16724, 26148, 26145, 26137, 26153, + 26144, 26139, 26150, 26142, 26141, 26143, 26147, 26135, 26152, 26151, + 26149, 26155, 26154, 26146, 26140, 26136, 26138, 26134, 26156, 26163, + 26165, 26158, 26161, 26164, 26162, 26160, 26159, 26131, 26130, 26133, + 26132, 26166, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 26157, 14377, 14380, 14381, 14378, 14335, 14336, + 14344, 14338, 14340, 14343, 14337, 14333, 14339, 14341, 14334, 14300, + 14302, 14303, 14316, 14323, 14330, 14365, 14282, 14289, 14363, 14367, + 14313, 14386, 14369, 35536, 35536, 35536, 16058, 16054, 16057, 16056, + 16028, 15996, 15995, 15997, 16037, 16016, 16002, 16003, 16035, 16029, + 16036, 15998, 15999, 16000, 16012, 16013, 16001, 16010, 16011, 16026, + 16005, 16027, 16004, 16024, 16025, 15991, 15992, 16007, 16022, 16023, + 15993, 15994, 16006, 16014, 16015, 16008, 16009, 16032, 16034, 16017, + 16018, 16031, 16033, 16020, 16021, 16019, 16030, 16055, 16061, 16063, + 16064, 16065, 16059, 16060, 16062, 16067, 16066, 15987, 15988, 15989, + 16052, 15990, 16038, 16041, 16050, 16043, 16048, 16046, 16044, 16042, + 16039, 16040, 16045, 16053, 35536, 16051, 16074, 16076, 16073, 16072, + 16069, 16068, 16071, 16070, 16077, 16075, 35536, 35536, 35536, 35536, + 16047, 16049, 23307, 23305, 23300, 23297, 23303, 23393, 23371, 23323, + 23335, 23331, 23330, 23333, 23332, 23325, 23324, 23322, 23435, 23437, + 23434, 23433, 23430, 23429, 23432, 23431, 23438, 23436, 23334, 23327, + 23326, 23329, 23328, 35536, 6347, 6365, 6367, 6364, 6348, 6366, 6356, + 6355, 6352, 6351, 6327, 6328, 6350, 6349, 6354, 6353, 6329, 6331, 6330, + 6358, 6357, 6344, 6343, 6332, 6333, 6342, 6338, 6337, 6336, 6341, 6340, + 6334, 6335, 6339, 6363, 6361, 6360, 6362, 6345, 6346, 6359, 6372, 6375, + 6376, 6381, 6379, 6378, 6377, 6373, 6374, 6380, 6315, 6313, 6312, 6314, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 6321, + 6320, 6317, 6309, 6319, 6325, 6316, 6323, 6326, 6324, 6322, 6318, 6311, + 6310, 35536, 35536, 6388, 6390, 6387, 6386, 6383, 6382, 6385, 6384, 6391, + 6389, 35536, 35536, 6368, 6370, 6369, 6371, 23277, 23270, 23269, 23274, + 23273, 23267, 23266, 23265, 23263, 23262, 23264, 23268, 23279, 23272, + 23271, 23276, 23370, 23280, 23281, 23278, 23367, 23368, 23369, 23408, + 23410, 23409, 23252, 23404, 23395, 23396, 23316, 23317, 29603, 29579, + 29602, 29578, 29601, 29577, 29616, 29592, 29610, 29586, 29605, 29581, + 29604, 29580, 29621, 29597, 29611, 29587, 29614, 29590, 29609, 29585, + 29608, 29584, 29612, 29588, 29613, 29589, 29607, 29583, 29606, 29582, + 29615, 29591, 29619, 29595, 29623, 29599, 29620, 29596, 29618, 29594, + 29622, 29598, 29617, 29593, 29624, 29600, 29625, 29637, 29645, 29642, + 29641, 29647, 29648, 29626, 29646, 29643, 29644, 29636, 29640, 29639, + 29638, 29635, 29632, 29633, 29634, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 29628, + 29629, 29631, 29630, 29627, 21734, 21735, 21693, 21710, 21721, 21720, + 21697, 21696, 21709, 21715, 21716, 21748, 21750, 21740, 21742, 21741, + 21688, 21685, 21687, 21737, 21738, 21752, 21753, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 12338, 12336, 12335, + 12334, 12333, 12337, 35536, 35536, 12032, 12030, 12029, 12028, 12027, + 12031, 35536, 35536, 12047, 12045, 12044, 12043, 12042, 12046, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 11988, 11994, + 11992, 11989, 11991, 11990, 11993, 35536, 11973, 11979, 11977, 11974, + 11976, 11975, 11978, 35536, 18050, 18026, 18056, 18051, 18147, 18310, + 18500, 18299, 18290, 18293, 18321, 18335, 18161, 18054, 18055, 18405, + 18255, 18549, 18548, 18550, 18551, 18510, 17947, 18453, 18109, 18433, + 18110, 18497, 18498, 18053, 18620, 18586, 18629, 18572, 18625, 18073, + 18074, 18075, 18661, 18658, 18659, 18660, 18672, 22384, 22608, 22617, + 22618, 22675, 18491, 18258, 18406, 18631, 18254, 13549, 18116, 18581, + 18554, 22672, 22521, 22545, 35536, 35536, 35536, 35536, 6570, 6571, 6572, + 6573, 6574, 6575, 6533, 6569, 6534, 6535, 6536, 6537, 6538, 6498, 6499, + 6500, 6501, 6502, 6503, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, + 6547, 6548, 6549, 6504, 6497, 6505, 6506, 6507, 6508, 6509, 6510, 6551, + 6552, 6553, 6554, 6555, 6556, 6512, 6511, 6513, 6514, 6515, 6516, 6517, + 6491, 6530, 6492, 6531, 6493, 6532, 6494, 6495, 6496, 6490, 6518, 6519, + 6520, 6521, 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, 6557, 6558, + 6559, 6560, 6561, 6562, 6563, 21702, 21714, 21724, 21726, 21711, 21705, + 21692, 21717, 21704, 21707, 21719, 21730, 21732, 21728, 21733, 21722, + 21713, 21731, 21699, 21700, 21729, 21691, 21701, 21695, 21698, 21694, + 21690, 21703, 21725, 21727, 21712, 21706, 21718, 21708, 21723, 21744, + 21747, 21739, 21746, 21745, 21749, 21743, 21751, 21689, 21736, 21686, + 35536, 35536, 21760, 21762, 21759, 21758, 21755, 21754, 21757, 21756, + 21763, 21761, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 14574, 14572, 14605, 14606, 14607, 14583, + 14584, 14616, 14618, 14551, 14549, 14548, 14552, 14558, 14559, 14561, + 14560, 14565, 14562, 14563, 14567, 14535, 14533, 35536, 35536, 35536, + 35536, 14431, 14432, 14500, 14501, 14520, 14514, 14515, 14518, 14517, + 14516, 14475, 14460, 14499, 14466, 14470, 14469, 14483, 14482, 14403, + 14428, 14421, 14506, 14419, 14426, 14456, 14449, 14455, 14510, 14451, + 14454, 14453, 14494, 14487, 14504, 14505, 14493, 14491, 14490, 14495, + 14497, 14442, 14441, 14527, 14528, 14392, 14391, 14507, 14446, 14444, + 35536, 35536, 35536, 35536, 18694, 18697, 18698, 18695, 18696, 18700, + 18701, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 2549, 2550, 2548, 2551, 2547, 35536, 35536, 35536, + 35536, 35536, 15040, 15067, 15045, 14976, 15032, 15035, 15037, 15036, + 15031, 15038, 15034, 15033, 14977, 15010, 15011, 15008, 15009, 14974, + 14975, 14973, 14981, 15023, 15021, 14998, 15030, 15003, 35536, 15015, + 15041, 14989, 14984, 15025, 35536, 15027, 35536, 15001, 15005, 35536, + 14991, 14987, 35536, 15019, 14996, 15013, 15007, 15017, 15029, 14980, + 14983, 14986, 15042, 1164, 1163, 1194, 1192, 1193, 1195, 1424, 1422, + 1423, 1425, 1189, 1187, 1188, 1190, 1555, 1553, 1554, 1556, 1534, 1532, + 1533, 1535, 1550, 1548, 1549, 1551, 1568, 1566, 1567, 1569, 1429, 1427, + 1428, 1430, 1230, 1228, 1229, 1231, 1401, 1399, 1400, 1402, 1511, 1509, + 1510, 1512, 1516, 1514, 1515, 1517, 1220, 1219, 1211, 1210, 1234, 1233, + 1223, 1222, 1330, 1329, 1459, 1458, 1353, 1351, 1352, 1354, 1264, 1262, + 1263, 1265, 1276, 1274, 1275, 1277, 1392, 1390, 1391, 1393, 1406, 1405, + 1463, 1461, 1462, 1464, 1306, 1305, 1301, 1299, 1300, 1302, 1310, 1308, + 1309, 1311, 1592, 1591, 1590, 1589, 2411, 2410, 2419, 2418, 2415, 2414, + 2413, 2412, 2423, 2422, 2409, 2417, 2416, 2425, 2421, 2420, 2424, 1756, + 1704, 1933, 1930, 1931, 1926, 1927, 1928, 1920, 1733, 1734, 1731, 1732, + 1956, 1645, 1649, 1396, 1394, 1395, 1397, 1561, 1560, 1614, 1613, 1611, + 1610, 1559, 1571, 1570, 1357, 1356, 1360, 1359, 1627, 1625, 1626, 1628, + 1562, 1563, 2100, 2099, 2102, 2101, 2121, 2120, 2129, 2128, 2119, 2118, + 2125, 2124, 2105, 2103, 2104, 2154, 2152, 2153, 1244, 1242, 1243, 1245, + 2111, 2109, 2115, 2098, 2123, 1675, 1666, 1671, 1678, 1673, 1684, 2063, + 2051, 2058, 2071, 2074, 2079, 2081, 2086, 2083, 2092, 1760, 1766, 1743, + 1738, 1799, 1795, 1801, 1970, 1963, 1975, 1983, 1940, 1944, 1697, 1689, + 1693, 1699, 2044, 2039, 2156, 1640, 1636, 1728, 1724, 1712, 1717, 1708, + 1715, 1710, 1719, 1905, 1901, 1903, 1907, 1774, 1776, 1784, 1782, 1779, + 1790, 1772, 1793, 1827, 1819, 1831, 1837, 1811, 1840, 1858, 1847, 1852, + 1862, 1841, 1863, 1879, 1869, 1891, 1884, 1887, 1894, 1753, 1749, 1750, + 1751, 2139, 2132, 2141, 2147, 2096, 2151, 2080, 1935, 1658, 1991, 1994, + 1998, 1992, 1995, 1997, 2127, 2126, 2113, 2117, 2097, 2122, 1682, 1681, + 1676, 1680, 1672, 1683, 2077, 2076, 2069, 2075, 2073, 2078, 2090, 2089, + 2084, 2088, 2082, 2091, 1709, 1718, 1902, 1906, 1773, 1777, 1788, 1771, + 1792, 1835, 1810, 1839, 1842, 1860, 1892, 1889, 1882, 1888, 1886, 1893, + 1657, 2149, 2136, 2145, 2135, 2095, 2150, 2110, 2108, 2112, 2114, 2106, + 1674, 1665, 1670, 1677, 1667, 2062, 2050, 2057, 2070, 2052, 2085, 1759, + 1765, 1742, 1737, 1798, 1800, 1969, 1962, 1974, 1982, 1939, 1947, 1943, + 1696, 1688, 1692, 1698, 2043, 2155, 1639, 1635, 1727, 1723, 1711, 1716, + 1707, 1714, 1904, 1900, 1775, 1783, 1781, 1778, 1789, 1826, 1818, 1830, + 1836, 1820, 1857, 1846, 1851, 1861, 1878, 1868, 1890, 1883, 1870, 1752, + 1748, 1754, 2138, 2131, 2140, 2146, 2133, 2116, 2107, 1679, 1668, 2072, + 2053, 2087, 2093, 1984, 1966, 2021, 2001, 1780, 1791, 1838, 1885, 1871, + 2148, 2134, 1999, 1993, 1996, 2042, 2046, 1642, 1644, 1726, 1730, 1986, + 1990, 2023, 2031, 1740, 1745, 1768, 1770, 1797, 1803, 1946, 1951, 1695, + 1703, 2012, 2007, 2026, 2020, 2029, 1988, 1949, 1701, 2041, 2045, 1641, + 1643, 1725, 1729, 1985, 1989, 2022, 2030, 1739, 1744, 1767, 1769, 1796, + 1802, 1945, 1950, 1694, 1702, 2010, 2005, 2024, 2018, 2028, 1987, 1948, + 1700, 2011, 2006, 2025, 2019, 1965, 2000, 2038, 1971, 1964, 1976, 2013, + 2008, 2027, 2040, 2157, 1659, 1660, 24956, 24957, 1923, 1914, 1918, 1915, + 1916, 1917, 1957, 1648, 1653, 1651, 1647, 1912, 1959, 1655, 2033, 1925, + 2060, 2049, 2048, 2047, 2055, 2065, 2067, 2066, 1762, 1761, 1736, 1735, + 1961, 1968, 1967, 1978, 1977, 1979, 1981, 1980, 1937, 1936, 1942, 2003, + 2002, 2009, 2015, 2014, 2017, 2016, 1686, 1691, 1690, 2035, 2034, 2036, + 2037, 1638, 1633, 1632, 1631, 1720, 1722, 1721, 1706, 1705, 1898, 1896, + 1816, 1817, 1814, 1821, 1822, 1829, 1828, 1833, 1832, 1843, 1844, 1845, + 1855, 1853, 1848, 1849, 1929, 1932, 1854, 1746, 1747, 1866, 1865, 1876, + 1875, 1874, 1881, 1880, 2143, 2142, 1669, 2061, 2059, 2056, 2054, 2068, + 2064, 1764, 1757, 1763, 1972, 1938, 2004, 1687, 1825, 1834, 2130, 2137, + 2144, 1859, 1899, 1867, 1897, 1815, 1634, 1787, 1872, 1850, 1823, 1786, + 1824, 1873, 1758, 1741, 1856, 1713, 1664, 1785, 1637, 1941, 1973, 1877, + 1924, 1919, 1922, 1921, 1958, 1646, 1794, 1953, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 1954, + 1908, 1661, 1662, 1864, 1952, 1934, 1656, 2094, 1955, 1960, 1755, 26477, + 1685, 2032, 1663, 32839, 32950, 33018, 33029, 33040, 33051, 33062, 33073, + 33084, 32840, 32851, 32862, 32873, 32884, 32895, 32906, 25931, 25936, + 25937, 25930, 25961, 25932, 25963, 25939, 25953, 25935, 35536, 35536, + 35536, 35536, 35536, 35536, 7465, 7467, 7292, 7293, 7476, 7478, 7178, + 7466, 7468, 7541, 7542, 7477, 7479, 7179, 7232, 7233, 25962, 25933, + 25934, 25948, 25960, 25945, 25957, 25943, 25955, 25947, 25959, 25940, + 25949, 25941, 25950, 25944, 25956, 25942, 25954, 25938, 25951, 26972, + 33845, 25946, 25958, 9659, 6231, 33721, 10375, 9658, 6230, 33719, 28147, + 28156, 28191, 35536, 28181, 28148, 28192, 28154, 28155, 28158, 28162, + 28157, 28161, 28159, 28163, 28190, 28138, 28140, 28189, 28187, 28160, + 28186, 28153, 35536, 28180, 28149, 28188, 28146, 35536, 35536, 35536, + 35536, 1098, 2430, 1079, 2432, 1110, 35536, 1095, 1096, 1075, 1076, 1107, + 1108, 2335, 2336, 2405, 2406, 1295, 1159, 1158, 1149, 1148, 1579, 1578, + 1152, 1151, 1596, 1594, 1595, 1597, 1169, 1168, 1184, 1182, 1183, 1185, + 1521, 1520, 1530, 1528, 1529, 1523, 1544, 1542, 1543, 1545, 1326, 1324, + 1325, 1327, 1292, 1290, 1291, 1293, 1364, 1362, 1363, 1365, 1208, 1207, + 1538, 1537, 1456, 1455, 1622, 1621, 1485, 1483, 1484, 1486, 1491, 1489, + 1490, 1492, 1472, 1470, 1471, 1473, 1216, 1214, 1215, 1217, 1504, 1502, + 1503, 1505, 1618, 1616, 1617, 1619, 1127, 1125, 1126, 1128, 1271, 1269, + 1270, 1272, 1255, 1253, 1254, 1256, 1438, 1436, 1437, 1439, 1340, 1338, + 1339, 1341, 1376, 1374, 1375, 1377, 1385, 1383, 1384, 1386, 1417, 1415, + 1416, 1418, 1314, 1312, 1313, 1315, 1583, 1582, 1167, 1166, 1607, 1605, + 1606, 1608, 1809, 1808, 1805, 1804, 1807, 1806, 1813, 1812, 35536, 35536, + 35340, 35536, 12757, 12761, 12729, 12745, 12731, 12743, 12742, 12672, + 12735, 12744, 12732, 12667, 12760, 12765, 12739, 12752, 12754, 12751, + 12750, 12747, 12746, 12749, 12748, 12755, 12753, 12668, 12738, 12674, + 12756, 12759, 12762, 12666, 12675, 12676, 12677, 12678, 12679, 12680, + 12681, 12682, 12683, 12684, 12685, 12686, 12687, 12688, 12689, 12690, + 12691, 12692, 12693, 12694, 12695, 12696, 12697, 12698, 12699, 12700, + 12673, 12737, 12736, 12665, 12727, 12758, 12701, 12702, 12703, 12704, + 12705, 12706, 12707, 12708, 12709, 12710, 12711, 12712, 12713, 12714, + 12715, 12716, 12717, 12718, 12719, 12720, 12721, 12722, 12723, 12724, + 12725, 12726, 12671, 12767, 12734, 12764, 12670, 12733, 14247, 14240, + 14242, 14246, 14238, 14230, 14185, 14187, 14189, 14186, 14188, 14181, + 14183, 14182, 14184, 14239, 14231, 14233, 14235, 14232, 14234, 14206, + 14208, 14210, 14207, 14209, 14190, 14192, 14194, 14191, 14193, 14221, + 14223, 14225, 14222, 14224, 14196, 14198, 14200, 14197, 14199, 14201, + 14203, 14205, 14202, 14204, 14211, 14213, 14215, 14212, 14214, 14226, + 14228, 14227, 14216, 14218, 14220, 14217, 14219, 14229, 14195, 14237, + 14236, 14180, 14130, 14147, 14131, 14132, 14133, 14134, 14168, 14149, + 14138, 14143, 14142, 14141, 14145, 14139, 14140, 14144, 14166, 14136, + 14148, 14137, 14151, 14150, 14165, 14160, 14146, 14159, 14129, 14167, + 14135, 14174, 35536, 35536, 35536, 14175, 14176, 14154, 14155, 14162, + 14161, 35536, 35536, 14153, 14152, 14177, 14171, 14172, 14178, 35536, + 35536, 14157, 14179, 14170, 14169, 14173, 14158, 35536, 35536, 14163, + 14156, 14164, 35536, 35536, 35536, 12669, 12730, 12728, 12741, 12766, + 12740, 12763, 35536, 14244, 14241, 14245, 14243, 14250, 14248, 14249, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 15939, 15941, 15940, 24238, 26169, 35536, 35536, 19657, 19683, 19676, + 19709, 19667, 19658, 19687, 19653, 19665, 19695, 19698, 19692, 35536, + 19681, 19708, 19712, 19691, 19706, 19713, 19720, 19723, 19668, 19719, + 19666, 19669, 19652, 19675, 19678, 19701, 19702, 19660, 19717, 19682, + 19663, 19699, 19661, 19718, 19677, 19685, 35536, 19710, 19674, 19694, + 19659, 19670, 19684, 19655, 19689, 19664, 19696, 19697, 19654, 19680, + 19656, 19707, 19700, 19714, 19688, 19690, 35536, 19662, 19716, 35536, + 19673, 19672, 19686, 19722, 19715, 19725, 19693, 19671, 19703, 19711, + 19679, 19704, 19705, 19721, 19724, 35536, 35536, 19735, 19736, 19738, + 19737, 19726, 19727, 19734, 19728, 19729, 19739, 19730, 19731, 19732, + 19733, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 19541, 19540, 19542, 19529, 19530, + 19531, 19532, 19533, 19534, 19535, 19537, 19536, 19539, 19538, 19547, + 19544, 19545, 19543, 19546, 19646, 19647, 19549, 19548, 19550, 19649, + 19648, 19552, 19553, 19554, 19551, 19555, 19558, 19557, 19559, 19560, + 19561, 19650, 19562, 19563, 19556, 19566, 19567, 19565, 19564, 19568, + 19569, 19570, 19571, 19572, 19573, 19576, 19577, 19578, 19575, 19579, + 19574, 19580, 19581, 19582, 19583, 19584, 19585, 19586, 19587, 19588, + 19589, 19591, 19590, 19592, 19593, 19595, 19596, 19597, 19594, 19598, + 19599, 19600, 19601, 19603, 19602, 19604, 19605, 19651, 19606, 19607, + 19609, 19610, 19611, 19608, 19612, 19613, 19614, 19615, 19616, 19644, + 19624, 19625, 19626, 19627, 19628, 19629, 19630, 19631, 19632, 19633, + 19634, 19635, 19636, 19637, 19638, 19639, 19640, 19641, 19642, 19643, + 19617, 19618, 19619, 19620, 19621, 19622, 19623, 19645, 35536, 35536, + 35536, 35536, 35536, 112, 113, 159, 35536, 35536, 35536, 35536, 156, 151, + 146, 126, 121, 139, 134, 114, 129, 154, 149, 144, 124, 119, 140, 135, + 115, 130, 157, 152, 147, 127, 122, 142, 137, 117, 132, 158, 153, 148, + 128, 123, 143, 138, 118, 133, 155, 150, 145, 125, 120, 141, 136, 116, + 131, 35536, 35536, 35536, 111, 107, 109, 110, 108, 103, 104, 105, 106, + 13314, 13311, 13315, 13301, 13296, 13302, 13305, 13297, 13307, 13316, + 13299, 13309, 13303, 13312, 13306, 13308, 13318, 13300, 13310, 13304, + 13313, 13317, 13298, 13319, 13331, 13340, 13330, 13326, 13339, 13321, + 13327, 13343, 13347, 13348, 13329, 13332, 13338, 13337, 13345, 13346, + 13328, 13335, 13341, 13336, 13325, 13344, 13333, 13320, 13322, 13342, + 13334, 13323, 13324, 13566, 13567, 13765, 13761, 13802, 13767, 13497, + 13571, 13764, 13760, 13503, 13502, 13563, 13545, 13561, 13570, 13565, + 13351, 13350, 13804, 13763, 13805, 13568, 13759, 13541, 24060, 35536, + 26521, 26524, 26519, 26522, 26493, 26523, 26491, 26494, 26520, 26492, + 26525, 26490, 2569, 35536, 35536, 35536, 13758, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 25714, 25715, 25726, 25695, 25698, 25729, + 25707, 25706, 25727, 25734, 25693, 25720, 25699, 25712, 25713, 25722, + 25711, 25692, 25696, 25703, 25701, 25723, 25700, 25691, 25721, 25708, + 25709, 25694, 25697, 25719, 25733, 25704, 25728, 25690, 25716, 25735, + 25717, 25718, 25710, 25732, 25731, 25705, 25724, 25725, 25730, 25702, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 19979, 19981, 19977, 19978, 19986, 19985, 19988, 19996, 19998, 19975, + 19989, 19972, 19992, 19990, 19970, 19983, 19971, 19984, 19995, 19991, + 19973, 19993, 19994, 19974, 19976, 19980, 19982, 19987, 19997, 35536, + 35536, 35536, 6141, 6152, 6143, 6114, 6137, 6153, 6115, 6142, 6159, 6157, + 6117, 6158, 6144, 6132, 6127, 6128, 6126, 6112, 6135, 6125, 6160, 6122, + 6134, 6151, 6131, 6155, 6145, 6140, 6149, 6150, 6123, 6136, 6147, 6148, + 6129, 6130, 6124, 6156, 6113, 6133, 6138, 6154, 6118, 6119, 6120, 6121, + 6116, 6146, 6139, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 7689, 7687, 7685, 7684, + 7681, 7680, 7683, 7682, 7688, 7686, 7679, 7678, 7676, 7667, 7665, 7674, + 7672, 7663, 7669, 7670, 7677, 7675, 7666, 7664, 7673, 7671, 7662, 7668, + 35536, 35536, 35536, 35536, 24519, 24513, 24499, 24514, 24486, 24516, + 24518, 24515, 24510, 24506, 24498, 24494, 24495, 24496, 24488, 24520, + 24509, 24502, 24500, 24490, 24487, 24511, 24504, 24492, 24508, 24497, + 24493, 24491, 24512, 24507, 24505, 24489, 24524, 24522, 24523, 24521, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 24517, + 24503, 24501, 13161, 13177, 13185, 13179, 13160, 13170, 13164, 13163, + 13172, 13181, 13186, 13182, 13180, 13168, 13184, 13175, 13169, 13167, + 13171, 13183, 13173, 13174, 13176, 13165, 13162, 13178, 13166, 35536, + 35536, 35536, 35536, 35536, 24591, 24590, 24587, 24560, 24561, 24583, + 24558, 24584, 24559, 24563, 24592, 24585, 24566, 24567, 24574, 24568, + 24586, 24571, 24573, 24594, 24557, 24570, 24569, 24581, 24578, 24588, + 24589, 24562, 24593, 24572, 24575, 24576, 24577, 24580, 24565, 24582, + 24579, 24564, 7494, 7492, 7490, 7491, 7493, 35536, 35536, 35536, 35536, + 35536, 32287, 32290, 32294, 32298, 32291, 32295, 32313, 32309, 32296, + 32306, 32308, 32297, 32303, 32299, 32314, 32292, 32311, 32310, 32302, + 32288, 32312, 32301, 32289, 32300, 32305, 32293, 32307, 32315, 32316, + 32304, 35536, 32317, 24600, 24642, 24643, 24623, 24624, 24621, 24622, + 24620, 24635, 24612, 24613, 24617, 24618, 24607, 24610, 24611, 24616, + 24639, 24604, 24636, 24625, 24626, 24629, 24630, 24631, 24640, 24614, + 24615, 24627, 24628, 24638, 24634, 24641, 24632, 24633, 24637, 35536, + 35536, 35536, 35536, 24601, 24602, 24603, 24619, 24608, 24609, 24605, + 24606, 24644, 24599, 24596, 24597, 24595, 24598, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 9713, + 9712, 9708, 9709, 9710, 9711, 9719, 9718, 9714, 9715, 9716, 9717, 9736, + 9721, 9735, 9732, 9737, 9730, 9727, 9723, 9728, 9726, 9729, 9734, 9733, + 9703, 9731, 9702, 9722, 9698, 9725, 9699, 9724, 9706, 9704, 9705, 9700, + 9701, 9720, 9707, 9753, 9752, 9748, 9749, 9750, 9751, 9759, 9758, 9754, + 9755, 9756, 9757, 9776, 9761, 9775, 9772, 9777, 9770, 9767, 9763, 9768, + 9766, 9769, 9774, 9773, 9743, 9771, 9742, 9762, 9738, 9765, 9739, 9764, + 9746, 9744, 9745, 9740, 9741, 9760, 9747, 27116, 27122, 27133, 27130, + 27120, 27119, 27118, 27097, 27125, 27103, 27132, 27128, 27131, 27134, + 27121, 27129, 27108, 27127, 27124, 27102, 27107, 27109, 27106, 27101, + 27095, 27092, 27114, 27123, 27112, 27096, 27117, 27135, 27099, 27093, + 27105, 27136, 27113, 27110, 27111, 27094, 27090, 27115, 27091, 27100, + 27089, 27098, 27104, 27126, 25034, 25052, 25058, 25056, 25059, 25040, + 25037, 25057, 25042, 25041, 25038, 25036, 25054, 25053, 25044, 25039, + 25047, 25043, 25048, 25049, 25055, 25060, 25033, 25050, 25061, 25045, + 25062, 25035, 25051, 25046, 35536, 35536, 25069, 25071, 25068, 25067, + 25064, 25063, 25066, 25065, 25072, 25070, 35536, 35536, 35536, 35536, + 35536, 35536, 24961, 24962, 24963, 24964, 24989, 24982, 24968, 24965, + 24971, 24981, 24980, 24995, 24974, 24969, 24973, 24990, 24991, 24992, + 24975, 24976, 24993, 24970, 24986, 24985, 24979, 24967, 24978, 24966, + 24977, 24983, 24996, 24994, 24972, 24984, 24988, 24987, 35536, 35536, + 35536, 35536, 24997, 24998, 24999, 25000, 25025, 25018, 25004, 25001, + 25007, 25017, 25016, 25031, 25010, 25005, 25009, 25026, 25027, 25028, + 25011, 25012, 25029, 25006, 25022, 25021, 25015, 25003, 25014, 25002, + 25013, 25019, 25032, 25030, 25008, 25020, 25024, 25023, 35536, 35536, + 35536, 35536, 11818, 11809, 11798, 11797, 11800, 11789, 11799, 11796, + 11795, 11810, 11786, 11785, 11811, 11819, 11812, 11802, 11788, 11787, + 11813, 11792, 11791, 11790, 11820, 11814, 11815, 11794, 11793, 11804, + 11803, 11806, 11805, 11821, 11816, 11817, 11822, 11808, 11807, 11784, + 11783, 11801, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 6173, 6222, 6189, 6185, 6187, 6212, 6186, 6210, 6207, 6176, 6209, 6211, + 6190, 6201, 6197, 6192, 6220, 6184, 6175, 6193, 6196, 6198, 6223, 6214, + 6172, 6178, 6179, 6181, 6215, 6213, 6218, 6182, 6202, 6194, 6221, 6206, + 6217, 6183, 6177, 6200, 6188, 6219, 6204, 6216, 6205, 6203, 6191, 6180, + 6174, 6208, 6199, 6195, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 6224, 33492, 33461, 33462, 33472, 33471, + 33474, 33473, 33464, 33463, 33481, 33489, 35536, 33480, 33479, 33465, + 33466, 33482, 33490, 33468, 33467, 33483, 33470, 33469, 33493, 33484, + 33491, 33485, 35536, 33476, 33475, 33478, 33477, 33494, 33486, 33487, + 35536, 33495, 33488, 35536, 33527, 33496, 33497, 33507, 33506, 33509, + 33508, 33499, 33498, 33516, 33524, 35536, 33515, 33514, 33500, 33501, + 33517, 33525, 33503, 33502, 33518, 33505, 33504, 33528, 33519, 33526, + 33520, 35536, 33511, 33510, 33513, 33512, 33529, 33521, 33522, 35536, + 33530, 33523, 35536, 35536, 35536, 31948, 31949, 31962, 31922, 31951, + 31950, 31953, 31929, 31952, 31945, 31944, 31963, 31919, 31925, 31918, + 31924, 31932, 31931, 31966, 31920, 31955, 31947, 31946, 31923, 31930, + 31926, 31942, 31934, 31964, 31941, 31940, 31939, 31936, 31935, 31957, + 31956, 31967, 31965, 31959, 31928, 31958, 31927, 31968, 31921, 31961, + 31960, 31917, 31938, 31937, 31954, 31933, 31943, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 19508, + 19509, 19510, 19511, 19512, 19513, 19514, 19515, 19516, 19447, 19448, + 19449, 19450, 19451, 19460, 19452, 19453, 19454, 19455, 19456, 19457, + 19458, 19459, 19461, 19462, 19463, 19464, 19528, 19465, 19466, 19467, + 19468, 19469, 19470, 19471, 19472, 19473, 19474, 19475, 19476, 19477, + 19478, 19479, 19480, 19481, 19482, 19483, 19484, 19485, 19486, 19487, + 19488, 19489, 19490, 19491, 19492, 19493, 19494, 19495, 19496, 19497, + 19498, 19499, 19500, 19501, 19502, 19503, 19504, 19505, 19506, 19507, + 19188, 19524, 19517, 19189, 19518, 19519, 19520, 19521, 19190, 19525, + 19526, 19522, 19523, 19527, 19194, 19195, 19196, 19197, 19198, 19199, + 19200, 19201, 19191, 19192, 19193, 19205, 19206, 19207, 19202, 19203, + 19204, 19208, 19209, 19210, 19211, 19212, 19213, 19216, 19217, 19218, + 19219, 19220, 19221, 19222, 19223, 19224, 19225, 19226, 19227, 19228, + 19229, 19230, 19231, 19232, 19233, 19234, 19235, 19236, 19237, 19238, + 19239, 19240, 19241, 19242, 19243, 19244, 19245, 19246, 19247, 19248, + 19249, 19250, 19251, 19252, 19253, 19254, 19255, 19256, 19257, 19258, + 19259, 19260, 19261, 19262, 19263, 19264, 19265, 19214, 19215, 19266, + 19267, 19268, 19269, 19270, 19271, 19272, 19273, 19274, 19275, 19276, + 19277, 19278, 19279, 19280, 19281, 19282, 19283, 19284, 19285, 19286, + 19287, 19288, 19289, 19290, 19291, 19292, 19293, 19294, 19295, 19296, + 19297, 19298, 19330, 19331, 19332, 19333, 19334, 19335, 19336, 19337, + 19338, 19299, 19300, 19301, 19302, 19303, 19304, 19305, 19306, 19307, + 19308, 19309, 19310, 19311, 19312, 19313, 19314, 19315, 19316, 19317, + 19318, 19319, 19320, 19321, 19322, 19323, 19324, 19325, 19326, 19327, + 19328, 19329, 19345, 19346, 19347, 19348, 19349, 19350, 19351, 19352, + 19353, 19354, 19355, 19356, 19357, 19358, 19359, 19360, 19361, 19362, + 19363, 19364, 19339, 19340, 19341, 19342, 19343, 19344, 19365, 19366, + 19367, 19368, 19369, 19370, 19371, 19372, 19407, 19408, 19409, 19410, + 19411, 19412, 19413, 19414, 19415, 19416, 19373, 19374, 19375, 19376, + 19377, 19378, 19379, 19380, 19381, 19382, 19383, 19384, 19385, 19386, + 19387, 19388, 19389, 19390, 19391, 19392, 19398, 19399, 19400, 19401, + 19402, 19403, 19404, 19405, 19406, 19393, 19394, 19395, 19396, 19397, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 19428, + 19423, 19426, 19425, 19429, 19424, 19422, 19427, 19421, 19417, 19420, + 19419, 19418, 19435, 19433, 19434, 19430, 19431, 19432, 19436, 19438, + 19437, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 19439, 19440, 19441, 19442, 19443, 19444, 19445, 19446, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 22568, 22689, 22688, 22553, 22569, 22557, 35536, + 22587, 22589, 22588, 22583, 22582, 22580, 22581, 22642, 22575, 22599, + 22639, 22563, 22603, 22564, 22607, 22570, 22609, 22586, 22623, 22624, + 22622, 22566, 22620, 22625, 22626, 22667, 22668, 22631, 22567, 22576, + 22682, 22664, 22665, 22638, 22637, 22572, 22652, 22655, 22656, 22653, + 22651, 22679, 35536, 22574, 22494, 22541, 22388, 22472, 22501, 22385, + 22543, 22644, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 9126, 9127, 9128, 9129, 9130, 9120, 35536, 35536, 9121, 35536, + 9076, 9077, 9078, 9079, 9080, 9081, 9082, 9083, 9084, 9085, 9086, 9087, + 9088, 9089, 9090, 9091, 9092, 9093, 9094, 9095, 9096, 9097, 9098, 9099, + 9100, 9101, 9102, 9103, 9104, 9105, 9106, 9107, 9108, 9109, 9110, 9111, + 9112, 9113, 9114, 9115, 9116, 9117, 9118, 9119, 35536, 9124, 9125, 35536, + 35536, 35536, 9122, 35536, 35536, 9123, 15761, 15772, 15763, 15757, + 15769, 15774, 15764, 15770, 15755, 15768, 15771, 15758, 15776, 15773, + 15765, 15762, 15775, 15766, 15759, 15760, 15767, 15756, 35536, 15777, + 15752, 15748, 15751, 15749, 15747, 15753, 15754, 15750, 25342, 25353, + 25344, 25338, 25350, 25355, 25345, 25351, 25336, 25349, 25352, 25339, + 25357, 25335, 25354, 25346, 25343, 25356, 25347, 25340, 25341, 25348, + 25337, 25334, 25358, 25365, 25360, 25361, 25364, 25363, 25362, 25359, + 23506, 23521, 23511, 23532, 23523, 23517, 23513, 23529, 23534, 23524, + 23530, 23515, 23509, 23528, 23510, 23531, 23507, 23518, 23514, 23536, + 23512, 23533, 23525, 23522, 23535, 23526, 23519, 23520, 23508, 23527, + 23516, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 23541, + 23538, 23539, 23544, 23545, 23543, 23540, 23537, 23542, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 14807, 14823, 14815, 14814, + 14820, 14825, 14809, 14821, 14810, 14819, 14822, 14812, 14827, 14824, + 14816, 14808, 14826, 14817, 14813, 35536, 14818, 14811, 35536, 35536, + 35536, 35536, 35536, 14828, 14832, 14831, 14830, 14829, 25738, 25757, + 25753, 25740, 25741, 25749, 25750, 25742, 25748, 25751, 25754, 25756, + 25759, 25755, 25746, 25739, 25758, 25744, 25743, 25752, 25745, 25747, + 25764, 25763, 25760, 25765, 25761, 25762, 35536, 35536, 35536, 25766, + 20005, 20011, 20015, 20013, 20007, 20023, 20016, 20024, 20017, 20001, + 20018, 20009, 20019, 20021, 20004, 19999, 20022, 20014, 20020, 20003, + 20000, 20006, 20008, 20002, 20010, 20012, 35536, 35536, 35536, 35536, + 35536, 20025, 27274, 27275, 27276, 27277, 27278, 27279, 27280, 27281, + 27282, 27283, 27284, 27285, 27286, 27287, 27288, 27289, 27290, 27291, + 27292, 27267, 27268, 27269, 27270, 27271, 27272, 27273, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 22100, 22101, 22102, 22103, + 22099, 22098, 22074, 22075, 22096, 22095, 22078, 22079, 22080, 22081, + 22076, 22077, 22094, 22091, 22090, 22082, 22083, 22084, 22092, 22097, + 22085, 22086, 22087, 22088, 22089, 22093, 22104, 22105, 21996, 22017, + 22018, 22019, 22016, 22015, 22008, 22012, 22011, 22001, 22002, 22014, + 22010, 22006, 22005, 22003, 21997, 22004, 22007, 22013, 21998, 21999, + 22000, 22009, 35536, 35536, 35536, 35536, 21984, 21989, 22021, 22020, + 22070, 22062, 22056, 22033, 22027, 22050, 22044, 22022, 22039, 22068, + 22066, 22060, 22037, 22031, 22054, 22048, 35536, 35536, 22071, 22063, + 22057, 22034, 22028, 22051, 22045, 22024, 22041, 22073, 22065, 22059, + 22036, 22030, 22053, 22047, 22026, 22043, 22069, 22067, 22061, 22038, + 22032, 22055, 22049, 22023, 22040, 22072, 22064, 22058, 22035, 22029, + 22052, 22046, 22025, 22042, 21988, 21994, 21993, 21987, 21986, 21991, + 21990, 21985, 21995, 21992, 16822, 16844, 16846, 16842, 35536, 16843, + 16845, 35536, 35536, 35536, 35536, 35536, 16847, 16838, 16841, 16840, + 16788, 16786, 16810, 16809, 35536, 16808, 16807, 16816, 35536, 16796, + 16792, 16791, 16799, 16798, 16795, 16794, 16793, 16801, 16800, 16797, + 16812, 16811, 16806, 16805, 16818, 16820, 16819, 16817, 16814, 16802, + 16803, 16804, 16821, 16815, 16787, 16789, 16790, 16813, 35536, 35536, + 16836, 16837, 16839, 35536, 35536, 35536, 35536, 16848, 16785, 16784, + 16783, 16782, 16824, 16823, 16825, 16826, 16849, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 16830, 16835, 16828, 16827, 16834, 16832, + 16831, 16829, 16833, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 24709, 24705, 24710, 24715, 24706, 24713, 24699, 24707, 24711, 24703, + 24698, 24694, 24712, 24695, 24697, 24696, 24714, 24687, 24688, 24690, + 24693, 24691, 24692, 24702, 24704, 24689, 24708, 24701, 24700, 24717, + 24716, 24718, 24530, 24548, 24529, 24539, 24551, 24552, 24541, 24545, + 24543, 24536, 24540, 24532, 24547, 24531, 24553, 24542, 24544, 24525, + 24526, 24549, 24528, 24550, 24527, 24535, 24537, 24533, 24546, 24534, + 24538, 24556, 24555, 24554, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 20306, 20310, 20309, 20314, + 20313, 20311, 20335, 20338, 20354, 20318, 20317, 20316, 20315, 20336, + 20328, 20334, 20320, 20330, 20319, 20332, 20312, 20327, 20341, 20337, + 20324, 20308, 20307, 20340, 20339, 20325, 20322, 20331, 20321, 20333, + 20326, 20323, 20329, 20356, 20355, 35536, 35536, 35536, 35536, 20342, + 20346, 20345, 20344, 20343, 20353, 20351, 20349, 20348, 20347, 20352, + 20350, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 2587, 2588, 2594, 2590, 2593, 2589, 2591, 2592, 2630, 2631, 2620, 2621, + 2622, 2623, 2618, 2619, 2635, 2608, 2607, 2606, 2597, 2595, 2596, 2632, + 2634, 2617, 2615, 2627, 2626, 2616, 2638, 2633, 2625, 2624, 2602, 2601, + 2600, 2605, 2604, 2603, 2637, 2598, 2613, 2614, 2640, 2639, 2636, 2612, + 2629, 2610, 2628, 2609, 2611, 2599, 35536, 35536, 35536, 2641, 31830, + 28182, 17352, 17347, 17353, 17348, 15903, 15914, 15905, 15899, 15911, + 15916, 15906, 15912, 15897, 15910, 15913, 15900, 15918, 15915, 15907, + 15904, 15917, 15908, 15901, 15902, 15909, 15898, 35536, 35536, 15923, + 15920, 15921, 15926, 15922, 15919, 15924, 15925, 15872, 15886, 15877, + 15873, 15883, 15876, 15878, 15884, 15870, 15882, 15885, 15874, 15875, + 15887, 15879, 15888, 15880, 15881, 15871, 35536, 35536, 35536, 35536, + 35536, 15893, 15890, 15891, 15896, 15892, 15889, 15894, 15895, 25999, + 26013, 26004, 26000, 26010, 26003, 26005, 26011, 26009, 26012, 26001, + 26002, 26014, 26006, 26016, 26007, 26008, 26015, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 26024, 26025, 25997, 25998, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 26021, 26018, 26019, 26023, 26020, 26017, 26022, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 24719, 24761, 24762, + 24751, 24787, 24780, 24754, 24755, 24789, 24732, 24772, 24720, 24765, + 24734, 24774, 24722, 24766, 24733, 24773, 24721, 24750, 24786, 24740, + 24779, 24729, 24769, 24723, 24767, 24756, 24790, 24735, 24775, 24724, + 24745, 24748, 24736, 24725, 24763, 24743, 24782, 24741, 24781, 24744, + 24783, 24771, 24742, 24764, 24749, 24757, 24752, 24747, 24785, 24737, + 24776, 24753, 24788, 24758, 24791, 24738, 24777, 24726, 24730, 24727, + 24731, 24770, 24746, 24784, 24739, 24778, 24728, 24768, 24759, 24760, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 24378, 24381, 24404, 24379, 24393, + 24389, 24395, 24405, 24380, 24383, 24426, 24406, 24407, 24396, 24397, + 24408, 24427, 24428, 24409, 24410, 24382, 24423, 24398, 24399, 24384, + 24386, 24390, 24418, 24420, 24414, 24416, 24419, 24411, 24385, 24412, + 24421, 24391, 24392, 24400, 24387, 24401, 24394, 24422, 24425, 24415, + 24417, 24413, 24402, 24403, 24388, 24424, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 24429, + 24432, 24455, 24430, 24444, 24440, 24446, 24456, 24431, 24434, 24477, + 24457, 24458, 24447, 24448, 24459, 24478, 24479, 24460, 24461, 24433, + 24474, 24449, 24450, 24435, 24437, 24441, 24469, 24471, 24465, 24467, + 24470, 24462, 24436, 24463, 24472, 24442, 24443, 24451, 24438, 24452, + 24445, 24473, 24476, 24466, 24468, 24464, 24453, 24454, 24439, 24475, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 24482, 24481, 24485, + 24480, 24483, 24484, 14760, 14747, 14755, 14739, 14738, 14752, 14748, + 14751, 14736, 14749, 14733, 14732, 14741, 14740, 14759, 14746, 14745, + 14737, 14750, 14753, 14754, 14744, 14757, 14734, 14758, 14735, 14742, + 14743, 14756, 14767, 14769, 14771, 14768, 14770, 14762, 14761, 14766, + 14763, 14765, 14764, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 14778, 14780, 14777, 14776, 14773, 14772, 14775, 14774, 14781, + 14779, 35536, 35536, 35536, 35536, 35536, 35536, 12845, 12847, 12844, + 12843, 12840, 12839, 12842, 12841, 12848, 12846, 12831, 12832, 12833, + 12830, 12834, 12828, 12805, 12789, 12797, 12795, 12788, 12794, 12800, + 12802, 12796, 12792, 12790, 12803, 12804, 12801, 12799, 12786, 12791, + 12787, 12798, 12793, 12784, 12785, 35536, 35536, 35536, 12829, 12783, + 12781, 12780, 12782, 12836, 12835, 12827, 12811, 12819, 12817, 12810, + 12816, 12822, 12824, 12818, 12814, 12812, 12825, 12826, 12823, 12821, + 12808, 12813, 12809, 12820, 12815, 12806, 12807, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 12837, 12838, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 26578, 26576, 26575, 26572, 26571, + 26574, 26573, 26579, 26577, 26570, 26569, 26567, 26558, 26556, 26565, + 26563, 26554, 26560, 26561, 26568, 26566, 26557, 26555, 26564, 26562, + 26553, 26559, 26550, 26551, 26549, 26552, 35536, 33993, 34027, 34007, + 34006, 34012, 34011, 33989, 33988, 33987, 33998, 34019, 33992, 34023, + 34026, 34025, 34022, 34030, 34009, 34008, 34010, 33991, 34013, 34024, + 33994, 34018, 34029, 34014, 34015, 34002, 34000, 33999, 34001, 34003, + 33990, 34005, 34028, 34016, 34017, 33996, 33997, 34020, 33995, 35536, + 33985, 33984, 33986, 35536, 35536, 34004, 34021, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 1201, 1497, 1332, 2388, 1540, 1604, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 1065, 1654, 1652, 1650, 1909, + 1910, 1911, 1913, 1895, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 1083, 2389, 1066, 2395, 2396, + 2393, 24649, 24657, 24671, 24658, 24662, 24668, 24659, 24674, 24663, + 24669, 24667, 24670, 24661, 24676, 24672, 24651, 24652, 24664, 24650, + 24648, 24675, 24665, 24653, 24654, 24660, 24666, 24673, 24655, 24656, + 24683, 24681, 24678, 24686, 24685, 24682, 24680, 24679, 24684, 24647, + 24677, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 28242, + 28256, 28244, 28253, 28260, 28248, 28254, 28252, 28255, 28245, 28262, + 28258, 28249, 28243, 28261, 28250, 28247, 28251, 28259, 28257, 28246, + 28241, 28236, 28234, 28237, 28235, 28240, 28239, 28231, 28230, 28232, + 28238, 28233, 28263, 28266, 28265, 28264, 28269, 28270, 28267, 28271, + 28268, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 24796, 24808, 24806, 24811, 24800, 24805, 24804, + 24807, 24798, 24813, 24809, 24801, 24812, 24802, 24797, 24803, 24810, + 24799, 24795, 24794, 24793, 24792, 24817, 24814, 24815, 24816, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 6596, 6590, 6604, 6598, + 6593, 6601, 6607, 6589, 6599, 6602, 6600, 6603, 6594, 6609, 6605, 6591, + 6597, 6608, 6595, 6592, 6606, 6614, 6611, 6612, 6616, 6613, 6610, 6615, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 11845, 11856, 11847, 11841, 11853, 11858, 11848, 11854, 11839, 11852, + 11855, 11842, 11860, 11857, 11849, 11846, 11859, 11850, 11843, 11844, + 11851, 11840, 11861, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 4737, 4742, 4740, 4739, 4741, 4664, 4665, 4683, 4684, 4681, + 4682, 4676, 4677, 4678, 4679, 4710, 4666, 4657, 4667, 4703, 4702, 4699, + 4698, 4687, 4697, 4696, 4701, 4700, 4689, 4673, 4672, 4669, 4668, 4688, + 4675, 4674, 4671, 4670, 4690, 4705, 4704, 4695, 4694, 4707, 4709, 4708, + 4686, 4680, 4691, 4692, 4693, 4706, 4685, 4658, 4663, 4662, 4747, 4746, + 4756, 4757, 4750, 4751, 4752, 4753, 4754, 4755, 4758, 4748, 4743, 4749, + 4759, 4761, 4760, 4735, 4734, 4733, 4736, 4732, 35536, 35536, 35536, + 35536, 4728, 4726, 4723, 4714, 4716, 4721, 4719, 4711, 4717, 4727, 4725, + 4724, 4713, 4715, 4722, 4720, 4712, 4718, 4729, 4730, 4768, 4770, 4767, + 4766, 4763, 4762, 4765, 4764, 4771, 4769, 4738, 4660, 4661, 4744, 4745, + 4659, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 4731, 16132, 16134, 16136, 16092, 16093, 16102, 16103, 16100, 16101, + 16130, 16094, 16131, 16095, 16120, 16119, 16116, 16115, 16104, 16114, + 16113, 16118, 16117, 16106, 16097, 16096, 16089, 16087, 16088, 16123, + 16105, 16099, 16098, 16091, 16090, 16107, 16122, 16121, 16112, 16111, + 16127, 16129, 16124, 16126, 16128, 16108, 16109, 16110, 16125, 16142, + 16147, 16148, 16145, 16146, 16149, 16143, 16150, 16144, 16135, 16133, + 16153, 16154, 16151, 16137, 16138, 16140, 16139, 16141, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 16152, 35536, + 35536, 28294, 28295, 28284, 28285, 28286, 28287, 28280, 28281, 28291, + 28283, 28296, 28292, 28297, 28293, 28288, 28290, 28289, 28282, 28298, + 28277, 28299, 28301, 28300, 28278, 28279, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 28308, 28310, 28307, 28306, 28303, 28302, 28305, + 28304, 28311, 28309, 35536, 35536, 35536, 35536, 35536, 35536, 6276, + 6278, 6277, 6272, 6274, 6275, 6273, 6261, 6260, 6257, 6256, 6242, 6255, + 6254, 6259, 6258, 6244, 6247, 6246, 6239, 6238, 6243, 6249, 6248, 6241, + 6240, 6245, 6265, 6264, 6253, 6252, 6267, 6250, 6251, 6268, 6263, 6271, + 6269, 6266, 6280, 6288, 6289, 6284, 6285, 6286, 6282, 6290, 6283, 6291, + 6308, 6307, 6292, 6306, 35536, 6301, 6303, 6300, 6299, 6296, 6295, 6298, + 6297, 6304, 6302, 6279, 6294, 6293, 6305, 6262, 6281, 6287, 6270, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 20067, 20069, 20071, + 20068, 20070, 20059, 20058, 20055, 20054, 20053, 20052, 20057, 20056, + 20038, 20047, 20046, 20041, 20040, 20037, 20049, 20048, 20043, 20042, + 20039, 20061, 20060, 20051, 20050, 20064, 20045, 20063, 20066, 20065, + 20062, 20044, 20074, 20075, 20073, 20072, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 27052, 27055, 27059, 26998, 26999, + 27017, 27018, 27015, 27016, 27010, 27011, 27012, 27013, 27044, 27000, + 27045, 27001, 27037, 27036, 27033, 27032, 27021, 27031, 27030, 27035, + 27034, 27023, 27007, 27006, 27003, 27002, 27022, 27009, 27008, 27005, + 27004, 27024, 27039, 27038, 27029, 27028, 27041, 27043, 27042, 27020, + 27019, 27014, 27025, 27026, 27027, 27040, 27074, 27081, 27082, 27068, + 27069, 27077, 27078, 27079, 27080, 27083, 27075, 27064, 27076, 27058, + 27054, 27056, 27057, 27086, 26984, 26983, 27084, 27049, 27046, 27053, + 27061, 26995, 27060, 27067, 27050, 26991, 26993, 26990, 26989, 26986, + 26985, 26988, 26987, 26994, 26992, 26996, 27051, 26997, 27085, 27047, + 27048, 35536, 27996, 27994, 27993, 27990, 27989, 27992, 27991, 27997, + 27995, 28008, 28007, 28006, 28002, 28001, 28005, 28004, 28000, 28003, + 27998, 27999, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 17056, 17057, 17083, 17085, 17082, 17058, 17084, + 17059, 17073, 17072, 17048, 17046, 17047, 17066, 17071, 17070, 17055, + 17054, 35536, 17068, 17061, 17060, 17051, 17050, 17067, 17063, 17062, + 17053, 17049, 17052, 17069, 17075, 17074, 17045, 17043, 17044, 17077, + 17081, 17079, 17065, 17080, 17042, 17076, 17064, 17093, 17096, 17097, + 17100, 17098, 17094, 17099, 17095, 17090, 17089, 17088, 17086, 17040, + 17039, 17101, 17091, 17038, 17102, 17087, 17078, 17041, 17092, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 22981, 22983, 22984, 22982, 22972, 22971, 22970, 35536, 22969, + 35536, 22968, 22967, 22960, 22959, 35536, 22954, 22962, 22961, 22950, + 22948, 22949, 22953, 22964, 22963, 22952, 22951, 22955, 22974, 22973, + 22966, 35536, 22965, 22977, 22980, 22958, 22976, 22979, 22978, 22975, + 22957, 22956, 22985, 35536, 35536, 35536, 35536, 35536, 35536, 17117, + 17118, 17129, 17130, 17127, 17128, 17148, 17119, 17149, 17120, 17138, + 17137, 17108, 17106, 17107, 17131, 17136, 17135, 17116, 17115, 17114, + 17133, 17124, 17123, 17111, 17109, 17121, 17110, 17132, 17126, 17125, + 17113, 17112, 17134, 17140, 17139, 17105, 17103, 17104, 17145, 17147, + 17122, 17144, 17146, 17141, 17142, 17143, 17152, 17153, 17158, 17159, + 17156, 17157, 17160, 17154, 17161, 17155, 17150, 17151, 35536, 35536, + 35536, 35536, 35536, 17168, 17170, 17167, 17166, 17163, 17162, 17165, + 17164, 17171, 17169, 35536, 35536, 35536, 35536, 35536, 35536, 13243, + 13244, 13247, 13250, 35536, 13200, 13201, 13214, 13215, 13212, 13213, + 13195, 13197, 35536, 35536, 13238, 13202, 35536, 35536, 13237, 13203, + 13234, 13233, 13230, 13229, 13218, 13228, 13227, 13232, 13231, 13220, + 13209, 13208, 13205, 13204, 13219, 13211, 13210, 13207, 13206, 13221, + 35536, 13236, 13235, 13226, 13225, 13240, 13242, 13241, 35536, 13217, + 13216, 35536, 13199, 13222, 13223, 13224, 13239, 35536, 7169, 13245, + 13246, 13252, 13261, 13262, 13255, 13256, 13257, 13258, 35536, 35536, + 13264, 13253, 35536, 35536, 13263, 13254, 13249, 35536, 35536, 13265, + 35536, 35536, 35536, 35536, 35536, 35536, 13251, 35536, 35536, 35536, + 35536, 35536, 13248, 13194, 13193, 13196, 13198, 13259, 13260, 35536, + 35536, 7358, 7359, 7357, 7356, 7355, 7354, 7353, 35536, 35536, 35536, + 7364, 7361, 7362, 7360, 7363, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 32166, 32167, 32190, 32191, 32188, + 32189, 32183, 32184, 32185, 32186, 35536, 32212, 35536, 35536, 32168, + 35536, 32211, 32169, 32208, 32207, 32204, 32203, 32192, 32202, 32201, + 32206, 32205, 32194, 32180, 32179, 32171, 32170, 32193, 32182, 32181, + 32173, 32172, 32195, 32210, 32209, 32200, 32199, 32214, 32215, 32178, + 32176, 32187, 32196, 32197, 32198, 32213, 32175, 32177, 32174, 35536, + 32217, 32228, 32237, 32238, 32231, 32232, 32233, 32234, 32235, 32236, + 35536, 32240, 35536, 35536, 32229, 35536, 32239, 32230, 32161, 32222, + 35536, 32218, 32225, 32224, 32219, 32162, 32216, 32165, 32223, 32164, + 32163, 35536, 32220, 32221, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 32227, 32226, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 23904, 23905, 23918, 23919, 23916, 23917, 23900, + 23901, 23902, 23903, 23944, 23906, 23945, 23907, 23932, 23931, 23928, + 23927, 23893, 23892, 23926, 23925, 23930, 23929, 23895, 23894, 23913, + 23912, 23909, 23908, 23897, 23915, 23914, 23911, 23910, 23898, 23896, + 23938, 23937, 23924, 23923, 23936, 23935, 23943, 23940, 23939, 23934, + 23933, 23942, 23920, 23921, 23922, 23941, 23958, 23967, 23968, 23961, + 23962, 23963, 23964, 23965, 23966, 23969, 23959, 23970, 23960, 23953, + 23946, 23949, 23954, 23947, 23948, 23951, 23974, 23955, 23880, 23878, + 23973, 23891, 23971, 23887, 23889, 23886, 23885, 23882, 23881, 23884, + 23883, 23890, 23888, 23879, 23957, 35536, 23972, 23956, 23899, 23950, + 23952, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 31832, 31833, 31834, 31852, 31853, 31850, 31851, 31845, 31846, + 31847, 31848, 31878, 31835, 31879, 31836, 31870, 31869, 31866, 31865, + 31854, 31864, 31863, 31868, 31867, 31856, 31842, 31841, 31838, 31837, + 31855, 31844, 31843, 31840, 31839, 31857, 31872, 31871, 31862, 31861, + 31875, 31877, 31876, 31874, 31849, 31858, 31859, 31860, 31873, 31888, + 31897, 31898, 31891, 31892, 31893, 31894, 31895, 31896, 31899, 31886, + 31889, 31900, 31887, 31890, 31880, 31883, 31885, 31884, 31881, 31882, + 31911, 31831, 31912, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 31907, 31909, 31906, 31905, 31902, 31901, 31904, 31903, 31910, + 31908, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 27176, 27178, 27199, + 27200, 27197, 27198, 27192, 27193, 27194, 27195, 27225, 27179, 27226, + 27180, 27217, 27216, 27213, 27212, 27201, 27211, 27210, 27215, 27214, + 27203, 27186, 27185, 27189, 27188, 27202, 27187, 27182, 27191, 27190, + 27204, 27219, 27218, 27209, 27208, 27222, 27224, 27223, 27221, 27196, + 27205, 27206, 27207, 27220, 27254, 27261, 27262, 27259, 27260, 27257, + 27258, 35536, 35536, 27263, 27255, 27264, 27256, 27247, 27249, 27251, + 27250, 27248, 27246, 27266, 27265, 27245, 27244, 27227, 27228, 27229, + 27175, 27242, 27241, 27239, 27237, 27238, 27230, 27231, 27240, 27243, + 27235, 27236, 27234, 27233, 27232, 27181, 27183, 27184, 27177, 27252, + 27253, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 22335, 22336, 22354, 22355, 22352, + 22353, 22347, 22348, 22349, 22350, 22381, 22337, 22382, 22338, 22374, + 22373, 22370, 22369, 22358, 22368, 22367, 22372, 22371, 22360, 22344, + 22343, 22340, 22339, 22359, 22346, 22345, 22342, 22341, 22361, 22376, + 22375, 22366, 22365, 22378, 22380, 22379, 22357, 22351, 22362, 22363, + 22364, 22377, 22356, 22310, 22319, 22320, 22313, 22314, 22315, 22316, + 22317, 22318, 22321, 22311, 22322, 22312, 22306, 22309, 22308, 22305, + 22324, 22323, 22383, 22307, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 22331, 22333, 22330, 22329, 22326, + 22325, 22328, 22327, 22334, 22332, 35536, 35536, 35536, 35536, 35536, + 35536, 22864, 22859, 22704, 22865, 22863, 22861, 22860, 22721, 22722, + 22855, 22857, 22856, 22866, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 29705, 29707, 29722, 29723, 29720, 29721, 29747, + 29708, 29748, 29709, 29737, 29736, 29733, 29732, 29724, 29731, 29730, + 29735, 29734, 29726, 29717, 29716, 29711, 29710, 29725, 29719, 29718, + 29713, 29712, 29727, 29739, 29738, 29729, 29728, 29744, 29746, 29715, + 29743, 29745, 29740, 29741, 29742, 29714, 29750, 29752, 29753, 29758, + 29759, 29756, 29757, 29760, 29754, 29761, 29755, 29751, 29749, 29706, + 29704, 35536, 35536, 35536, 35536, 35536, 35536, 29768, 29770, 29767, + 29766, 29763, 29762, 29765, 29764, 29771, 29769, 35536, 35536, 35536, + 35536, 35536, 35536, 23473, 23475, 23472, 23471, 23468, 23467, 23470, + 23469, 23476, 23474, 23423, 23425, 23422, 23421, 23418, 23417, 23420, + 23419, 23426, 23424, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 191, 190, 178, 181, 175, 167, 193, 192, 183, 195, 189, 184, 174, + 196, 177, 197, 180, 194, 164, 171, 170, 187, 166, 186, 182, 188, 165, + 35536, 35536, 162, 163, 161, 203, 204, 210, 211, 208, 209, 212, 207, 213, + 205, 206, 200, 35536, 35536, 35536, 35536, 222, 224, 221, 220, 217, 216, + 219, 218, 225, 223, 215, 214, 198, 199, 201, 202, 185, 173, 172, 169, + 168, 179, 176, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 10145, 10146, 10161, + 10162, 10159, 10160, 10187, 10147, 10188, 10148, 10179, 10178, 10175, + 10174, 10163, 10173, 10172, 10177, 10176, 10165, 10156, 10155, 10150, + 10149, 10164, 10158, 10157, 10152, 10151, 10166, 10181, 10180, 10171, + 10170, 10184, 10186, 10154, 10183, 10185, 10167, 10168, 10169, 10182, + 10153, 10191, 10196, 10197, 10194, 10195, 10189, 10190, 10198, 10192, + 10199, 10193, 10202, 10204, 10203, 10201, 10200, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 33632, 33621, 33650, + 33640, 33642, 33643, 33649, 33639, 33625, 33634, 33622, 33652, 33648, + 33627, 33641, 33638, 33626, 33635, 33644, 33633, 33651, 33624, 33623, + 33646, 33647, 33630, 33629, 33628, 33631, 33636, 33637, 33645, 33664, + 33653, 33682, 33672, 33674, 33675, 33681, 33671, 33657, 33666, 33654, + 33684, 33680, 33659, 33673, 33670, 33658, 33667, 33676, 33665, 33683, + 33656, 33655, 33678, 33679, 33662, 33661, 33660, 33663, 33668, 33669, + 33677, 33691, 33693, 33690, 33689, 33686, 33685, 33688, 33687, 33694, + 33692, 33703, 33702, 33701, 33697, 33696, 33700, 33699, 33695, 33698, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 33704, 10061, 10062, 10069, 10070, 10067, 10068, 10096, + 35536, 35536, 10097, 35536, 35536, 10087, 10086, 10085, 10084, 10073, + 10083, 10082, 10091, 35536, 10075, 10057, 35536, 10064, 10063, 10074, + 10058, 10056, 10066, 10065, 10076, 10089, 10088, 10081, 10080, 10092, + 10060, 10059, 10093, 10072, 10094, 10077, 10078, 10079, 10090, 10071, + 10095, 10102, 10106, 10107, 10104, 10105, 10108, 35536, 10103, 10109, + 35536, 35536, 10101, 10099, 10098, 10110, 10115, 10112, 10116, 10111, + 10100, 10045, 10113, 10114, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 10052, 10054, 10051, 10050, 10047, 10046, 10049, + 10048, 10055, 10053, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 23595, 23596, 23611, 23612, 23609, 23610, 23592, + 23593, 35536, 35536, 23637, 23597, 23638, 23598, 23631, 23630, 23627, + 23626, 23615, 23625, 23624, 23629, 23628, 23617, 23606, 23605, 23600, + 23599, 23616, 23608, 23607, 23602, 23601, 23618, 23633, 23632, 23623, + 23622, 23635, 23636, 23604, 23614, 23594, 23619, 23620, 23621, 23634, + 23613, 23603, 23647, 23652, 23653, 23650, 23651, 23645, 23646, 35536, + 35536, 23654, 23648, 23655, 23649, 23641, 23643, 23642, 23640, 23639, + 23656, 23644, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35317, + 35338, 35335, 35334, 35337, 35333, 35332, 35330, 35331, 35336, 35329, + 35285, 35284, 35304, 35303, 35286, 35302, 35301, 35311, 35288, 35296, + 35295, 35278, 35277, 35287, 35298, 35297, 35282, 35281, 35289, 35306, + 35305, 35300, 35299, 35313, 35294, 35293, 35280, 35279, 35307, 35308, + 35309, 35316, 35314, 35312, 35315, 35290, 35291, 35292, 35310, 35283, + 35276, 35326, 35323, 35324, 35325, 35322, 35327, 35273, 35272, 35270, + 35269, 35271, 35275, 35268, 35321, 35319, 35318, 35320, 35274, 35267, + 35328, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 28400, + 28421, 28419, 28418, 28420, 28416, 28417, 28414, 28415, 28413, 28412, + 28422, 28367, 28366, 28386, 28385, 28368, 28384, 28383, 28388, 28387, + 28370, 28378, 28377, 28361, 28360, 28369, 28380, 28379, 28364, 28362, + 28371, 28390, 28389, 28382, 28381, 28396, 28376, 28375, 28363, 28391, + 28392, 28393, 28399, 28397, 28395, 28398, 28372, 28373, 28374, 28394, + 28365, 28405, 28407, 28344, 28343, 28341, 28342, 28352, 28353, 28348, + 28351, 28347, 28350, 28355, 28356, 28354, 28346, 28345, 28349, 28408, + 28406, 28423, 28409, 28404, 28403, 28402, 28401, 28359, 28358, 28357, + 28410, 28411, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 5719, 5720, 5717, 5718, 5715, 5716, + 5725, 5726, 5723, 5724, 5721, 5722, 5888, 5889, 5890, 5887, 25556, 25554, + 25563, 25564, 25560, 25568, 25567, 25549, 25562, 25561, 25553, 25566, + 25559, 25552, 25558, 25557, 25550, 25555, 25565, 25544, 25551, 25569, + 25570, 25545, 25571, 25547, 25548, 25546, 25540, 25537, 25541, 25539, + 25535, 25538, 25542, 25536, 25543, 25577, 25576, 25587, 25578, 25579, + 25588, 25584, 25583, 25585, 25586, 25580, 25534, 25581, 25582, 25573, + 25572, 25532, 25574, 25575, 25533, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 9787, 9788, 9877, 9878, 9879, 9880, 9887, 9886, 9888, 9892, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 27066, 27065, 27071, 27070, + 27072, 27073, 27062, 27063, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 29007, 29026, 29033, 29030, 29020, 29017, 29012, 29034, + 29002, 29019, 29029, 29009, 29006, 29015, 29032, 29010, 29028, 29016, + 29021, 29027, 29031, 29004, 29003, 29008, 29024, 29018, 29014, 29013, + 29022, 29005, 29023, 29025, 29011, 29035, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 29042, 29044, 29041, 29040, 29037, 29036, 29039, 29038, 29045, 29043, + 35536, 35536, 35536, 35536, 35536, 35536, 3761, 3762, 3775, 3776, 3773, + 3774, 3757, 3758, 3759, 35536, 3801, 3763, 3802, 3764, 3793, 3792, 3789, + 3788, 3777, 3787, 3786, 3791, 3790, 3779, 3770, 3769, 3766, 3765, 3778, + 3772, 3771, 3768, 3767, 3780, 3795, 3794, 3785, 3784, 3798, 3800, 3799, + 3797, 3760, 3781, 3782, 3783, 3796, 3829, 3834, 3835, 3832, 3833, 3826, + 3827, 3828, 35536, 3836, 3830, 3837, 3831, 3821, 3823, 3825, 3824, 3822, + 3839, 3838, 3850, 3851, 3852, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 3846, 3848, 3845, 3844, 3841, 3840, 3843, + 3842, 3849, 3847, 3820, 3818, 3815, 3806, 3808, 3813, 3811, 3803, 3809, + 3819, 3817, 3816, 3805, 3807, 3814, 3812, 3804, 3810, 3853, 35536, 35536, + 35536, 20431, 20432, 20377, 20376, 20386, 20371, 20375, 20374, 20388, + 20372, 20368, 20367, 20370, 20373, 20379, 20378, 20385, 20390, 20366, + 20365, 20369, 20392, 20382, 20383, 20384, 20393, 20391, 20389, 20380, + 20381, 20387, 20394, 35536, 35536, 20409, 20408, 20417, 20403, 20407, + 20406, 20419, 20404, 20400, 20399, 20402, 20405, 20411, 20410, 20416, + 20421, 20398, 20397, 20401, 20423, 20414, 20415, 35536, 20424, 20422, + 20420, 20412, 20413, 20418, 20425, 20426, 20428, 20430, 20427, 20429, + 20396, 20395, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 20443, 20444, 20453, 20454, 20451, + 20452, 20480, 35536, 20445, 20481, 35536, 20446, 20459, 20458, 20472, + 20471, 20460, 20470, 20469, 20437, 20436, 20462, 20439, 20438, 20448, + 20447, 20461, 20442, 20440, 20450, 20449, 20463, 20474, 20473, 20468, + 20467, 20476, 20479, 20477, 20456, 20478, 20464, 20465, 20466, 20475, + 20455, 20457, 20435, 20441, 20490, 20495, 20496, 20493, 20494, 20489, + 35536, 35536, 35536, 20497, 35536, 20491, 20498, 35536, 20492, 20488, + 20487, 20486, 20484, 20485, 20499, 20483, 20482, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 20506, 20508, 20505, 20504, 20501, + 20500, 20503, 20502, 20509, 20507, 35536, 35536, 35536, 35536, 35536, + 35536, 13918, 13919, 13932, 13933, 13930, 13931, 35536, 13949, 13920, + 35536, 13948, 13921, 13955, 13954, 13937, 13936, 13951, 13945, 13944, + 13929, 13928, 13935, 13941, 13940, 13925, 13924, 13917, 13939, 13938, + 13927, 13926, 13934, 13943, 13942, 13923, 13922, 13916, 13947, 13946, + 13950, 13952, 13953, 13958, 13963, 13964, 13961, 13962, 35536, 13966, + 13959, 35536, 13965, 13960, 13957, 13956, 13967, 13978, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 13974, 13976, 13973, 13972, 13969, + 13968, 13971, 13970, 13977, 13975, 35536, 35536, 35536, 35536, 35536, + 35536, 32001, 31999, 32006, 32004, 31969, 31970, 31997, 31998, 31987, + 31988, 32003, 31983, 31986, 31971, 31974, 31975, 31984, 31985, 31972, + 31973, 31976, 31989, 31990, 31993, 31994, 31979, 31995, 31996, 31991, + 31992, 31978, 32009, 31980, 32002, 32007, 31977, 32005, 32000, 32008, + 31981, 31982, 32010, 32011, 32012, 35536, 35536, 35536, 35536, 32019, + 32021, 32018, 32017, 32014, 32013, 32016, 32015, 32022, 32020, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 20129, 20127, 20121, 20132, 20124, + 20131, 20135, 20126, 20123, 20125, 20128, 20122, 20137, 20133, 20130, + 20136, 20134, 20138, 20144, 20141, 20143, 20140, 20142, 20139, 20120, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 16667, 16671, 16669, + 16670, 16608, 16609, 16628, 16629, 16622, 16623, 16624, 16625, 16626, + 16627, 16653, 16610, 16654, 35536, 16644, 16643, 16642, 16641, 16630, + 16640, 16639, 16613, 16612, 16632, 16619, 16618, 16615, 16614, 16631, + 16621, 16620, 16617, 16616, 16633, 16646, 16645, 16638, 16637, 16649, + 16652, 16650, 16648, 16651, 16634, 16635, 16636, 16647, 16611, 16673, + 16672, 16680, 16681, 16678, 16679, 16675, 35536, 35536, 35536, 16676, + 16674, 16677, 16666, 16694, 16683, 16682, 16661, 16664, 16660, 16662, + 16658, 16657, 16665, 16656, 16659, 16663, 16655, 16690, 16692, 16689, + 16688, 16685, 16684, 16687, 16686, 16693, 16691, 16668, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 19775, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 29828, + 29824, 29818, 29827, 29820, 29829, 29833, 29835, 29830, 29825, 29826, + 29831, 29819, 29836, 29834, 29821, 29832, 29822, 29823, 29837, 29838, + 29902, 29885, 29883, 29892, 29891, 29887, 29893, 29889, 29888, 29895, + 29896, 29897, 29894, 29886, 29899, 29817, 29804, 29875, 29882, 30172, + 30173, 29802, 29777, 29903, 30171, 29839, 29904, 29890, 29898, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 29880, 7938, 7946, 7944, 7940, 7945, 7941, 7939, 7942, + 7943, 8007, 7947, 7956, 7955, 7949, 7948, 7960, 7950, 7951, 7959, 7953, + 7954, 7961, 7962, 7967, 7964, 7963, 7965, 7966, 7969, 7971, 7973, 7972, + 7974, 7980, 7977, 7978, 7982, 7975, 7976, 7981, 7979, 7984, 7983, 7985, + 7987, 7988, 7992, 7991, 7989, 7990, 7993, 8006, 7994, 7995, 7996, 8005, + 7997, 8001, 8002, 8000, 7998, 7999, 8004, 8003, 8008, 8009, 8020, 8011, + 8015, 8016, 8017, 8018, 8019, 8021, 8024, 8023, 8022, 8025, 8027, 8028, + 8029, 8030, 8031, 8032, 8033, 8034, 8035, 8036, 8037, 8038, 8039, 8040, + 8041, 8042, 8043, 8044, 8059, 8045, 8046, 8056, 8050, 8047, 8048, 8049, + 8057, 8054, 8058, 8055, 8051, 8053, 8066, 8062, 8063, 8064, 8067, 8078, + 8068, 8071, 8072, 8074, 8075, 8076, 8079, 8082, 8080, 8081, 8083, 8084, + 8086, 8087, 8116, 8123, 8117, 8118, 8119, 8120, 8121, 8122, 8124, 8126, + 8125, 8127, 8130, 8131, 8134, 8128, 8129, 8135, 8180, 8179, 8181, 8136, + 8139, 8140, 8141, 8137, 8138, 8142, 8145, 8143, 8146, 8148, 8157, 8158, + 8159, 8160, 8178, 8161, 8162, 8175, 8176, 8174, 8163, 8164, 8165, 8166, + 8167, 8168, 8169, 8172, 8173, 8182, 8272, 8183, 8184, 8186, 8185, 8192, + 8187, 8189, 8191, 8195, 8194, 8196, 8197, 8204, 8198, 8199, 8203, 8207, + 8208, 8205, 8206, 8214, 8211, 8215, 8216, 8217, 8218, 8219, 8221, 8222, + 8224, 8223, 8226, 8225, 8228, 8227, 8229, 8230, 8232, 8233, 8237, 8239, + 8243, 8244, 8257, 8249, 8250, 8245, 8246, 8247, 8251, 8255, 8252, 8253, + 8254, 8258, 8259, 8261, 8262, 8263, 8264, 8265, 8266, 8276, 8267, 8268, + 8271, 8270, 8269, 8273, 8274, 8275, 8277, 8278, 8281, 8282, 8283, 8284, + 8285, 8287, 8286, 8303, 8294, 8295, 8288, 8289, 8291, 8292, 8290, 8293, + 8302, 8296, 8301, 8299, 8298, 8300, 8305, 8324, 8306, 8307, 8308, 8311, + 8310, 8312, 8313, 8315, 8316, 8317, 8325, 8318, 8319, 8320, 8323, 8322, + 8321, 8326, 8327, 8329, 8330, 8331, 8332, 8334, 8338, 8335, 8339, 8337, + 8336, 8340, 8341, 8342, 8343, 8347, 8346, 8344, 8345, 8348, 8349, 8351, + 8370, 8372, 8352, 8354, 8353, 8355, 8356, 8359, 8360, 8358, 8357, 8361, + 8362, 8363, 8364, 8367, 8365, 8366, 8368, 8369, 8373, 8374, 8371, 8375, + 8376, 8377, 8378, 8380, 8383, 8382, 8384, 8385, 8387, 8388, 8389, 8393, + 8392, 8390, 8391, 8394, 8398, 8397, 8396, 8399, 8400, 8402, 8403, 8407, + 8404, 8405, 8410, 8408, 8411, 8412, 8414, 8413, 8415, 8416, 8438, 8437, + 8440, 8441, 8422, 8423, 8420, 8421, 8419, 8417, 8425, 8424, 8426, 8428, + 8434, 8435, 8432, 8433, 8442, 8443, 8444, 8462, 8447, 8448, 8449, 8445, + 8446, 8450, 8451, 8452, 8453, 8454, 8456, 8457, 8458, 8459, 8460, 8485, + 8463, 8466, 8464, 8465, 8471, 8472, 8469, 8470, 8467, 8468, 8473, 8474, + 8482, 8475, 8476, 8483, 8480, 8481, 8484, 8477, 8478, 8479, 8486, 8487, + 8488, 8489, 8490, 8491, 8492, 8494, 8495, 8493, 8496, 8497, 8538, 8539, + 8500, 8501, 8498, 8499, 8504, 8505, 8503, 8509, 8506, 8508, 8507, 8513, + 8514, 8512, 8510, 8511, 8515, 8516, 8517, 8518, 8519, 8520, 8521, 8540, + 8526, 8522, 8523, 8524, 8525, 8527, 8529, 8528, 8530, 8531, 8533, 8532, + 8534, 8536, 8535, 8541, 8542, 8545, 8546, 8543, 8544, 8620, 8615, 8616, + 8617, 8618, 8619, 8621, 8624, 8622, 8623, 8625, 8667, 8626, 8656, 8657, + 8633, 8635, 8652, 8636, 8658, 8640, 8638, 8639, 8641, 8642, 8643, 8644, + 8653, 8654, 8647, 8648, 8650, 8659, 8627, 8628, 8632, 8630, 8668, 8660, + 8662, 8661, 8663, 8669, 8670, 8664, 8665, 8666, 8671, 8672, 8673, 8676, + 8677, 8678, 8674, 8675, 8679, 8680, 8682, 8684, 8685, 8703, 8701, 8702, + 8705, 8704, 8686, 8693, 8691, 8692, 8687, 8688, 8694, 8695, 8696, 8697, + 8698, 8700, 8706, 8715, 8707, 8709, 8710, 8708, 8711, 8713, 8712, 8714, + 8717, 8719, 8718, 8720, 8721, 8754, 8756, 8722, 8724, 8723, 8726, 8729, + 8727, 8728, 8732, 8736, 8739, 8738, 8741, 8744, 8742, 8743, 8747, 8749, + 8755, 8757, 8758, 8762, 8769, 8767, 8765, 8766, 8768, 8771, 8770, 8763, + 8764, 8772, 8775, 8781, 8776, 8779, 8774, 8773, 8782, 8780, 8777, 8778, + 8783, 8784, 8785, 8786, 8787, 8788, 8789, 8791, 8794, 8795, 8798, 8799, + 8800, 8796, 8797, 8792, 8793, 8801, 8802, 8803, 8804, 8805, 8806, 8808, + 8809, 8810, 8811, 8812, 8816, 8813, 8837, 8830, 8831, 8836, 8819, 8818, + 8832, 8835, 8833, 8822, 8821, 8824, 8826, 8827, 8828, 8829, 8825, 8838, + 8814, 8839, 8840, 8841, 8842, 8843, 8844, 8852, 8850, 8848, 8851, 8847, + 8849, 8845, 8846, 8853, 8855, 8856, 8857, 8864, 8859, 8860, 8868, 8869, + 8865, 8867, 8866, 8870, 8872, 8871, 8873, 8884, 8875, 8874, 8883, 8881, + 8876, 8877, 8878, 8880, 8879, 8882, 8888, 8885, 8887, 8886, 8889, 8890, + 8891, 8892, 8895, 8896, 8898, 8899, 8900, 8901, 8903, 8902, 8904, 8911, + 8905, 8906, 8912, 8907, 8908, 8909, 8910, 8913, 8917, 8914, 8915, 8916, + 8918, 8919, 8920, 8921, 8927, 8925, 8923, 8924, 8922, 8926, 8928, 8930, + 8947, 8948, 8931, 8936, 8938, 8932, 8935, 8933, 8934, 8939, 8945, 8946, + 8940, 8943, 8944, 8949, 8955, 8954, 8950, 8952, 8951, 9036, 9037, 8956, + 8957, 8962, 8963, 8960, 8961, 8964, 8958, 8959, 8965, 8968, 8969, 8971, + 8972, 8973, 8977, 8974, 8975, 8976, 8966, 8967, 8978, 8980, 8979, 8981, + 8983, 8984, 8985, 8991, 8990, 8986, 8987, 8988, 9023, 8992, 8993, 8994, + 8995, 8996, 9015, 8998, 8999, 9001, 9000, 9002, 9003, 9019, 9004, 9006, + 9005, 9018, 9008, 9016, 9020, 9011, 9010, 9017, 9012, 9014, 9013, 9021, + 9022, 9024, 9028, 9026, 9027, 9025, 9031, 9030, 9029, 9035, 9032, 9033, + 9034, 9038, 9040, 9039, 9043, 9041, 9058, 9044, 9047, 9049, 9045, 9046, + 9050, 9048, 9051, 9053, 9055, 9056, 9057, 8461, 7957, 7968, 7986, 8052, + 8061, 8077, 8085, 8177, 8170, 8188, 8190, 8280, 8304, 8350, 8379, 8381, + 8395, 8401, 8436, 8409, 8439, 8418, 8427, 8431, 8502, 8631, 8634, 8649, + 8681, 8699, 8716, 8725, 8753, 8751, 8730, 8761, 8790, 8807, 8817, 8937, + 8970, 8953, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 7922, 7917, 7854, 7840, 7901, 7897, 7829, + 7874, 7921, 7862, 7846, 7907, 7896, 7828, 7873, 7860, 7844, 7903, 7893, + 7823, 7870, 7883, 7927, 7919, 7856, 7842, 7905, 7895, 7825, 7872, 7884, + 7928, 7920, 7857, 7843, 7929, 7911, 7912, 7858, 7834, 7900, 7892, 7822, + 7869, 7887, 7930, 7913, 7914, 7859, 7835, 7898, 7899, 7882, 7925, 7908, + 7909, 7849, 7839, 7915, 7916, 7850, 7853, 7851, 7852, 7906, 7891, 7889, + 7890, 7826, 7827, 7865, 7867, 7868, 7866, 7923, 7918, 7855, 7841, 7902, + 7881, 7924, 7910, 7847, 7848, 7837, 7838, 7864, 7863, 7877, 7926, 7886, + 7932, 7836, 7885, 7931, 7878, 7879, 7875, 7876, 7880, 7888, 7830, 7833, + 7832, 7831, 7861, 7845, 7904, 7894, 7824, 7871, 35536, 7937, 7936, 7935, + 7933, 7934, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 7958, 7952, 7970, 8010, 8012, 8013, 8014, 8026, + 8065, 8060, 8070, 8069, 8073, 8090, 8088, 8089, 8091, 8092, 8110, 8096, + 8093, 8094, 8095, 8112, 8113, 8111, 8100, 8099, 8097, 8098, 8103, 8101, + 8102, 8104, 8105, 8106, 8107, 8114, 8115, 8109, 8108, 8133, 8132, 8144, + 8147, 8152, 8156, 8149, 8153, 8154, 8150, 8151, 8155, 8171, 8193, 8200, + 8201, 8202, 8209, 8210, 8213, 8212, 8220, 8231, 8234, 8235, 8236, 8238, + 8240, 8241, 8242, 8248, 8256, 8260, 8279, 8297, 8309, 8314, 8328, 8333, + 8386, 8406, 8429, 8430, 8537, 8557, 8547, 8548, 8556, 8552, 8553, 8554, + 8551, 8550, 8549, 8555, 8559, 8558, 8565, 8566, 8560, 8561, 8562, 8567, + 8563, 8564, 8568, 8569, 8570, 8571, 8572, 8573, 8580, 8574, 8579, 8578, + 8576, 8575, 8577, 8581, 8582, 8587, 8588, 8583, 8584, 8585, 8586, 8614, + 8610, 8589, 8597, 8598, 8596, 8595, 8599, 8590, 8591, 8593, 8594, 8592, + 8611, 8600, 8607, 8609, 8604, 8605, 8608, 8603, 8606, 8602, 8601, 8612, + 8613, 8629, 8655, 8637, 8645, 8646, 8651, 8683, 8690, 8689, 8750, 8731, + 8733, 8752, 8734, 8735, 8737, 8740, 8745, 8746, 8748, 8815, 8834, 8820, + 8823, 8854, 8858, 8861, 8862, 8863, 8894, 8893, 8897, 8929, 8941, 8942, + 8982, 8989, 8997, 9009, 9007, 9042, 9052, 9054, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 9131, + 9132, 9133, 9134, 9135, 9136, 9137, 9138, 9141, 9142, 9139, 9140, 9143, + 9144, 9145, 9146, 9147, 9148, 9149, 9150, 9151, 9152, 9153, 9154, 9155, + 9156, 9157, 9158, 9159, 9160, 9161, 9162, 9163, 9164, 9165, 9166, 9167, + 9168, 9169, 9170, 9171, 9172, 9173, 9174, 9175, 9176, 9177, 9197, 9198, + 9199, 9200, 9201, 9202, 9203, 9204, 9205, 9180, 9181, 9182, 9183, 9184, + 9178, 9179, 9185, 9186, 9187, 9206, 9207, 9208, 9209, 9210, 9211, 9212, + 9213, 9214, 9215, 9188, 9189, 9190, 9191, 9192, 9193, 9194, 9195, 9196, + 9216, 9217, 9218, 9219, 9220, 9221, 9222, 9223, 9224, 9225, 9226, 9227, + 9228, 9229, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 10667, 10668, 10669, 10670, 10665, + 10666, 10662, 10663, 10664, 10671, 10672, 10673, 10678, 10679, 10680, + 10681, 10674, 10675, 10682, 10683, 10676, 10677, 10684, 10685, 10712, + 10713, 10714, 10715, 10716, 10717, 10718, 10719, 10720, 10721, 10702, + 10703, 10700, 10701, 10704, 10705, 10706, 10707, 10708, 10709, 10710, + 10686, 10687, 10694, 10688, 10689, 10690, 10691, 10695, 10692, 10693, + 10696, 10697, 10698, 10699, 10722, 10723, 10724, 10725, 10726, 10727, + 10728, 10729, 10730, 10731, 10732, 10733, 10734, 10735, 10736, 10737, + 10738, 10739, 10740, 10741, 10711, 10781, 10782, 10783, 10784, 10779, + 10780, 10785, 10786, 10787, 10788, 10793, 10789, 10790, 10791, 10792, + 10794, 10795, 10796, 10797, 10798, 10799, 10800, 10801, 10802, 10803, + 10804, 10805, 10806, 10807, 10808, 10809, 10810, 10811, 10812, 10813, + 10814, 10815, 10816, 10819, 10820, 10821, 10822, 10823, 10824, 10825, + 10817, 10818, 10826, 10899, 10900, 10901, 10902, 10903, 10904, 10905, + 10906, 10907, 10908, 10890, 10891, 10892, 10893, 10894, 10895, 10896, + 10888, 10889, 10897, 10898, 10831, 10827, 10828, 10832, 10833, 10829, + 10830, 10834, 10835, 10836, 10837, 10838, 10843, 10844, 10845, 10846, + 10847, 10848, 10839, 10840, 10849, 10841, 10842, 10850, 10851, 10852, + 10853, 10854, 10855, 10856, 10857, 10858, 10859, 10860, 10865, 10861, + 10862, 10866, 10863, 10864, 10867, 10868, 10869, 10870, 10871, 10881, + 10882, 10883, 10884, 10885, 10886, 10887, 10872, 10873, 10874, 10875, + 10876, 10877, 10878, 10879, 10880, 10913, 10914, 10915, 10916, 10917, + 10918, 10919, 10909, 10910, 10911, 10912, 10945, 10946, 10947, 10948, + 10949, 10950, 10941, 10942, 10943, 10944, 10951, 10952, 10920, 10921, + 10924, 10925, 10926, 10927, 10928, 10929, 10930, 10922, 10923, 10931, + 10934, 10935, 10936, 10937, 10932, 10933, 10938, 10939, 10940, 10956, + 10957, 10958, 10959, 10960, 10961, 10962, 10963, 10964, 10965, 10968, + 10969, 10970, 10966, 10967, 10971, 10972, 10973, 10974, 10975, 10976, + 11012, 11010, 11011, 11013, 11014, 11015, 11016, 11017, 11018, 11019, + 11020, 10983, 10977, 10978, 10984, 10985, 10986, 10987, 10988, 10979, + 10980, 10981, 10982, 10989, 10996, 10997, 10998, 10999, 11000, 10990, + 10991, 10992, 10993, 10994, 10995, 11001, 11002, 11007, 11003, 11004, + 11005, 11006, 11008, 11009, 11027, 11028, 11029, 11030, 11031, 11025, + 11026, 11022, 11023, 11024, 11032, 11033, 11036, 11034, 11035, 11037, + 11038, 11039, 11040, 11041, 11042, 11043, 11044, 11069, 11070, 11073, + 11074, 11075, 11076, 11077, 11071, 11072, 11078, 11079, 11080, 11049, + 11050, 11051, 11052, 11053, 11054, 11045, 11046, 11047, 11048, 11055, + 11056, 11061, 11062, 11063, 11057, 11058, 11064, 11059, 11060, 11065, + 11066, 11067, 11068, 11081, 11082, 11083, 11084, 11085, 11088, 11089, + 11090, 11091, 11092, 11086, 11087, 11093, 11094, 11102, 11103, 11104, + 11105, 11098, 11099, 11106, 11107, 11108, 11100, 11101, 11109, 11110, + 11111, 11112, 11113, 11114, 11115, 11116, 11757, 11758, 11759, 11760, + 11761, 11762, 11763, 11764, 11128, 11124, 11125, 11129, 11130, 11131, + 11126, 11127, 11132, 11133, 11135, 11136, 11137, 11140, 11138, 11139, + 11141, 11142, 11143, 11144, 11145, 11146, 11156, 11157, 11164, 11147, + 11148, 11149, 11150, 11151, 11152, 11153, 11154, 11155, 11165, 11166, + 11158, 11159, 11160, 11161, 11162, 11163, 11167, 11168, 11175, 11176, + 11169, 11170, 11177, 11171, 11172, 11178, 11179, 11180, 11173, 11174, + 11181, 11187, 11185, 11186, 11188, 11182, 11183, 11184, 11189, 11190, + 11191, 11192, 11193, 11194, 11195, 11196, 11197, 11198, 11199, 11200, + 11257, 11258, 11259, 11260, 11261, 11262, 11263, 11264, 11265, 11220, + 11221, 11222, 11223, 11224, 11225, 11226, 11227, 11217, 11218, 11219, + 11228, 11245, 11246, 11247, 11248, 11249, 11243, 11244, 11250, 11251, + 11252, 11253, 11237, 11238, 11239, 11229, 11230, 11231, 11232, 11233, + 11234, 11240, 11235, 11236, 11241, 11242, 11254, 11255, 11256, 11268, + 11269, 11270, 11271, 11266, 11267, 11272, 11273, 11274, 11275, 11278, + 11279, 11280, 11281, 11282, 11283, 11284, 11276, 11277, 11285, 11286, + 11287, 11305, 11306, 11307, 11308, 11309, 11310, 11311, 11312, 11313, + 11288, 11289, 11290, 11291, 11294, 11295, 11296, 11297, 11298, 11299, + 11292, 11293, 11300, 11303, 11304, 11301, 11302, 11321, 11322, 11325, + 11326, 11327, 11323, 11324, 11314, 11315, 11316, 11317, 11318, 11319, + 11320, 11328, 11329, 11330, 11331, 11332, 11333, 11334, 11337, 11338, + 11339, 11340, 11341, 11342, 11343, 11344, 11335, 11336, 11345, 11346, + 11353, 11354, 11355, 11347, 11348, 11349, 11350, 11356, 11357, 11358, + 11351, 11352, 11364, 11365, 11368, 11369, 11366, 11367, 11370, 11371, + 11359, 11360, 11361, 11362, 11363, 11372, 11373, 11374, 11379, 11380, + 11381, 11382, 11383, 11384, 11385, 11386, 11387, 11388, 11375, 11376, + 11377, 11378, 11390, 11391, 11394, 11392, 11393, 11395, 11396, 11397, + 11398, 11399, 11400, 11401, 11402, 11765, 11766, 11767, 11768, 11769, + 11770, 11771, 11408, 11406, 11407, 11403, 11404, 11405, 11409, 11410, + 11411, 11412, 11413, 11414, 11415, 11416, 11419, 11420, 11421, 11422, + 11423, 11417, 11418, 11424, 11425, 11426, 11427, 11428, 11429, 11430, + 11431, 11432, 11433, 11434, 11435, 11436, 11441, 11437, 11438, 11442, + 11443, 11444, 11439, 11440, 11445, 11446, 11447, 11453, 11454, 11455, + 11456, 11448, 11449, 11450, 11457, 11458, 11451, 11452, 11459, 11460, + 11464, 11465, 11466, 11467, 11468, 11469, 11461, 11462, 11463, 11470, + 11471, 11472, 11475, 11476, 11477, 11478, 11479, 11473, 11474, 11480, + 11481, 11482, 11483, 11484, 11485, 11486, 11487, 11488, 11489, 11490, + 11499, 11500, 11491, 11492, 11501, 11502, 11503, 11493, 11494, 11495, + 11496, 11497, 11498, 11508, 11504, 11505, 11509, 11510, 11511, 11512, + 11506, 11507, 11513, 11514, 11515, 11525, 11526, 11527, 11528, 11529, + 11530, 11531, 11532, 11533, 11534, 11520, 11521, 11516, 11517, 11518, + 11519, 11522, 11523, 11524, 11539, 11540, 11541, 11542, 11543, 11536, + 11537, 11538, 11544, 11545, 11546, 11573, 11574, 11575, 11576, 11577, + 11578, 11579, 11580, 11581, 11582, 11551, 11552, 11553, 11547, 11548, + 11554, 11555, 11556, 11557, 11558, 11549, 11550, 11561, 11562, 11559, + 11560, 11563, 11564, 11565, 11566, 11567, 11568, 11569, 11570, 11571, + 11572, 11586, 11587, 11588, 11589, 11590, 11591, 11592, 11593, 11594, + 11595, 11596, 11597, 11598, 11599, 11600, 11601, 11583, 11584, 11585, + 11602, 11603, 11612, 11604, 11605, 11606, 11607, 11609, 11610, 11611, + 11613, 11614, 11615, 11616, 11617, 11618, 11619, 11620, 11621, 11622, + 11623, 11624, 11625, 11626, 11627, 11628, 11629, 11630, 11631, 11632, + 11639, 11640, 11633, 11634, 11641, 11642, 11643, 11644, 11635, 11636, + 11637, 11638, 11645, 11646, 11647, 11648, 11653, 11649, 11650, 11654, + 11655, 11656, 11651, 11652, 11657, 11658, 11659, 11660, 11666, 11667, + 11662, 11663, 11668, 11669, 11670, 11671, 11672, 11664, 11665, 11673, + 11674, 11681, 11682, 11683, 11675, 11676, 11684, 11685, 11677, 11678, + 11679, 11680, 11686, 11689, 11690, 11691, 11692, 11687, 11688, 11693, + 11702, 11703, 11704, 11695, 11696, 11697, 11705, 11698, 11699, 11706, + 11700, 11701, 11707, 11708, 11709, 11710, 11711, 11712, 11713, 11714, + 11715, 11728, 11716, 11717, 11718, 11719, 11720, 11721, 11722, 11723, + 11724, 11725, 11726, 11727, 11729, 11730, 11731, 11732, 11752, 11753, + 11754, 11755, 11756, 11733, 11734, 11735, 11736, 11737, 11738, 11739, + 11740, 11741, 11742, 11743, 11744, 11745, 11746, 11747, 11748, 11749, + 11750, 11751, 10745, 10746, 10747, 10748, 10749, 10750, 10742, 10743, + 10744, 10751, 10752, 10756, 10757, 10758, 10759, 10760, 10761, 10762, + 10763, 10764, 10765, 10766, 10767, 10768, 10769, 10770, 10771, 10772, + 10773, 10774, 10775, 10753, 10754, 10755, 11608, 11661, 11097, 11122, + 11119, 11121, 11118, 11389, 10778, 10955, 11123, 11120, 11117, 10777, + 10954, 10776, 10953, 11216, 11021, 11095, 11134, 11096, 11535, 11694, + 11212, 11203, 11207, 11214, 11210, 11204, 11209, 11206, 11213, 11202, + 11208, 11215, 11211, 11205, 11201, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 377, + 378, 379, 380, 381, 382, 375, 376, 383, 384, 385, 427, 428, 429, 430, + 431, 432, 433, 434, 435, 425, 426, 393, 389, 390, 394, 395, 396, 391, + 392, 386, 387, 388, 397, 398, 399, 456, 457, 458, 459, 460, 461, 462, + 463, 464, 465, 404, 405, 406, 407, 408, 409, 400, 401, 402, 403, 410, + 411, 412, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, + 478, 479, 480, 481, 482, 483, 484, 485, 417, 418, 419, 420, 421, 422, + 423, 413, 414, 415, 416, 424, 497, 498, 499, 500, 501, 502, 503, 486, + 487, 488, 489, 494, 495, 496, 504, 490, 491, 492, 493, 505, 506, 507, + 508, 509, 512, 513, 514, 515, 510, 511, 516, 517, 518, 519, 522, 523, + 524, 525, 526, 520, 521, 527, 528, 529, 530, 533, 534, 535, 536, 537, + 531, 532, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, + 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, + 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, + 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, + 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 609, 610, 602, 603, + 604, 611, 612, 613, 614, 605, 606, 615, 607, 608, 620, 621, 622, 623, + 624, 616, 617, 618, 619, 625, 626, 627, 653, 654, 655, 656, 657, 658, + 659, 651, 652, 660, 661, 673, 674, 675, 676, 677, 678, 679, 680, 681, + 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, + 696, 697, 698, 699, 700, 701, 702, 664, 665, 666, 667, 668, 669, 670, + 662, 663, 671, 672, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, + 642, 643, 644, 645, 646, 647, 648, 649, 650, 640, 641, 632, 633, 634, + 635, 628, 629, 636, 637, 638, 639, 630, 631, 715, 716, 717, 718, 719, + 720, 721, 722, 723, 713, 714, 807, 808, 809, 810, 811, 812, 813, 814, + 815, 816, 726, 727, 728, 729, 730, 731, 732, 733, 734, 724, 725, 753, + 754, 750, 751, 752, 755, 756, 757, 746, 747, 748, 749, 758, 759, 760, + 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 737, 738, 739, 740, + 741, 742, 743, 744, 745, 735, 736, 765, 766, 767, 768, 761, 762, 769, + 770, 771, 763, 764, 772, 798, 796, 797, 799, 800, 801, 802, 803, 804, + 805, 806, 779, 775, 776, 780, 773, 774, 781, 782, 777, 778, 783, 784, + 785, 787, 788, 789, 786, 790, 791, 792, 793, 794, 795, 858, 859, 860, + 861, 862, 863, 864, 865, 866, 867, 827, 828, 829, 830, 831, 832, 833, + 834, 835, 836, 837, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, + 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, + 892, 893, 894, 895, 896, 897, 838, 839, 842, 843, 844, 845, 846, 847, + 840, 841, 848, 849, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, + 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, + 922, 923, 924, 925, 926, 927, 850, 851, 852, 853, 854, 855, 856, 857, + 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, + 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, + 957, 928, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 14098, 14088, 14087, 14084, + 14083, 14069, 14082, 14081, 14086, 14085, 14091, 14076, 14075, 14072, + 14071, 14096, 14078, 14077, 14074, 14073, 14070, 14090, 14089, 14080, + 14079, 14093, 14097, 14094, 14092, 14095, 14101, 14108, 14109, 14104, + 14105, 14110, 14111, 14102, 14106, 14107, 14103, 14112, 14068, 14067, + 14065, 14099, 14066, 14100, 14119, 14121, 14118, 14117, 14114, 14113, + 14116, 14115, 14122, 14120, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 2892, 2858, 2917, 2918, 2888, 2925, 2936, 2907, 2924, 2919, + 2920, 2871, 2937, 2894, 2873, 2878, 2885, 2931, 2903, 2861, 2897, 2932, + 2893, 2868, 2869, 2901, 2875, 2916, 2857, 2915, 2884, 2908, 2939, 2856, + 2902, 2933, 2887, 2886, 2882, 2859, 2914, 2891, 2921, 2874, 2911, 2922, + 2938, 2866, 2928, 2935, 2876, 2862, 2890, 2864, 2883, 2926, 2867, 2941, + 2943, 2863, 2929, 2879, 2923, 2900, 2927, 2905, 2912, 2896, 2940, 2895, + 2877, 2909, 2880, 2906, 2934, 2930, 2913, 2898, 2870, 2904, 2860, 2899, + 2942, 2865, 2910, 2889, 2881, 2976, 2993, 2991, 2990, 2954, 2960, 2949, + 2997, 2959, 2951, 2984, 2996, 2953, 2980, 2981, 2944, 2986, 2994, 2988, + 2989, 2966, 2963, 2979, 2947, 2945, 2946, 2952, 2985, 3001, 2974, 2971, + 2998, 2987, 2995, 2965, 2969, 2970, 2967, 2992, 2962, 2968, 2978, 2983, + 2964, 2999, 2961, 3000, 2948, 2958, 2957, 2955, 2972, 2977, 2956, 2950, + 2975, 3053, 3073, 3095, 3091, 3052, 3041, 3054, 3002, 3030, 3004, 3074, + 3070, 3027, 3075, 3045, 3024, 3007, 3003, 3009, 3094, 3072, 3035, 3065, + 3033, 3096, 3014, 3015, 3079, 3046, 3084, 3061, 3088, 3083, 3048, 3090, + 3039, 3021, 3071, 3049, 3017, 3032, 3037, 3068, 3085, 3051, 3099, 3042, + 3067, 3064, 3098, 3089, 3029, 3100, 3057, 3016, 3087, 3062, 3059, 3011, + 3047, 3023, 3034, 3019, 3013, 3058, 3056, 3092, 3050, 3066, 3069, 3012, + 3063, 3043, 3020, 3097, 3044, 3081, 3078, 3031, 3022, 3026, 3008, 3028, + 3010, 3025, 3093, 3060, 3038, 3036, 3082, 3006, 3005, 3055, 3040, 3018, + 3076, 3077, 3086, 3128, 3212, 3161, 3135, 3162, 3121, 3160, 3166, 3148, + 3175, 3211, 3157, 3191, 3158, 3105, 3204, 3189, 3164, 3196, 3109, 3213, + 3111, 3198, 3133, 3143, 3124, 3130, 3200, 3217, 3159, 3106, 3154, 3206, + 3104, 3156, 3101, 3144, 3138, 3116, 3145, 3140, 3139, 3181, 3137, 3134, + 3122, 3167, 3126, 3114, 3173, 3202, 3201, 3214, 3107, 3188, 3205, 3153, + 3132, 3168, 3108, 3184, 3179, 3174, 3119, 3147, 3136, 3151, 3215, 3183, + 3216, 3146, 3170, 3195, 3112, 3150, 3155, 3207, 3129, 3113, 3169, 3203, + 3125, 3149, 3117, 3152, 3165, 3163, 3103, 3110, 3185, 3209, 3208, 3176, + 3187, 3118, 3131, 3123, 3197, 3142, 3193, 3190, 3115, 3178, 3194, 3171, + 3180, 3177, 3192, 3182, 3141, 3120, 3186, 3210, 3172, 3127, 3199, 3102, + 3271, 3349, 3258, 3245, 3356, 3248, 3312, 3338, 3328, 3298, 3274, 3323, + 3343, 3284, 3238, 3359, 3331, 3276, 3313, 3348, 3240, 3250, 3300, 3290, + 3255, 3287, 3291, 3299, 3330, 3297, 3316, 3339, 3279, 3262, 3232, 3286, + 3294, 3256, 3249, 3277, 3273, 3340, 3332, 3326, 3270, 3278, 3364, 3231, + 3353, 3360, 3320, 3352, 3235, 3337, 3346, 3354, 3357, 3244, 3322, 3342, + 3229, 3292, 3333, 3261, 3259, 3305, 3309, 3228, 3351, 3239, 3372, 3303, + 3365, 3260, 3272, 3318, 3368, 3247, 3221, 3227, 3289, 3237, 3254, 3285, + 3233, 3223, 3301, 3314, 3362, 3275, 3304, 3306, 3321, 3264, 3222, 3308, + 3265, 3230, 3220, 3268, 3324, 3288, 3241, 3319, 3302, 3361, 3280, 3310, + 3219, 3226, 3295, 3373, 3350, 3375, 3374, 3246, 3311, 3341, 3344, 3269, + 3336, 3363, 3282, 3369, 3366, 3367, 3371, 3370, 3236, 3315, 3296, 3325, + 3358, 3225, 3355, 3252, 3263, 3329, 3327, 3283, 3293, 3334, 3335, 3218, + 3307, 3317, 3251, 3243, 3266, 3253, 3257, 3345, 3242, 3267, 3347, 3224, + 3234, 3380, 3429, 3382, 3427, 3407, 3420, 3401, 3384, 3410, 3409, 3389, + 3419, 3399, 3395, 3386, 3417, 3412, 3418, 3415, 3378, 3377, 3397, 3396, + 3394, 3422, 3414, 3423, 3398, 3403, 3400, 3424, 3404, 3411, 3402, 3406, + 3376, 3392, 3393, 3413, 3405, 3428, 3425, 3385, 3383, 3381, 3387, 3408, + 3390, 3391, 3388, 3421, 3379, 3416, 3426, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 22919, 22911, 22932, 22909, 22933, 22920, 22935, + 22915, 22906, 22923, 22921, 22929, 22905, 22913, 22908, 22910, 22916, + 22914, 22912, 22925, 22926, 22917, 22931, 22934, 22930, 22907, 22928, + 22927, 22922, 22924, 22918, 35536, 22944, 22946, 22943, 22942, 22939, + 22938, 22941, 22940, 22947, 22945, 35536, 35536, 35536, 35536, 22937, + 22936, 30246, 30243, 30244, 30245, 30198, 30195, 30196, 30197, 30250, + 30247, 30248, 30249, 30238, 30235, 30236, 30237, 30242, 30239, 30240, + 30241, 30234, 30231, 30232, 30233, 30194, 30191, 30192, 30193, 30226, + 30223, 30224, 30225, 30199, 30204, 30215, 30216, 30227, 30230, 30228, + 30229, 30222, 30219, 30220, 30221, 30210, 30207, 30208, 30209, 30261, + 30260, 30259, 30211, 30218, 30268, 30266, 30263, 30213, 30262, 30264, + 30206, 30214, 30203, 30205, 30202, 30253, 30257, 30265, 30212, 30217, + 30255, 30252, 30258, 30201, 30251, 30267, 30200, 30256, 30254, 30269, + 35536, 30276, 30278, 30275, 30274, 30271, 30270, 30273, 30272, 30279, + 30277, 35536, 35536, 35536, 35536, 35536, 35536, 3490, 3495, 3511, 3513, + 3503, 3501, 3493, 3487, 3494, 3507, 3502, 3498, 3509, 3492, 3488, 3510, + 3497, 3508, 3512, 3506, 3500, 3514, 3499, 3515, 3504, 3505, 3496, 3491, + 3489, 3516, 35536, 35536, 3483, 3485, 3486, 3484, 3482, 3517, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 25301, + 25302, 25307, 25308, 25295, 25296, 25311, 25312, 25303, 25304, 25293, + 25294, 25313, 25314, 25297, 25298, 25309, 25310, 25315, 25316, 25305, + 25306, 25299, 25300, 25317, 25318, 25291, 25292, 25237, 25228, 25234, + 25225, 25230, 25236, 25229, 25233, 25239, 25223, 25235, 25221, 25226, + 25224, 25232, 25227, 25231, 25240, 25238, 25222, 25245, 25244, 25242, + 25241, 25243, 25247, 25246, 25277, 25278, 25256, 25276, 25274, 25282, + 25284, 25283, 25285, 25275, 25267, 25280, 25265, 25287, 25260, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 25325, + 25327, 25324, 25323, 25320, 25319, 25322, 25321, 25328, 25326, 35536, + 25252, 25249, 25251, 25254, 25248, 25250, 25253, 35536, 25279, 25286, + 25264, 25272, 25288, 25263, 25270, 25281, 25269, 25290, 25271, 25266, + 25273, 25289, 25268, 25262, 25255, 25258, 25259, 25261, 25257, 35536, + 35536, 35536, 35536, 35536, 25209, 25216, 25208, 25207, 25217, 25205, + 25202, 25220, 25212, 25210, 25218, 25204, 25203, 25213, 25219, 25215, + 25211, 25206, 25214, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 17208, + 17205, 17210, 17204, 17193, 17192, 17189, 17188, 17181, 17187, 17186, + 17191, 17190, 17182, 17178, 17177, 17174, 17173, 17180, 17179, 17176, + 17175, 17183, 17195, 17194, 17185, 17184, 17200, 17203, 17201, 17199, + 17202, 17197, 17196, 17198, 17211, 17217, 17214, 17215, 17216, 17212, + 17218, 17213, 17209, 17207, 17206, 17220, 17219, 17227, 17229, 17226, + 17225, 17222, 17221, 17224, 17223, 17230, 17228, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 21582, 21586, 21589, 21590, 21560, + 21592, 21568, 21583, 21587, 21578, 21577, 21579, 21567, 21559, 21580, + 21576, 21573, 21574, 21588, 21570, 21581, 21584, 21566, 21564, 21591, + 21575, 21572, 21562, 21585, 21571, 21561, 21569, 21640, 21644, 21647, + 21648, 21618, 21650, 21626, 21641, 21645, 21636, 21635, 21637, 21625, + 21617, 21638, 21634, 21631, 21632, 21646, 21628, 21639, 21642, 21624, + 21622, 21649, 21633, 21630, 21620, 21643, 21629, 21619, 21627, 21604, + 21598, 21596, 21594, 21601, 21600, 21603, 21602, 21606, 21605, 21609, + 21611, 21608, 21607, 21612, 21613, 21615, 21616, 21610, 21614, 21599, + 21597, 21595, 21593, 21653, 21651, 21652, 35536, 35536, 35536, 35536, + 35536, 3702, 3719, 3704, 3708, 3721, 3709, 3716, 3726, 3705, 3717, 3722, + 3715, 3711, 3710, 3712, 3723, 3724, 3706, 3707, 3714, 3713, 3718, 3725, + 3720, 3703, 35536, 35536, 3727, 3744, 3729, 3733, 3746, 3734, 3741, 3751, + 3730, 3742, 3747, 3740, 3736, 3735, 3737, 3748, 3749, 3731, 3732, 3739, + 3738, 3743, 3750, 3745, 3728, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 22201, 22127, + 22189, 22200, 22205, 22204, 22124, 22206, 22181, 22180, 22178, 22135, + 22184, 22185, 22177, 22134, 22143, 22151, 22187, 22123, 22148, 22147, + 22142, 22141, 22140, 22139, 22165, 22133, 22164, 22132, 22207, 22138, + 22188, 22199, 22198, 22146, 22145, 22122, 22203, 22209, 22137, 22136, + 22174, 22130, 22150, 22149, 22173, 22129, 22182, 22186, 22158, 22161, + 22162, 22196, 22194, 22175, 22131, 22183, 22163, 22197, 22195, 22193, + 22191, 22121, 22192, 22190, 22208, 22125, 22202, 22126, 22160, 22128, + 22179, 22176, 22159, 35536, 35536, 35536, 35536, 22213, 22144, 22212, + 22211, 22210, 22218, 22224, 22223, 22219, 22220, 22245, 22249, 22266, + 22265, 22227, 22230, 22231, 22247, 22234, 22235, 22236, 22237, 22238, + 22241, 22243, 22244, 22240, 22251, 22252, 22253, 22254, 22259, 22255, + 22256, 22260, 22262, 22221, 22222, 22229, 22264, 22228, 22263, 22225, + 22233, 22226, 22250, 22267, 22268, 22257, 22261, 22248, 22246, 22269, + 22242, 22232, 22239, 22258, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 22217, 22215, 22216, 22214, 22166, 22167, 22168, 22169, 22170, + 22171, 22172, 22152, 22153, 22154, 22155, 22156, 22157, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 31163, 24157, 24377, 24376, 17172, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 33457, 33456, + 6583, 6584, 33978, 33979, 33980, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 30280, 30281, 30282, 30283, 30284, 30285, + 30286, 30287, 30288, 30289, 30290, 30291, 30292, 30293, 30294, 30295, + 30296, 30297, 30298, 30299, 30300, 30301, 30302, 30303, 30304, 30305, + 30306, 30307, 30308, 30309, 30310, 30311, 30312, 30313, 30314, 30315, + 30316, 30317, 30318, 30319, 30320, 30321, 30322, 30323, 30324, 30325, + 30326, 30327, 30328, 30329, 30330, 30331, 30332, 30333, 30334, 30335, + 30336, 30337, 30338, 30339, 30340, 30341, 30342, 30343, 30344, 30345, + 30346, 30347, 30348, 30349, 30350, 30351, 30352, 30353, 30354, 30355, + 30356, 30357, 30358, 30359, 30360, 30361, 30362, 30363, 30364, 30365, + 30366, 30367, 30368, 30369, 30370, 30371, 30372, 30373, 30374, 30375, + 30376, 30377, 30378, 30379, 30380, 30381, 30382, 30383, 30384, 30385, + 30386, 30387, 30388, 30389, 30390, 30391, 30392, 30393, 30394, 30395, + 30396, 30397, 30398, 30399, 30400, 30401, 30402, 30403, 30404, 30405, + 30406, 30407, 30408, 30409, 30410, 30411, 30412, 30413, 30414, 30415, + 30416, 30417, 30418, 30419, 30420, 30421, 30422, 30423, 30424, 30425, + 30426, 30427, 30428, 30429, 30430, 30431, 30432, 30433, 30434, 30435, + 30436, 30437, 30438, 30439, 30440, 30441, 30442, 30443, 30444, 30445, + 30446, 30447, 30448, 30449, 30450, 30451, 30452, 30453, 30454, 30455, + 30456, 30457, 30458, 30459, 30460, 30461, 30462, 30463, 30464, 30465, + 30466, 30467, 30468, 30469, 30470, 30471, 30472, 30473, 30474, 30475, + 30476, 30477, 30478, 30479, 30480, 30481, 30482, 30483, 30484, 30485, + 30486, 30487, 30488, 30489, 30490, 30491, 30492, 30493, 30494, 30495, + 30496, 30497, 30498, 30499, 30500, 30501, 30502, 30503, 30504, 30505, + 30506, 30507, 30508, 30509, 30510, 30511, 30512, 30513, 30514, 30515, + 30516, 30517, 30518, 30519, 30520, 30521, 30522, 30523, 30524, 30525, + 30526, 30527, 30528, 30529, 30530, 30531, 30532, 30533, 30534, 30535, + 30536, 30537, 30538, 30539, 30540, 30541, 30542, 30543, 30544, 30545, + 30546, 30547, 30548, 30549, 30550, 30551, 30552, 30553, 30554, 30555, + 30556, 30557, 30558, 30559, 30560, 30561, 30562, 30563, 30564, 30565, + 30566, 30567, 30568, 30569, 30570, 30571, 30572, 30573, 30574, 30575, + 30576, 30577, 30578, 30579, 30580, 30581, 30582, 30583, 30584, 30585, + 30586, 30587, 30588, 30589, 30590, 30591, 30592, 30593, 30594, 30595, + 30596, 30597, 30598, 30599, 30600, 30601, 30602, 30603, 30604, 30605, + 30606, 30607, 30608, 30609, 30610, 30611, 30612, 30613, 30614, 30615, + 30616, 30617, 30618, 30619, 30620, 30621, 30622, 30623, 30624, 30625, + 30626, 30627, 30628, 30629, 30630, 30631, 30632, 30633, 30634, 30635, + 30636, 30637, 30638, 30639, 30640, 30641, 30642, 30643, 30644, 30645, + 30646, 30647, 30648, 30649, 30650, 30651, 30652, 30653, 30654, 30655, + 30656, 30657, 30658, 30659, 30660, 30661, 30662, 30663, 30664, 30665, + 30666, 30667, 30668, 30669, 30670, 30671, 30672, 30673, 30674, 30675, + 30676, 30677, 30678, 30679, 30680, 30681, 30682, 30683, 30684, 30685, + 30686, 30687, 30688, 30689, 30690, 30691, 30692, 30693, 30694, 30695, + 30696, 30697, 30698, 30699, 30700, 30701, 30702, 30703, 30704, 30705, + 30706, 30707, 30708, 30709, 30710, 30711, 30712, 30713, 30714, 30715, + 30716, 30717, 30718, 30719, 30720, 30721, 30722, 30723, 30724, 30725, + 30726, 30727, 30728, 30729, 30730, 30731, 30732, 30733, 30734, 30735, + 30736, 30737, 30738, 30739, 30740, 30741, 30742, 30743, 30744, 30745, + 30746, 30747, 30748, 30749, 30750, 30751, 30752, 30753, 30754, 30755, + 30756, 30757, 30758, 30759, 30760, 30761, 30762, 30763, 30764, 30765, + 30766, 30767, 30768, 30769, 30770, 30771, 30772, 30773, 30774, 30775, + 30776, 30777, 30778, 30779, 30780, 30781, 30782, 30783, 30784, 30785, + 30786, 30787, 30788, 30789, 30790, 30791, 30792, 30793, 30794, 30795, + 30796, 30797, 30798, 30799, 30800, 30801, 30802, 30803, 30804, 30805, + 30806, 30807, 30808, 30809, 30810, 30811, 30812, 30813, 30814, 30815, + 30816, 30817, 30818, 30819, 30820, 30821, 30822, 30823, 30824, 30825, + 30826, 30827, 30828, 30829, 30830, 30831, 30832, 30833, 30834, 30835, + 30836, 30837, 30838, 30839, 30840, 30841, 30842, 30843, 30844, 30845, + 30846, 30847, 30848, 30849, 30850, 30851, 30852, 30853, 30854, 30855, + 30856, 30857, 30858, 30859, 30860, 30861, 30862, 30863, 30864, 30865, + 30866, 30867, 30868, 30869, 30870, 30871, 30872, 30873, 30874, 30875, + 30876, 30877, 30878, 30879, 30880, 30881, 30882, 30883, 30884, 30885, + 30886, 30887, 30888, 30889, 30890, 30891, 30892, 30893, 30894, 30895, + 30896, 30897, 30898, 30899, 30900, 30901, 30902, 30903, 30904, 30905, + 30906, 30907, 30908, 30909, 30910, 30911, 30912, 30913, 30914, 30915, + 30916, 30917, 30918, 30919, 30920, 30921, 30922, 30923, 30924, 30925, + 30926, 30927, 30928, 30929, 30930, 30931, 30932, 30933, 30934, 30935, + 30936, 30937, 30938, 30939, 30940, 30941, 30942, 30943, 30944, 30945, + 30946, 30947, 30948, 30949, 30950, 30951, 30952, 30953, 30954, 30955, + 30956, 30957, 30958, 30959, 30960, 30961, 30962, 30963, 30964, 30965, + 30966, 30967, 30968, 30969, 30970, 30971, 30972, 30973, 30974, 30975, + 30976, 30977, 30978, 30979, 30980, 30981, 30982, 30983, 30984, 30985, + 30986, 30987, 30988, 30989, 30990, 30991, 30992, 30993, 30994, 30995, + 30996, 30997, 30998, 30999, 31000, 31001, 31002, 31003, 31004, 31005, + 31006, 31007, 31008, 31009, 31010, 31011, 31012, 31013, 31014, 31015, + 31016, 31017, 31018, 31019, 31020, 31021, 31022, 31023, 31024, 31025, + 31026, 31027, 31028, 31029, 31030, 31031, 31032, 31033, 31034, 31035, + 31036, 31037, 31038, 31039, 31040, 31041, 31042, 31043, 31044, 31045, + 31046, 31047, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 31048, 31049, 31050, 31051, 31052, 31053, 31054, 31055, 31056, 31057, + 31058, 31059, 31060, 31061, 31062, 31063, 31064, 31065, 31066, 31067, + 31068, 31069, 31070, 31071, 31072, 31073, 31074, 31075, 31076, 31077, + 31078, 31079, 31080, 31081, 31082, 31083, 31084, 31085, 31086, 31087, + 31088, 31089, 31090, 31091, 31092, 31093, 31094, 31095, 31096, 31097, + 31098, 31099, 31100, 31101, 31102, 31103, 31104, 31105, 31106, 31107, + 31108, 31109, 31110, 31111, 31112, 31113, 31114, 31115, 31116, 31117, + 31118, 31119, 31120, 31121, 31122, 31123, 31124, 31125, 31126, 31127, + 31128, 31129, 31130, 31131, 31132, 31133, 31134, 31135, 31136, 31137, + 31138, 31139, 31140, 31141, 31142, 31143, 31144, 31145, 31146, 31147, + 31148, 31149, 31150, 31151, 31152, 31153, 31154, 31155, 31156, 31157, + 31158, 31159, 31160, 31161, 31162, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 16490, 16491, + 16492, 16493, 35536, 16494, 16495, 16483, 16484, 16485, 16486, 16487, + 35536, 16488, 16489, 35536, 16471, 15443, 15082, 15083, 15084, 15081, + 15363, 15364, 15365, 15366, 15355, 15356, 15357, 15358, 15359, 15350, + 15351, 15352, 15353, 15354, 15360, 15361, 15362, 15121, 15125, 15126, + 15127, 15128, 15129, 15130, 15131, 15132, 15122, 15123, 15124, 15137, + 15138, 15139, 15140, 15141, 15142, 15143, 15144, 15151, 15152, 15153, + 15154, 15155, 15156, 15157, 15145, 15146, 15147, 15148, 15149, 15150, + 15134, 15135, 15136, 15133, 15246, 15247, 15248, 15249, 15250, 15251, + 15252, 15253, 15262, 15263, 15264, 15265, 15266, 15267, 15254, 15255, + 15256, 15257, 15258, 15259, 15260, 15261, 15268, 15269, 15270, 15271, + 15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15308, 15309, + 15310, 15311, 15301, 15302, 15303, 15304, 15305, 15306, 15307, 15297, + 15298, 15299, 15300, 15296, 15280, 15281, 15282, 15283, 15284, 15285, + 15286, 15287, 15288, 15290, 15291, 15292, 15293, 15294, 15295, 15289, + 15200, 15201, 15202, 15203, 15204, 15205, 15206, 15207, 15208, 15193, + 15194, 15195, 15196, 15197, 15198, 15199, 15192, 15214, 15215, 15216, + 15186, 15187, 15188, 15189, 15190, 15191, 15185, 15209, 15210, 15211, + 15212, 15213, 15093, 15096, 15097, 15098, 15099, 15100, 15101, 15102, + 15103, 15094, 15095, 15114, 15115, 15116, 15117, 15118, 15119, 15120, + 15104, 15105, 15106, 15107, 15108, 15109, 15110, 15111, 15112, 15113, + 15085, 15086, 15087, 15088, 15089, 15090, 15091, 15092, 15167, 15168, + 15169, 15170, 15171, 15172, 15173, 15174, 15175, 15176, 15177, 15178, + 15179, 15180, 15181, 15182, 15183, 15184, 15159, 15160, 15158, 15161, + 15162, 15163, 15164, 15165, 15166, 15334, 15335, 15336, 15337, 15338, + 15333, 15345, 15346, 15347, 15348, 15339, 15340, 15341, 15342, 15343, + 15344, 15238, 15239, 15240, 15241, 15231, 15232, 15233, 15234, 15235, + 15236, 15237, 15225, 15226, 15227, 15228, 15229, 15230, 15242, 15243, + 15244, 15245, 15219, 15220, 15221, 15222, 15223, 15224, 15312, 15313, + 15314, 15315, 15316, 15317, 15318, 15319, 15320, 15321, 15329, 15330, + 15331, 15332, 15322, 15323, 15324, 15325, 15326, 15327, 15328, 15217, + 15218, 15442, 16469, 16468, 16470, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 15453, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 15446, 15445, 15447, 35536, 35536, 16518, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 16524, 16523, 16525, 16529, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 10635, 10633, 10582, 10615, + 10542, 10555, 10559, 10640, 10536, 10623, 10544, 10586, 10585, 10537, + 10543, 10557, 10589, 10618, 10611, 10538, 10558, 10612, 10636, 10562, + 10590, 10563, 10568, 10546, 10591, 10564, 10569, 10549, 10592, 10566, + 10571, 10547, 10548, 10600, 10601, 10567, 10572, 10553, 10604, 10565, + 10570, 10550, 10593, 10554, 10551, 10552, 10598, 10599, 10596, 10597, + 10617, 10616, 10625, 10631, 10628, 10603, 10602, 10556, 10545, 10594, + 10595, 10534, 10609, 10579, 10577, 10535, 10637, 10539, 10638, 10614, + 10622, 10540, 10606, 10587, 10605, 10560, 10639, 10619, 10541, 10634, + 10620, 10561, 10588, 10621, 10613, 10578, 10581, 10580, 10630, 10626, + 10632, 10629, 10627, 10576, 10575, 10574, 10573, 10584, 10583, 10607, + 10610, 10608, 10624, 35536, 35536, 35536, 35536, 35536, 10519, 10532, + 10531, 10526, 10533, 10513, 10506, 10505, 10502, 10504, 10507, 10508, + 10503, 35536, 35536, 35536, 10515, 10511, 10514, 10509, 10518, 10517, + 10510, 10516, 10512, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 10520, 10524, 10527, 10522, 10530, 10529, 10523, 10528, 10525, 10521, + 35536, 35536, 10644, 10641, 10642, 10643, 27160, 27159, 27161, 27162, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 32371, 26351, 18859, 26348, 10409, 19867, 26319, 19925, + 967, 15578, 33426, 18817, 22276, 26304, 18852, 26341, 24231, 25897, + 26089, 15574, 33400, 19807, 19806, 19805, 19804, 19802, 19803, 4587, + 4588, 4596, 4610, 4480, 4479, 26890, 26898, 26891, 26902, 26895, 26899, + 26892, 26904, 26897, 26901, 26894, 26903, 26896, 26900, 26893, 32410, + 32378, 32380, 32465, 32427, 32423, 32459, 32429, 19951, 19898, 19918, + 19953, 19901, 19943, 19945, 19924, 28433, 28434, 24959, 9958, 9694, 9693, + 28445, 28446, 18865, 26328, 12612, 12613, 352, 351, 358, 357, 360, 359, + 355, 356, 353, 354, 18855, 32363, 26344, 10415, 32037, 32033, 32041, + 4442, 4440, 4446, 18848, 32358, 26338, 10411, 23000, 18858, 32366, 26347, + 10418, 11778, 11779, 3944, 3947, 3946, 3945, 3978, 18871, 32356, 26334, + 10421, 18872, 32357, 26335, 10422, 18861, 32360, 26350, 10413, 28678, + 28679, 28677, 28676, 28870, 28872, 28871, 28869, 33410, 15557, 33823, + 33824, 32283, 28510, 28509, 28508, 28463, 15953, 18731, 15954, 33415, + 15555, 18866, 26329, 18867, 26330, 12597, 18857, 32365, 26346, 10417, + 15577, 33425, 33403, 18860, 26349, 18854, 26343, 18856, 26345, 18765, + 26262, 32419, 32455, 32418, 32454, 19887, 19907, 19886, 19906, 19884, + 19904, 19885, 19905, 32422, 32458, 19897, 19917, 32420, 32456, 19896, + 19916, 32413, 32449, 19891, 19911, 32416, 32452, 19894, 19914, 32417, + 32453, 19895, 19915, 32412, 32448, 19890, 19910, 32414, 32450, 19892, + 19912, 32415, 32451, 19893, 19913, 32421, 32457, 19888, 19908, 25137, + 25138, 25139, 25140, 25141, 25142, 25143, 25144, 25145, 25146, 25147, + 25148, 25149, 25150, 25151, 25152, 25153, 25154, 25155, 25156, 25157, + 25158, 25159, 25160, 25161, 25162, 25173, 25175, 25172, 25171, 25168, + 25167, 25170, 25169, 25176, 25174, 28214, 12614, 24141, 35536, 35536, + 35536, 4239, 4183, 4054, 4269, 4140, 4081, 4240, 4121, 4184, 4230, 4156, + 4215, 4097, 4112, 4200, 4066, 4273, 4141, 4171, 4082, 4241, 4122, 4185, + 4055, 4236, 4164, 4223, 4105, 4262, 4118, 4208, 4074, 4149, 4177, 4090, + 4248, 4130, 4193, 4060, 4231, 4157, 4216, 4098, 4255, 4113, 4201, 4067, + 4274, 4142, 4172, 4083, 4242, 4123, 4186, 4168, 4227, 4109, 4266, 4137, + 4212, 4078, 4281, 4153, 4180, 4094, 4252, 4134, 4197, 4063, 4161, 4220, + 4102, 4259, 4205, 4071, 4278, 4146, 4087, 4245, 4127, 4190, 4237, 4165, + 4224, 4106, 4263, 4119, 4209, 4075, 4270, 4150, 4178, 4091, 4249, 4131, + 4194, 4061, 4232, 4158, 4217, 4099, 4256, 4114, 4202, 4068, 4275, 4143, + 4173, 4084, 4243, 4124, 4187, 4056, 4170, 4229, 4111, 4268, 4139, 4214, + 4080, 4283, 4155, 4182, 4096, 4254, 4136, 4199, 4065, 4235, 4163, 4222, + 4104, 4261, 4117, 4207, 4073, 4280, 4148, 4176, 4089, 4247, 4129, 4192, + 4059, 4167, 4226, 4108, 4265, 4211, 4077, 4272, 4152, 4093, 4251, 4133, + 4196, 4233, 4160, 4219, 4101, 4258, 4115, 4204, 4070, 4277, 4145, 4174, + 4086, 4244, 4126, 4189, 4057, 4169, 4228, 4110, 4267, 4138, 4213, 4079, + 4282, 4154, 4181, 4095, 4253, 4135, 4198, 4064, 4234, 4162, 4221, 4103, + 4260, 4116, 4206, 4072, 4279, 4147, 4175, 4088, 4246, 4128, 4191, 4058, + 4238, 4166, 4225, 4107, 4264, 4120, 4210, 4076, 4271, 4151, 4179, 4092, + 4250, 4132, 4195, 4062, 4159, 4218, 4100, 4257, 4203, 4069, 4276, 4144, + 4085, 4125, 4188, 32045, 4449, 32042, 4447, 32043, 4448, 32038, 4443, + 32039, 4444, 32032, 4436, 4437, 4438, 4439, 22884, 32034, 32035, 10412, + 18849, 28184, 32361, 10414, 12483, 12484, 12485, 26257, 19858, 12486, + 32385, 19860, 14933, 33885, 32056, 12770, 4481, 4478, 18769, 26266, + 18768, 26265, 15554, 18766, 26263, 15553, 19861, 32388, 33416, 4606, + 4604, 4605, 4603, 17403, 17402, 17407, 17401, 17379, 17358, 17359, 17399, + 17365, 17383, 17406, 17381, 17404, 17405, 17387, 17384, 17364, 17363, + 17366, 17382, 17367, 17355, 17376, 17400, 17356, 17357, 17354, 17380, + 17385, 17371, 17362, 17386, 17388, 17361, 17378, 17370, 17368, 17369, + 17360, 17408, 17377, 17372, 17375, 17373, 17374, 17396, 17394, 17395, + 17398, 17393, 17390, 17397, 17392, 17391, 17389, 26905, 26937, 26906, + 26953, 26922, 26938, 26907, 26961, 26930, 26946, 26915, 26954, 26923, + 26939, 26908, 26965, 26934, 26950, 26919, 26958, 26927, 26943, 26912, + 26962, 26931, 26947, 26916, 26955, 26924, 26940, 26909, 26967, 26936, + 26952, 26921, 26960, 26929, 26945, 26914, 26964, 26933, 26949, 26918, + 26957, 26926, 26942, 26911, 26966, 26935, 26951, 26920, 26959, 26928, + 26944, 26913, 26963, 26932, 26948, 26917, 26956, 26925, 26941, 26910, + 32405, 32377, 32379, 32444, 32426, 32424, 32425, 32428, 19950, 19948, + 19949, 19952, 19903, 19942, 19944, 19938, 26267, 26307, 18820, 18770, + 19863, 19958, 32468, 32390, 18771, 18821, 26308, 26268, 32391, 32469, + 19959, 19864, 15579, 16781, 24646, 3984, 35536, 35536, 35536, 35536, + 35536, 35536, 12650, 25186, 32117, 1057, 6577, 28866, 15076, 15975, + 12602, 22119, 25522, 33452, 11772, 15974, 12478, 26026, 31511, 21764, + 12628, 2574, 3597, 369, 19085, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 12869, + 12866, 12858, 12864, 12870, 12856, 12862, 12859, 12865, 12861, 12857, + 12867, 12863, 12868, 12860, 12871, 21676, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35352, 35357, 35391, 35354, 35359, 35387, 35381, 35375, 35398, + 35377, 35371, 35395, 35353, 35358, 35392, 35355, 35360, 35388, 35382, + 35376, 35399, 35378, 35372, 35396, 35393, 35379, 35386, 35373, 35374, + 35397, 35380, 35356, 35402, 35367, 35384, 35394, 35405, 35404, 35370, + 35403, 35364, 35363, 35401, 35385, 35383, 35362, 35536, 35536, 35407, + 35408, 35409, 35400, 35350, 35365, 35368, 35369, 35347, 35348, 35366, + 35389, 35390, 35351, 35406, 35349, 35361, 35346, 35528, 35529, 35526, + 35527, 35530, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35426, 35427, 35443, 35415, 35424, 35523, 35478, 35479, 35446, + 35447, 35480, 35410, 35444, 35524, 35422, 35419, 35421, 35420, 35418, + 35520, 35519, 35522, 35521, 35516, 35515, 35518, 35517, 35416, 35450, + 35412, 35423, 35411, 35448, 35461, 35462, 35460, 35459, 35413, 35457, + 35458, 35456, 35454, 35455, 35453, 35452, 35463, 35465, 35466, 35464, + 35428, 35451, 35417, 35425, 35525, 35467, 35472, 35469, 35473, 35470, + 35475, 35476, 35471, 35468, 35474, 35449, 35477, 35510, 35507, 35498, + 35508, 35509, 35499, 35487, 35486, 35514, 35484, 35483, 35481, 35485, + 35482, 35501, 35506, 35500, 35504, 35505, 35502, 35503, 35430, 35434, + 35433, 35432, 35431, 35513, 35511, 35512, 35437, 35442, 35441, 35440, + 35439, 35438, 35488, 35497, 35490, 35495, 35489, 35493, 35494, 35491, + 35492, 35496, 35429, 35436, 35414, 35435, 35445, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 5296, 5168, 5289, 5271, + 5272, 5340, 5341, 5221, 5318, 5278, 5352, 5353, 5244, 5123, 5174, 5321, + 5222, 5126, 5127, 5316, 5328, 5267, 5204, 5295, 5147, 5344, 5216, 5230, + 5226, 5319, 5281, 5310, 5274, 5343, 5129, 5131, 5231, 5297, 5282, 5339, + 5121, 5299, 5313, 5315, 5269, 5323, 5251, 5169, 5331, 5322, 5241, 5122, + 5181, 5212, 5333, 5219, 5287, 5291, 5234, 5145, 5298, 5276, 5279, 5218, + 5356, 5286, 5235, 5334, 5311, 5210, 5217, 5268, 5273, 5285, 5237, 5284, + 5242, 5288, 5225, 5229, 5355, 5128, 5124, 5354, 5243, 5177, 5148, 5266, + 5342, 5283, 5292, 5275, 5120, 5252, 5280, 5277, 5173, 5245, 5119, 5335, + 5176, 5314, 5317, 5146, 5175, 5300, 5357, 5337, 5293, 5332, 5336, 5290, + 5338, 5294, 5207, 5133, 5172, 5270, 5325, 5326, 5324, 5327, 5220, 5170, + 5345, 5346, 5309, 5233, 5166, 5238, 5239, 5240, 5130, 5132, 5165, 5330, + 5320, 5236, 5246, 5250, 5249, 5248, 5247, 5206, 5203, 5202, 5160, 5162, + 5163, 5161, 5329, 5134, 5214, 5153, 5117, 5111, 5112, 5115, 5116, 5114, + 5113, 5118, 5259, 5254, 5255, 5253, 5264, 5263, 5262, 5261, 5265, 5257, + 5215, 5125, 5180, 5179, 5178, 5260, 5258, 5256, 5208, 5209, 5171, 5213, + 5211, 5182, 5189, 5185, 5193, 5188, 5197, 5187, 5186, 5183, 5184, 5191, + 5192, 5199, 5196, 5194, 5143, 5144, 5142, 5190, 5198, 5351, 5156, 5154, + 5157, 5159, 5158, 5155, 5347, 5349, 5348, 5350, 5200, 5201, 5150, 5149, + 5151, 5152, 5305, 5308, 5306, 5307, 5301, 5304, 5302, 5303, 5164, 5167, + 5312, 5141, 5135, 5140, 5138, 5137, 5136, 5139, 5223, 5227, 5224, 5228, + 5232, 5205, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 23189, 23066, 23082, 23174, 23061, 23186, 23124, 23175, + 23173, 23062, 23058, 23185, 23052, 23170, 23171, 23172, 23077, 23078, + 23015, 23016, 23011, 23010, 23141, 23212, 23209, 23084, 23083, 23190, + 23191, 23085, 23094, 23095, 23096, 23055, 23087, 23088, 23089, 23068, + 23069, 35536, 35536, 23132, 23065, 23067, 23093, 23092, 23137, 23136, + 23188, 23187, 23164, 23165, 23051, 23057, 23153, 23154, 23168, 23169, + 23133, 23235, 23107, 23167, 23076, 23193, 23211, 23195, 23140, 23233, + 23156, 23056, 23196, 23197, 23220, 23221, 23224, 23225, 23222, 23223, + 23216, 23217, 23218, 23219, 23130, 23131, 23226, 23227, 23155, 23231, + 23138, 23135, 23019, 23020, 23014, 23234, 23106, 23166, 23075, 23192, + 23210, 23194, 23139, 23040, 23041, 23044, 23045, 23046, 23079, 23080, + 23081, 23023, 23030, 23031, 23032, 23033, 23034, 23008, 23073, 23009, + 23074, 23007, 23071, 23006, 23070, 23021, 23039, 23047, 23038, 23024, + 23025, 23022, 23049, 23104, 23103, 23028, 23050, 23035, 23042, 23048, + 23027, 23043, 23176, 23199, 23238, 23163, 23126, 23086, 23054, 23063, + 23100, 23099, 23215, 23228, 23237, 23229, 23230, 23142, 23145, 23146, + 23147, 23148, 23149, 23150, 23151, 23152, 23143, 23144, 23108, 23134, + 23072, 23064, 23026, 23029, 23036, 23037, 23158, 23157, 23105, 23098, + 23097, 23236, 23059, 23060, 23125, 23121, 23012, 23179, 23181, 23127, + 23129, 23182, 23184, 23090, 23091, 23123, 23122, 23013, 23180, 23128, + 23183, 23207, 23206, 23208, 23205, 23201, 23202, 23203, 23204, 23053, + 23101, 23102, 23198, 23232, 23160, 23018, 23177, 23017, 23213, 23161, + 23162, 23178, 23214, 23159, 23109, 23112, 23116, 23119, 23118, 23117, + 23113, 23114, 23110, 23111, 23115, 23200, 23120, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 13784, 13772, + 13795, 13796, 13778, 13797, 13798, 13799, 13800, 13785, 13786, 13787, + 13788, 13789, 13790, 13791, 13792, 13793, 13794, 13773, 13774, 13775, + 13776, 13777, 13779, 13780, 13781, 13782, 13783, 13504, 13512, 13525, + 13533, 13539, 13540, 13505, 13506, 13507, 13508, 13509, 13510, 13511, + 13513, 13514, 13515, 13516, 13517, 13518, 13519, 13520, 13521, 13522, + 13523, 13524, 13526, 13527, 13528, 13529, 13530, 13531, 13532, 13534, + 13535, 13536, 13537, 13538, 7373, 7372, 7374, 13564, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 16761, + 16762, 16759, 16757, 16748, 16747, 16754, 16752, 16743, 16750, 16760, + 16745, 16758, 16756, 16749, 16746, 16755, 16753, 16744, 16751, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 21540, 21541, 21538, 21536, 21527, 21526, 21533, 21531, 21522, + 21529, 21539, 21524, 21537, 21535, 21528, 21525, 21534, 21532, 21523, + 21530, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 22877, 10003, 10004, 9998, 9997, 9996, 31305, 31325, + 31346, 31294, 31339, 31303, 31289, 31348, 31293, 31307, 31313, 31336, + 31337, 31351, 31357, 31304, 31335, 31365, 31323, 31290, 31353, 31355, + 31322, 31368, 31302, 31317, 31314, 31295, 31309, 31292, 31350, 31343, + 31297, 31340, 31329, 31363, 31352, 31326, 31354, 31342, 31356, 31331, + 31319, 31362, 31332, 31318, 31349, 31358, 31328, 31364, 31301, 31345, + 31321, 31367, 31311, 31296, 31333, 31330, 31344, 31288, 31316, 31315, + 31366, 31360, 31338, 31308, 31306, 31312, 31320, 31359, 31361, 31334, + 31300, 31298, 31327, 31291, 31299, 31347, 31310, 31341, 31324, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 7787, 7785, 7784, + 7781, 7780, 7783, 7782, 7788, 7786, 7778, 7776, 7775, 7772, 7771, 7774, + 7773, 7779, 7777, 15666, 15665, 15664, 15663, 15662, 29774, 29773, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 20520, 20522, 20550, 20513, 20526, 20558, + 20529, 20559, 20531, 20560, 20533, 20535, 20552, 20554, 20537, 20540, + 20561, 20544, 20546, 20516, 20548, 20562, 20563, 20556, 20564, 20524, + 20568, 20570, 20603, 20565, 20574, 20577, 20579, 20611, 20581, 20612, + 20583, 20585, 20605, 20607, 20587, 20590, 20613, 20594, 20596, 20598, + 20601, 20614, 20615, 20609, 20616, 20572, 21008, 21010, 21040, 21014, + 21016, 21048, 21019, 21049, 21021, 21050, 21023, 21025, 21042, 21044, + 21027, 21030, 21051, 21034, 21036, 21004, 21038, 21052, 21053, 21046, + 21054, 21012, 20956, 20958, 20991, 20952, 20962, 20965, 20967, 35536, + 20969, 20999, 20971, 20973, 20993, 20995, 20975, 20978, 21000, 20982, + 20984, 20986, 20989, 21001, 21002, 20997, 21003, 20960, 20673, 20675, + 20705, 20679, 20681, 20713, 20684, 20714, 20686, 20715, 20688, 20690, + 20707, 20709, 20692, 20695, 20716, 20699, 20701, 20669, 20703, 20717, + 20718, 20711, 20719, 20677, 20727, 20729, 20764, 20733, 20735, 20738, + 20740, 20772, 20742, 20773, 20744, 20746, 20766, 20768, 20748, 20751, + 20774, 20755, 20757, 20759, 20762, 20775, 20776, 20770, 20777, 20731, + 21480, 35536, 21481, 21482, 35536, 35536, 21483, 35536, 35536, 21484, + 21485, 35536, 35536, 21486, 21487, 21488, 21489, 35536, 21490, 21491, + 21492, 21493, 21494, 21495, 21496, 21497, 21498, 21499, 21500, 21501, + 35536, 21502, 35536, 21503, 21504, 21505, 21506, 21507, 21508, 21509, + 35536, 21510, 21511, 21512, 21513, 21514, 21515, 21516, 21517, 21518, + 21519, 21520, 20617, 20618, 20619, 20620, 20621, 20622, 20623, 20624, + 20625, 20626, 20627, 20628, 20629, 20630, 20631, 20632, 20633, 20634, + 20635, 20636, 20637, 20638, 20639, 20640, 20641, 20642, 20643, 20644, + 20645, 20646, 20647, 20648, 20649, 20650, 20651, 20652, 20653, 20654, + 20655, 20656, 20657, 20658, 20659, 20660, 20661, 20662, 20663, 20664, + 20665, 20666, 20667, 20668, 20904, 20905, 35536, 20906, 20907, 20908, + 20909, 35536, 35536, 20910, 20911, 20912, 20913, 20914, 20915, 20916, + 20917, 35536, 20918, 20919, 20920, 20921, 20922, 20923, 20924, 35536, + 20925, 20926, 20927, 20928, 20929, 20930, 20931, 20932, 20933, 20934, + 20935, 20936, 20937, 20938, 20939, 20940, 20941, 20942, 20943, 20944, + 20945, 20946, 20947, 20948, 20949, 20950, 20849, 20850, 35536, 20851, + 20852, 20853, 20854, 35536, 20855, 20856, 20857, 20858, 20859, 35536, + 20860, 35536, 35536, 35536, 20861, 20862, 20863, 20864, 20865, 20866, + 20867, 35536, 20868, 20869, 20870, 20871, 20872, 20873, 20874, 20875, + 20876, 20877, 20878, 20879, 20880, 20881, 20882, 20883, 20884, 20885, + 20886, 20887, 20888, 20889, 20890, 20891, 20892, 20893, 20787, 20788, + 20789, 20790, 20791, 20792, 20793, 20794, 20795, 20796, 20797, 20798, + 20799, 20800, 20801, 20802, 20803, 20804, 20805, 20806, 20807, 20808, + 20809, 20810, 20811, 20812, 20813, 20814, 20815, 20816, 20817, 20818, + 20819, 20820, 20821, 20822, 20823, 20824, 20825, 20826, 20827, 20828, + 20829, 20830, 20831, 20832, 20833, 20834, 20835, 20836, 20837, 20838, + 21418, 21419, 21420, 21421, 21422, 21423, 21424, 21425, 21426, 21427, + 21428, 21429, 21430, 21431, 21432, 21433, 21434, 21435, 21436, 21437, + 21438, 21439, 21440, 21441, 21442, 21443, 21444, 21445, 21446, 21447, + 21448, 21449, 21450, 21451, 21452, 21453, 21454, 21455, 21456, 21457, + 21458, 21459, 21460, 21461, 21462, 21463, 21464, 21465, 21466, 21467, + 21468, 21469, 21250, 21252, 21282, 21256, 21258, 21290, 21261, 21291, + 21263, 21292, 21265, 21267, 21284, 21286, 21269, 21272, 21293, 21276, + 21278, 21246, 21280, 21294, 21295, 21288, 21296, 21254, 21304, 21306, + 21341, 21310, 21312, 21315, 21317, 21349, 21319, 21350, 21321, 21323, + 21343, 21345, 21325, 21328, 21351, 21332, 21334, 21336, 21339, 21352, + 21353, 21347, 21354, 21308, 21366, 21367, 21368, 21369, 21370, 21371, + 21372, 21373, 21374, 21375, 21376, 21377, 21378, 21379, 21380, 21381, + 21382, 21383, 21384, 21385, 21386, 21387, 21388, 21389, 21390, 21391, + 21392, 21393, 21394, 21395, 21396, 21397, 21398, 21399, 21400, 21401, + 21402, 21403, 21404, 21405, 21406, 21407, 21408, 21409, 21410, 21411, + 21412, 21413, 21414, 21415, 21416, 21417, 21140, 21142, 21172, 21146, + 21148, 21180, 21151, 21181, 21153, 21182, 21155, 21157, 21174, 21176, + 21159, 21162, 21183, 21166, 21168, 21136, 21170, 21184, 21185, 21178, + 21186, 21144, 21194, 21196, 21231, 21200, 21202, 21205, 21207, 21239, + 21209, 21240, 21211, 21213, 21233, 21235, 21215, 21218, 21241, 21222, + 21224, 21226, 21229, 21242, 21243, 21237, 21244, 21198, 21063, 21064, + 21065, 21066, 21067, 21068, 21069, 21070, 21071, 21072, 21073, 21074, + 21075, 21076, 21077, 21078, 21079, 21080, 21081, 21082, 21083, 21084, + 21085, 21086, 21087, 21088, 21089, 21090, 21091, 21092, 21093, 21094, + 21095, 21096, 21097, 21098, 21099, 21100, 21101, 21102, 21103, 21104, + 21105, 21106, 21107, 21108, 21109, 21110, 21111, 21112, 21113, 21114, + 20953, 20954, 35536, 35536, 20521, 20523, 20530, 20515, 20527, 20525, + 20528, 20517, 20532, 20534, 20536, 20553, 20555, 20557, 20538, 20543, + 20545, 20518, 20547, 20519, 20549, 20541, 20551, 20542, 20539, 20781, + 20569, 20571, 20580, 20567, 20575, 20573, 20576, 20599, 20582, 20584, + 20586, 20606, 20608, 20610, 20588, 20593, 20595, 20578, 20597, 20600, + 20602, 20591, 20604, 20592, 20589, 20783, 20779, 20786, 20780, 20782, + 20785, 20784, 21009, 21011, 21020, 21015, 21017, 21013, 21018, 21005, + 21022, 21024, 21026, 21043, 21045, 21047, 21028, 21033, 21035, 21006, + 21037, 21007, 21039, 21031, 21041, 21032, 21029, 21057, 20957, 20959, + 20968, 20955, 20963, 20961, 20964, 20987, 20970, 20972, 20974, 20994, + 20996, 20998, 20976, 20981, 20983, 20966, 20985, 20988, 20990, 20979, + 20992, 20980, 20977, 21059, 21055, 21062, 21056, 21058, 21061, 21060, + 20674, 20676, 20685, 20680, 20682, 20678, 20683, 20670, 20687, 20689, + 20691, 20708, 20710, 20712, 20693, 20698, 20700, 20671, 20702, 20672, + 20704, 20696, 20706, 20697, 20694, 20722, 20728, 20730, 20741, 20734, + 20736, 20732, 20737, 20760, 20743, 20745, 20747, 20767, 20769, 20771, + 20749, 20754, 20756, 20739, 20758, 20761, 20763, 20752, 20765, 20753, + 20750, 20724, 20720, 20778, 20721, 20723, 20726, 20725, 21251, 21253, + 21262, 21257, 21259, 21255, 21260, 21247, 21264, 21266, 21268, 21285, + 21287, 21289, 21270, 21275, 21277, 21248, 21279, 21249, 21281, 21273, + 21283, 21274, 21271, 21299, 21305, 21307, 21318, 21311, 21313, 21309, + 21314, 21337, 21320, 21322, 21324, 21344, 21346, 21348, 21326, 21331, + 21333, 21316, 21335, 21338, 21340, 21329, 21342, 21330, 21327, 21301, + 21297, 21355, 21298, 21300, 21303, 21302, 21141, 21143, 21152, 21147, + 21149, 21145, 21150, 21137, 21154, 21156, 21158, 21175, 21177, 21179, + 21160, 21165, 21167, 21138, 21169, 21139, 21171, 21163, 21173, 21164, + 21161, 21189, 21195, 21197, 21208, 21201, 21203, 21199, 21204, 21227, + 21210, 21212, 21214, 21234, 21236, 21238, 21216, 21221, 21223, 21206, + 21225, 21228, 21230, 21219, 21232, 21220, 21217, 21191, 21187, 21245, + 21188, 21190, 21193, 21192, 20514, 20566, 35536, 35536, 20845, 20847, + 20844, 20843, 20840, 20839, 20842, 20841, 20848, 20846, 20900, 20902, + 20899, 20898, 20895, 20894, 20897, 20896, 20903, 20901, 21476, 21478, + 21475, 21474, 21471, 21470, 21473, 21472, 21479, 21477, 21362, 21364, + 21361, 21360, 21357, 21356, 21359, 21358, 21365, 21363, 21121, 21123, + 21120, 21119, 21116, 21115, 21118, 21117, 21124, 21122, 27439, 27395, + 27420, 27636, 27591, 27377, 27440, 27404, 27553, 27505, 27481, 27442, + 27445, 27402, 27446, 27396, 27447, 27469, 27464, 27502, 27443, 27449, + 27458, 27459, 27450, 27456, 27460, 27398, 27532, 27441, 27470, 27399, + 27479, 27448, 27478, 27465, 27504, 27503, 27444, 27463, 27473, 27474, + 27477, 27476, 27544, 27452, 27453, 27454, 27526, 27494, 27457, 27461, + 27455, 27451, 27525, 27486, 27524, 27523, 27483, 27482, 27485, 27475, + 27472, 27471, 27521, 27520, 27522, 27493, 27569, 27573, 27572, 27570, + 27571, 27414, 27560, 27590, 27562, 27575, 27567, 27576, 27568, 27577, + 27566, 27424, 27425, 27589, 27630, 27563, 27564, 27565, 27561, 27587, + 27574, 27585, 27578, 27586, 27584, 27582, 27579, 27580, 27581, 27583, + 27411, 27417, 27415, 27416, 27620, 27619, 27427, 27419, 27430, 27433, + 27428, 27431, 27429, 27432, 27437, 27434, 27394, 27629, 27635, 27632, + 27634, 27608, 27610, 27588, 27618, 27611, 27615, 27609, 27617, 27616, + 27614, 27376, 27466, 27401, 27593, 27379, 27602, 27468, 27467, 27594, + 27507, 27510, 27509, 27508, 27517, 27557, 27406, 27631, 27388, 27513, + 27516, 27511, 27512, 27605, 27515, 27604, 27387, 27386, 27514, 27405, + 27603, 27385, 27480, 27400, 27595, 27612, 27378, 27462, 27397, 27533, + 27613, 27389, 27541, 27537, 27539, 27410, 27633, 27390, 27534, 27536, + 27535, 27540, 27538, 27628, 27506, 27403, 27435, 27622, 27623, 27621, + 27423, 27601, 27381, 27380, 27530, 27606, 27528, 27409, 27518, 27529, + 27627, 27527, 27531, 27519, 27407, 27436, 27426, 27607, 27392, 27393, + 27391, 27408, 27412, 27413, 27625, 27626, 27624, 27592, 27495, 27597, + 27498, 27499, 27500, 27497, 27501, 27496, 27490, 27491, 27492, 27489, + 27487, 27418, 27488, 27484, 27421, 27422, 27599, 27600, 27596, 27598, + 27383, 27384, 27382, 27542, 27547, 27550, 27551, 27552, 27558, 27543, + 27545, 27546, 27554, 27549, 27555, 27556, 27548, 27438, 27559, 27950, + 27949, 27948, 27970, 27969, 27968, 27925, 27924, 27923, 27309, 27308, + 27307, 27911, 27910, 27909, 27921, 27922, 27917, 27920, 27916, 27919, + 27918, 27366, 27369, 27365, 27368, 27367, 27915, 27785, 27786, 27787, + 27788, 27783, 27784, 27789, 27829, 27734, 27847, 27846, 27844, 27845, + 27848, 27823, 27826, 27824, 27825, 27822, 27853, 27852, 27850, 27851, + 27799, 27798, 27797, 27803, 27802, 27801, 27800, 27821, 27820, 27819, + 27796, 27795, 27794, 27869, 27868, 27867, 27843, 27842, 27841, 27966, + 27965, 27964, 27963, 27962, 27961, 27967, 27960, 27959, 27958, 27703, + 27702, 27700, 27701, 27707, 27706, 27704, 27705, 27695, 27694, 27692, + 27693, 27699, 27698, 27696, 27697, 27757, 27756, 27754, 27755, 27758, + 27772, 27775, 27773, 27774, 27731, 27762, 27761, 27760, 27759, 27717, + 27730, 27729, 27728, 27718, 27716, 27715, 27714, 27781, 27780, 27779, + 27778, 27777, 27776, 27953, 27952, 27951, 27956, 27955, 27954, 27957, + 27816, 27815, 27813, 27814, 27807, 27806, 27804, 27805, 27812, 27811, + 27834, 27833, 27830, 27835, 27840, 27837, 27836, 27856, 27855, 27854, + 27859, 27858, 27857, 27810, 27818, 27817, 27906, 27903, 27902, 27849, + 27808, 27831, 27838, 27863, 27907, 27904, 27900, 27809, 27832, 27839, + 27864, 27908, 27905, 27901, 27862, 27861, 27860, 27721, 27720, 27738, + 27736, 27737, 27735, 27747, 27745, 27746, 27744, 27764, 27763, 27895, + 27892, 27898, 27723, 27722, 27739, 27740, 27742, 27741, 27751, 27749, + 27750, 27748, 27766, 27765, 27896, 27893, 27899, 27727, 27726, 27724, + 27725, 27719, 27743, 27752, 27767, 27768, 27769, 27894, 27891, 27897, + 27753, 27793, 27791, 27792, 27790, 27713, 27711, 27709, 27712, 27710, + 27708, 27866, 27865, 27771, 27770, 27828, 27827, 27733, 27732, 27325, + 27324, 27320, 27323, 27327, 27326, 27321, 27322, 27319, 27328, 27638, + 27645, 27643, 27642, 27640, 27641, 27639, 27644, 27358, 27356, 27357, + 27334, 27333, 27332, 27317, 27315, 27316, 27318, 27373, 27372, 27371, + 27352, 27353, 27349, 27330, 27329, 27348, 27350, 27347, 27351, 27331, + 27346, 27344, 27345, 27341, 27343, 27342, 27335, 27337, 27336, 27339, + 27338, 27340, 27312, 27311, 27310, 27935, 27934, 27936, 27355, 27872, + 27871, 27873, 27874, 27302, 27304, 27301, 27303, 27306, 27305, 27667, + 27665, 27666, 27672, 27674, 27673, 27669, 27671, 27670, 27686, 27685, + 27684, 27678, 27679, 27680, 27681, 27682, 27683, 27675, 27677, 27676, + 27687, 27688, 27689, 27656, 27654, 27655, 27668, 27691, 27690, 27943, + 27942, 27940, 27941, 27939, 27944, 27938, 27937, 27927, 27932, 27930, + 27931, 27928, 27929, 27933, 27870, 27782, 27875, 27637, 27354, 27913, + 27912, 27375, 27370, 27914, 27946, 27945, 27947, 27971, 27646, 27647, + 27648, 27649, 27650, 27651, 27652, 27653, 27364, 27664, 27663, 27658, + 27661, 27660, 27657, 27659, 27662, 27314, 27374, 27926, 27313, 27972, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 27359, 27360, 27361, 27362, 27363, + 35536, 27883, 27884, 27885, 27886, 27887, 27888, 27889, 27890, 27876, + 27877, 27878, 27879, 27880, 27881, 27882, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 18185, 18460, 17951, 18465, + 17938, 18309, 18571, 18462, 18557, 18526, 17931, 18164, 18165, 18561, + 17925, 17978, 17952, 18302, 18101, 18282, 18162, 18555, 18441, 18530, + 18173, 18102, 18246, 18399, 18531, 18068, 18477, 35536, 35536, 35536, + 35536, 35536, 35536, 18092, 18295, 18341, 18446, 18485, 18521, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 7328, 7330, 7340, 7334, 7316, 7341, 7348, 35536, 7347, + 7321, 7318, 7317, 7315, 7352, 7336, 7335, 7337, 7351, 7338, 7339, 7323, + 7326, 7350, 7332, 7349, 35536, 35536, 7324, 7327, 7331, 7325, 7343, 7342, + 7344, 35536, 7346, 7322, 35536, 7345, 7320, 7329, 7319, 7333, 35536, + 35536, 35536, 35536, 35536, 22464, 22433, 22461, 22459, 22435, 22457, + 22454, 22455, 22456, 22463, 22440, 22441, 22465, 22444, 22442, 22437, + 22450, 22466, 22439, 22462, 22449, 22458, 22448, 22451, 22436, 22453, + 22434, 22447, 22431, 22460, 22432, 22445, 22443, 9638, 9616, 9636, 9623, + 9619, 9633, 9630, 9631, 9632, 9637, 9621, 9639, 9635, 9622, 9640, 9620, + 9625, 9629, 9634, 9628, 9626, 9627, 9624, 9615, 9618, 9617, 22438, 22452, + 22446, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 7236, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 24187, 24171, 24162, + 24173, 24178, 24170, 24175, 24166, 24192, 24196, 24198, 24201, 24165, + 24160, 24195, 24185, 24169, 24168, 24199, 24161, 24172, 24193, 24181, + 24197, 24200, 24167, 24189, 24174, 24164, 24184, 24163, 24179, 24186, + 24188, 24194, 24180, 24176, 24177, 24202, 24203, 24182, 24183, 24190, + 24191, 24204, 35536, 35536, 35536, 24213, 24217, 24216, 24219, 24218, + 24215, 24214, 24210, 24207, 24206, 24209, 24208, 24211, 24212, 35536, + 35536, 24227, 24229, 24226, 24225, 24222, 24221, 24224, 24223, 24230, + 24228, 35536, 35536, 35536, 35536, 24205, 24220, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 32097, 32080, 32100, + 32090, 32094, 32091, 32096, 32082, 32081, 32099, 32087, 32102, 32101, + 32093, 32092, 32098, 32095, 32083, 32075, 32084, 32076, 32104, 32085, + 32077, 32086, 32078, 32103, 32089, 32079, 32088, 32105, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 33559, 33558, 33590, 33591, 33592, + 33594, 33583, 33586, 33572, 33575, 33587, 33579, 33576, 33593, 33589, + 33588, 33596, 33601, 33600, 33599, 33585, 33564, 33563, 33598, 33597, + 33584, 33595, 33567, 33569, 33573, 33580, 33571, 33578, 33577, 33566, + 33561, 33562, 33570, 33565, 33568, 33560, 33574, 33581, 33582, 33605, + 33606, 33603, 33604, 33613, 33615, 33612, 33611, 33608, 33607, 33610, + 33609, 33616, 33614, 35536, 35536, 35536, 35536, 35536, 33602, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 23564, 23567, 23566, + 23568, 23565, 23547, 23551, 23549, 23548, 23550, 23559, 23562, 23560, + 23563, 23561, 23569, 23570, 23571, 23572, 23573, 23552, 23554, 23557, + 23558, 23553, 23556, 23555, 23577, 23574, 23578, 23576, 23575, 23585, + 23587, 23584, 23583, 23580, 23579, 23582, 23581, 23588, 23586, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 24350, 24353, 24352, 24351, 24354, 24355, 24332, + 24334, 24333, 24335, 24336, 24337, 24344, 24345, 24349, 24346, 24347, + 24348, 24356, 24360, 24357, 24359, 24358, 24361, 24338, 24343, 24342, + 24340, 24339, 24341, 24364, 24362, 24363, 24372, 24374, 24371, 24370, + 24367, 24366, 24369, 24368, 24375, 24373, 35536, 35536, 35536, 35536, + 24365, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 29660, 29669, 29658, 29667, 29691, 29676, 29689, + 29666, 29675, 29661, 29670, 29690, 29665, 29674, 29683, 29677, 29688, + 29664, 29673, 29682, 29662, 29671, 29692, 29695, 29657, 29694, 29663, + 29672, 29693, 29659, 29668, 35536, 29650, 29684, 29679, 29700, 29678, + 29651, 29698, 29686, 29696, 29685, 29680, 29681, 29687, 29649, 29699, + 29697, 29654, 29653, 29652, 29656, 29655, 29701, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 29702, 29703, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 12132, 12138, 12136, 12133, 12135, 12134, 12137, 35536, 12087, + 12131, 12129, 12128, 35536, 12075, 12074, 35536, 12086, 12085, 12084, + 12071, 12070, 12083, 12082, 12081, 12080, 12079, 12078, 12073, 12072, + 12077, 12076, 35536, 21774, 21775, 21776, 21842, 21863, 21851, 21815, + 21951, 21777, 21778, 21782, 21901, 21886, 21891, 21814, 21969, 21918, + 21840, 21820, 21912, 21781, 21779, 21780, 21827, 21871, 21924, 21964, + 21787, 21783, 21791, 21928, 21866, 21876, 21903, 21792, 21789, 21788, + 21941, 21879, 21939, 21917, 21908, 21906, 21907, 21970, 21949, 21786, + 21801, 21793, 21940, 21885, 21910, 21845, 21971, 21797, 21798, 21799, + 21855, 21847, 21831, 21932, 21883, 21784, 21790, 21785, 21858, 21955, + 21956, 21794, 21795, 21796, 21869, 21824, 21874, 21841, 21802, 21800, + 21803, 21927, 21884, 21933, 21835, 21947, 21804, 21808, 21812, 21881, + 21853, 21921, 21902, 21805, 21809, 21810, 21852, 21844, 21909, 21862, + 21972, 21873, 21811, 21806, 21807, 21889, 21942, 21950, 21819, 21962, + 21813, 21872, 21822, 21919, 21859, 21897, 21829, 21911, 21861, 21828, + 21968, 21817, 21864, 21821, 21860, 21888, 21915, 21926, 21896, 21931, + 21898, 21857, 21877, 21958, 21925, 21892, 21935, 21965, 21938, 21936, + 21961, 21832, 21948, 21838, 21867, 21823, 21854, 21830, 21878, 21834, + 21914, 21833, 21893, 21818, 21959, 21849, 21944, 21945, 21963, 21934, + 21875, 21913, 21905, 21868, 21843, 21816, 21882, 21890, 21929, 21895, + 21825, 21920, 21865, 21880, 21846, 21848, 21954, 21894, 21900, 21899, + 21966, 21887, 21836, 21837, 21923, 21967, 21916, 21904, 21957, 21960, + 21930, 21952, 21856, 21922, 21850, 21937, 21826, 21953, 21870, 21839, + 35536, 35536, 21980, 21978, 21977, 21974, 21973, 21976, 21975, 21981, + 21979, 21769, 21768, 21772, 21770, 21767, 21771, 21773, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 27, 9, 24, + 14, 29, 21, 34, 28, 37, 39, 35, 40, 41, 10, 30, 32, 18, 15, 31, 42, 13, + 25, 36, 23, 12, 20, 33, 19, 38, 17, 11, 26, 16, 22, 62, 44, 59, 49, 64, + 56, 69, 63, 72, 74, 70, 75, 76, 45, 65, 67, 53, 50, 66, 77, 48, 60, 71, + 58, 47, 55, 68, 54, 73, 52, 46, 61, 51, 57, 85, 86, 79, 84, 43, 78, 83, + 82, 35536, 35536, 35536, 35536, 93, 95, 92, 91, 88, 87, 90, 89, 96, 94, + 35536, 35536, 35536, 35536, 80, 81, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 15849, 15835, + 15830, 15810, 15805, 15823, 15818, 15798, 15813, 15838, 15833, 15828, + 15808, 15803, 15824, 15819, 15799, 15814, 15850, 15836, 15831, 15811, + 15806, 15826, 15821, 15801, 15816, 15851, 15837, 15832, 15812, 15807, + 15827, 15822, 15802, 15817, 15839, 15834, 15829, 15809, 15804, 15825, + 15820, 15800, 15815, 15796, 15797, 15787, 15794, 15795, 15847, 15845, + 15844, 15841, 15840, 15843, 15842, 15848, 15846, 15853, 15789, 15788, + 15790, 15852, 15793, 15792, 15791, 15786, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 25132, 25127, 25122, 25102, 25097, 25115, 25110, 25090, + 25105, 25130, 25125, 25120, 25100, 25095, 25116, 25111, 25091, 25106, + 25133, 25128, 25123, 25103, 25098, 25118, 25113, 25093, 25108, 25134, + 25129, 25124, 25104, 25099, 25119, 25114, 25094, 25109, 25131, 25126, + 25121, 25101, 25096, 25117, 25112, 25092, 25107, 25089, 25082, 25084, + 25074, 25076, 25077, 25079, 25086, 25085, 25080, 25075, 25078, 25083, + 25081, 25088, 25087, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 2288, 2296, 2294, 2192, + 35536, 2304, 2292, 2300, 2284, 2299, 2291, 2240, 2295, 2302, 2267, 2289, 2297, 2268, 2303, 2298, 2266, 2287, 2286, 2290, 2285, 2191, 2293, 2301, - 2162, 2164, 2163, 2165, 41412, 2204, 2202, 41412, 2199, 41412, 41412, - 2198, 41412, 2206, 2201, 2209, 2203, 2208, 2196, 2211, 2205, 2197, 2210, - 41412, 2195, 2194, 2193, 2200, 41412, 2212, 41412, 2207, 41412, 41412, - 41412, 41412, 41412, 41412, 2276, 41412, 41412, 41412, 41412, 2278, - 41412, 2277, 41412, 2281, 41412, 2280, 2273, 2283, 41412, 2274, 2282, - 41412, 2272, 41412, 41412, 2275, 41412, 2271, 41412, 2279, 41412, 2269, - 41412, 2270, 41412, 2258, 2256, 41412, 2253, 41412, 41412, 2252, 2247, - 2260, 2255, 41412, 2257, 2263, 2250, 2265, 2259, 2251, 2264, 41412, 2249, - 2248, 2246, 2254, 41412, 2245, 2261, 2262, 2243, 41412, 2244, 41412, - 2217, 2229, 2227, 2237, 2220, 2239, 2225, 2219, 2223, 2232, 41412, 2235, + 2162, 2164, 2163, 2165, 35536, 2204, 2202, 35536, 2199, 35536, 35536, + 2198, 35536, 2206, 2201, 2209, 2203, 2208, 2196, 2211, 2205, 2197, 2210, + 35536, 2195, 2194, 2193, 2200, 35536, 2212, 35536, 2207, 35536, 35536, + 35536, 35536, 35536, 35536, 2276, 35536, 35536, 35536, 35536, 2278, + 35536, 2277, 35536, 2281, 35536, 2280, 2273, 2283, 35536, 2274, 2282, + 35536, 2272, 35536, 35536, 2275, 35536, 2271, 35536, 2279, 35536, 2269, + 35536, 2270, 35536, 2258, 2256, 35536, 2253, 35536, 35536, 2252, 2247, + 2260, 2255, 35536, 2257, 2263, 2250, 2265, 2259, 2251, 2264, 35536, 2249, + 2248, 2246, 2254, 35536, 2245, 2261, 2262, 2243, 35536, 2244, 35536, + 2217, 2229, 2227, 2237, 2220, 2239, 2225, 2219, 2223, 2232, 35536, 2235, 2228, 2234, 2214, 2218, 2230, 2215, 2238, 2231, 2213, 2224, 2222, 2216, - 2221, 2236, 2226, 2233, 41412, 41412, 41412, 41412, 41412, 2178, 2176, - 2187, 41412, 2190, 2174, 2182, 2172, 2181, 41412, 2185, 2177, 2184, 2167, + 2221, 2236, 2226, 2233, 35536, 35536, 35536, 35536, 35536, 2178, 2176, + 2187, 35536, 2190, 2174, 2182, 2172, 2181, 35536, 2185, 2177, 2184, 2167, 2189, 2179, 2168, 2188, 2180, 2166, 2173, 2171, 2169, 2170, 2186, 2175, - 2183, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 2241, 2242, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 25561, - 25577, 25592, 25568, 25596, 25595, 25593, 25573, 25590, 25587, 25566, - 25563, 25582, 25579, 25559, 25570, 25574, 25591, 25588, 25567, 25564, - 25583, 25580, 25560, 25571, 25572, 25589, 25586, 25565, 25562, 25581, - 25578, 25558, 25569, 25576, 25575, 25556, 25599, 25585, 25584, 25597, - 25594, 25598, 25557, 41412, 41412, 41412, 41412, 11271, 11222, 11223, - 11224, 11225, 11226, 11227, 11228, 11229, 11230, 11231, 11232, 11233, - 11234, 11235, 11236, 11237, 11238, 11239, 11240, 11241, 11242, 11243, - 11244, 11245, 11246, 11247, 11248, 11249, 11250, 11251, 11252, 11253, - 11254, 11255, 11256, 11257, 11258, 11259, 11260, 11261, 11262, 11263, - 11264, 11265, 11266, 11267, 11268, 11269, 11270, 11321, 11272, 11273, - 11274, 11275, 11276, 11277, 11278, 11279, 11280, 11281, 11282, 11283, - 11284, 11285, 11286, 11287, 11288, 11289, 11290, 11291, 11292, 11293, - 11294, 11295, 11296, 11297, 11298, 11299, 11300, 11301, 11302, 11303, - 11304, 11305, 11306, 11307, 11308, 11309, 11310, 11311, 11312, 11313, - 11314, 11315, 11316, 11317, 11318, 11319, 11320, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 31671, - 31741, 31716, 31712, 31675, 31680, 31700, 31696, 31692, 31745, 31708, - 31749, 31684, 31704, 31688, 41412, 41412, 31742, 31717, 31713, 31676, - 31681, 31701, 31697, 31693, 31746, 31709, 31750, 31685, 31705, 31689, - 31672, 41412, 31743, 31718, 31714, 31677, 31682, 31702, 31698, 31694, - 31747, 31710, 31751, 31686, 31706, 31690, 31670, 41412, 31740, 31715, - 31711, 31674, 31679, 31699, 31695, 31691, 31744, 31707, 31748, 31683, - 31703, 31687, 31673, 31678, 31722, 31719, 31733, 31734, 31735, 31736, - 31737, 31738, 31739, 31723, 31724, 31725, 31726, 31727, 31728, 31729, - 31730, 31731, 31732, 31720, 31721, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 11006, 11005, 10990, 11002, 10999, - 10984, 10981, 10996, 10993, 11008, 10987, 11047, 11026, 6918, 6635, 6659, - 31339, 31340, 31341, 31342, 31343, 31344, 31345, 31346, 31347, 31348, - 31349, 31350, 31351, 31352, 31353, 31354, 31355, 31356, 31357, 31358, - 31359, 31360, 31361, 31362, 31363, 31364, 37949, 6749, 6750, 6646, 6917, - 8778, 34644, 34645, 34646, 34647, 34648, 34649, 34650, 34651, 34652, - 34653, 34654, 34655, 34656, 34657, 34658, 34659, 34660, 34661, 34662, - 34663, 34664, 34665, 34666, 34667, 34668, 34669, 34638, 34674, 34689, - 34690, 34679, 34701, 29157, 29158, 29159, 29160, 29161, 29162, 29163, - 29164, 29165, 29166, 29167, 29168, 29169, 29170, 29171, 29172, 29173, - 29174, 29175, 29176, 29177, 29178, 29179, 29180, 29181, 29182, 31950, - 31951, 31952, 6645, 6644, 6692, 29188, 29189, 29190, 29191, 29192, 29193, - 29194, 29195, 29196, 29197, 29198, 29199, 29200, 29201, 29202, 29203, - 29204, 29205, 29206, 29207, 29208, 29209, 29210, 29211, 29212, 29213, - 8822, 29220, 29223, 29224, 29219, 29221, 34373, 34627, 34626, 34633, - 34702, 34675, 34676, 34678, 34688, 34696, 34699, 34691, 34681, 34693, - 34631, 34695, 34632, 34682, 34692, 34684, 34677, 34643, 34637, 34636, - 34635, 34672, 34683, 34697, 34698, 25991, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 31980, 31981, 31982, 31983, 31984, 31985, 31986, 31987, - 31988, 31989, 31990, 31991, 31992, 31993, 31994, 31995, 31996, 31997, - 31998, 31999, 32000, 32001, 32002, 32003, 32004, 32005, 34414, 34639, - 34641, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 34605, 34600, 34592, 34640, 34586, 34598, - 34621, 34597, 34585, 34610, 34618, 34609, 34590, 34601, 34602, 34608, - 34589, 34619, 34616, 34623, 34599, 34594, 34613, 34603, 34606, 34583, - 34584, 34625, 34596, 34587, 34591, 34607, 34622, 34604, 34617, 34620, - 34593, 34614, 34612, 34611, 34615, 34588, 34595, 34624, 41412, 41412, - 41412, 41412, 37946, 37940, 37941, 37943, 37947, 37944, 37948, 37942, - 37945, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 6697, 6695, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 32416, 32417, 32414, 32418, 32413, 32415, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 10657, 17627, 8142, 29467, 34877, 34876, - 6928, 34922, 31943, 5033, 39583, 39408, 27764, 11671, 11669, 11670, - 18163, 29272, 39495, 17592, 39496, 17670, 39494, 22905, 39493, 8812, - 29271, 17591, 22904, 17669, 34801, 18164, 33020, 37385, 3930, 39742, - 39746, 39743, 39744, 8155, 8154, 8153, 8152, 17626, 39809, 20595, 37043, - 5109, 6579, 32750, 17519, 10683, 31207, 6226, 20592, 38117, 6576, 32404, - 20552, 34923, 4344, 11665, 11666, 20377, 17646, 25843, 17559, 24202, - 28479, 37899, 2586, 18276, 27246, 39586, 36066, 24568, 3475, 31655, - 31977, 18816, 31475, 31472, 6578, 34741, 19266, 34006, 27036, 31791, - 32100, 32101, 8612, 10084, 34729, 34305, 5031, 17660, 32420, 10666, - 31065, 34963, 17668, 17598, 34102, 32964, 20626, 11417, 8611, 6618, 6101, - 25446, 10087, 20558, 33039, 3699, 31789, 8610, 17632, 37045, 32717, - 39811, 8159, 38030, 3589, 8101, 2650, 17633, 4468, 31779, 32091, 39831, - 3860, 20987, 6619, 17565, 17588, 17587, 2793, 31397, 8591, 36065, 8823, - 31654, 20992, 6163, 39808, 28362, 32722, 18201, 19847, 4470, 27763, - 32044, 28485, 34750, 24567, 8603, 3579, 3580, 17581, 98, 6161, 17571, - 32362, 17596, 27753, 28384, 6621, 19846, 2565, 37924, 6926, 37792, 8097, - 31504, 39330, 11052, 34012, 3859, 17859, 4473, 17615, 28720, 28466, - 32716, 18832, 28484, 38035, 39335, 28719, 32545, 37160, 33987, 3481, - 6580, 34096, 32546, 34961, 34336, 38032, 20590, 372, 32423, 34966, 39604, - 18200, 31933, 31934, 8814, 39409, 17602, 20628, 35154, 34093, 5367, 3585, - 5108, 20602, 6927, 10710, 8098, 10792, 10793, 29138, 34727, 20601, 20600, - 31061, 20989, 17484, 20603, 3470, 2583, 20596, 25330, 8606, 32721, 10709, - 17555, 20985, 20988, 17483, 39711, 3983, 39592, 39591, 32405, 3999, - 22727, 2661, 4477, 370, 16877, 16878, 16879, 16880, 16881, 31958, 28379, - 31068, 39584, 8805, 37690, 24464, 31960, 6168, 11507, 8826, 39765, 34091, - 34089, 20589, 31963, 18168, 33045, 28360, 32403, 6587, 11158, 31646, - 4655, 16846, 30127, 34330, 5046, 966, 20557, 22729, 17595, 38031, 4345, - 38142, 19815, 2649, 17664, 3861, 31476, 22724, 31801, 11509, 2659, 11220, - 28381, 8806, 37691, 31961, 6169, 11508, 34335, 20591, 28361, 11219, - 31648, 17667, 19264, 39830, 3584, 31244, 31647, 31465, 6586, 17516, - 17514, 11664, 29620, 28382, 37900, 39753, 39668, 39694, 39718, 17599, - 39593, 31064, 37418, 37419, 8096, 30718, 8828, 39821, 17515, 29462, - 35151, 21089, 11515, 22719, 3865, 39819, 31906, 19270, 31796, 25837, - 2580, 20448, 39820, 39818, 17631, 5104, 5103, 4653, 18063, 25750, 39816, - 17563, 25756, 38157, 38158, 31776, 39817, 5034, 31489, 25753, 25754, - 30697, 30695, 2648, 8594, 31858, 20995, 20994, 19132, 2651, 17503, 350, - 20755, 33989, 20871, 18831, 10665, 25223, 29069, 17551, 19137, 3479, - 35149, 31651, 22716, 25329, 32342, 17863, 22711, 4469, 8804, 39602, 3586, - 5040, 38151, 34306, 18829, 19849, 4347, 18818, 39858, 31905, 19848, - 32087, 19850, 10968, 16834, 964, 4652, 34001, 8164, 34331, 11511, 10670, - 31649, 17609, 11138, 34319, 37393, 39679, 20612, 28182, 10082, 19879, - 8811, 3472, 3474, 3473, 3471, 28181, 6397, 32746, 31499, 5035, 27766, - 17616, 30729, 11662, 17577, 30716, 31072, 31074, 5364, 37046, 6106, 6396, - 6398, 3477, 8102, 31908, 32411, 31467, 34739, 38000, 4358, 24566, 29618, - 29619, 8148, 30710, 18817, 4346, 30733, 4359, 29140, 32743, 27600, 37051, - 31075, 17562, 32629, 31909, 6403, 31012, 20982, 31466, 17517, 20787, - 16915, 8145, 8146, 30720, 30719, 31785, 31782, 29457, 27780, 27781, - 39326, 27782, 29537, 968, 5365, 5366, 39329, 37058, 31936, 39331, 17580, - 31780, 31872, 38145, 8132, 8133, 8129, 977, 25331, 20443, 34314, 34313, - 34315, 34316, 3578, 16832, 24333, 32218, 25281, 8147, 21774, 25278, - 30723, 3592, 3594, 4357, 25221, 31938, 2653, 16910, 30699, 34152, 37939, - 29536, 21789, 20874, 20875, 20878, 20877, 20876, 17584, 16833, 39834, - 19260, 30033, 20604, 31660, 27752, 37057, 8833, 33983, 20993, 38002, - 4010, 39729, 22895, 22822, 22830, 22823, 34018, 34017, 38240, 11430, - 38244, 11424, 25400, 38336, 6642, 8820, 8819, 29611, 29613, 35038, 39692, - 19894, 6234, 31066, 11502, 21772, 28368, 35059, 27462, 4471, 8113, 8123, - 8125, 8109, 8107, 8117, 8115, 8105, 8111, 8119, 8103, 8121, 8114, 8124, - 8126, 8110, 8108, 8118, 8116, 8106, 8112, 8120, 8104, 8122, 32165, 32166, - 32167, 5099, 5100, 32350, 4356, 6100, 25840, 4012, 29535, 20556, 25751, - 34004, 10667, 34326, 34327, 21090, 25755, 24254, 37052, 32146, 39748, - 4025, 37056, 8099, 2654, 34711, 16914, 17625, 31479, 25220, 3980, 25362, - 25348, 25360, 25361, 25382, 24314, 38133, 31948, 32072, 32080, 32081, - 32086, 32082, 31949, 39669, 33174, 33173, 33170, 33169, 3958, 3985, - 33176, 33175, 33172, 33171, 4028, 3924, 3937, 10794, 21776, 37409, 31855, - 31802, 3940, 39683, 34103, 37040, 39814, 30707, 38146, 37405, 37984, - 30521, 19813, 32727, 31856, 17561, 30730, 11144, 11145, 11146, 17656, - 17658, 17657, 3936, 17629, 30717, 6107, 6108, 17578, 16882, 16883, 16884, - 29615, 29616, 29617, 16893, 16886, 16887, 11143, 31071, 31076, 39598, - 34329, 34328, 10795, 27767, 27022, 31055, 8131, 6098, 20789, 10684, 8586, - 30694, 32361, 31073, 34737, 10664, 25222, 34317, 37401, 37400, 37402, - 37403, 24282, 32168, 38161, 37407, 24299, 32182, 24212, 32104, 28365, - 24591, 24590, 2798, 2804, 2799, 2803, 2796, 24588, 2797, 39825, 28378, - 37983, 34724, 33986, 28383, 18821, 18824, 17541, 34077, 34079, 34078, - 34080, 34076, 34075, 39812, 34081, 17521, 32043, 34074, 34084, 34087, - 29269, 17496, 38197, 17524, 31477, 8592, 8593, 22712, 17552, 22713, - 22714, 17538, 17539, 17540, 11054, 39826, 965, 31794, 8832, 31501, 17546, - 11053, 17666, 962, 17567, 39600, 34003, 37791, 18826, 25445, 17529, - 20611, 17531, 17522, 2573, 17617, 34002, 11139, 17549, 17526, 18825, - 6170, 34073, 34072, 6171, 22715, 31793, 8831, 39599, 34008, 34007, 38348, - 17545, 17534, 17528, 31498, 32751, 19852, 34312, 19812, 31496, 31495, - 31491, 31493, 29580, 34208, 29553, 34195, 38131, 38140, 38130, 38139, - 29579, 34207, 29552, 34194, 19930, 19923, 19927, 19920, 29581, 34209, - 29554, 34196, 19931, 19924, 19928, 19921, 20554, 20555, 34148, 34149, - 24457, 38382, 32305, 11497, 32737, 19925, 24570, 19902, 19857, 34964, - 32623, 32624, 32625, 19947, 32626, 19914, 39316, 39313, 6399, 32053, - 32360, 20089, 34728, 31941, 20446, 20447, 37991, 27598, 24577, 34725, - 37987, 37988, 5102, 30704, 38028, 5105, 27768, 373, 17585, 31774, 30703, - 37044, 30702, 2582, 30700, 31976, 10689, 2564, 37985, 28359, 28375, - 34962, 28376, 160, 33019, 32419, 34318, 20582, 39307, 8595, 31775, 37999, - 11503, 29533, 34088, 29538, 31907, 11501, 31787, 29542, 3855, 29531, - 3854, 28377, 31508, 29534, 6582, 27463, 39822, 32048, 2652, 37982, 39582, - 33044, 3576, 3577, 31407, 10086, 2665, 24255, 37996, 31870, 6751, 4654, - 18064, 8803, 34000, 33022, 3596, 3756, 31665, 30126, 33021, 34752, 31077, - 20550, 20614, 16847, 22731, 41412, 41412, 41412, 39815, 31669, 39606, - 32343, 19261, 33015, 30159, 28373, 31940, 28370, 38238, 38235, 38243, - 34015, 29588, 227, 228, 41412, 41412, 41412, 32628, 30701, 10979, 31403, - 32725, 28371, 6103, 34005, 17620, 33992, 2584, 31645, 32363, 41412, - 41412, 41412, 297, 245, 345, 344, 341, 239, 237, 238, 235, 236, 334, 336, - 337, 323, 290, 252, 283, 284, 285, 267, 311, 288, 338, 339, 309, 310, - 272, 325, 278, 279, 261, 302, 258, 280, 321, 259, 260, 257, 312, 319, - 340, 331, 281, 240, 320, 313, 318, 335, 300, 301, 299, 303, 304, 305, - 232, 233, 286, 314, 242, 306, 307, 243, 248, 328, 329, 298, 249, 250, - 251, 234, 346, 324, 330, 273, 342, 291, 256, 333, 255, 327, 254, 332, - 315, 282, 326, 343, 276, 244, 293, 253, 292, 241, 316, 317, 322, 296, - 270, 268, 269, 295, 294, 262, 263, 264, 265, 266, 231, 246, 247, 308, - 277, 289, 271, 287, 275, 274, 25327, 30128, 25448, 39324, 2577, 20616, - 31399, 19842, 25625, 18198, 31927, 30736, 3951, 4029, 3991, 3925, 4015, - 27137, 4353, 19944, 39317, 17500, 39648, 32412, 4023, 4016, 24585, 27163, - 4354, 19941, 39318, 17501, 39730, 39732, 34559, 4021, 4039, 3973, 39663, - 39664, 10967, 4022, 4040, 3974, 39701, 37390, 24587, 27164, 4355, 39322, - 39319, 17502, 37388, 24580, 27154, 4349, 19915, 39314, 17497, 24573, - 27143, 4352, 19890, 39312, 17499, 24581, 27153, 4350, 19919, 39315, - 17498, 24571, 27161, 4351, 19884, 39311, 24583, 27158, 37408, 27157, - 24575, 27142, 17648, 27141, 32054, 24572, 19889, 27152, 19918, 33981, - 27160, 19882, 39310, 19880, 24582, 19937, 19936, 6912, 29183, 6922, - 29184, 29465, 41412, 41412, 41412, 41412, 41412, 41412, 22829, 22897, - 22825, 22893, 22820, 22896, 22824, 22831, 22898, 22826, 22894, 22821, - 41412, 41412, 41412, 41412, 19887, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 24377, 38358, 32258, 11448, 24384, 38355, 32265, 11445, 24371, 38354, - 32255, 11444, 41412, 41412, 41412, 41412, 24376, 38357, 32257, 11447, - 24386, 38359, 32267, 11449, 19898, 19939, 19912, 19876, 19897, 19938, - 19911, 19875, 24421, 38392, 32318, 11468, 24420, 38391, 32317, 11467, - 24419, 38388, 32316, 11464, 24423, 38394, 32320, 11470, 24422, 38393, - 32319, 11469, 24451, 38369, 32284, 11484, 24459, 38384, 32307, 11499, - 24461, 38380, 32340, 11495, 24411, 38378, 32298, 11493, 24412, 38379, - 32299, 11494, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 24460, 38383, 32308, 11498, 29586, 29559, 34201, 34214, 24274, 38225, - 41412, 41412, 41412, 41412, 41412, 41412, 39768, 39783, 39773, 39778, - 39793, 39788, 39798, 39803, 39770, 39785, 39775, 39780, 39795, 39790, - 39800, 39805, 39769, 39784, 39774, 39779, 39794, 39789, 39799, 39804, - 39766, 39781, 39771, 39776, 39791, 39786, 39796, 39801, 39767, 39782, - 39772, 39777, 39792, 39787, 39797, 39802, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 24427, 38398, 32324, 11475, 24441, 38408, - 32339, 11480, 24385, 38356, 32266, 11446, 19853, 19856, 19855, 19854, - 24395, 32273, 24430, 32309, 24452, 32304, 24456, 32300, 24394, 32272, - 24450, 32283, 39610, 39609, 41412, 41412, 2560, 2557, 32253, 11459, - 29214, 29215, 29222, 29216, 29578, 29550, 34193, 34206, 41412, 41412, - 41412, 41412, 24391, 32244, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 25318, 25322, - 25323, 33029, 25314, 33026, 25316, 25317, 25306, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 6640, 6641, 6639, 24239, 24237, - 24238, 24240, 24236, 11437, 11439, 11438, 11440, 31652, 39684, 5042, - 31653, 41221, 28183, 17542, 29463, 37391, 17525, 32421, 20613, 33849, - 5363, 31957, 24348, 32207, 19271, 19267, 20986, 17523, 8156, 29139, - 32365, 11512, 25506, 17550, 34092, 17533, 18823, 18822, 17544, 32846, - 34082, 17530, 33042, 31803, 5030, 31242, 32854, 31857, 25752, 28369, - 33047, 31486, 21092, 17573, 27783, 39833, 39585, 19269, 11134, 39807, - 11513, 8100, 38143, 34334, 18167, 32354, 17594, 32749, 37392, 4650, - 25914, 10081, 22728, 34105, 17624, 8827, 2642, 10088, 2660, 31788, 6166, - 2663, 18819, 32858, 34751, 16782, 18162, 31473, 22717, 31243, 11659, - 17636, 35648, 6617, 4472, 10074, 8160, 5041, 31663, 31853, 10089, 32627, - 6102, 24203, 25841, 28363, 2664, 34083, 39857, 34085, 17535, 17548, - 31054, 17662, 29466, 11058, 17553, 17537, 32718, 22726, 18197, 20551, - 17603, 8834, 25275, 32723, 38119, 38211, 11674, 11660, 3519, 32963, - 31067, 17653, 5107, 10962, 18196, 25276, 32089, 33046, 34704, 18065, - 41215, 20442, 32713, 35152, 8813, 21378, 25512, 31470, 20553, 31402, - 31935, 25444, 28367, 27755, 2662, 34965, 25749, 11504, 34013, 31011, - 30735, 33991, 17608, 31060, 3587, 3866, 32745, 18833, 31871, 16873, - 16874, 16876, 16875, 4656, 24569, 17630, 37901, 34958, 34959, 32556, - 11667, 28372, 25838, 27037, 27038, 6402, 10076, 32559, 3755, 17858, - 30709, 17560, 39433, 5106, 27001, 20627, 5044, 38027, 34726, 22721, - 10961, 17527, 101, 6581, 30696, 3583, 31494, 31488, 31497, 31487, 25516, - 17566, 38971, 27587, 16871, 18060, 41407, 5028, 30734, 3858, 32720, - 18165, 8809, 34100, 31978, 17589, 21095, 37163, 31507, 11661, 8589, 2645, - 17586, 37903, 5037, 25515, 25447, 25326, 34333, 2806, 32557, 37050, 5043, - 3480, 32364, 3478, 34337, 31964, 29141, 29246, 29257, 29260, 29249, - 29239, 29254, 39623, 3893, 29240, 39620, 39636, 39639, 39614, 39628, - 39633, 3890, 3906, 3909, 3884, 3898, 3903, 29247, 29258, 29261, 29250, - 29245, 29255, 39624, 3894, 29241, 39642, 39645, 39646, 39641, 39643, - 39644, 3912, 3915, 3916, 3911, 3913, 3914, 29264, 29267, 29268, 29263, - 29265, 29266, 39625, 3895, 29242, 39621, 39637, 39640, 39615, 39626, - 39634, 3891, 3907, 3910, 3885, 3896, 3904, 29248, 29259, 29262, 29251, - 29243, 29256, 39627, 3897, 29244, 39616, 3886, 29252, 39617, 3887, 29253, - 39630, 39631, 39629, 3900, 3901, 3899, 39618, 39612, 3888, 3882, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 39849, 39852, 39848, - 39850, 39847, 39846, 39851, 39842, 39845, 39841, 39843, 39840, 39839, - 39844, 41412, 41412, 2807, 30708, 5036, 33040, 37394, 24584, 18820, - 31657, 11510, 99, 34731, 39838, 8830, 41412, 41412, 41412, 41129, 22720, - 31251, 4360, 25514, 31658, 29236, 25844, 17618, 19814, 38029, 41412, - 41412, 41412, 37992, 33043, 32349, 6237, 31962, 2647, 11137, 3476, 27762, - 1, 25304, 8808, 6164, 32726, 22730, 20606, 27778, 39810, 31771, 32851, - 22722, 5110, 28380, 37902, 19844, 31666, 32359, 27779, 20633, 25332, - 19265, 17628, 19134, 21859, 17619, 39827, 3590, 8158, 31790, 39829, - 17568, 25328, 8782, 16885, 29237, 20624, 21088, 39813, 24201, 18199, 958, - 25449, 31509, 31805, 31804, 31492, 17582, 41412, 19136, 41412, 41412, - 41412, 41412, 30737, 28366, 11322, 4348, 3593, 30698, 17604, 36064, - 17652, 37049, 31792, 3588, 21087, 18062, 31474, 32402, 41412, 41412, - 34332, 27245, 32561, 17532, 17536, 17547, 11332, 3863, 5045, 33014, - 17543, 11057, 41412, 41412, 41412, 41412, 17576, 19268, 32297, 24410, - 31208, 31209, 20794, 19851, 24455, 32303, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 4284, 4314, 4285, 4329, 4300, 4318, 4286, 4337, + 2183, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 2241, 2242, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 20081, + 20097, 20112, 20088, 20116, 20115, 20113, 20093, 20110, 20107, 20086, + 20083, 20102, 20099, 20079, 20090, 20094, 20111, 20108, 20087, 20084, + 20103, 20100, 20080, 20091, 20092, 20109, 20106, 20085, 20082, 20101, + 20098, 20078, 20089, 20096, 20095, 20076, 20119, 20105, 20104, 20117, + 20114, 20118, 20077, 35536, 35536, 35536, 35536, 10257, 10208, 10209, + 10210, 10211, 10212, 10213, 10214, 10215, 10216, 10217, 10218, 10219, + 10220, 10221, 10222, 10223, 10224, 10225, 10226, 10227, 10228, 10229, + 10230, 10231, 10232, 10233, 10234, 10235, 10236, 10237, 10238, 10239, + 10240, 10241, 10242, 10243, 10244, 10245, 10246, 10247, 10248, 10249, + 10250, 10251, 10252, 10253, 10254, 10255, 10256, 10307, 10258, 10259, + 10260, 10261, 10262, 10263, 10264, 10265, 10266, 10267, 10268, 10269, + 10270, 10271, 10272, 10273, 10274, 10275, 10276, 10277, 10278, 10279, + 10280, 10281, 10282, 10283, 10284, 10285, 10286, 10287, 10288, 10289, + 10290, 10291, 10292, 10293, 10294, 10295, 10296, 10297, 10298, 10299, + 10300, 10301, 10302, 10303, 10304, 10305, 10306, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 25795, + 25865, 25840, 25836, 25799, 25804, 25824, 25820, 25816, 25869, 25832, + 25873, 25808, 25828, 25812, 35536, 35536, 25866, 25841, 25837, 25800, + 25805, 25825, 25821, 25817, 25870, 25833, 25874, 25809, 25829, 25813, + 25796, 35536, 25867, 25842, 25838, 25801, 25806, 25826, 25822, 25818, + 25871, 25834, 25875, 25810, 25830, 25814, 25794, 35536, 25864, 25839, + 25835, 25798, 25803, 25823, 25819, 25815, 25868, 25831, 25872, 25807, + 25827, 25811, 25797, 25802, 25846, 25843, 25857, 25858, 25859, 25860, + 25861, 25862, 25863, 25847, 25848, 25849, 25850, 25851, 25852, 25853, + 25854, 25855, 25856, 25844, 25845, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 9992, 9991, 9976, 9988, 9985, 9970, + 9967, 9982, 9979, 9994, 9973, 10033, 10012, 6918, 6635, 6659, 25463, + 25464, 25465, 25466, 25467, 25468, 25469, 25470, 25471, 25472, 25473, + 25474, 25475, 25476, 25477, 25478, 25479, 25480, 25481, 25482, 25483, + 25484, 25485, 25486, 25487, 25488, 32073, 6749, 6750, 6646, 6917, 7764, + 28768, 28769, 28770, 28771, 28772, 28773, 28774, 28775, 28776, 28777, + 28778, 28779, 28780, 28781, 28782, 28783, 28784, 28785, 28786, 28787, + 28788, 28789, 28790, 28791, 28792, 28793, 28762, 28798, 28813, 28814, + 28803, 28825, 23677, 23678, 23679, 23680, 23681, 23682, 23683, 23684, + 23685, 23686, 23687, 23688, 23689, 23690, 23691, 23692, 23693, 23694, + 23695, 23696, 23697, 23698, 23699, 23700, 23701, 23702, 26074, 26075, + 26076, 6645, 6644, 6692, 23708, 23709, 23710, 23711, 23712, 23713, 23714, + 23715, 23716, 23717, 23718, 23719, 23720, 23721, 23722, 23723, 23724, + 23725, 23726, 23727, 23728, 23729, 23730, 23731, 23732, 23733, 7808, + 23740, 23743, 23744, 23739, 23741, 28497, 28751, 28750, 28757, 28826, + 28799, 28800, 28802, 28812, 28820, 28823, 28815, 28805, 28817, 28755, + 28819, 28756, 28806, 28816, 28808, 28801, 28767, 28761, 28760, 28759, + 28796, 28807, 28821, 28822, 20511, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 26104, 26105, 26106, 26107, 26108, 26109, 26110, 26111, 26112, + 26113, 26114, 26115, 26116, 26117, 26118, 26119, 26120, 26121, 26122, + 26123, 26124, 26125, 26126, 26127, 26128, 26129, 28538, 28763, 28765, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 28729, 28724, 28716, 28764, 28710, 28722, 28745, + 28721, 28709, 28734, 28742, 28733, 28714, 28725, 28726, 28732, 28713, + 28743, 28740, 28747, 28723, 28718, 28737, 28727, 28730, 28707, 28708, + 28749, 28720, 28711, 28715, 28731, 28746, 28728, 28741, 28744, 28717, + 28738, 28736, 28735, 28739, 28712, 28719, 28748, 35536, 35536, 35536, + 35536, 32070, 32064, 32065, 32067, 32071, 32068, 32072, 32066, 32069, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 6697, 6695, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 26540, 26541, 26538, 26542, 26537, 26539, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 9643, 12618, 7128, 23987, 29001, 29000, 6928, 29046, + 26067, 5033, 33707, 33532, 22284, 10657, 10655, 10656, 13154, 23792, + 33619, 12583, 33620, 12661, 33618, 17425, 33617, 7798, 23791, 12582, + 17424, 12660, 28925, 13155, 27144, 31509, 3930, 33866, 33870, 33867, + 33868, 7141, 7140, 7139, 7138, 12617, 33933, 15586, 31167, 5109, 6579, + 26874, 12510, 9669, 25331, 6226, 15583, 32241, 6576, 26528, 15543, 29047, + 4344, 10651, 10652, 15368, 12637, 20363, 12550, 18722, 22999, 32023, + 2586, 13267, 21766, 33710, 30190, 19088, 3475, 25779, 26101, 13807, + 25599, 25596, 6578, 28865, 14257, 28130, 21556, 25915, 26224, 26225, + 7598, 9070, 28853, 28429, 5031, 12651, 26544, 9652, 25189, 29087, 12659, + 12589, 28226, 27088, 15617, 10403, 7597, 6618, 6101, 19966, 9073, 15549, + 27163, 3699, 25913, 7596, 12623, 31169, 26841, 33935, 7145, 32154, 3589, + 7087, 2650, 12624, 4468, 25903, 26215, 33955, 3860, 15978, 6619, 12556, + 12579, 12578, 2793, 25521, 7577, 30189, 7809, 25778, 15983, 6163, 33932, + 22882, 26846, 13192, 14838, 4470, 22283, 26168, 23005, 28874, 19087, + 7589, 3579, 3580, 12572, 98, 6161, 12562, 26486, 12587, 22273, 22904, + 6621, 14837, 2565, 32048, 6926, 31916, 7083, 25628, 33454, 10038, 28136, + 3859, 12850, 4473, 12606, 23240, 22986, 26840, 13823, 23004, 32159, + 33459, 23239, 26669, 31284, 28111, 3481, 6580, 28220, 26670, 29085, + 28460, 32156, 15581, 372, 26547, 29090, 33728, 13191, 26057, 26058, 7800, + 33533, 12593, 15619, 29278, 28217, 5367, 3585, 5108, 15593, 6927, 9696, + 7084, 9778, 9779, 23658, 28851, 15592, 15591, 25185, 15980, 12475, 15594, + 3470, 2583, 15587, 19850, 7592, 26845, 9695, 12546, 15976, 15979, 12474, + 33835, 3983, 33716, 33715, 26529, 3999, 17247, 2661, 4477, 370, 11868, + 11869, 11870, 11871, 11872, 26082, 22899, 25192, 33708, 7791, 31814, + 18984, 26084, 6168, 10493, 7812, 33889, 28215, 28213, 15580, 26087, + 13159, 27169, 22880, 26527, 6587, 10144, 25770, 4655, 11837, 24251, + 28454, 5046, 966, 15548, 17249, 12586, 32155, 4345, 32266, 14806, 2649, + 12655, 3861, 25600, 17244, 25925, 10495, 2659, 10206, 22901, 7792, 31815, + 26085, 6169, 10494, 28459, 15582, 22881, 10205, 25772, 12658, 14255, + 33954, 3584, 25368, 25771, 25589, 6586, 12507, 12505, 10650, 24140, + 22902, 32024, 33877, 33792, 33818, 33842, 12590, 33717, 25188, 31542, + 31543, 7082, 24842, 7814, 33945, 12506, 23982, 29275, 16080, 10501, + 17239, 3865, 33943, 26030, 14261, 25920, 20357, 2580, 15439, 33944, + 33942, 12622, 5104, 5103, 4653, 13054, 20270, 33940, 12554, 20276, 32281, + 32282, 25900, 33941, 5034, 25613, 20273, 20274, 24821, 24819, 2648, 7580, + 25982, 15986, 15985, 14123, 2651, 12494, 350, 15746, 28113, 15862, 13822, + 9651, 19743, 23589, 12542, 14128, 3479, 29273, 25775, 17236, 19849, + 26466, 12854, 17231, 4469, 7790, 33726, 3586, 5040, 32275, 28430, 13820, + 14840, 4347, 13809, 33982, 26029, 14839, 26211, 14841, 9954, 11825, 964, + 4652, 28125, 7150, 28455, 10497, 9656, 25773, 12600, 10124, 28443, 31517, + 33803, 15603, 22702, 9068, 14870, 7797, 3472, 3474, 3473, 3471, 22701, + 6397, 26870, 25623, 5035, 22286, 12607, 24853, 10648, 12568, 24840, + 25196, 25198, 5364, 31170, 6106, 6396, 6398, 3477, 7088, 26032, 26535, + 25591, 28863, 32124, 4358, 19086, 24138, 24139, 7134, 24834, 13808, 4346, + 24857, 4359, 23660, 26867, 22120, 31175, 25199, 12553, 26753, 26033, + 6403, 25136, 15973, 25590, 12508, 15778, 11906, 7131, 7132, 24844, 24843, + 25909, 25906, 23977, 22300, 22301, 33450, 22302, 24057, 968, 5365, 5366, + 33453, 31182, 26060, 33455, 12571, 25904, 25996, 32269, 7118, 7119, 7115, + 977, 19851, 15434, 28438, 28437, 28439, 28440, 3578, 11823, 18853, 26342, + 19801, 7133, 16765, 19798, 24847, 3592, 3594, 4357, 19741, 26062, 2653, + 11901, 24823, 28276, 32063, 24056, 16780, 15865, 15866, 15869, 15868, + 15867, 12575, 11824, 33958, 14251, 24156, 15595, 25784, 22272, 31181, + 7819, 28107, 15984, 32126, 4010, 33853, 17415, 17342, 17350, 17343, + 28142, 28141, 32364, 10416, 32368, 10410, 19920, 32460, 6642, 7806, 7805, + 24131, 24133, 29162, 33816, 14885, 6234, 25190, 10488, 16763, 22888, + 29183, 21982, 4471, 7099, 7109, 7111, 7095, 7093, 7103, 7101, 7091, 7097, + 7105, 7089, 7107, 7100, 7110, 7112, 7096, 7094, 7104, 7102, 7092, 7098, + 7106, 7090, 7108, 26289, 26290, 26291, 5099, 5100, 26474, 4356, 6100, + 20360, 4012, 24055, 15547, 20271, 28128, 9653, 28450, 28451, 16081, + 20275, 18774, 31176, 26270, 33872, 4025, 31180, 7085, 2654, 28835, 11905, + 12616, 25603, 19740, 3980, 19882, 19868, 19880, 19881, 19902, 18834, + 32257, 26072, 26196, 26204, 26205, 26210, 26206, 26073, 33793, 27298, + 27297, 27294, 27293, 3958, 3985, 27300, 27299, 27296, 27295, 4028, 3924, + 3937, 9780, 16767, 31533, 25979, 25926, 3940, 33807, 28227, 31164, 33938, + 24831, 32270, 31529, 32108, 24645, 14804, 26851, 25980, 12552, 24854, + 10130, 10131, 10132, 12647, 12649, 12648, 3936, 12620, 24841, 6107, 6108, + 12569, 11873, 11874, 11875, 24135, 24136, 24137, 11884, 11877, 11878, + 10129, 25195, 25200, 33722, 28453, 28452, 9781, 22287, 21542, 25179, + 7117, 6098, 15780, 9670, 7572, 24818, 26485, 25197, 28861, 9650, 19742, + 28441, 31525, 31524, 31526, 31527, 18802, 26292, 32285, 31531, 18819, + 26306, 18732, 26228, 22885, 19111, 19110, 2798, 2804, 2799, 2803, 2796, + 19108, 2797, 33949, 22898, 32107, 28848, 28110, 22903, 13812, 13815, + 12532, 28201, 28203, 28202, 28204, 28200, 28199, 33936, 28205, 12512, + 26167, 28198, 28208, 28211, 23789, 12487, 32321, 12515, 25601, 7578, + 7579, 17232, 12543, 17233, 17234, 12529, 12530, 12531, 10040, 33950, 965, + 25918, 7818, 25625, 12537, 10039, 12657, 962, 12558, 33724, 28127, 31915, + 13817, 19965, 12520, 15602, 12522, 12513, 2573, 12608, 28126, 10125, + 12540, 12517, 13816, 6170, 28197, 28196, 6171, 17235, 25917, 7817, 33723, + 28132, 28131, 32472, 12536, 12525, 12519, 25622, 26875, 14843, 28436, + 14803, 25620, 25619, 25615, 25617, 24100, 28332, 24073, 28319, 32255, + 32264, 32254, 32263, 24099, 28331, 24072, 28318, 14921, 14914, 14918, + 14911, 24101, 28333, 24074, 28320, 14922, 14915, 14919, 14912, 15545, + 15546, 28272, 28273, 18977, 32506, 26429, 10483, 26861, 14916, 19090, + 14893, 14848, 29088, 26747, 26748, 26749, 14938, 26750, 14905, 33440, + 33437, 6399, 26177, 26484, 15080, 28852, 26065, 15437, 15438, 32115, + 22118, 19097, 28849, 32111, 32112, 5102, 24828, 32152, 5105, 22288, 373, + 12576, 25898, 24827, 31168, 24826, 2582, 24824, 26100, 9675, 2564, 32109, + 22879, 22895, 29086, 22896, 160, 27143, 26543, 28442, 15573, 33431, 7581, + 25899, 32123, 10489, 24053, 28212, 24058, 26031, 10487, 25911, 24062, + 3855, 24051, 3854, 22897, 25632, 24054, 6582, 21983, 33946, 26172, 2652, + 32106, 33706, 27168, 3576, 3577, 25531, 9072, 2665, 18775, 32120, 25994, + 6751, 4654, 13055, 7789, 28124, 27146, 3596, 3756, 25789, 24250, 27145, + 28876, 25201, 15541, 15605, 11838, 17251, 35536, 35536, 35536, 33939, + 25793, 33730, 26467, 14252, 27139, 24283, 22893, 26064, 22890, 32362, + 32359, 32367, 28139, 24108, 227, 228, 35536, 35536, 35536, 26752, 24825, + 9965, 25527, 26849, 22891, 6103, 28129, 12611, 28116, 2584, 25769, 26487, + 35536, 35536, 35536, 297, 245, 345, 344, 341, 239, 237, 238, 235, 236, + 334, 336, 337, 323, 290, 252, 283, 284, 285, 267, 311, 288, 338, 339, + 309, 310, 272, 325, 278, 279, 261, 302, 258, 280, 321, 259, 260, 257, + 312, 319, 340, 331, 281, 240, 320, 313, 318, 335, 300, 301, 299, 303, + 304, 305, 232, 233, 286, 314, 242, 306, 307, 243, 248, 328, 329, 298, + 249, 250, 251, 234, 346, 324, 330, 273, 342, 291, 256, 333, 255, 327, + 254, 332, 315, 282, 326, 343, 276, 244, 293, 253, 292, 241, 316, 317, + 322, 296, 270, 268, 269, 295, 294, 262, 263, 264, 265, 266, 231, 246, + 247, 308, 277, 289, 271, 287, 275, 274, 19847, 24252, 19968, 33448, 2577, + 15607, 25523, 14833, 20145, 13189, 26051, 24860, 3951, 4029, 3991, 3925, + 4015, 21657, 4353, 14935, 33441, 12491, 33772, 26536, 4023, 4016, 19105, + 21683, 4354, 14932, 33442, 12492, 33854, 33856, 28683, 4021, 4039, 3973, + 33787, 33788, 9953, 4022, 4040, 3974, 33825, 31514, 19107, 21684, 4355, + 33446, 33443, 12493, 31512, 19100, 21674, 4349, 14906, 33438, 12488, + 19093, 21663, 4352, 14881, 33436, 12490, 19101, 21673, 4350, 14910, + 33439, 12489, 19091, 21681, 4351, 14875, 33435, 19103, 21678, 31532, + 21677, 19095, 21662, 12639, 21661, 26178, 19092, 14880, 21672, 14909, + 28105, 21680, 14873, 33434, 14871, 19102, 14928, 14927, 6912, 23703, + 6922, 23704, 23985, 35536, 35536, 35536, 35536, 35536, 35536, 17349, + 17417, 17345, 17413, 17340, 17416, 17344, 17351, 17418, 17346, 17414, + 17341, 35536, 35536, 35536, 35536, 14878, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 18897, 32482, 26382, 10434, 18904, 32479, 26389, 10431, 18891, + 32478, 26379, 10430, 35536, 35536, 35536, 35536, 18896, 32481, 26381, + 10433, 18906, 32483, 26391, 10435, 14889, 14930, 14903, 14867, 14888, + 14929, 14902, 14866, 18941, 32516, 26442, 10454, 18940, 32515, 26441, + 10453, 18939, 32512, 26440, 10450, 18943, 32518, 26444, 10456, 18942, + 32517, 26443, 10455, 18971, 32493, 26408, 10470, 18979, 32508, 26431, + 10485, 18981, 32504, 26464, 10481, 18931, 32502, 26422, 10479, 18932, + 32503, 26423, 10480, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 18980, 32507, 26432, 10484, 24106, 24079, 28325, 28338, 18794, + 32349, 35536, 35536, 35536, 35536, 35536, 35536, 33892, 33907, 33897, + 33902, 33917, 33912, 33922, 33927, 33894, 33909, 33899, 33904, 33919, + 33914, 33924, 33929, 33893, 33908, 33898, 33903, 33918, 33913, 33923, + 33928, 33890, 33905, 33895, 33900, 33915, 33910, 33920, 33925, 33891, + 33906, 33896, 33901, 33916, 33911, 33921, 33926, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 18947, 32522, 26448, 10461, 18961, + 32532, 26463, 10466, 18905, 32480, 26390, 10432, 14844, 14847, 14846, + 14845, 18915, 26397, 18950, 26433, 18972, 26428, 18976, 26424, 18914, + 26396, 18970, 26407, 33734, 33733, 35536, 35536, 2560, 2557, 26377, + 10445, 23734, 23735, 23742, 23736, 24098, 24070, 28317, 28330, 35536, + 35536, 35536, 35536, 18911, 26368, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 19838, + 19842, 19843, 27153, 19834, 27150, 19836, 19837, 19826, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 6640, 6641, 6639, 18759, + 18757, 18758, 18760, 18756, 10423, 10425, 10424, 10426, 25776, 33808, + 5042, 25777, 35345, 22703, 12533, 23983, 31515, 12516, 26545, 15604, + 27973, 5363, 26081, 18868, 26331, 14262, 14258, 15977, 12514, 7142, + 23659, 26489, 10498, 20026, 12541, 28216, 12524, 13814, 13813, 12535, + 26970, 28206, 12521, 27166, 25927, 5030, 25366, 26978, 25981, 20272, + 22889, 27171, 25610, 16083, 12564, 22303, 33957, 33709, 14260, 10120, + 33931, 10499, 7086, 32267, 28458, 13158, 26478, 12585, 26873, 31516, + 4650, 20434, 9067, 17248, 28229, 12615, 7813, 2642, 9074, 2660, 25912, + 6166, 2663, 13810, 26982, 28875, 11773, 13153, 25597, 17237, 25367, + 10645, 12627, 29772, 6617, 4472, 9060, 7146, 5041, 25787, 25977, 9075, + 26751, 6102, 18723, 20361, 22883, 2664, 28207, 33981, 28209, 12526, + 12539, 25178, 12653, 23986, 10044, 12544, 12528, 26842, 17246, 13188, + 15542, 12594, 7820, 19795, 26847, 32243, 32335, 10660, 10646, 3519, + 27087, 25191, 12644, 5107, 9948, 13187, 19796, 26213, 27170, 28828, + 13056, 35339, 15433, 26837, 29276, 7799, 16369, 20032, 25594, 15544, + 25526, 26059, 19964, 22887, 22275, 2662, 29089, 20269, 10490, 28137, + 25135, 24859, 28115, 12599, 25184, 3587, 3866, 26869, 13824, 25995, + 11864, 11865, 11867, 11866, 4656, 19089, 12621, 32025, 29082, 29083, + 26680, 10653, 22892, 20358, 21557, 21558, 6402, 9062, 26683, 3755, 12849, + 24833, 12551, 33557, 5106, 21521, 15618, 5044, 32151, 28850, 17241, 9947, + 12518, 101, 6581, 24820, 3583, 25618, 25612, 25621, 25611, 20036, 12557, + 33095, 22107, 11862, 13051, 35531, 5028, 24858, 3858, 26844, 13156, 7795, + 28224, 26102, 12580, 16086, 31287, 25631, 10647, 7575, 2645, 12577, + 32027, 5037, 20035, 19967, 19846, 28457, 2806, 26681, 31174, 5043, 3480, + 26488, 3478, 28461, 26088, 23661, 23766, 23777, 23780, 23769, 23759, + 23774, 33747, 3893, 23760, 33744, 33760, 33763, 33738, 33752, 33757, + 3890, 3906, 3909, 3884, 3898, 3903, 23767, 23778, 23781, 23770, 23765, + 23775, 33748, 3894, 23761, 33766, 33769, 33770, 33765, 33767, 33768, + 3912, 3915, 3916, 3911, 3913, 3914, 23784, 23787, 23788, 23783, 23785, + 23786, 33749, 3895, 23762, 33745, 33761, 33764, 33739, 33750, 33758, + 3891, 3907, 3910, 3885, 3896, 3904, 23768, 23779, 23782, 23771, 23763, + 23776, 33751, 3897, 23764, 33740, 3886, 23772, 33741, 3887, 23773, 33754, + 33755, 33753, 3900, 3901, 3899, 33742, 33736, 3888, 3882, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 33973, 33976, 33972, 33974, + 33971, 33970, 33975, 33966, 33969, 33965, 33967, 33964, 33963, 33968, + 35536, 35536, 2807, 24832, 5036, 27164, 31518, 19104, 13811, 25781, + 10496, 99, 28855, 33962, 7816, 35536, 35536, 35536, 35253, 17240, 25375, + 4360, 20034, 25782, 23756, 20364, 12609, 14805, 32153, 35536, 35536, + 35536, 32116, 27167, 26473, 6237, 26086, 2647, 10123, 3476, 22282, 1, + 19824, 7794, 6164, 26850, 17250, 15597, 22298, 33934, 25895, 26975, + 17242, 5110, 22900, 32026, 14835, 25790, 26483, 22299, 15624, 19852, + 14256, 12619, 14125, 16850, 12610, 33951, 3590, 7144, 25914, 33953, + 12559, 19848, 7768, 11876, 23757, 15615, 16079, 33937, 18721, 13190, 958, + 19969, 25633, 25929, 25928, 25616, 12573, 35536, 14127, 35536, 35536, + 35536, 35536, 24861, 22886, 10308, 4348, 3593, 24822, 12595, 30188, + 12643, 31173, 25916, 3588, 16078, 13053, 25598, 26526, 35536, 35536, + 28456, 21765, 26685, 12523, 12527, 12538, 10318, 3863, 5045, 27138, + 12534, 10043, 35536, 35536, 35536, 35536, 12567, 14259, 26421, 18930, + 25332, 25333, 15785, 14842, 18975, 26427, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 4284, 4314, 4285, 4329, 4300, 4318, 4286, 4337, 4307, 4315, 4293, 4330, 4301, 4319, 4287, 4341, 4311, 4326, 4297, 4334, 4323, 4290, 4338, 4308, 4316, 4294, 4331, 4302, 4320, 4288, 4343, 4313, 4328, 4299, 4336, 4306, 4325, 4292, 4340, 4310, 4296, 4333, 4304, 4322, 4289, 4342, 4312, 4327, 4298, 4335, 4305, 4324, 4291, 4339, 4309, 4317, - 4295, 4332, 4303, 4321, 25349, 25350, 25357, 25359, 25354, 25415, 25416, - 25412, 25414, 25410, 25413, 25406, 25409, 25407, 25411, 25408, 25353, - 25356, 25351, 25355, 25352, 25358, 38308, 38309, 38316, 38318, 38313, - 38278, 38279, 38275, 38277, 38273, 38276, 38269, 38272, 38270, 38274, - 38271, 38312, 38315, 38310, 38314, 38311, 38317, 38251, 24204, 38248, - 24209, 24295, 38347, 32190, 25441, 39295, 39296, 39297, 39298, 39299, - 39300, 20568, 20569, 20570, 20571, 20572, 20573, 24205, 24210, 32103, - 32102, 38250, 20567, 38306, 38343, 38258, 38346, 38342, 32152, 32186, - 32130, 32185, 32162, 24253, 32145, 38265, 25342, 20969, 38260, 38262, - 41412, 24252, 6400, 20965, 19891, 38283, 38338, 38249, 24206, 38284, - 38339, 25402, 25379, 4556, 4560, 4548, 4554, 4557, 4562, 4549, 4551, - 4559, 4561, 4563, 4558, 4552, 4553, 4579, 4589, 2563, 20966, 24247, - 32140, 20967, 24364, 32241, 11454, 38351, 24244, 32137, 39407, 32154, - 29186, 29185, 29187, 39687, 24298, 27757, 32181, 29217, 34732, 34733, - 34735, 34736, 34734, 39755, 39660, 31953, 4005, 24305, 24260, 4555, 4576, + 4295, 4332, 4303, 4321, 19869, 19870, 19877, 19879, 19874, 19935, 19936, + 19932, 19934, 19930, 19933, 19926, 19929, 19927, 19931, 19928, 19873, + 19876, 19871, 19875, 19872, 19878, 32432, 32433, 32440, 32442, 32437, + 32402, 32403, 32399, 32401, 32397, 32400, 32393, 32396, 32394, 32398, + 32395, 32436, 32439, 32434, 32438, 32435, 32441, 32375, 18724, 32372, + 18729, 18815, 32471, 26314, 19961, 33419, 33420, 33421, 33422, 33423, + 33424, 15559, 15560, 15561, 15562, 15563, 15564, 18725, 18730, 26227, + 26226, 32374, 15558, 32430, 32467, 32382, 32470, 32466, 26276, 26310, + 26254, 26309, 26286, 18773, 26269, 32389, 19862, 15960, 32384, 32386, + 35536, 18772, 6400, 15956, 14882, 32407, 32462, 32373, 18726, 32408, + 32463, 19922, 19899, 4556, 4560, 4548, 4554, 4557, 4562, 4549, 4551, + 4559, 4561, 4563, 4558, 4552, 4553, 4579, 4589, 2563, 15957, 18767, + 26264, 15958, 18884, 26365, 10440, 32475, 18764, 26261, 33531, 26278, + 23706, 23705, 23707, 33811, 18818, 22277, 26305, 23737, 28856, 28857, + 28859, 28860, 28858, 33879, 33784, 26077, 4005, 18825, 18780, 4555, 4576, 4571, 4550, 4566, 4565, 4573, 4564, 4569, 4575, 4546, 4570, 4567, 4577, - 4547, 4572, 37927, 32148, 4466, 24319, 38257, 25426, 27758, 27759, 37926, - 32147, 4465, 24318, 37936, 4452, 4459, 37928, 32759, 32761, 32758, 32757, - 32754, 32753, 32756, 32755, 32762, 32760, 229, 41412, 41412, 41412, - 41412, 41412, 6959, 6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968, - 6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980, - 6981, 6982, 6983, 6984, 6985, 6986, 6987, 6988, 6989, 6990, 6991, 6992, - 6993, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004, - 7005, 7006, 7007, 7008, 7009, 7010, 7011, 7012, 7013, 7014, 7015, 7016, - 7017, 7018, 7019, 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028, - 7029, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 7040, - 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, 7051, 7052, - 7053, 7054, 7055, 7056, 7057, 7058, 7059, 7060, 7061, 7062, 7063, 7064, - 7065, 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, 7074, 7075, 7076, - 7077, 7078, 7079, 7080, 7081, 7082, 7083, 7084, 7085, 7086, 7087, 7088, - 7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, 7097, 7098, 7099, 7100, - 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, - 7113, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, 7122, 7123, 7124, - 7125, 7126, 7127, 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, 7136, - 7137, 7138, 7139, 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148, - 7149, 7150, 7151, 7152, 7153, 7154, 7155, 7156, 7157, 7158, 7159, 7160, - 7161, 7162, 7163, 7164, 7165, 7166, 7167, 7168, 7169, 7170, 7171, 7172, - 7173, 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, 7182, 7183, 7184, - 7185, 7186, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196, - 7197, 7198, 7199, 7200, 7201, 7202, 7203, 7204, 7205, 7206, 7207, 7208, - 7209, 7210, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7220, - 7221, 7222, 7223, 7224, 7225, 7226, 7227, 7228, 7229, 7230, 7231, 7232, - 7233, 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, 7242, 7243, 7244, - 7245, 7246, 7247, 7248, 7249, 7250, 7251, 7252, 7253, 7254, 7255, 7256, - 7257, 7258, 7259, 7260, 7261, 7262, 7263, 7264, 7265, 7266, 7267, 7268, - 7269, 7270, 7271, 7272, 7273, 7274, 7275, 7276, 7277, 7278, 7279, 7280, - 7281, 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289, 7290, 7291, 7292, - 7293, 7294, 7295, 7296, 7297, 7298, 7299, 7300, 7301, 7302, 7303, 7304, - 7305, 7306, 7307, 7308, 7309, 7310, 7311, 7312, 7313, 7314, 7315, 7316, - 7317, 7318, 7319, 7320, 7321, 7322, 7323, 7324, 7325, 7326, 7327, 7328, - 7329, 7330, 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, 7339, 7340, - 7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, 7350, 7351, 7352, - 7353, 7354, 7355, 7356, 7357, 7358, 7359, 7360, 7361, 7362, 7363, 7364, - 7365, 7366, 7367, 7368, 7369, 7370, 7371, 7372, 7373, 7374, 7375, 7376, - 7377, 7378, 7379, 7380, 7381, 7382, 7383, 7384, 7385, 7386, 7387, 7388, - 7389, 7390, 7391, 7392, 7393, 7394, 7395, 7396, 7397, 7398, 7399, 7400, - 7401, 7402, 7403, 7404, 7405, 7406, 7407, 7408, 7409, 7410, 7411, 7412, - 7413, 7414, 7415, 7416, 7417, 7418, 7419, 7420, 7421, 7422, 7423, 7424, - 7425, 7426, 7427, 7428, 7429, 7430, 7431, 7432, 7433, 7434, 7435, 7436, - 7437, 7438, 7439, 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448, - 7449, 7450, 7451, 7452, 7453, 7454, 7455, 7456, 7457, 7458, 7459, 7460, - 7461, 7462, 7463, 7464, 7465, 7466, 7467, 7468, 7469, 7470, 6943, 6944, - 6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6954, 6955, 6956, - 6957, 6958, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, - 6939, 6940, 6941, 6942, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 22732, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 35245, 35174, 35237, 35246, 35162, 35235, 35156, 35155, 35232, - 35240, 35157, 35236, 35160, 35177, 35248, 35244, 35169, 35171, 35168, - 35167, 35164, 35163, 35166, 35165, 35172, 35170, 35161, 35243, 35230, - 35173, 35176, 35238, 35159, 35178, 35179, 35180, 35181, 35182, 35183, - 35184, 35185, 35186, 35187, 35188, 35189, 35190, 35191, 35192, 35193, - 35194, 35195, 35196, 35197, 35198, 35199, 35200, 35201, 35202, 35203, - 35233, 35242, 35241, 35158, 35234, 35175, 35204, 35205, 35206, 35207, - 35208, 35209, 35210, 35211, 35212, 35213, 35214, 35215, 35216, 35217, - 35218, 35219, 35220, 35221, 35222, 35223, 35224, 35225, 35226, 35227, - 35228, 35229, 35231, 35249, 35239, 35247, 6097, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 38793, 38804, 38815, 38827, 38838, - 38849, 38860, 38871, 38882, 38890, 38891, 38892, 38893, 38895, 38896, - 38897, 38898, 38899, 38900, 38901, 38902, 38903, 38904, 38906, 38907, - 38908, 38909, 38910, 38911, 38912, 38913, 38914, 38915, 38917, 38918, - 38919, 38920, 38921, 38922, 38923, 38924, 38925, 38926, 38928, 38929, - 38930, 38931, 38932, 38933, 38934, 38935, 38936, 38937, 38939, 38940, - 38941, 38942, 38943, 38944, 38945, 38946, 38947, 38948, 38950, 38951, - 38952, 38953, 38954, 38955, 38956, 38957, 38958, 38959, 38961, 38962, - 38963, 38964, 38965, 38966, 38967, 38968, 38969, 38970, 38717, 38718, - 38719, 38720, 38721, 38722, 38723, 38724, 38725, 38726, 38728, 38729, - 38730, 38731, 38732, 38733, 38734, 38735, 38736, 38737, 38739, 38740, - 38741, 38742, 38743, 38744, 38745, 38746, 38747, 38748, 38750, 38751, - 38752, 38753, 38754, 38755, 38756, 38757, 38758, 38759, 38761, 38762, - 38763, 38764, 38765, 38766, 38767, 38768, 38769, 38770, 38772, 38773, - 38774, 38775, 38776, 38777, 38778, 38779, 38780, 38781, 38783, 38784, - 38785, 38786, 38787, 38788, 38789, 38790, 38791, 38792, 38794, 38795, - 38796, 38797, 38798, 38799, 38800, 38801, 38802, 38803, 38805, 38806, - 38807, 38808, 38809, 38810, 38811, 38812, 38813, 38814, 38816, 38817, - 38818, 38819, 38820, 38821, 38822, 38823, 38824, 38825, 38828, 38829, - 38830, 38831, 38832, 38833, 38834, 38835, 38836, 38837, 38839, 38840, - 38841, 38842, 38843, 38844, 38845, 38846, 38847, 38848, 38850, 38851, - 38852, 38853, 38854, 38855, 38856, 38857, 38858, 38859, 38861, 38862, - 38863, 38864, 38865, 38866, 38867, 38868, 38869, 38870, 38872, 38873, - 38874, 38875, 38876, 38877, 38878, 38879, 38880, 38881, 38883, 38884, - 38885, 38886, 38887, 38888, 38889, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 30035, 30034, 34722, 34301, 34723, 34754, 16908, 17482, 16906, - 16919, 16912, 16911, 3, 2, 349, 3591, 2657, 5360, 6392, 20578, 20608, - 35153, 24664, 29357, 16909, 25513, 30109, 16917, 24666, 39304, 39411, - 17638, 17788, 6165, 8810, 33016, 25280, 34098, 33017, 25279, 33050, - 10675, 11663, 10960, 10676, 10959, 10677, 10958, 10678, 10956, 10679, - 29225, 29143, 35058, 35057, 16907, 17481, 6095, 5368, 16905, 16918, - 16872, 34785, 34755, 16954, 16953, 20866, 17579, 17786, 20867, 18827, - 19133, 20868, 31975, 32554, 20869, 38208, 38414, 34303, 10691, 10688, - 31070, 31069, 20445, 20607, 5029, 5359, 29530, 29145, 20793, 20792, - 29459, 29464, 34719, 34707, 16904, 16957, 6394, 20580, 20610, 6393, - 20579, 20609, 24667, 39305, 39412, 31393, 31392, 31772, 31394, 31395, - 31752, 32055, 32062, 32090, 33862, 33863, 34705, 33861, 33864, 34706, - 10957, 10680, 31861, 31862, 31910, 31860, 31863, 31911, 32849, 34753, - 6096, 10660, 27588, 28969, 34718, 34721, 34304, 16903, 16901, 17520, - 34720, 34302, 33856, 35150, 33855, 32744, 8604, 10659, 34744, 34708, - 30727, 30949, 31859, 31912, 1056, 1063, 29144, 33049, 23060, 23683, - 10658, 2354, 363, 35136, 21392, 22735, 22736, 22778, 22744, 37497, 19533, - 19534, 19511, 19532, 17782, 17783, 17784, 28967, 17785, 34810, 41410, - 41409, 41411, 25509, 32357, 25507, 32355, 31468, 25510, 32358, 30108, - 28968, 39836, 25508, 32356, 17787, 31469, 39603, 27750, 27751, 24416, - 32313, 40346, 28755, 38972, 39083, 39151, 39162, 39173, 39184, 39195, - 39206, 39217, 38973, 38984, 38995, 39006, 39017, 39028, 39039, 31828, - 5358, 4651, 41408, 9774, 9773, 9469, 2872, 2982, 2973, 3080, 3281, 27045, - 27043, 27103, 27101, 20358, 5195, 27423, 27426, 39050, 39061, 39072, - 39084, 39095, 39106, 39117, 39128, 39139, 39147, 39148, 39149, 39150, - 39152, 39153, 39154, 39155, 39156, 39157, 39158, 39159, 39160, 39161, - 39163, 39164, 39165, 39166, 39167, 39168, 39169, 39170, 39171, 39172, - 39174, 39175, 39176, 39177, 39178, 39179, 39180, 39181, 39182, 39183, - 39185, 39186, 39187, 39188, 39189, 39190, 39191, 39192, 39193, 39194, - 39196, 39197, 39198, 39199, 39200, 39201, 39202, 39203, 39204, 39205, - 39207, 39208, 39209, 39210, 39211, 39212, 39213, 39214, 39215, 39216, - 39218, 39219, 39220, 39221, 39222, 39223, 39224, 39225, 39226, 39227, - 38974, 38975, 38976, 38977, 38978, 38979, 38980, 38981, 38982, 38983, - 38985, 38986, 38987, 38988, 38989, 38990, 38991, 38992, 38993, 38994, - 38996, 38997, 38998, 38999, 39000, 39001, 39002, 39003, 39004, 39005, - 39007, 39008, 39009, 39010, 39011, 39012, 39013, 39014, 39015, 39016, - 39018, 39019, 39020, 39021, 39022, 39023, 39024, 39025, 39026, 39027, - 39029, 39030, 39031, 39032, 39033, 39034, 39035, 39036, 39037, 39038, - 39040, 39041, 39042, 39043, 39044, 39045, 39046, 39047, 39048, 39049, - 39051, 39052, 39053, 39054, 39055, 39056, 39057, 39058, 39059, 39060, - 39062, 39063, 39064, 39065, 39066, 39067, 39068, 39069, 39070, 39071, - 39073, 39074, 39075, 39076, 39077, 39078, 39079, 39080, 39081, 39082, - 39085, 39086, 39087, 39088, 39089, 39090, 39091, 39092, 39093, 39094, - 39096, 39097, 39098, 39099, 39100, 39101, 39102, 39103, 39104, 39105, - 39107, 39108, 39109, 39110, 39111, 39112, 39113, 39114, 39115, 39116, - 39118, 39119, 39120, 39121, 39122, 39123, 39124, 39125, 39126, 39127, - 39129, 39130, 39131, 39132, 39133, 39134, 39135, 39136, 39137, 39138, - 39140, 39141, 39142, 39143, 39144, 39145, 39146, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 21777, 21778, - 21785, 21787, 21784, 21783, 21780, 21779, 21782, 21781, 21788, 21786, - 22923, 23489, 23084, 23714, 23324, 24088, 23019, 23624, 23020, 23625, - 23021, 23626, 23195, 23865, 23196, 23866, 23197, 23867, 23263, 23964, - 23003, 23607, 22999, 23603, 23709, 23833, 22933, 23499, 22934, 23500, - 23024, 23630, 23025, 23631, 23009, 23613, 23010, 23614, 23708, 23710, - 23089, 23716, 23090, 23717, 23107, 23744, 23137, 23784, 23145, 23806, - 23235, 23924, 23328, 24092, 23329, 24093, 23325, 24089, 23326, 24090, - 23508, 23882, 23883, 24043, 24044, 23973, 23974, 23698, 23699, 2324, - 2327, 2325, 2329, 2331, 2328, 2330, 2326, 2332, 10889, 10884, 10883, - 10890, 10885, 10886, 10888, 10887, 3664, 3663, 3665, 19041, 19040, 19039, - 19038, 19043, 19042, 30801, 30800, 3609, 35654, 35662, 35671, 35663, - 35665, 35660, 35664, 35659, 35675, 35674, 35677, 35669, 35656, 35676, - 35658, 35657, 35670, 35661, 35673, 35667, 35668, 35666, 35672, 35655, - 35793, 35800, 35801, 35796, 35797, 35802, 35803, 35794, 35798, 35799, - 35795, 35859, 35866, 35867, 35862, 35863, 35868, 35869, 35860, 35864, - 35865, 35861, 35970, 35977, 35978, 35973, 35974, 35979, 35980, 35971, - 35975, 35976, 35972, 35870, 35877, 35878, 35873, 35874, 35879, 35880, - 35871, 35875, 35876, 35872, 35948, 35955, 35956, 35951, 35952, 35957, - 35958, 35949, 35953, 35954, 35950, 35848, 35855, 35856, 35851, 35852, - 35857, 35858, 35849, 35853, 35854, 35850, 35959, 35966, 35967, 35962, - 35963, 35968, 35969, 35960, 35964, 35965, 35961, 35881, 35888, 35889, - 35884, 35885, 35890, 35891, 35882, 35886, 35887, 35883, 36014, 36021, - 36022, 36017, 36018, 36023, 36024, 36015, 36019, 36020, 36016, 36003, - 36010, 36011, 36006, 36007, 36012, 36013, 36004, 36008, 36009, 36005, - 36036, 36043, 36044, 36039, 36040, 36045, 36046, 36037, 36041, 36042, - 36038, 35903, 35910, 35911, 35906, 35907, 35912, 35913, 35904, 35908, - 35909, 35905, 35826, 35833, 35834, 35829, 35830, 35835, 35836, 35827, - 35831, 35832, 35828, 36025, 36032, 36033, 36028, 36029, 36034, 36035, - 36026, 36030, 36031, 36027, 35804, 35811, 35812, 35807, 35808, 35813, - 35814, 35805, 35809, 35810, 35806, 35815, 35822, 35823, 35818, 35819, - 35824, 35825, 35816, 35820, 35821, 35817, 35892, 35899, 35900, 35895, - 35896, 35901, 35902, 35893, 35897, 35898, 35894, 35837, 35844, 35845, - 35840, 35841, 35846, 35847, 35838, 35842, 35843, 35839, 35992, 35999, - 36000, 35995, 35996, 36001, 36002, 35993, 35997, 35998, 35994, 35914, - 35922, 35923, 35917, 35918, 35924, 35925, 35915, 35919, 35920, 35916, - 35926, 35933, 35934, 35929, 35930, 35935, 35936, 35927, 35931, 35932, - 35928, 35937, 35944, 35945, 35940, 35941, 35946, 35947, 35938, 35942, - 35943, 35939, 35981, 35988, 35989, 35984, 35985, 35990, 35991, 35982, - 35986, 35987, 35983, 35781, 35782, 35789, 35790, 35785, 35786, 35791, - 35792, 35783, 35787, 35788, 35784, 35921, 33887, 33885, 33886, 17964, - 22342, 22340, 22343, 22341, 22332, 22338, 22336, 22339, 22337, 22333, - 22353, 22349, 22354, 22350, 22334, 22351, 22347, 22352, 22348, 22335, - 22364, 22344, 22346, 22345, 22360, 22363, 22361, 22356, 22362, 22357, - 22358, 22359, 22365, 22355, 22504, 22381, 22382, 22383, 22380, 22499, - 22491, 20475, 20477, 20479, 20476, 20478, 21482, 21484, 21486, 21483, - 21485, 21475, 21474, 21473, 21476, 27960, 27965, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, - 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, + 4547, 4572, 32051, 26272, 4466, 18839, 32381, 19946, 22278, 22279, 32050, + 26271, 4465, 18838, 32060, 4452, 4459, 32052, 26883, 26885, 26882, 26881, + 26878, 26877, 26880, 26879, 26886, 26884, 229, 35536, 35536, 35536, + 35536, 35536, 35536, 17252, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 29369, 29298, 29361, 29370, 29286, 29359, + 29280, 29279, 29356, 29364, 29281, 29360, 29284, 29301, 29372, 29368, + 29293, 29295, 29292, 29291, 29288, 29287, 29290, 29289, 29296, 29294, + 29285, 29367, 29354, 29297, 29300, 29362, 29283, 29302, 29303, 29304, + 29305, 29306, 29307, 29308, 29309, 29310, 29311, 29312, 29313, 29314, + 29315, 29316, 29317, 29318, 29319, 29320, 29321, 29322, 29323, 29324, + 29325, 29326, 29327, 29357, 29366, 29365, 29282, 29358, 29299, 29328, + 29329, 29330, 29331, 29332, 29333, 29334, 29335, 29336, 29337, 29338, + 29339, 29340, 29341, 29342, 29343, 29344, 29345, 29346, 29347, 29348, + 29349, 29350, 29351, 29352, 29353, 29355, 29373, 29363, 29371, 6097, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 32917, 32928, + 32939, 32951, 32962, 32973, 32984, 32995, 33006, 33014, 33015, 33016, + 33017, 33019, 33020, 33021, 33022, 33023, 33024, 33025, 33026, 33027, + 33028, 33030, 33031, 33032, 33033, 33034, 33035, 33036, 33037, 33038, + 33039, 33041, 33042, 33043, 33044, 33045, 33046, 33047, 33048, 33049, + 33050, 33052, 33053, 33054, 33055, 33056, 33057, 33058, 33059, 33060, + 33061, 33063, 33064, 33065, 33066, 33067, 33068, 33069, 33070, 33071, + 33072, 33074, 33075, 33076, 33077, 33078, 33079, 33080, 33081, 33082, + 33083, 33085, 33086, 33087, 33088, 33089, 33090, 33091, 33092, 33093, + 33094, 32841, 32842, 32843, 32844, 32845, 32846, 32847, 32848, 32849, + 32850, 32852, 32853, 32854, 32855, 32856, 32857, 32858, 32859, 32860, + 32861, 32863, 32864, 32865, 32866, 32867, 32868, 32869, 32870, 32871, + 32872, 32874, 32875, 32876, 32877, 32878, 32879, 32880, 32881, 32882, + 32883, 32885, 32886, 32887, 32888, 32889, 32890, 32891, 32892, 32893, + 32894, 32896, 32897, 32898, 32899, 32900, 32901, 32902, 32903, 32904, + 32905, 32907, 32908, 32909, 32910, 32911, 32912, 32913, 32914, 32915, + 32916, 32918, 32919, 32920, 32921, 32922, 32923, 32924, 32925, 32926, + 32927, 32929, 32930, 32931, 32932, 32933, 32934, 32935, 32936, 32937, + 32938, 32940, 32941, 32942, 32943, 32944, 32945, 32946, 32947, 32948, + 32949, 32952, 32953, 32954, 32955, 32956, 32957, 32958, 32959, 32960, + 32961, 32963, 32964, 32965, 32966, 32967, 32968, 32969, 32970, 32971, + 32972, 32974, 32975, 32976, 32977, 32978, 32979, 32980, 32981, 32982, + 32983, 32985, 32986, 32987, 32988, 32989, 32990, 32991, 32992, 32993, + 32994, 32996, 32997, 32998, 32999, 33000, 33001, 33002, 33003, 33004, + 33005, 33007, 33008, 33009, 33010, 33011, 33012, 33013, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 24159, 24158, 28846, 28425, 28847, 28878, + 11899, 12473, 11897, 11910, 11903, 11902, 3, 2, 349, 3591, 2657, 5360, + 6392, 15569, 15599, 29277, 19184, 23877, 11900, 20033, 24233, 11908, + 19186, 33428, 33535, 12629, 12779, 6165, 7796, 27140, 19800, 28222, + 27141, 19799, 27174, 9661, 10649, 9946, 9662, 9945, 9663, 9944, 9664, + 9942, 9665, 23745, 23663, 29182, 29181, 11898, 12472, 6095, 5368, 11896, + 11909, 11863, 28909, 28879, 11945, 11944, 15857, 12570, 12777, 15858, + 13818, 14124, 15859, 26099, 26678, 15860, 32332, 32538, 28427, 9677, + 9674, 25194, 25193, 15436, 15598, 5029, 5359, 24050, 23665, 15784, 15783, + 23979, 23984, 28843, 28831, 11895, 11948, 6394, 15571, 15601, 6393, + 15570, 15600, 19187, 33429, 33536, 25517, 25516, 25896, 25518, 25519, + 25876, 26179, 26186, 26214, 27986, 27987, 28829, 27985, 27988, 28830, + 9943, 9666, 25985, 25986, 26034, 25984, 25987, 26035, 26973, 28877, 6096, + 9646, 22108, 23489, 28842, 28845, 28428, 11894, 11892, 12511, 28844, + 28426, 27980, 29274, 27979, 26868, 7590, 9645, 28868, 28832, 24851, + 25073, 25983, 26036, 1056, 1063, 23664, 27173, 17580, 18203, 9644, 2354, + 363, 29260, 16383, 17255, 17256, 17298, 17264, 31621, 14524, 14525, + 14502, 14523, 12773, 12774, 12775, 23487, 12776, 28934, 35534, 35533, + 35535, 20029, 26481, 20027, 26479, 25592, 20030, 26482, 24232, 23488, + 33960, 20028, 26480, 12778, 25593, 33727, 22270, 22271, 18936, 26437, + 34470, 23275, 33096, 33207, 33275, 33286, 33297, 33308, 33319, 33330, + 33341, 33097, 33108, 33119, 33130, 33141, 33152, 33163, 25952, 5358, + 4651, 35532, 8760, 8759, 8455, 2872, 2982, 2973, 3080, 3281, 21565, + 21563, 21623, 21621, 15349, 5195, 21943, 21946, 33174, 33185, 33196, + 33208, 33219, 33230, 33241, 33252, 33263, 33271, 33272, 33273, 33274, + 33276, 33277, 33278, 33279, 33280, 33281, 33282, 33283, 33284, 33285, + 33287, 33288, 33289, 33290, 33291, 33292, 33293, 33294, 33295, 33296, + 33298, 33299, 33300, 33301, 33302, 33303, 33304, 33305, 33306, 33307, + 33309, 33310, 33311, 33312, 33313, 33314, 33315, 33316, 33317, 33318, + 33320, 33321, 33322, 33323, 33324, 33325, 33326, 33327, 33328, 33329, + 33331, 33332, 33333, 33334, 33335, 33336, 33337, 33338, 33339, 33340, + 33342, 33343, 33344, 33345, 33346, 33347, 33348, 33349, 33350, 33351, + 33098, 33099, 33100, 33101, 33102, 33103, 33104, 33105, 33106, 33107, + 33109, 33110, 33111, 33112, 33113, 33114, 33115, 33116, 33117, 33118, + 33120, 33121, 33122, 33123, 33124, 33125, 33126, 33127, 33128, 33129, + 33131, 33132, 33133, 33134, 33135, 33136, 33137, 33138, 33139, 33140, + 33142, 33143, 33144, 33145, 33146, 33147, 33148, 33149, 33150, 33151, + 33153, 33154, 33155, 33156, 33157, 33158, 33159, 33160, 33161, 33162, + 33164, 33165, 33166, 33167, 33168, 33169, 33170, 33171, 33172, 33173, + 33175, 33176, 33177, 33178, 33179, 33180, 33181, 33182, 33183, 33184, + 33186, 33187, 33188, 33189, 33190, 33191, 33192, 33193, 33194, 33195, + 33197, 33198, 33199, 33200, 33201, 33202, 33203, 33204, 33205, 33206, + 33209, 33210, 33211, 33212, 33213, 33214, 33215, 33216, 33217, 33218, + 33220, 33221, 33222, 33223, 33224, 33225, 33226, 33227, 33228, 33229, + 33231, 33232, 33233, 33234, 33235, 33236, 33237, 33238, 33239, 33240, + 33242, 33243, 33244, 33245, 33246, 33247, 33248, 33249, 33250, 33251, + 33253, 33254, 33255, 33256, 33257, 33258, 33259, 33260, 33261, 33262, + 33264, 33265, 33266, 33267, 33268, 33269, 33270, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 16768, 16769, + 16776, 16778, 16775, 16774, 16771, 16770, 16773, 16772, 16779, 16777, + 17443, 18009, 17604, 18234, 17844, 18608, 17539, 18144, 17540, 18145, + 17541, 18146, 17715, 18385, 17716, 18386, 17717, 18387, 17783, 18484, + 17523, 18127, 17519, 18123, 18229, 18353, 17453, 18019, 17454, 18020, + 17544, 18150, 17545, 18151, 17529, 18133, 17530, 18134, 18228, 18230, + 17609, 18236, 17610, 18237, 17627, 18264, 17657, 18304, 17665, 18326, + 17755, 18444, 17848, 18612, 17849, 18613, 17845, 18609, 17846, 18610, + 18028, 18402, 18403, 18563, 18564, 18493, 18494, 18218, 18219, 2324, + 2327, 2325, 2329, 2331, 2328, 2330, 2326, 2332, 9875, 9870, 9869, 9876, + 9871, 9872, 9874, 9873, 3664, 3663, 3665, 14032, 14031, 14030, 14029, + 14034, 14033, 24925, 24924, 3609, 29778, 29786, 29795, 29787, 29789, + 29784, 29788, 29783, 29799, 29798, 29801, 29793, 29780, 29800, 29782, + 29781, 29794, 29785, 29797, 29791, 29792, 29790, 29796, 29779, 29917, + 29924, 29925, 29920, 29921, 29926, 29927, 29918, 29922, 29923, 29919, + 29983, 29990, 29991, 29986, 29987, 29992, 29993, 29984, 29988, 29989, + 29985, 30094, 30101, 30102, 30097, 30098, 30103, 30104, 30095, 30099, + 30100, 30096, 29994, 30001, 30002, 29997, 29998, 30003, 30004, 29995, + 29999, 30000, 29996, 30072, 30079, 30080, 30075, 30076, 30081, 30082, + 30073, 30077, 30078, 30074, 29972, 29979, 29980, 29975, 29976, 29981, + 29982, 29973, 29977, 29978, 29974, 30083, 30090, 30091, 30086, 30087, + 30092, 30093, 30084, 30088, 30089, 30085, 30005, 30012, 30013, 30008, + 30009, 30014, 30015, 30006, 30010, 30011, 30007, 30138, 30145, 30146, + 30141, 30142, 30147, 30148, 30139, 30143, 30144, 30140, 30127, 30134, + 30135, 30130, 30131, 30136, 30137, 30128, 30132, 30133, 30129, 30160, + 30167, 30168, 30163, 30164, 30169, 30170, 30161, 30165, 30166, 30162, + 30027, 30034, 30035, 30030, 30031, 30036, 30037, 30028, 30032, 30033, + 30029, 29950, 29957, 29958, 29953, 29954, 29959, 29960, 29951, 29955, + 29956, 29952, 30149, 30156, 30157, 30152, 30153, 30158, 30159, 30150, + 30154, 30155, 30151, 29928, 29935, 29936, 29931, 29932, 29937, 29938, + 29929, 29933, 29934, 29930, 29939, 29946, 29947, 29942, 29943, 29948, + 29949, 29940, 29944, 29945, 29941, 30016, 30023, 30024, 30019, 30020, + 30025, 30026, 30017, 30021, 30022, 30018, 29961, 29968, 29969, 29964, + 29965, 29970, 29971, 29962, 29966, 29967, 29963, 30116, 30123, 30124, + 30119, 30120, 30125, 30126, 30117, 30121, 30122, 30118, 30038, 30046, + 30047, 30041, 30042, 30048, 30049, 30039, 30043, 30044, 30040, 30050, + 30057, 30058, 30053, 30054, 30059, 30060, 30051, 30055, 30056, 30052, + 30061, 30068, 30069, 30064, 30065, 30070, 30071, 30062, 30066, 30067, + 30063, 30105, 30112, 30113, 30108, 30109, 30114, 30115, 30106, 30110, + 30111, 30107, 29905, 29906, 29913, 29914, 29909, 29910, 29915, 29916, + 29907, 29911, 29912, 29908, 30045, 28011, 28009, 28010, 12955, 16861, + 16859, 16862, 16860, 16851, 16857, 16855, 16858, 16856, 16852, 16872, + 16868, 16873, 16869, 16853, 16870, 16866, 16871, 16867, 16854, 16883, + 16863, 16865, 16864, 16879, 16882, 16880, 16875, 16881, 16876, 16877, + 16878, 16884, 16874, 17023, 16900, 16901, 16902, 16899, 17018, 17010, + 15466, 15468, 15470, 15467, 15469, 16473, 16475, 16477, 16474, 16476, + 16466, 16465, 16464, 16467, 22480, 22485, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, 35536, + 35536, 35536, 35536, 35536, 35536, 35536, 35536, }; @@ -19695,14 +18472,21 @@ static const derived_name_range derived_name_ranges[] = { {0x3400, 0x4DBF, 1}, {0x4E00, 0x9FFF, 1}, {0xAC00, 0xD7A3, 0}, + {0xF900, 0xFA6D, 3}, + {0xFA70, 0xFAD9, 3}, + {0x13460, 0x143FA, 4}, {0x17000, 0x187FF, 2}, + {0x18B00, 0x18CD5, 5}, + {0x18CFF, 0x18CFF, 5}, {0x18D00, 0x18D1E, 2}, + {0x1B170, 0x1B2FB, 6}, {0x20000, 0x2A6DF, 1}, {0x2A700, 0x2B73F, 1}, {0x2B740, 0x2B81D, 1}, {0x2B820, 0x2CEAD, 1}, {0x2CEB0, 0x2EBE0, 1}, {0x2EBF0, 0x2EE5D, 1}, + {0x2F800, 0x2FA1D, 3}, {0x30000, 0x3134A, 1}, {0x31350, 0x323AF, 1}, {0x323B0, 0x33479, 1}, @@ -19711,4 +18495,8 @@ static const char * const derived_name_prefixes[] = { "HANGUL SYLLABLE ", "CJK UNIFIED IDEOGRAPH-", "TANGUT IDEOGRAPH-", + "CJK COMPATIBILITY IDEOGRAPH-", + "EGYPTIAN HIEROGLYPH-", + "KHITAN SMALL SCRIPT CHARACTER-", + "NUSHU CHARACTER-", }; diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index 37d7e096769833..11f626ca0aba7a 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -764,11 +764,11 @@ def makeunicodename(unicode, trace): fprint('static const derived_name_range derived_name_ranges[] = {') for name_range in unicode.derived_name_ranges: - fprint(' {0x%s, 0x%s, %d},' % name_range) + fprint(' {0x%s, 0x%s, %d},' % tuple(name_range)) fprint('};') fprint('static const char * const derived_name_prefixes[] = {') - for _, prefix in derived_name_range_names: + for prefix in unicode.derived_name_prefixes: fprint(' "%s",' % prefix) fprint('};') @@ -997,6 +997,10 @@ def __init__(self, version, ideograph_check=True): table[char] = from_row(s) self.derived_name_ranges = [] + self.derived_name_prefixes = { + prefix: i + for i, (_, prefix) in enumerate(derived_name_range_names) + } # expand first-last ranges field = None @@ -1017,8 +1021,24 @@ def __init__(self, version, ideograph_check=True): break s.name = "" field = None + else: + codepoint = s.codepoint + if s.name.endswith(codepoint): + prefix = s.name[:-len(codepoint)] + j = self.derived_name_prefixes.get(prefix) + if j is None: + j = len(self.derived_name_prefixes) + self.derived_name_prefixes[prefix] = j + if (self.derived_name_ranges + and self.derived_name_ranges[-1][2] == j + and int(self.derived_name_ranges[-1][1], 16) == i - 1): + self.derived_name_ranges[-1][1] = codepoint + else: + self.derived_name_ranges.append( + [codepoint, codepoint, j]) + s.name = "" elif field: - table[i] = from_row(('%X' % i,) + field[1:]) + table[i] = from_row(('%04X' % i,) + field[1:]) # public attributes self.filename = UNICODE_DATA % '' From 9e8fa2d4d1ec263bdc6945237b0e0517f07a3474 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 18 Feb 2026 13:13:32 +0200 Subject: [PATCH 046/110] gh-144386: Update equivalent code for "with", "async with" and "async for" (GH-144472) They use special method lookup for special methods. --- Doc/reference/compound_stmts.rst | 34 ++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 861c221502ed4d..0cf0a41bfb400c 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -544,9 +544,9 @@ The following code:: is semantically equivalent to:: manager = (EXPRESSION) - enter = type(manager).__enter__ - exit = type(manager).__exit__ - value = enter(manager) + enter = manager.__enter__ + exit = manager.__exit__ + value = enter() hit_except = False try: @@ -554,11 +554,14 @@ is semantically equivalent to:: SUITE except: hit_except = True - if not exit(manager, *sys.exc_info()): + if not exit(*sys.exc_info()): raise finally: if not hit_except: - exit(manager, None, None, None) + exit(None, None, None) + +except that implicit :ref:`special method lookup ` is used +for :meth:`~object.__enter__` and :meth:`~object.__exit__`. With more than one item, the context managers are processed as if multiple :keyword:`with` statements were nested:: @@ -1679,13 +1682,12 @@ The following code:: Is semantically equivalent to:: - iter = (ITER) - iter = type(iter).__aiter__(iter) + iter = (ITER).__aiter__() running = True while running: try: - TARGET = await type(iter).__anext__(iter) + TARGET = await iter.__anext__() except StopAsyncIteration: running = False else: @@ -1693,7 +1695,8 @@ Is semantically equivalent to:: else: SUITE2 -See also :meth:`~object.__aiter__` and :meth:`~object.__anext__` for details. +except that implicit :ref:`special method lookup ` is used +for :meth:`~object.__aiter__` and :meth:`~object.__anext__`. It is a :exc:`SyntaxError` to use an ``async for`` statement outside the body of a coroutine function. @@ -1719,9 +1722,9 @@ The following code:: is semantically equivalent to:: manager = (EXPRESSION) - aenter = type(manager).__aenter__ - aexit = type(manager).__aexit__ - value = await aenter(manager) + aenter = manager.__aenter__ + aexit = manager.__aexit__ + value = await aenter() hit_except = False try: @@ -1729,13 +1732,14 @@ is semantically equivalent to:: SUITE except: hit_except = True - if not await aexit(manager, *sys.exc_info()): + if not await aexit(*sys.exc_info()): raise finally: if not hit_except: - await aexit(manager, None, None, None) + await aexit(None, None, None) -See also :meth:`~object.__aenter__` and :meth:`~object.__aexit__` for details. +except that implicit :ref:`special method lookup ` is used +for :meth:`~object.__aenter__` and :meth:`~object.__aexit__`. It is a :exc:`SyntaxError` to use an ``async with`` statement outside the body of a coroutine function. From 7ac0868708f342b8990404174a4d200105a4f728 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 18 Feb 2026 13:20:31 +0200 Subject: [PATCH 047/110] gh-135573: Make pickled lists, sets and dicts a tiny bit smaller (GH-144162) Ensure that APPENDS and SETITEMS are never used for a batch of size 1. Ensure that ADDITEMS and SETITEMS are never used for a batch of size 0. This harmonizes the C implementation with the Python implementation which already guarantees this and makes a pickle a tiny bit smaller with a tiny chance (about 0.1%). Saves 1 byte for list and dict with size 1001, 2001, ... Saves 2 bytes for set and dict with size 1000, 2000, ... --- Modules/_pickle.c | 79 +++++++++++++++++++++++------------------------ 1 file changed, 39 insertions(+), 40 deletions(-) diff --git a/Modules/_pickle.c b/Modules/_pickle.c index a897e45f00fab6..24d3443dd8abfe 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -3066,11 +3066,6 @@ batch_list(PickleState *state, PicklerObject *self, PyObject *iter, PyObject *or assert(iter != NULL); - /* XXX: I think this function could be made faster by avoiding the - iterator interface and fetching objects directly from list using - PyList_GET_ITEM. - */ - if (self->proto == 0) { /* APPENDS isn't available; do one at a time. */ for (;; total++) { @@ -3192,24 +3187,24 @@ batch_list_exact(PickleState *state, PicklerObject *self, PyObject *obj) assert(obj != NULL); assert(self->proto > 0); assert(PyList_CheckExact(obj)); - - if (PyList_GET_SIZE(obj) == 1) { - item = PyList_GET_ITEM(obj, 0); - Py_INCREF(item); - int err = save(state, self, item, 0); - Py_DECREF(item); - if (err < 0) { - _PyErr_FormatNote("when serializing %T item 0", obj); - return -1; - } - if (_Pickler_Write(self, &append_op, 1) < 0) - return -1; - return 0; - } + assert(PyList_GET_SIZE(obj)); /* Write in batches of BATCHSIZE. */ total = 0; do { + if (PyList_GET_SIZE(obj) - total == 1) { + item = PyList_GET_ITEM(obj, total); + Py_INCREF(item); + int err = save(state, self, item, 0); + Py_DECREF(item); + if (err < 0) { + _PyErr_FormatNote("when serializing %T item %zd", obj, total); + return -1; + } + if (_Pickler_Write(self, &append_op, 1) < 0) + return -1; + return 0; + } this_batch = 0; if (_Pickler_Write(self, &mark_op, 1) < 0) return -1; @@ -3470,28 +3465,29 @@ batch_dict_exact(PickleState *state, PicklerObject *self, PyObject *obj) assert(self->proto > 0); dict_size = PyDict_GET_SIZE(obj); - - /* Special-case len(d) == 1 to save space. */ - if (dict_size == 1) { - PyDict_Next(obj, &ppos, &key, &value); - Py_INCREF(key); - Py_INCREF(value); - if (save(state, self, key, 0) < 0) { - goto error; - } - if (save(state, self, value, 0) < 0) { - _PyErr_FormatNote("when serializing %T item %R", obj, key); - goto error; - } - Py_CLEAR(key); - Py_CLEAR(value); - if (_Pickler_Write(self, &setitem_op, 1) < 0) - return -1; - return 0; - } + assert(dict_size); /* Write in batches of BATCHSIZE. */ + Py_ssize_t total = 0; do { + if (dict_size - total == 1) { + PyDict_Next(obj, &ppos, &key, &value); + Py_INCREF(key); + Py_INCREF(value); + if (save(state, self, key, 0) < 0) { + goto error; + } + if (save(state, self, value, 0) < 0) { + _PyErr_FormatNote("when serializing %T item %R", obj, key); + goto error; + } + Py_CLEAR(key); + Py_CLEAR(value); + if (_Pickler_Write(self, &setitem_op, 1) < 0) + return -1; + return 0; + } + i = 0; if (_Pickler_Write(self, &mark_op, 1) < 0) return -1; @@ -3507,6 +3503,7 @@ batch_dict_exact(PickleState *state, PicklerObject *self, PyObject *obj) } Py_CLEAR(key); Py_CLEAR(value); + total++; if (++i == BATCHSIZE) break; } @@ -3519,7 +3516,7 @@ batch_dict_exact(PickleState *state, PicklerObject *self, PyObject *obj) return -1; } - } while (i == BATCHSIZE); + } while (total < dict_size); return 0; error: Py_XDECREF(key); @@ -3637,6 +3634,7 @@ save_set(PickleState *state, PicklerObject *self, PyObject *obj) return 0; /* nothing to do */ /* Write in batches of BATCHSIZE. */ + Py_ssize_t total = 0; do { i = 0; if (_Pickler_Write(self, &mark_op, 1) < 0) @@ -3651,6 +3649,7 @@ save_set(PickleState *state, PicklerObject *self, PyObject *obj) _PyErr_FormatNote("when serializing %T element", obj); break; } + total++; if (++i == BATCHSIZE) break; } @@ -3666,7 +3665,7 @@ save_set(PickleState *state, PicklerObject *self, PyObject *obj) "set changed size during iteration"); return -1; } - } while (i == BATCHSIZE); + } while (total < set_size); return 0; } From dd64e4260e0d114f8259f15bc86fb17c5b08c80b Mon Sep 17 00:00:00 2001 From: Pieter Eendebak Date: Wed, 18 Feb 2026 12:30:26 +0100 Subject: [PATCH 048/110] gh-141510: Implement copy and deepcopy for frozendict (#144905) Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Victor Stinner --- Lib/copy.py | 7 ++++++- Lib/test/test_copy.py | 13 +++++++++++++ .../2026-02-17-11-28-37.gh-issue-141510.OpAz0M.rst | 2 ++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-17-11-28-37.gh-issue-141510.OpAz0M.rst diff --git a/Lib/copy.py b/Lib/copy.py index 4c024ab5311d2d..33dabb3395a7c0 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -101,7 +101,7 @@ def copy(x): _copy_atomic_types = frozenset({types.NoneType, int, float, bool, complex, str, tuple, - bytes, frozenset, type, range, slice, property, + bytes, frozendict, frozenset, type, range, slice, property, types.BuiltinFunctionType, types.EllipsisType, types.NotImplementedType, types.FunctionType, types.CodeType, weakref.ref, super}) @@ -203,6 +203,11 @@ def _deepcopy_dict(x, memo, deepcopy=deepcopy): return y d[dict] = _deepcopy_dict +def _deepcopy_frozendict(x, memo, deepcopy=deepcopy): + y = _deepcopy_dict(x, memo, deepcopy) + return frozendict(y) +d[frozendict] = _deepcopy_frozendict + def _deepcopy_method(x, memo): # Copy instance methods return type(x)(x.__func__, deepcopy(x.__self__, memo)) d[types.MethodType] = _deepcopy_method diff --git a/Lib/test/test_copy.py b/Lib/test/test_copy.py index cfef24727e8c82..858e5e089d5aba 100644 --- a/Lib/test/test_copy.py +++ b/Lib/test/test_copy.py @@ -133,6 +133,12 @@ def test_copy_dict(self): self.assertEqual(y, x) self.assertIsNot(y, x) + def test_copy_frozendict(self): + x = frozendict(x=1, y=2) + self.assertIs(copy.copy(x), x) + x = frozendict() + self.assertIs(copy.copy(x), x) + def test_copy_set(self): x = {1, 2, 3} y = copy.copy(x) @@ -419,6 +425,13 @@ def test_deepcopy_dict(self): self.assertIsNot(x, y) self.assertIsNot(x["foo"], y["foo"]) + def test_deepcopy_frozendict(self): + x = frozendict({"foo": [1, 2], "bar": 3}) + y = copy.deepcopy(x) + self.assertEqual(y, x) + self.assertIsNot(x, y) + self.assertIsNot(x["foo"], y["foo"]) + @support.skip_emscripten_stack_overflow() @support.skip_wasi_stack_overflow() def test_deepcopy_reflexive_dict(self): diff --git a/Misc/NEWS.d/next/Library/2026-02-17-11-28-37.gh-issue-141510.OpAz0M.rst b/Misc/NEWS.d/next/Library/2026-02-17-11-28-37.gh-issue-141510.OpAz0M.rst new file mode 100644 index 00000000000000..5b604124c6d7cc --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-17-11-28-37.gh-issue-141510.OpAz0M.rst @@ -0,0 +1,2 @@ +The :mod:`copy` module now supports the :class:`frozendict` type. Patch by +Pieter Eendebak based on work by Victor Stinner. From 3f50432e31c8e0d2e3ea8cbc2e472f7ee80e327a Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 18 Feb 2026 14:54:48 +0200 Subject: [PATCH 049/110] =?UTF-8?q?gh-140652:=20Fix=20a=20crash=20in=20=5F?= =?UTF-8?q?interpchannels.list=5Fall()=20after=20closing=20a=20channel=20(?= =?UTF-8?q?=D0=9F=D0=A0-143743)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lib/test/test__interpchannels.py | 32 +++++++++++++++++++ Lib/test/test_interpreters/test_channels.py | 6 ++++ ...-01-12-19-39-57.gh-issue-140652.HvM9Bl.rst | 1 + Modules/_interpchannelsmodule.c | 16 ++++++---- 4 files changed, 48 insertions(+), 7 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-01-12-19-39-57.gh-issue-140652.HvM9Bl.rst diff --git a/Lib/test/test__interpchannels.py b/Lib/test/test__interpchannels.py index d7cf77368ef9f2..2b0aba42896c06 100644 --- a/Lib/test/test__interpchannels.py +++ b/Lib/test/test__interpchannels.py @@ -382,6 +382,38 @@ def test_sequential_ids(self): self.assertEqual(id3, int(id2) + 1) self.assertEqual(set(after) - set(before), {id1, id2, id3}) + def test_channel_list_all_closed(self): + id1 = _channels.create() + id2 = _channels.create() + id3 = _channels.create() + before = _channels.list_all() + expected = [info for info in before if info[0] != id2] + _channels.close(id2, force=True) + after = _channels.list_all() + self.assertEqual(set(after), set(expected)) + self.assertEqual(len(after), len(before) - 1) + + def test_channel_list_all_destroyed(self): + id1 = _channels.create() + id2 = _channels.create() + id3 = _channels.create() + before = _channels.list_all() + expected = [info for info in before if info[0] != id2] + _channels.destroy(id2) + after = _channels.list_all() + self.assertEqual(set(after), set(expected)) + self.assertEqual(len(after), len(before) - 1) + + def test_channel_list_all_released(self): + id1 = _channels.create() + id2 = _channels.create() + id3 = _channels.create() + before = _channels.list_all() + _channels.release(id2, send=True, recv=True) + after = _channels.list_all() + self.assertEqual(set(after), set(before)) + self.assertEqual(len(after), len(before)) + def test_ids_global(self): id1 = _interpreters.create() out = _run_output(id1, dedent(""" diff --git a/Lib/test/test_interpreters/test_channels.py b/Lib/test/test_interpreters/test_channels.py index 52827357078b85..5437792b5a7014 100644 --- a/Lib/test/test_interpreters/test_channels.py +++ b/Lib/test/test_interpreters/test_channels.py @@ -47,6 +47,12 @@ def test_list_all(self): after = set(channels.list_all()) self.assertEqual(after, created) + def test_list_all_closed(self): + created = [channels.create() for _ in range(3)] + rch, sch = created.pop(1) + rch.close() + self.assertEqual(set(channels.list_all()), set(created)) + def test_shareable(self): interp = interpreters.create() rch, sch = channels.create() diff --git a/Misc/NEWS.d/next/Library/2026-01-12-19-39-57.gh-issue-140652.HvM9Bl.rst b/Misc/NEWS.d/next/Library/2026-01-12-19-39-57.gh-issue-140652.HvM9Bl.rst new file mode 100644 index 00000000000000..bed126f02f8714 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-01-12-19-39-57.gh-issue-140652.HvM9Bl.rst @@ -0,0 +1 @@ +Fix a crash in :func:`!_interpchannels.list_all` after closing a channel. diff --git a/Modules/_interpchannelsmodule.c b/Modules/_interpchannelsmodule.c index ef9cf01ecbec5e..2933332ad465d4 100644 --- a/Modules/_interpchannelsmodule.c +++ b/Modules/_interpchannelsmodule.c @@ -1644,14 +1644,16 @@ _channels_list_all(_channels *channels, int64_t *count) if (ids == NULL) { goto done; } - _channelref *ref = channels->head; - for (int64_t i=0; ref != NULL; ref = ref->next, i++) { - ids[i] = (struct channel_id_and_info){ - .id = ref->cid, - .defaults = ref->chan->defaults, - }; + int64_t i = 0; + for (_channelref *ref = channels->head; ref != NULL; ref = ref->next) { + if (ref->chan != NULL) { + ids[i++] = (struct channel_id_and_info){ + .id = ref->cid, + .defaults = ref->chan->defaults, + }; + } } - *count = channels->numopen; + *count = i; cids = ids; done: From 112d8ac9724a53c5459a4f957941f5a3c97abf5d Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 18 Feb 2026 14:13:21 +0100 Subject: [PATCH 050/110] gh-141984: Reword and reorganize the first part of Atoms docs (GH-144117) Co-authored-by: Blaise Pabon Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- Doc/faq/programming.rst | 2 + Doc/library/stdtypes.rst | 12 +- Doc/library/token.rst | 3 +- Doc/reference/expressions.rst | 201 ++++++++++++++++++++++++++-------- 4 files changed, 167 insertions(+), 51 deletions(-) diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 138a5ca7a7516f..7a6f88d90a9ea5 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1852,6 +1852,8 @@ to the object: 13891296 +.. _faq-identity-with-is: + When can I rely on identity tests with the *is* operator? --------------------------------------------------------- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index a8f693f4879025..b9b81a7d469d0d 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -265,9 +265,17 @@ The constructors :func:`int`, :func:`float`, and pair: operator; % (percent) pair: operator; ** +.. _stdtypes-mixed-arithmetic: + Python fully supports mixed arithmetic: when a binary arithmetic operator has -operands of different numeric types, the operand with the "narrower" type is -widened to that of the other, where integer is narrower than floating point. +operands of different built-in numeric types, the operand with the "narrower" +type is widened to that of the other: + +* If both arguments are complex numbers, no conversion is performed; +* if either argument is a complex or a floating-point number, the other is + converted to a floating-point number; +* otherwise, both must be integers and no conversion is necessary. + Arithmetic with complex and real operands is defined by the usual mathematical formula, for example:: diff --git a/Doc/library/token.rst b/Doc/library/token.rst index c228006d4c1e1d..fb826f5465bd80 100644 --- a/Doc/library/token.rst +++ b/Doc/library/token.rst @@ -50,8 +50,7 @@ The token constants are: .. data:: NAME - Token value that indicates an :ref:`identifier `. - Note that keywords are also initially tokenized as ``NAME`` tokens. + Token value that indicates an :ref:`identifier or keyword `. .. data:: NUMBER diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 54384a8cf3fb90..68dcfc00bbd99c 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -9,9 +9,11 @@ Expressions This chapter explains the meaning of the elements of expressions in Python. -**Syntax Notes:** In this and the following chapters, extended BNF notation will -be used to describe syntax, not lexical analysis. When (one alternative of) a -syntax rule has the form +**Syntax Notes:** In this and the following chapters, +:ref:`grammar notation ` will be used to describe syntax, +not lexical analysis. + +When (one alternative of) a syntax rule has the form: .. productionlist:: python-grammar name: othername @@ -29,17 +31,13 @@ Arithmetic conversions When a description of an arithmetic operator below uses the phrase "the numeric arguments are converted to a common real type", this means that the operator -implementation for built-in types works as follows: - -* If both arguments are complex numbers, no conversion is performed; - -* if either argument is a complex or a floating-point number, the other is converted to a floating-point number; - -* otherwise, both must be integers and no conversion is necessary. +implementation for built-in numeric types works as described in the +:ref:`Numeric Types ` section of the standard +library documentation. -Some additional rules apply for certain operators (e.g., a string as a left -argument to the '%' operator). Extensions must define their own conversion -behavior. +Some additional rules apply for certain operators and non-numeric operands +(for example, a string as a left argument to the ``%`` operator). +Extensions must define their own conversion behavior. .. _atoms: @@ -49,15 +47,57 @@ Atoms .. index:: atom -Atoms are the most basic elements of expressions. The simplest atoms are -identifiers or literals. Forms enclosed in parentheses, brackets or braces are -also categorized syntactically as atoms. The syntax for atoms is: +Atoms are the most basic elements of expressions. +The simplest atoms are :ref:`names ` or literals. +Forms enclosed in parentheses, brackets or braces are also categorized +syntactically as atoms. -.. productionlist:: python-grammar - atom: `identifier` | `literal` | `enclosure` - enclosure: `parenth_form` | `list_display` | `dict_display` | `set_display` - : | `generator_expression` | `yield_atom` +Formally, the syntax for atoms is: + +.. grammar-snippet:: + :group: python-grammar + + atom: + | 'True' + | 'False' + | 'None' + | '...' + | `identifier` + | `literal` + | `enclosure` + enclosure: + | `parenth_form` + | `list_display` + | `dict_display` + | `set_display` + | `generator_expression` + | `yield_atom` + + +.. _atom-singletons: + +Built-in constants +------------------ + +The keywords ``True``, ``False``, and ``None`` name +:ref:`built-in constants `. +The token ``...`` names the :py:data:`Ellipsis` constant. +Evaluation of these atoms yields the corresponding value. + +.. note:: + + Several more built-in constants are available as global variables, + but only the ones mentioned here are :ref:`keywords `. + In particular, these names cannot be reassigned or used as attributes: + + .. code-block:: pycon + + >>> False = 123 + File "", line 1 + False = 123 + ^^^^^ + SyntaxError: cannot assign to False .. _atom-identifiers: @@ -131,51 +171,104 @@ Literals .. index:: single: literal -Python supports string and bytes literals and various numeric literals: +A :dfn:`literal` is a textual representation of a value. +Python supports numeric, string and bytes literals. +:ref:`Format strings ` and :ref:`template strings ` +are treated as string literals. + +Numeric literals consist of a single :token:`NUMBER ` +token, which names an integer, floating-point number, or an imaginary number. +See the :ref:`numbers` section in Lexical analysis documentation for details. + +String and bytes literals may consist of several tokens. +See section :ref:`string-concatenation` for details. + +Note that negative and complex numbers, like ``-3`` or ``3+4.2j``, +are syntactically not literals, but :ref:`unary ` or +:ref:`binary ` arithmetic operations involving the ``-`` or ``+`` +operator. + +Evaluation of a literal yields an object of the given type +(:class:`int`, :class:`float`, :class:`complex`, :class:`str`, +:class:`bytes`, or :class:`~string.templatelib.Template`) with the given value. +The value may be approximated in the case of floating-point +and imaginary literals. + +The formal grammar for literals is: .. grammar-snippet:: :group: python-grammar literal: `strings` | `NUMBER` -Evaluation of a literal yields an object of the given type (string, bytes, -integer, floating-point number, complex number) with the given value. The value -may be approximated in the case of floating-point and imaginary (complex) -literals. -See section :ref:`literals` for details. -See section :ref:`string-concatenation` for details on ``strings``. - .. index:: triple: immutable; data; type pair: immutable; object +Literals and object identity +^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + All literals correspond to immutable data types, and hence the object's identity is less important than its value. Multiple evaluations of literals with the same value (either the same occurrence in the program text or a different occurrence) may obtain the same object or a different object with the same value. +.. admonition:: CPython implementation detail + + For example, in CPython, *small* integers with the same value evaluate + to the same object:: + + >>> x = 7 + >>> y = 7 + >>> x is y + True + + However, large integers evaluate to different objects:: + + >>> x = 123456789 + >>> y = 123456789 + >>> x is y + False + + This behavior may change in future versions of CPython. + In particular, the boundary between "small" and "large" integers has + already changed in the past. + + CPython will emit a :py:exc:`SyntaxWarning` when you compare literals + using ``is``:: + + >>> x = 7 + >>> x is 7 + :1: SyntaxWarning: "is" with 'int' literal. Did you mean "=="? + True + + See :ref:`faq-identity-with-is` for more information. + +:ref:`Template strings ` are immutable but may reference mutable +objects as :class:`~string.templatelib.Interpolation` values. +For the purposes of this section, two t-strings have the "same value" if +both their structure and the *identity* of the values match. + +.. impl-detail:: + + Currently, each evaluation of a template string results in + a different object. + .. _string-concatenation: String literal concatenation ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Multiple adjacent string or bytes literals (delimited by whitespace), possibly +Multiple adjacent string or bytes literals, possibly using different quoting conventions, are allowed, and their meaning is the same as their concatenation:: >>> "hello" 'world' "helloworld" -Formally: - -.. grammar-snippet:: - :group: python-grammar - - strings: ( `STRING` | `fstring`)+ | `tstring`+ - This feature is defined at the syntactical level, so it only works with literals. To concatenate string expressions at run time, the '+' operator may be used:: @@ -208,6 +301,13 @@ string literals:: >>> t"Hello" t"{name}!" Template(strings=('Hello', '!'), interpolations=(...)) +Formally: + +.. grammar-snippet:: + :group: python-grammar + + strings: (`STRING` | `fstring`)+ | `tstring`+ + .. _parenthesized: @@ -1390,8 +1490,9 @@ for the operands): ``-1**2`` results in ``-1``. The power operator has the same semantics as the built-in :func:`pow` function, when called with two arguments: it yields its left argument raised to the power -of its right argument. The numeric arguments are first converted to a common -type, and the result is of that type. +of its right argument. +Numeric arguments are first :ref:`converted to a common type `, +and the result is of that type. For int operands, the result has the same type as the operands unless the second argument is negative; in that case, all arguments are converted to float and a @@ -1477,9 +1578,10 @@ operators and one for additive operators: The ``*`` (multiplication) operator yields the product of its arguments. The arguments must either both be numbers, or one argument must be an integer and -the other must be a sequence. In the former case, the numbers are converted to a -common real type and then multiplied together. In the latter case, sequence -repetition is performed; a negative repetition factor yields an empty sequence. +the other must be a sequence. In the former case, the numbers are +:ref:`converted to a common real type ` and then +multiplied together. In the latter case, sequence repetition is performed; +a negative repetition factor yields an empty sequence. This operation can be customized using the special :meth:`~object.__mul__` and :meth:`~object.__rmul__` methods. @@ -1507,7 +1609,8 @@ This operation can be customized using the special :meth:`~object.__matmul__` an pair: operator; // The ``/`` (division) and ``//`` (floor division) operators yield the quotient of -their arguments. The numeric arguments are first converted to a common type. +their arguments. The numeric arguments are first +:ref:`converted to a common type `. Division of integers yields a float, while floor division of integers results in an integer; the result is that of mathematical division with the 'floor' function applied to the result. Division by zero raises the :exc:`ZeroDivisionError` @@ -1523,8 +1626,9 @@ The floor division operation can be customized using the special pair: operator; % (percent) The ``%`` (modulo) operator yields the remainder from the division of the first -argument by the second. The numeric arguments are first converted to a common -type. A zero right argument raises the :exc:`ZeroDivisionError` exception. The +argument by the second. The numeric arguments are first +:ref:`converted to a common type `. +A zero right argument raises the :exc:`ZeroDivisionError` exception. The arguments may be floating-point numbers, e.g., ``3.14%0.7`` equals ``0.34`` (since ``3.14`` equals ``4*0.7 + 0.34``.) The modulo operator always yields a result with the same sign as its second operand (or zero); the absolute value of @@ -1555,7 +1659,9 @@ floating-point number using the :func:`abs` function if appropriate. The ``+`` (addition) operator yields the sum of its arguments. The arguments must either both be numbers or both be sequences of the same type. In the -former case, the numbers are converted to a common real type and then added together. +former case, the numbers are +:ref:`converted to a common real type ` and then +added together. In the latter case, the sequences are concatenated. This operation can be customized using the special :meth:`~object.__add__` and @@ -1570,8 +1676,9 @@ This operation can be customized using the special :meth:`~object.__add__` and single: operator; - (minus) single: - (minus); binary operator -The ``-`` (subtraction) operator yields the difference of its arguments. The -numeric arguments are first converted to a common real type. +The ``-`` (subtraction) operator yields the difference of its arguments. +The numeric arguments are first +:ref:`converted to a common real type `. This operation can be customized using the special :meth:`~object.__sub__` and :meth:`~object.__rsub__` methods. From 1636630390883a5de0da26bef11da2bbf081badf Mon Sep 17 00:00:00 2001 From: Ruslan Gilfanov Date: Wed, 18 Feb 2026 18:17:08 +0500 Subject: [PATCH 051/110] gh-124748: Fix handling kwargs in `WeakKeyDictionary.update()` (#124783) --- Lib/test/test_weakref.py | 5 +++++ Lib/weakref.py | 6 ++++-- .../Library/2024-09-30-15-31-59.gh-issue-124748.KYzYFp.rst | 2 ++ 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2024-09-30-15-31-59.gh-issue-124748.KYzYFp.rst diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py index 47f6b46061ac30..b187643e84521c 100644 --- a/Lib/test/test_weakref.py +++ b/Lib/test/test_weakref.py @@ -1815,6 +1815,11 @@ def test_weak_valued_union_operators(self): def test_weak_keyed_dict_update(self): self.check_update(weakref.WeakKeyDictionary, {C(): 1, C(): 2, C(): 3}) + d = weakref.WeakKeyDictionary() + msg = ("Keyword arguments are not supported: " + "cannot create weak reference to 'str' object") + with self.assertRaisesRegex(TypeError, msg): + d.update(k='v') def test_weak_keyed_delitem(self): d = weakref.WeakKeyDictionary() diff --git a/Lib/weakref.py b/Lib/weakref.py index 94e4278143c987..af7244553c908c 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -408,14 +408,16 @@ def setdefault(self, key, default=None): return self.data.setdefault(ref(key, self._remove),default) def update(self, dict=None, /, **kwargs): + if kwargs: + msg = ("Keyword arguments are not supported: " + "cannot create weak reference to 'str' object") + raise TypeError(msg) d = self.data if dict is not None: if not hasattr(dict, "items"): dict = type({})(dict) for key, value in dict.items(): d[ref(key, self._remove)] = value - if len(kwargs): - self.update(kwargs) def __ior__(self, other): self.update(other) diff --git a/Misc/NEWS.d/next/Library/2024-09-30-15-31-59.gh-issue-124748.KYzYFp.rst b/Misc/NEWS.d/next/Library/2024-09-30-15-31-59.gh-issue-124748.KYzYFp.rst new file mode 100644 index 00000000000000..5067db357fc577 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-09-30-15-31-59.gh-issue-124748.KYzYFp.rst @@ -0,0 +1,2 @@ +Improve :exc:`TypeError` error message when :meth:`!weakref.WeakKeyDictionary.update` +is used with keyword-only parameters. From c6a142f9472f2d3e2c360b72a19450f9dd087657 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:22:34 +0000 Subject: [PATCH 052/110] Datetime: Tidy up docs (GH-144720) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- .github/CODEOWNERS | 1 + Doc/library/datetime-inheritance.dot | 31 ++++++ Doc/library/datetime-inheritance.svg | 84 +++++++++++++++ Doc/library/datetime.rst | 156 ++++++++++++++++----------- 4 files changed, 209 insertions(+), 63 deletions(-) create mode 100644 Doc/library/datetime-inheritance.dot create mode 100644 Doc/library/datetime-inheritance.svg diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index b53c3cc1f465ff..dcebcbb434643f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -424,6 +424,7 @@ Lib/test/test_dataclasses/ @ericvsmith # Dates and times Doc/**/*time.rst @pganssle @abalkin +Doc/library/datetime-* @pganssle Doc/library/zoneinfo.rst @pganssle Include/datetime.h @pganssle @abalkin Include/internal/pycore_time.h @pganssle @abalkin diff --git a/Doc/library/datetime-inheritance.dot b/Doc/library/datetime-inheritance.dot new file mode 100644 index 00000000000000..3c6b9b4beb7ab1 --- /dev/null +++ b/Doc/library/datetime-inheritance.dot @@ -0,0 +1,31 @@ +// Used to generate datetime-inheritance.svg with Graphviz +// (https://graphviz.org/) for the datetime documentation. + +digraph { + comment="Generated with datetime-inheritance.dot" + graph [ + bgcolor="transparent" + fontnames="svg" + layout="dot" + ranksep=0.5 + nodesep=0.5 + splines=line + ] + node [ + fontname="Courier" + fontsize=14.0 + shape=box + style=rounded + margin="0.15,0.07" + ] + edge [ + arrowhead=none + ] + + object -> tzinfo + object -> timedelta + object -> time + object -> date + tzinfo -> timezone + date -> datetime +} diff --git a/Doc/library/datetime-inheritance.svg b/Doc/library/datetime-inheritance.svg new file mode 100644 index 00000000000000..e6b1cf877a574f --- /dev/null +++ b/Doc/library/datetime-inheritance.svg @@ -0,0 +1,84 @@ + + + + + + +datetime class hierarchy + + +object + +object + + + +tzinfo + +tzinfo + + + +object->tzinfo + + + + +timedelta + +timedelta + + + +object->timedelta + + + + +time + +time + + + +object->time + + + + +date + +date + + + +object->date + + + + +timezone + +timezone + + + +tzinfo->timezone + + + + +datetime + +datetime + + + +date->datetime + + + + diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 39a7a1530a95cc..b806a49e1be903 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -12,8 +12,6 @@ -------------- -.. XXX what order should the types be discussed in? - The :mod:`!datetime` module supplies classes for manipulating dates and times. While date and time arithmetic is supported, the focus of the implementation is @@ -38,13 +36,14 @@ on efficient attribute extraction for output formatting and manipulation. Third-party library with expanded time zone and parsing support. Package :pypi:`DateType` - Third-party library that introduces distinct static types to e.g. allow - :term:`static type checkers ` + Third-party library that introduces distinct static types to for example, + allow :term:`static type checkers ` to differentiate between naive and aware datetimes. + .. _datetime-naive-aware: -Aware and Naive Objects +Aware and naive objects ----------------------- Date and time objects may be categorized as "aware" or "naive" depending on @@ -77,6 +76,7 @@ detail is up to the application. The rules for time adjustment across the world are more political than rational, change frequently, and there is no standard suitable for every application aside from UTC. + Constants --------- @@ -93,13 +93,15 @@ The :mod:`!datetime` module exports the following constants: The largest year number allowed in a :class:`date` or :class:`.datetime` object. :const:`MAXYEAR` is 9999. + .. data:: UTC Alias for the UTC time zone singleton :attr:`datetime.timezone.utc`. .. versionadded:: 3.11 -Available Types + +Available types --------------- .. class:: date @@ -142,6 +144,7 @@ Available Types time adjustment (for example, to account for time zone and/or daylight saving time). + .. class:: timezone :noindex: @@ -150,19 +153,19 @@ Available Types .. versionadded:: 3.2 + Objects of these types are immutable. -Subclass relationships:: +Subclass relationships: + +.. figure:: datetime-inheritance.svg + :class: invert-in-dark-mode + :align: center + :alt: timedelta, tzinfo, time, and date inherit from object; timezone inherits + from tzinfo; and datetime inherits from date. - object - timedelta - tzinfo - timezone - time - date - datetime -Common Properties +Common properties ^^^^^^^^^^^^^^^^^ The :class:`date`, :class:`.datetime`, :class:`.time`, and :class:`timezone` types @@ -173,7 +176,8 @@ share these common features: dictionary keys. - Objects of these types support efficient pickling via the :mod:`pickle` module. -Determining if an Object is Aware or Naive + +Determining if an object is aware or naive ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Objects of the :class:`date` type are always naive. @@ -197,10 +201,11 @@ Otherwise, ``t`` is naive. The distinction between aware and naive doesn't apply to :class:`timedelta` objects. + .. _datetime-timedelta: -:class:`timedelta` Objects --------------------------- +:class:`!timedelta` objects +--------------------------- A :class:`timedelta` object represents a duration, the difference between two :class:`.datetime` or :class:`date` instances. @@ -296,6 +301,7 @@ Class attributes: The smallest possible difference between non-equal :class:`timedelta` objects, ``timedelta(microseconds=1)``. + Note that, because of normalization, ``timedelta.max`` is greater than ``-timedelta.min``. ``-timedelta.max`` is not representable as a :class:`timedelta` object. @@ -326,6 +332,7 @@ Instance attributes (read-only): >>> duration.total_seconds() 11235813.0 + .. attribute:: timedelta.microseconds Between 0 and 999,999 inclusive. @@ -333,8 +340,6 @@ Instance attributes (read-only): Supported operations: -.. XXX this table is too wide! - +--------------------------------+-----------------------------------------------+ | Operation | Result | +================================+===============================================+ @@ -396,7 +401,6 @@ Supported operations: | | call with canonical attribute values. | +--------------------------------+-----------------------------------------------+ - Notes: (1) @@ -447,15 +451,16 @@ Instance methods: Return the total number of seconds contained in the duration. Equivalent to ``td / timedelta(seconds=1)``. For interval units other than seconds, use the - division form directly (e.g. ``td / timedelta(microseconds=1)``). + division form directly (for example, ``td / timedelta(microseconds=1)``). Note that for very large time intervals (greater than 270 years on most platforms) this method will lose microsecond accuracy. .. versionadded:: 3.2 -Examples of usage: :class:`timedelta` -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Examples of usage: :class:`!timedelta` +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ An additional example of normalization:: @@ -485,10 +490,11 @@ Examples of :class:`timedelta` arithmetic:: >>> three_years, three_years.days // 365 (datetime.timedelta(days=1095), 3) + .. _datetime-date: -:class:`date` Objects ---------------------- +:class:`!date` objects +---------------------- A :class:`date` object represents a date (year, month and day) in an idealized calendar, the current Gregorian calendar indefinitely extended in both @@ -517,9 +523,10 @@ Other constructors, all class methods: This is equivalent to ``date.fromtimestamp(time.time())``. + .. classmethod:: date.fromtimestamp(timestamp) - Return the local date corresponding to the POSIX timestamp, such as is + Return the local date corresponding to the POSIX *timestamp*, such as is returned by :func:`time.time`. This may raise :exc:`OverflowError`, if the timestamp is out @@ -541,7 +548,7 @@ Other constructors, all class methods: .. classmethod:: date.fromordinal(ordinal) - Return the date corresponding to the proleptic Gregorian ordinal, where + Return the date corresponding to the proleptic Gregorian *ordinal*, where January 1 of year 1 has ordinal 1. :exc:`ValueError` is raised unless ``1 <= ordinal <= @@ -574,13 +581,15 @@ Other constructors, all class methods: .. versionchanged:: 3.11 Previously, this method only supported the format ``YYYY-MM-DD``. + .. classmethod:: date.fromisocalendar(year, week, day) Return a :class:`date` corresponding to the ISO calendar date specified by - year, week and day. This is the inverse of the function :meth:`date.isocalendar`. + *year*, *week* and *day*. This is the inverse of the function :meth:`date.isocalendar`. .. versionadded:: 3.8 + .. classmethod:: date.strptime(date_string, format) Return a :class:`.date` corresponding to *date_string*, parsed according to @@ -791,6 +800,7 @@ Instance methods: .. versionchanged:: 3.9 Result changed from a tuple to a :term:`named tuple`. + .. method:: date.isoformat() Return a string representing the date in ISO 8601 format, ``YYYY-MM-DD``:: @@ -799,6 +809,7 @@ Instance methods: >>> date(2002, 12, 4).isoformat() '2002-12-04' + .. method:: date.__str__() For a date ``d``, ``str(d)`` is equivalent to ``d.isoformat()``. @@ -835,8 +846,9 @@ Instance methods: literals ` and when using :meth:`str.format`. See also :ref:`strftime-strptime-behavior` and :meth:`date.isoformat`. -Examples of Usage: :class:`date` -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Examples of usage: :class:`!date` +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Example of counting days to an event:: @@ -878,7 +890,7 @@ More examples of working with :class:`date`: >>> 'The {1} is {0:%d}, the {2} is {0:%B}.'.format(d, "day", "month") 'The day is 11, the month is March.' - >>> # Methods for to extracting 'components' under different calendars + >>> # Methods for extracting 'components' under different calendars >>> t = d.timetuple() >>> for i in t: # doctest: +SKIP ... print(i) @@ -905,7 +917,7 @@ More examples of working with :class:`date`: .. _datetime-datetime: -:class:`.datetime` Objects +:class:`!datetime` objects -------------------------- A :class:`.datetime` object is a single object containing all the information @@ -937,6 +949,7 @@ Constructor: .. versionchanged:: 3.6 Added the *fold* parameter. + Other constructors, all class methods: .. classmethod:: datetime.today() @@ -952,6 +965,7 @@ Other constructors, all class methods: This method is functionally equivalent to :meth:`now`, but without a ``tz`` parameter. + .. classmethod:: datetime.now(tz=None) Return the current local date and time. @@ -972,6 +986,7 @@ Other constructors, all class methods: Subsequent calls to :meth:`!datetime.now` may return the same instant depending on the precision of the underlying clock. + .. classmethod:: datetime.utcnow() Return the current UTC date and time, with :attr:`.tzinfo` ``None``. @@ -1063,13 +1078,13 @@ Other constructors, all class methods: :c:func:`gmtime` function. Raise :exc:`OSError` instead of :exc:`ValueError` on :c:func:`gmtime` failure. + .. versionchanged:: 3.15 + Accepts any real number as *timestamp*, not only integer or float. + .. deprecated:: 3.12 Use :meth:`datetime.fromtimestamp` with :const:`UTC` instead. - .. versionchanged:: 3.15 - Accepts any real number as *timestamp*, not only integer or float. - .. classmethod:: datetime.fromordinal(ordinal) @@ -1142,12 +1157,13 @@ Other constructors, all class methods: .. classmethod:: datetime.fromisocalendar(year, week, day) Return a :class:`.datetime` corresponding to the ISO calendar date specified - by year, week and day. The non-date components of the datetime are populated + by *year*, *week* and *day*. The non-date components of the datetime are populated with their normal default values. This is the inverse of the function :meth:`datetime.isocalendar`. .. versionadded:: 3.8 + .. classmethod:: datetime.strptime(date_string, format) Return a :class:`.datetime` corresponding to *date_string*, parsed according to @@ -1255,6 +1271,7 @@ Instance attributes (read-only): .. versionadded:: 3.6 + Supported operations: +---------------------------------------+--------------------------------+ @@ -1345,6 +1362,7 @@ Supported operations: The default behavior can be changed by overriding the special comparison methods in subclasses. + Instance methods: .. method:: datetime.date() @@ -1500,11 +1518,13 @@ Instance methods: ``datetime.replace(tzinfo=timezone.utc)`` to make it aware, at which point you can use :meth:`.datetime.timetuple`. + .. method:: datetime.toordinal() Return the proleptic Gregorian ordinal of the date. The same as ``self.date().toordinal()``. + .. method:: datetime.timestamp() Return POSIX timestamp corresponding to the :class:`.datetime` @@ -1523,16 +1543,6 @@ Instance methods: (dt - datetime(1970, 1, 1, tzinfo=timezone.utc)).total_seconds() - .. versionadded:: 3.3 - - .. versionchanged:: 3.6 - The :meth:`timestamp` method uses the :attr:`.fold` attribute to - disambiguate the times during a repeated interval. - - .. versionchanged:: 3.6 - This method no longer relies on the platform C :c:func:`mktime` - function to perform conversions. - .. note:: There is no method to obtain the POSIX timestamp directly from a @@ -1547,6 +1557,17 @@ Instance methods: timestamp = (dt - datetime(1970, 1, 1)) / timedelta(seconds=1) + .. versionadded:: 3.3 + + .. versionchanged:: 3.6 + The :meth:`timestamp` method uses the :attr:`.fold` attribute to + disambiguate the times during a repeated interval. + + .. versionchanged:: 3.6 + This method no longer relies on the platform C :c:func:`mktime` + function to perform conversions. + + .. method:: datetime.weekday() Return the day of the week as an integer, where Monday is 0 and Sunday is 6. @@ -1675,7 +1696,7 @@ Instance methods: See also :ref:`strftime-strptime-behavior` and :meth:`datetime.isoformat`. -Examples of Usage: :class:`.datetime` +Examples of usage: :class:`!datetime` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Examples of working with :class:`.datetime` objects: @@ -1801,9 +1822,10 @@ Usage of ``KabulTz`` from above:: >>> dt2 == dt3 True + .. _datetime-time: -:class:`.time` Objects +:class:`!time` objects ---------------------- A :class:`.time` object represents a (local) time of day, independent of any particular @@ -1824,6 +1846,7 @@ day, and subject to adjustment via a :class:`tzinfo` object. If an argument outside those ranges is given, :exc:`ValueError` is raised. All default to 0 except *tzinfo*, which defaults to ``None``. + Class attributes: @@ -1882,6 +1905,7 @@ Instance attributes (read-only): .. versionadded:: 3.6 + :class:`.time` objects support equality and order comparisons, where ``a`` is considered less than ``b`` when ``a`` precedes ``b`` in time. @@ -1904,8 +1928,8 @@ In Boolean contexts, a :class:`.time` object is always considered to be true. .. versionchanged:: 3.5 Before Python 3.5, a :class:`.time` object was considered to be false if it represented midnight in UTC. This behavior was considered obscure and - error-prone and has been removed in Python 3.5. See :issue:`13936` for full - details. + error-prone and has been removed in Python 3.5. See :issue:`13936` for more + information. Other constructors: @@ -1950,6 +1974,7 @@ Other constructors: Previously, this method only supported formats that could be emitted by :meth:`time.isoformat`. + .. classmethod:: time.strptime(date_string, format) Return a :class:`.time` corresponding to *date_string*, parsed according to @@ -2066,13 +2091,15 @@ Instance methods: .. versionchanged:: 3.7 The DST offset is not restricted to a whole number of minutes. + .. method:: time.tzname() If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo.tzname(None)``, or raises an exception if the latter doesn't return ``None`` or a string object. -Examples of Usage: :class:`.time` + +Examples of usage: :class:`!time` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Examples of working with a :class:`.time` object:: @@ -2105,12 +2132,12 @@ Examples of working with a :class:`.time` object:: .. _datetime-tzinfo: -:class:`tzinfo` Objects ------------------------ +:class:`!tzinfo` objects +------------------------ .. class:: tzinfo() - This is an abstract base class, meaning that this class should not be + This is an :term:`abstract base class`, meaning that this class should not be instantiated directly. Define a subclass of :class:`tzinfo` to capture information about a particular time zone. @@ -2381,8 +2408,8 @@ only EST (fixed offset -5 hours), or only EDT (fixed offset -4 hours)). .. _datetime-timezone: -:class:`timezone` Objects -------------------------- +:class:`!timezone` objects +-------------------------- The :class:`timezone` class is a subclass of :class:`tzinfo`, each instance of which represents a time zone defined by a fixed offset from @@ -2420,6 +2447,7 @@ where historical changes have been made to civil time. .. versionchanged:: 3.7 The UTC offset is not restricted to a whole number of minutes. + .. method:: timezone.tzname(dt) Return the fixed value specified when the :class:`timezone` instance @@ -2440,11 +2468,13 @@ where historical changes have been made to civil time. Always returns ``None``. + .. method:: timezone.fromutc(dt) Return ``dt + offset``. The *dt* argument must be an aware :class:`.datetime` instance, with ``tzinfo`` set to ``self``. + Class attributes: .. attribute:: timezone.utc @@ -2457,8 +2487,8 @@ Class attributes: .. _strftime-strptime-behavior: -:meth:`~.datetime.strftime` and :meth:`~.datetime.strptime` Behavior --------------------------------------------------------------------- +:meth:`!strftime` and :meth:`!strptime` behavior +------------------------------------------------ :class:`date`, :class:`.datetime`, and :class:`.time` objects all support a ``strftime(format)`` method, to create a string representing the time under the @@ -2484,8 +2514,8 @@ versus :meth:`~.datetime.strptime`: .. _format-codes: -:meth:`~.datetime.strftime` and :meth:`~.datetime.strptime` Format Codes -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +:meth:`!strftime` and :meth:`!strptime` format codes +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ These methods accept format codes that can be used to parse and format dates:: @@ -2678,7 +2708,8 @@ differences between platforms in handling of unsupported format specifiers. .. versionadded:: 3.15 ``%:z``, ``%F``, and ``%D`` were added for :meth:`~.datetime.strptime`. -Technical Detail + +Technical detail ^^^^^^^^^^^^^^^^ Broadly speaking, ``d.strftime(fmt)`` acts like the :mod:`time` module's @@ -2701,7 +2732,6 @@ in the format string will be pulled from the default value. the default year of 1900 is *not* a leap year. Always add a default leap year to partial date strings before parsing. - .. testsetup:: # doctest seems to turn the warning into an error which makes it From f705486745e5907190f1ace76fd08f492be09e68 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 18 Feb 2026 15:25:47 +0100 Subject: [PATCH 053/110] gh-141510: Add frozendict fast-path to the set type (#144912) --- Lib/test/test_set.py | 13 ++++++++++++- Objects/setobject.c | 35 +++++++++++++++++++++++++++++------ 2 files changed, 41 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index 554716aed1e98b..9bfd4bc7d63669 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -188,7 +188,10 @@ def test_symmetric_difference(self): self.assertEqual(type(i), self.basetype) self.assertRaises(PassThru, self.s.symmetric_difference, check_pass_thru()) self.assertRaises(TypeError, self.s.symmetric_difference, [[]]) - for C in set, frozenset, dict.fromkeys, str, list, tuple: + constructors = (set, frozenset, + dict.fromkeys, frozendict.fromkeys, + str, list, tuple) + for C in constructors: self.assertEqual(self.thetype('abcba').symmetric_difference(C('cdc')), set('abd')) self.assertEqual(self.thetype('abcba').symmetric_difference(C('efgfe')), set('abcefg')) self.assertEqual(self.thetype('abcba').symmetric_difference(C('ccb')), set('a')) @@ -1591,6 +1594,14 @@ def setUp(self): #------------------------------------------------------------------------------ +class TestOnlySetsFrozenDict(TestOnlySetsInBinaryOps, unittest.TestCase): + def setUp(self): + self.set = set((1, 2, 3)) + self.other = frozendict({1:2, 3:4}) + self.otherIsIterable = True + +#------------------------------------------------------------------------------ + class TestOnlySetsOperator(TestOnlySetsInBinaryOps, unittest.TestCase): def setUp(self): self.set = set((1, 2, 3)) diff --git a/Objects/setobject.c b/Objects/setobject.c index f8713bf3d1a432..ae6c1d1248d2fc 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -1186,10 +1186,14 @@ set_iter(PyObject *so) static int set_update_dict_lock_held(PySetObject *so, PyObject *other) { - assert(PyDict_CheckExact(other)); + assert(PyAnyDict_CheckExact(other)); _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(so); - _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(other); +#ifdef Py_DEBUG + if (!PyFrozenDict_CheckExact(other)) { + _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(other); + } +#endif /* Do one big resize at the start, rather than * incrementally resizing as we insert new keys. Expect @@ -1245,7 +1249,7 @@ set_update_lock_held(PySetObject *so, PyObject *other) if (PyAnySet_Check(other)) { return set_merge_lock_held(so, other); } - else if (PyDict_CheckExact(other)) { + else if (PyAnyDict_CheckExact(other)) { return set_update_dict_lock_held(so, other); } return set_update_iterable_lock_held(so, other); @@ -1270,6 +1274,9 @@ set_update_local(PySetObject *so, PyObject *other) Py_END_CRITICAL_SECTION(); return rv; } + else if (PyFrozenDict_CheckExact(other)) { + return set_update_dict_lock_held(so, other); + } return set_update_iterable_lock_held(so, other); } @@ -1293,6 +1300,13 @@ set_update_internal(PySetObject *so, PyObject *other) Py_END_CRITICAL_SECTION2(); return rv; } + else if (PyFrozenDict_CheckExact(other)) { + int rv; + Py_BEGIN_CRITICAL_SECTION(so); + rv = set_update_dict_lock_held(so, other); + Py_END_CRITICAL_SECTION(); + return rv; + } else { int rv; Py_BEGIN_CRITICAL_SECTION(so); @@ -2033,7 +2047,7 @@ set_difference(PySetObject *so, PyObject *other) if (PyAnySet_Check(other)) { other_size = PySet_GET_SIZE(other); } - else if (PyDict_CheckExact(other)) { + else if (PyAnyDict_CheckExact(other)) { other_size = PyDict_GET_SIZE(other); } else { @@ -2050,7 +2064,7 @@ set_difference(PySetObject *so, PyObject *other) if (result == NULL) return NULL; - if (PyDict_CheckExact(other)) { + if (PyAnyDict_CheckExact(other)) { while (set_next(so, &pos, &entry)) { key = entry->key; hash = entry->hash; @@ -2172,7 +2186,11 @@ static int set_symmetric_difference_update_dict(PySetObject *so, PyObject *other) { _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(so); - _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(other); +#ifdef Py_DEBUG + if (!PyFrozenDict_CheckExact(other)) { + _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(other); + } +#endif Py_ssize_t pos = 0; PyObject *key, *value; @@ -2246,6 +2264,11 @@ set_symmetric_difference_update_impl(PySetObject *so, PyObject *other) rv = set_symmetric_difference_update_dict(so, other); Py_END_CRITICAL_SECTION2(); } + else if (PyFrozenDict_CheckExact(other)) { + Py_BEGIN_CRITICAL_SECTION(so); + rv = set_symmetric_difference_update_dict(so, other); + Py_END_CRITICAL_SECTION(); + } else if (PyAnySet_Check(other)) { Py_BEGIN_CRITICAL_SECTION2(so, other); rv = set_symmetric_difference_update_set(so, (PySetObject *)other); From 1ddb41268997938d5f416e1ac98ae39cc3e81535 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 18 Feb 2026 15:47:49 +0100 Subject: [PATCH 054/110] gh-141510: Add can_modify_dict() in dictobject.c (#144955) can_modify_dict() is stricter than ASSERT_DICT_LOCKED() for frozendict. It uses PyUnstable_Object_IsUniquelyReferenced() which matters for free-threaded builds. Replace anydict_setitem_take2() with setitem_take2_lock_held(). It's no longer useful to have two functions. --- Objects/dictobject.c | 102 +++++++++++++++++++++++-------------------- 1 file changed, 55 insertions(+), 47 deletions(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 0959e2c78a3289..68602caf61401a 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -282,6 +282,24 @@ load_keys_nentries(PyDictObject *mp) #endif +#ifndef NDEBUG +// Check if it's possible to modify a dictionary. +// Usage: assert(can_modify_dict(mp)). +static inline int +can_modify_dict(PyDictObject *mp) +{ + if (PyFrozenDict_Check(mp)) { + // No locking required to modify a newly created frozendict + // since it's only accessible from the current thread. + return PyUnstable_Object_IsUniquelyReferenced(_PyObject_CAST(mp)); + } + else { + ASSERT_DICT_LOCKED(mp); + return 1; + } +} +#endif + #define _PyAnyDict_CAST(op) \ (assert(PyAnyDict_Check(op)), _Py_CAST(PyDictObject*, op)) @@ -1867,8 +1885,9 @@ insert_split_key(PyDictKeysObject *keys, PyObject *key, Py_hash_t hash) static void insert_split_value(PyDictObject *mp, PyObject *key, PyObject *value, Py_ssize_t ix) { + assert(can_modify_dict(mp)); assert(PyUnicode_CheckExact(key)); - ASSERT_DICT_LOCKED(mp); + PyObject *old_value = mp->ma_values->values[ix]; if (old_value == NULL) { _PyDict_NotifyEvent(PyDict_EVENT_ADDED, mp, key, value); @@ -1896,11 +1915,11 @@ static int insertdict(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject *value) { + assert(can_modify_dict(mp)); + PyObject *old_value = NULL; Py_ssize_t ix; - ASSERT_DICT_LOCKED(mp); - if (_PyDict_HasSplitTable(mp) && PyUnicode_CheckExact(key)) { ix = insert_split_key(mp->ma_keys, key, hash); if (ix != DKIX_EMPTY) { @@ -1967,8 +1986,8 @@ static int insert_to_emptydict(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject *value) { + assert(can_modify_dict(mp)); assert(mp->ma_keys == Py_EMPTY_KEYS); - ASSERT_DICT_LOCKED(mp); int unicode = PyUnicode_CheckExact(key); PyDictKeysObject *newkeys = new_keys_object(PyDict_LOG_MINSIZE, unicode); @@ -2069,11 +2088,11 @@ static int dictresize(PyDictObject *mp, uint8_t log2_newsize, int unicode) { + assert(can_modify_dict(mp)); + PyDictKeysObject *oldkeys, *newkeys; PyDictValues *oldvalues; - ASSERT_DICT_LOCKED(mp); - if (log2_newsize >= SIZEOF_SIZE_T*8) { PyErr_NoMemory(); return -1; @@ -2671,11 +2690,13 @@ _PyDict_LoadBuiltinsFromGlobals(PyObject *globals) /* Consumes references to key and value */ static int -anydict_setitem_take2(PyDictObject *mp, PyObject *key, PyObject *value) +setitem_take2_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) { + assert(PyAnyDict_Check(mp)); + assert(can_modify_dict(mp)); assert(key); assert(value); - assert(PyAnyDict_Check(mp)); + Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { dict_unhashable_type(key); @@ -2691,14 +2712,6 @@ anydict_setitem_take2(PyDictObject *mp, PyObject *key, PyObject *value) return insertdict(mp, key, hash, value); } -/* Consumes references to key and value */ -static int -setitem_take2_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) -{ - ASSERT_DICT_LOCKED(mp); - return anydict_setitem_take2(mp, key, value); -} - int _PyDict_SetItem_Take2(PyDictObject *mp, PyObject *key, PyObject *value) { @@ -2800,9 +2813,9 @@ static void delitem_common(PyDictObject *mp, Py_hash_t hash, Py_ssize_t ix, PyObject *old_value) { - PyObject *old_key; + assert(can_modify_dict(mp)); - ASSERT_DICT_LOCKED(mp); + PyObject *old_key; Py_ssize_t hashpos = lookdict_index(mp->ma_keys, hash, ix); assert(hashpos >= 0); @@ -2856,19 +2869,17 @@ int _PyDict_DelItem_KnownHash_LockHeld(PyObject *op, PyObject *key, Py_hash_t hash) { Py_ssize_t ix; - PyDictObject *mp; PyObject *old_value; if (!PyDict_Check(op)) { PyErr_BadInternalCall(); return -1; } - - ASSERT_DICT_LOCKED(op); + PyDictObject *mp = (PyDictObject *)op; + assert(can_modify_dict(mp)); assert(key); assert(hash != -1); - mp = (PyDictObject *)op; ix = _Py_dict_lookup(mp, key, hash, &old_value); if (ix == DKIX_ERROR) return -1; @@ -2897,19 +2908,18 @@ delitemif_lock_held(PyObject *op, PyObject *key, int (*predicate)(PyObject *value, void *arg), void *arg) { + PyDictObject *mp = _PyAnyDict_CAST(op); + assert(can_modify_dict(mp)); + Py_ssize_t ix; - PyDictObject *mp; Py_hash_t hash; PyObject *old_value; int res; - ASSERT_DICT_LOCKED(op); - assert(key); hash = PyObject_Hash(key); if (hash == -1) return -1; - mp = (PyDictObject *)op; ix = _Py_dict_lookup(mp, key, hash, &old_value); if (ix == DKIX_ERROR) { return -1; @@ -2951,16 +2961,16 @@ _PyDict_DelItemIf(PyObject *op, PyObject *key, static void clear_lock_held(PyObject *op) { - PyDictObject *mp; + if (!PyDict_Check(op)) { + return; + } + PyDictObject *mp = (PyDictObject *)op; + assert(can_modify_dict(mp)); + PyDictKeysObject *oldkeys; PyDictValues *oldvalues; Py_ssize_t i, n; - ASSERT_DICT_LOCKED(op); - - if (!PyDict_Check(op)) - return; - mp = ((PyDictObject *)op); oldkeys = mp->ma_keys; oldvalues = mp->ma_values; if (oldkeys == Py_EMPTY_KEYS) { @@ -3106,8 +3116,7 @@ _PyDict_Pop_KnownHash(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **result) { assert(PyDict_Check(mp)); - - ASSERT_DICT_LOCKED(mp); + assert(can_modify_dict(mp)); if (mp->ma_used == 0) { if (result) { @@ -3149,8 +3158,6 @@ _PyDict_Pop_KnownHash(PyDictObject *mp, PyObject *key, Py_hash_t hash, static int pop_lock_held(PyObject *op, PyObject *key, PyObject **result) { - ASSERT_DICT_LOCKED(op); - if (!PyDict_Check(op)) { if (result) { *result = NULL; @@ -3159,6 +3166,7 @@ pop_lock_held(PyObject *op, PyObject *key, PyObject **result) return -1; } PyDictObject *dict = (PyDictObject *)op; + assert(can_modify_dict(dict)); if (dict->ma_used == 0) { if (result) { @@ -3361,9 +3369,9 @@ dict_iter_exit:; } else if (PyFrozenDict_CheckExact(d)) { while ((key = PyIter_Next(it)) != NULL) { - // anydict_setitem_take2 consumes a reference to key - status = anydict_setitem_take2((PyDictObject *)d, - key, Py_NewRef(value)); + // setitem_take2_lock_held consumes a reference to key + status = setitem_take2_lock_held((PyDictObject *)d, + key, Py_NewRef(value)); if (status < 0) { assert(PyErr_Occurred()); goto Fail; @@ -3933,7 +3941,7 @@ PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override) static int dict_dict_merge(PyDictObject *mp, PyDictObject *other, int override) { - ASSERT_DICT_LOCKED(mp); + assert(can_modify_dict(mp)); ASSERT_DICT_LOCKED(other); if (other == mp || other->ma_used == 0) @@ -4474,8 +4482,6 @@ dict_setdefault_ref_lock_held(PyObject *d, PyObject *key, PyObject *default_valu Py_hash_t hash; Py_ssize_t ix; - ASSERT_DICT_LOCKED(d); - if (!PyDict_Check(d)) { PyErr_BadInternalCall(); if (result) { @@ -4483,6 +4489,7 @@ dict_setdefault_ref_lock_held(PyObject *d, PyObject *key, PyObject *default_valu } return -1; } + assert(can_modify_dict((PyDictObject*)d)); hash = _PyObject_HashFast(key); if (hash == -1) { @@ -4657,11 +4664,11 @@ static PyObject * dict_popitem_impl(PyDictObject *self) /*[clinic end generated code: output=e65fcb04420d230d input=ef28b4da5f0f762e]*/ { + assert(can_modify_dict(self)); + Py_ssize_t i, j; PyObject *res; - ASSERT_DICT_LOCKED(self); - /* Allocate the result tuple before checking the size. Believe it * or not, this allocation could trigger a garbage collection which * could empty the dict, so if we checked the size first and that @@ -4799,11 +4806,12 @@ _PyDict_SizeOf_LockHeld(PyDictObject *mp) } void -_PyDict_ClearKeysVersionLockHeld(PyObject *mp) +_PyDict_ClearKeysVersionLockHeld(PyObject *op) { - ASSERT_DICT_LOCKED(mp); + PyDictObject *mp = _PyAnyDict_CAST(op); + assert(can_modify_dict(mp)); - FT_ATOMIC_STORE_UINT32_RELAXED(((PyDictObject *)mp)->ma_keys->dk_version, 0); + FT_ATOMIC_STORE_UINT32_RELAXED(mp->ma_keys->dk_version, 0); } Py_ssize_t From c582ff3c2508a8b1164ed861e4f304ba6a782546 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 18 Feb 2026 16:56:09 +0100 Subject: [PATCH 055/110] gh-141510: Fix frozendict.fromkeys() for subclasses (#144952) Copy the frozendict if needed. --- Lib/test/test_dict.py | 28 ++++++++++++++++++++++++++++ Objects/dictobject.c | 35 +++++++++++++++++++++++++++++++++-- 2 files changed, 61 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 21f8bb11071c90..1a8ae1cd42356e 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -1787,6 +1787,34 @@ def test_hash(self): with self.assertRaisesRegex(TypeError, "unhashable type: 'list'"): hash(fd) + def test_fromkeys(self): + self.assertEqual(frozendict.fromkeys('abc'), + frozendict(a=None, b=None, c=None)) + + # Subclass which overrides the constructor + created = frozendict(x=1) + class FrozenDictSubclass(frozendict): + def __new__(self): + return created + + fd = FrozenDictSubclass.fromkeys("abc") + self.assertEqual(fd, frozendict(x=1, a=None, b=None, c=None)) + self.assertEqual(type(fd), FrozenDictSubclass) + self.assertEqual(created, frozendict(x=1)) + + fd = FrozenDictSubclass.fromkeys(frozendict(y=2)) + self.assertEqual(fd, frozendict(x=1, y=None)) + self.assertEqual(type(fd), FrozenDictSubclass) + self.assertEqual(created, frozendict(x=1)) + + # Subclass which doesn't override the constructor + class FrozenDictSubclass2(frozendict): + pass + + fd = FrozenDictSubclass2.fromkeys("abc") + self.assertEqual(fd, frozendict(a=None, b=None, c=None)) + self.assertEqual(type(fd), FrozenDictSubclass2) + if __name__ == "__main__": unittest.main() diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 68602caf61401a..8d3c34f87e2afe 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -138,6 +138,7 @@ As a consequence of this, split keys have a maximum size of 16. // Forward declarations static PyObject* frozendict_new(PyTypeObject *type, PyObject *args, PyObject *kwds); +static int dict_merge(PyObject *a, PyObject *b, int override); /*[clinic input] @@ -294,6 +295,8 @@ can_modify_dict(PyDictObject *mp) return PyUnstable_Object_IsUniquelyReferenced(_PyObject_CAST(mp)); } else { + // Locking is only required if the dictionary is not + // uniquely referenced. ASSERT_DICT_LOCKED(mp); return 1; } @@ -3238,6 +3241,8 @@ _PyDict_Pop(PyObject *dict, PyObject *key, PyObject *default_value) static PyDictObject * dict_dict_fromkeys(PyDictObject *mp, PyObject *iterable, PyObject *value) { + assert(can_modify_dict(mp)); + PyObject *oldvalue; Py_ssize_t pos = 0; PyObject *key; @@ -3263,6 +3268,8 @@ dict_dict_fromkeys(PyDictObject *mp, PyObject *iterable, PyObject *value) static PyDictObject * dict_set_fromkeys(PyDictObject *mp, PyObject *iterable, PyObject *value) { + assert(can_modify_dict(mp)); + Py_ssize_t pos = 0; PyObject *key; Py_hash_t hash; @@ -3294,9 +3301,31 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) int status; d = _PyObject_CallNoArgs(cls); - if (d == NULL) + if (d == NULL) { return NULL; + } + // If cls is a frozendict subclass with overridden constructor, + // copy the frozendict. + PyTypeObject *cls_type = _PyType_CAST(cls); + if (PyFrozenDict_Check(d) + && PyObject_IsSubclass(cls, (PyObject*)&PyFrozenDict_Type) + && cls_type->tp_new != frozendict_new) + { + // Subclass-friendly copy + PyObject *copy = frozendict_new(cls_type, NULL, NULL); + if (copy == NULL) { + Py_DECREF(d); + return NULL; + } + if (dict_merge(copy, d, 1) < 0) { + Py_DECREF(d); + Py_DECREF(copy); + return NULL; + } + Py_SETREF(d, copy); + } + assert(!PyFrozenDict_Check(d) || can_modify_dict((PyDictObject*)d)); if (PyDict_CheckExact(d)) { if (PyDict_CheckExact(iterable)) { @@ -3367,7 +3396,7 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) dict_iter_exit:; Py_END_CRITICAL_SECTION(); } - else if (PyFrozenDict_CheckExact(d)) { + else if (PyFrozenDict_Check(d)) { while ((key = PyIter_Next(it)) != NULL) { // setitem_take2_lock_held consumes a reference to key status = setitem_take2_lock_held((PyDictObject *)d, @@ -8002,6 +8031,8 @@ frozendict_new(PyTypeObject *type, PyObject *args, PyObject *kwds) if (d == NULL) { return NULL; } + assert(can_modify_dict(_PyAnyDict_CAST(d))); + PyFrozenDictObject *self = _PyFrozenDictObject_CAST(d); self->ma_hash = -1; From 83f4fffe3d78ba368c0d4864c42c7c9c9223f7d1 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 18 Feb 2026 16:57:48 +0100 Subject: [PATCH 056/110] gh-144763: Don't detach the GIL in tracemalloc (#144779) tracemalloc no longer detaches the GIL to acquire its internal lock. Co-authored-by: Kumar Aditya --- ...-02-13-11-14-18.gh-issue-144763.cDwnEE.rst | 2 ++ Python/tracemalloc.c | 24 +++++++++++++------ 2 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-13-11-14-18.gh-issue-144763.cDwnEE.rst diff --git a/Misc/NEWS.d/next/Library/2026-02-13-11-14-18.gh-issue-144763.cDwnEE.rst b/Misc/NEWS.d/next/Library/2026-02-13-11-14-18.gh-issue-144763.cDwnEE.rst new file mode 100644 index 00000000000000..14eb4f49c8ad3c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-13-11-14-18.gh-issue-144763.cDwnEE.rst @@ -0,0 +1,2 @@ +Fix a race condition in :mod:`tracemalloc`: it no longer detaches the attached +thread state to acquire its internal lock. Patch by Victor Stinner. diff --git a/Python/tracemalloc.c b/Python/tracemalloc.c index cdd96925d1f27a..0afc84e021817c 100644 --- a/Python/tracemalloc.c +++ b/Python/tracemalloc.c @@ -36,7 +36,7 @@ static int _PyTraceMalloc_TraceRef(PyObject *op, PyRefTracerEvent event, the GIL held from PyMem_RawFree(). It cannot acquire the lock because it would introduce a deadlock in _PyThreadState_DeleteCurrent(). */ #define tables_lock _PyRuntime.tracemalloc.tables_lock -#define TABLES_LOCK() PyMutex_Lock(&tables_lock) +#define TABLES_LOCK() PyMutex_LockFlags(&tables_lock, _Py_LOCK_DONT_DETACH) #define TABLES_UNLOCK() PyMutex_Unlock(&tables_lock) @@ -224,13 +224,20 @@ tracemalloc_get_frame(_PyInterpreterFrame *pyframe, frame_t *frame) assert(PyStackRef_CodeCheck(pyframe->f_executable)); frame->filename = &_Py_STR(anon_unknown); - int lineno = PyUnstable_InterpreterFrame_GetLine(pyframe); + int lineno = -1; + PyCodeObject *code = _PyFrame_GetCode(pyframe); + // PyUnstable_InterpreterFrame_GetLine() cannot but used, since it uses + // a critical section which can trigger a deadlock. + int lasti = _PyFrame_SafeGetLasti(pyframe); + if (lasti >= 0) { + lineno = _PyCode_SafeAddr2Line(code, lasti); + } if (lineno < 0) { lineno = 0; } frame->lineno = (unsigned int)lineno; - PyObject *filename = _PyFrame_GetCode(pyframe)->co_filename; + PyObject *filename = code->co_filename; if (filename == NULL) { #ifdef TRACE_DEBUG tracemalloc_error("failed to get the filename of the code object"); @@ -863,7 +870,8 @@ _PyTraceMalloc_Stop(void) TABLES_LOCK(); if (!tracemalloc_config.tracing) { - goto done; + TABLES_UNLOCK(); + return; } /* stop tracing Python memory allocations */ @@ -880,10 +888,12 @@ _PyTraceMalloc_Stop(void) raw_free(tracemalloc_traceback); tracemalloc_traceback = NULL; - (void)PyRefTracer_SetTracer(NULL, NULL); - -done: TABLES_UNLOCK(); + + // Call it after TABLES_UNLOCK() since it calls _PyEval_StopTheWorldAll() + // which would lead to a deadlock with TABLES_LOCK() which doesn't detach + // the thread state. + (void)PyRefTracer_SetTracer(NULL, NULL); } From a18e0fa4c045e9ffc9d566b173c72fa3f6fc2252 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 18 Feb 2026 18:02:12 +0200 Subject: [PATCH 057/110] gh-135573: Add tests for pickle opcodes with wrong types (GH-144950) Ensure that APPENDS and ADDITEMS raise error for wrong collection even with empty items. --- Lib/test/pickletester.py | 23 +++++++++++++++++++++++ Modules/_pickle.c | 6 ------ 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index c4460c2e44d578..3d4ed8a2b6ee40 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -1484,6 +1484,29 @@ def __hash__(self): # bad hashable dict key self.check_unpickling_error(CustomError, base + b'}c__main__\nBadKey1\n)\x81Nsb.') + def test_bad_types(self): + # APPEND + self.assertEqual(self.loads(b']Na.'), [None]) + self.check_unpickling_error(AttributeError, b'NNa.') # non-list + # APPENDS + self.assertEqual(self.loads(b'](Ne.'), [None]) + self.check_unpickling_error(AttributeError, b'N(Ne.') # non-list + self.check_unpickling_error(AttributeError, b'N(e.') + # SETITEM + self.assertEqual(self.loads(b'}NNs.'), {None: None}) + self.check_unpickling_error(TypeError, b'NNNs.') # non-dict + self.check_unpickling_error(TypeError, b'}]Ns.') # non-hashable key + # SETITEMS + self.assertEqual(self.loads(b'}(NNu.'), {None: None}) + self.check_unpickling_error(TypeError, b'N(NNu.') # non-dict + self.assertEqual(self.loads(b'N(u.'), None) # no validation for empty items + self.check_unpickling_error(TypeError, b'}(]Nu.') # non-hashable key + # ADDITEMS + self.assertEqual(self.loads(b'\x8f(N\x90.'), {None}) + self.check_unpickling_error(AttributeError, b'N(N\x90.') # non-set + self.check_unpickling_error(AttributeError, b'N(\x90.') + self.check_unpickling_error(TypeError, b'\x8f(]\x90.') # non-hashable element + def test_bad_stack(self): badpickles = [ b'.', # STOP diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 24d3443dd8abfe..65facaa6db2036 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -6663,8 +6663,6 @@ do_append(PickleState *state, UnpicklerObject *self, Py_ssize_t x) len = Py_SIZE(self->stack); if (x > len || x <= self->stack->fence) return Pdata_stack_underflow(state, self->stack); - if (len == x) /* nothing to do */ - return 0; list = self->stack->data[x - 1]; @@ -6754,8 +6752,6 @@ do_setitems(PickleState *st, UnpicklerObject *self, Py_ssize_t x) len = Py_SIZE(self->stack); if (x > len || x <= self->stack->fence) return Pdata_stack_underflow(st, self->stack); - if (len == x) /* nothing to do */ - return 0; if ((len - x) % 2 != 0) { /* Corrupt or hostile pickle -- we never write one like this. */ PyErr_SetString(st->UnpicklingError, @@ -6807,8 +6803,6 @@ load_additems(PickleState *state, UnpicklerObject *self) len = Py_SIZE(self->stack); if (mark > len || mark <= self->stack->fence) return Pdata_stack_underflow(state, self->stack); - if (len == mark) /* nothing to do */ - return 0; set = self->stack->data[mark - 1]; From 3e2f5c133f37f13f627404f3cbd54a5fc163887a Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Thu, 19 Feb 2026 01:10:53 +0900 Subject: [PATCH 058/110] gh-141510: Update specializer to support frozendict (gh-144949) --- Include/internal/pycore_interp_structs.h | 2 +- Lib/test/test_opcache.py | 42 +++++++++++++++++++ ...-02-18-21-44-39.gh-issue-141510.7LST2O.rst | 1 + Modules/_testinternalcapi/test_cases.c.h | 10 ++--- Python/bytecodes.c | 8 ++-- Python/executor_cases.c.h | 20 ++++----- Python/generated_cases.c.h | 10 ++--- Python/specialize.c | 4 +- 8 files changed, 70 insertions(+), 27 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-18-21-44-39.gh-issue-141510.7LST2O.rst diff --git a/Include/internal/pycore_interp_structs.h b/Include/internal/pycore_interp_structs.h index 3ebc8967c3dc7f..1e69c64bcd1fc0 100644 --- a/Include/internal/pycore_interp_structs.h +++ b/Include/internal/pycore_interp_structs.h @@ -496,7 +496,7 @@ struct _py_func_state { /* For now we hard-code this to a value for which we are confident all the static builtin types will fit (for all builds). */ -#define _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES 200 +#define _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES 201 #define _Py_MAX_MANAGED_STATIC_EXT_TYPES 10 #define _Py_MAX_MANAGED_STATIC_TYPES \ (_Py_MAX_MANAGED_STATIC_BUILTIN_TYPES + _Py_MAX_MANAGED_STATIC_EXT_TYPES) diff --git a/Lib/test/test_opcache.py b/Lib/test/test_opcache.py index 343711ce3a9cef..1f5b0596107704 100644 --- a/Lib/test/test_opcache.py +++ b/Lib/test/test_opcache.py @@ -1548,6 +1548,27 @@ def contains_op_dict(): self.assert_specialized(contains_op_dict, "CONTAINS_OP_DICT") self.assert_no_opcode(contains_op_dict, "CONTAINS_OP") + def contains_op_frozen_dict(): + for _ in range(_testinternalcapi.SPECIALIZATION_THRESHOLD): + a, b = 1, frozendict({1: 2, 2: 5}) + self.assertTrue(a in b) + self.assertFalse(3 in b) + + contains_op_frozen_dict() + self.assert_specialized(contains_op_frozen_dict, "CONTAINS_OP_DICT") + self.assert_no_opcode(contains_op_frozen_dict, "CONTAINS_OP") + + def contains_op_frozen_dict_subclass(): + class MyFrozenDict(frozendict): + pass + for _ in range(_testinternalcapi.SPECIALIZATION_THRESHOLD): + a, b = 1, MyFrozenDict({1: 2, 2: 5}) + self.assertTrue(a in b) + self.assertFalse(3 in b) + + contains_op_frozen_dict_subclass() + self.assert_no_opcode(contains_op_frozen_dict_subclass, "CONTAINS_OP_DICT") + def contains_op_set(): for _ in range(_testinternalcapi.SPECIALIZATION_THRESHOLD): a, b = 1, {1, 2} @@ -1808,6 +1829,27 @@ def binary_subscr_dict(): self.assert_specialized(binary_subscr_dict, "BINARY_OP_SUBSCR_DICT") self.assert_no_opcode(binary_subscr_dict, "BINARY_OP") + def binary_subscr_frozen_dict(): + for _ in range(_testinternalcapi.SPECIALIZATION_THRESHOLD): + a = frozendict({1: 2, 2: 3}) + self.assertEqual(a[1], 2) + self.assertEqual(a[2], 3) + + binary_subscr_frozen_dict() + self.assert_specialized(binary_subscr_frozen_dict, "BINARY_OP_SUBSCR_DICT") + self.assert_no_opcode(binary_subscr_frozen_dict, "BINARY_OP") + + def binary_subscr_frozen_dict_subclass(): + class MyFrozenDict(frozendict): + pass + for _ in range(_testinternalcapi.SPECIALIZATION_THRESHOLD): + a = MyFrozenDict({1: 2, 2: 3}) + self.assertEqual(a[1], 2) + self.assertEqual(a[2], 3) + + binary_subscr_frozen_dict_subclass() + self.assert_no_opcode(binary_subscr_frozen_dict_subclass, "BINARY_OP_SUBSCR_DICT") + def binary_subscr_str_int(): for _ in range(_testinternalcapi.SPECIALIZATION_THRESHOLD): a = "foobar" diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-18-21-44-39.gh-issue-141510.7LST2O.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-18-21-44-39.gh-issue-141510.7LST2O.rst new file mode 100644 index 00000000000000..87d6a2a6df96a1 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-18-21-44-39.gh-issue-141510.7LST2O.rst @@ -0,0 +1 @@ +Update specializer to support frozendict. Patch by Donghee Na. diff --git a/Modules/_testinternalcapi/test_cases.c.h b/Modules/_testinternalcapi/test_cases.c.h index ddd8fcdc231bf1..a9cd0574a596a1 100644 --- a/Modules/_testinternalcapi/test_cases.c.h +++ b/Modules/_testinternalcapi/test_cases.c.h @@ -642,7 +642,7 @@ { nos = stack_pointer[-2]; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UPDATE_MISS_STATS(BINARY_OP); assert(_PyOpcode_Deopt[opcode] == (BINARY_OP)); JUMP_TO_PREDICTED(BINARY_OP); @@ -655,7 +655,7 @@ dict_st = nos; PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st); PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st); - assert(PyDict_CheckExact(dict)); + assert(PyAnyDict_CheckExact(dict)); STAT_INC(BINARY_OP, hit); PyObject *res_o; _PyFrame_SetStackPointer(frame, stack_pointer); @@ -5139,7 +5139,7 @@ { tos = stack_pointer[-1]; PyObject *o = PyStackRef_AsPyObjectBorrow(tos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UPDATE_MISS_STATS(CONTAINS_OP); assert(_PyOpcode_Deopt[opcode] == (CONTAINS_OP)); JUMP_TO_PREDICTED(CONTAINS_OP); @@ -5152,7 +5152,7 @@ left = stack_pointer[-2]; PyObject *left_o = PyStackRef_AsPyObjectBorrow(left); PyObject *right_o = PyStackRef_AsPyObjectBorrow(right); - assert(PyDict_CheckExact(right_o)); + assert(PyAnyDict_CheckExact(right_o)); STAT_INC(CONTAINS_OP, hit); _PyFrame_SetStackPointer(frame, stack_pointer); int res = PyDict_Contains(right_o, left_o); @@ -11482,7 +11482,7 @@ { nos = stack_pointer[-2]; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UPDATE_MISS_STATS(STORE_SUBSCR); assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR)); JUMP_TO_PREDICTED(STORE_SUBSCR); diff --git a/Python/bytecodes.c b/Python/bytecodes.c index b461f9b5bea8a6..63a4222264985a 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -1058,12 +1058,12 @@ dummy_func( op(_GUARD_NOS_DICT, (nos, unused -- nos, unused)) { PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - EXIT_IF(!PyDict_CheckExact(o)); + EXIT_IF(!PyAnyDict_CheckExact(o)); } op(_GUARD_TOS_DICT, (tos -- tos)) { PyObject *o = PyStackRef_AsPyObjectBorrow(tos); - EXIT_IF(!PyDict_CheckExact(o)); + EXIT_IF(!PyAnyDict_CheckExact(o)); } macro(BINARY_OP_SUBSCR_DICT) = @@ -1073,7 +1073,7 @@ dummy_func( PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st); PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st); - assert(PyDict_CheckExact(dict)); + assert(PyAnyDict_CheckExact(dict)); STAT_INC(BINARY_OP, hit); PyObject *res_o; int rc = PyDict_GetItemRef(dict, sub, &res_o); @@ -2940,7 +2940,7 @@ dummy_func( PyObject *left_o = PyStackRef_AsPyObjectBorrow(left); PyObject *right_o = PyStackRef_AsPyObjectBorrow(right); - assert(PyDict_CheckExact(right_o)); + assert(PyAnyDict_CheckExact(right_o)); STAT_INC(CONTAINS_OP, hit); int res = PyDict_Contains(right_o, left_o); if (res < 0) { diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h index 9dead4eecc7826..1b3de80e4443b1 100644 --- a/Python/executor_cases.c.h +++ b/Python/executor_cases.c.h @@ -5920,7 +5920,7 @@ _PyStackRef nos; nos = stack_pointer[-2]; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); SET_CURRENT_CACHED_VALUES(0); JUMP_TO_JUMP_TARGET(); @@ -5941,7 +5941,7 @@ _PyStackRef _stack_item_0 = _tos_cache0; nos = stack_pointer[-1]; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); _tos_cache0 = _stack_item_0; SET_CURRENT_CACHED_VALUES(1); @@ -5964,7 +5964,7 @@ _PyStackRef _stack_item_1 = _tos_cache1; nos = _stack_item_0; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); _tos_cache1 = _stack_item_1; _tos_cache0 = nos; @@ -5987,7 +5987,7 @@ _PyStackRef _stack_item_2 = _tos_cache2; nos = _stack_item_1; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); _tos_cache2 = _stack_item_2; _tos_cache1 = nos; @@ -6009,7 +6009,7 @@ _PyStackRef tos; tos = stack_pointer[-1]; PyObject *o = PyStackRef_AsPyObjectBorrow(tos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); SET_CURRENT_CACHED_VALUES(0); JUMP_TO_JUMP_TARGET(); @@ -6029,7 +6029,7 @@ _PyStackRef _stack_item_0 = _tos_cache0; tos = _stack_item_0; PyObject *o = PyStackRef_AsPyObjectBorrow(tos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); _tos_cache0 = tos; SET_CURRENT_CACHED_VALUES(1); @@ -6049,7 +6049,7 @@ _PyStackRef _stack_item_1 = _tos_cache1; tos = _stack_item_1; PyObject *o = PyStackRef_AsPyObjectBorrow(tos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); _tos_cache1 = tos; _tos_cache0 = _stack_item_0; @@ -6072,7 +6072,7 @@ _PyStackRef _stack_item_2 = _tos_cache2; tos = _stack_item_2; PyObject *o = PyStackRef_AsPyObjectBorrow(tos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UOP_STAT_INC(uopcode, miss); _tos_cache2 = tos; _tos_cache1 = _stack_item_1; @@ -6102,7 +6102,7 @@ dict_st = _stack_item_0; PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st); PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st); - assert(PyDict_CheckExact(dict)); + assert(PyAnyDict_CheckExact(dict)); STAT_INC(BINARY_OP, hit); PyObject *res_o; stack_pointer[0] = dict_st; @@ -10393,7 +10393,7 @@ left = _stack_item_0; PyObject *left_o = PyStackRef_AsPyObjectBorrow(left); PyObject *right_o = PyStackRef_AsPyObjectBorrow(right); - assert(PyDict_CheckExact(right_o)); + assert(PyAnyDict_CheckExact(right_o)); STAT_INC(CONTAINS_OP, hit); stack_pointer[0] = left; stack_pointer[1] = right; diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 37fa6d679190dd..829a6988954e5f 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -642,7 +642,7 @@ { nos = stack_pointer[-2]; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UPDATE_MISS_STATS(BINARY_OP); assert(_PyOpcode_Deopt[opcode] == (BINARY_OP)); JUMP_TO_PREDICTED(BINARY_OP); @@ -655,7 +655,7 @@ dict_st = nos; PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st); PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st); - assert(PyDict_CheckExact(dict)); + assert(PyAnyDict_CheckExact(dict)); STAT_INC(BINARY_OP, hit); PyObject *res_o; _PyFrame_SetStackPointer(frame, stack_pointer); @@ -5139,7 +5139,7 @@ { tos = stack_pointer[-1]; PyObject *o = PyStackRef_AsPyObjectBorrow(tos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UPDATE_MISS_STATS(CONTAINS_OP); assert(_PyOpcode_Deopt[opcode] == (CONTAINS_OP)); JUMP_TO_PREDICTED(CONTAINS_OP); @@ -5152,7 +5152,7 @@ left = stack_pointer[-2]; PyObject *left_o = PyStackRef_AsPyObjectBorrow(left); PyObject *right_o = PyStackRef_AsPyObjectBorrow(right); - assert(PyDict_CheckExact(right_o)); + assert(PyAnyDict_CheckExact(right_o)); STAT_INC(CONTAINS_OP, hit); _PyFrame_SetStackPointer(frame, stack_pointer); int res = PyDict_Contains(right_o, left_o); @@ -11479,7 +11479,7 @@ { nos = stack_pointer[-2]; PyObject *o = PyStackRef_AsPyObjectBorrow(nos); - if (!PyDict_CheckExact(o)) { + if (!PyAnyDict_CheckExact(o)) { UPDATE_MISS_STATS(STORE_SUBSCR); assert(_PyOpcode_Deopt[opcode] == (STORE_SUBSCR)); JUMP_TO_PREDICTED(STORE_SUBSCR); diff --git a/Python/specialize.c b/Python/specialize.c index 5ba016f83ea077..4d3ba4acbbf038 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -2287,7 +2287,7 @@ _Py_Specialize_BinaryOp(_PyStackRef lhs_st, _PyStackRef rhs_st, _Py_CODEUNIT *in } } } - if (PyDict_CheckExact(lhs)) { + if (PyAnyDict_CheckExact(lhs)) { specialize(instr, BINARY_OP_SUBSCR_DICT); return; } @@ -2767,7 +2767,7 @@ _Py_Specialize_ContainsOp(_PyStackRef value_st, _Py_CODEUNIT *instr) assert(ENABLE_SPECIALIZATION); assert(_PyOpcode_Caches[CONTAINS_OP] == INLINE_CACHE_ENTRIES_COMPARE_OP); - if (PyDict_CheckExact(value)) { + if (PyAnyDict_CheckExact(value)) { specialize(instr, CONTAINS_OP_DICT); return; } From 16ccdbc50a3034f9c0e5ea6845356281b2ad04bd Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 18 Feb 2026 18:03:04 +0100 Subject: [PATCH 059/110] gh-141510: Fix frozendict.fromkeys() for dict subclasses (#144962) Copy also the dictionary if a dict subclass returns a frozendict. --- Lib/test/test_dict.py | 10 ++++++++++ Objects/dictobject.c | 16 ++++++++++------ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 1a8ae1cd42356e..71f72cb2557670 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -1815,6 +1815,16 @@ class FrozenDictSubclass2(frozendict): self.assertEqual(fd, frozendict(a=None, b=None, c=None)) self.assertEqual(type(fd), FrozenDictSubclass2) + # Dict subclass which overrides the constructor + class DictSubclass(dict): + def __new__(self): + return created + + fd = DictSubclass.fromkeys("abc") + self.assertEqual(fd, frozendict(x=1, a=None, b=None, c=None)) + self.assertEqual(type(fd), DictSubclass) + self.assertEqual(created, frozendict(x=1)) + if __name__ == "__main__": unittest.main() diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 8d3c34f87e2afe..af3fcca7455470 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -138,6 +138,7 @@ As a consequence of this, split keys have a maximum size of 16. // Forward declarations static PyObject* frozendict_new(PyTypeObject *type, PyObject *args, PyObject *kwds); +static PyObject* dict_new(PyTypeObject *type, PyObject *args, PyObject *kwds); static int dict_merge(PyObject *a, PyObject *b, int override); @@ -3305,15 +3306,18 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value) return NULL; } - // If cls is a frozendict subclass with overridden constructor, + // If cls is a dict or frozendict subclass with overridden constructor, // copy the frozendict. PyTypeObject *cls_type = _PyType_CAST(cls); - if (PyFrozenDict_Check(d) - && PyObject_IsSubclass(cls, (PyObject*)&PyFrozenDict_Type) - && cls_type->tp_new != frozendict_new) - { + if (PyFrozenDict_Check(d) && cls_type->tp_new != frozendict_new) { // Subclass-friendly copy - PyObject *copy = frozendict_new(cls_type, NULL, NULL); + PyObject *copy; + if (PyObject_IsSubclass(cls, (PyObject*)&PyFrozenDict_Type)) { + copy = frozendict_new(cls_type, NULL, NULL); + } + else { + copy = dict_new(cls_type, NULL, NULL); + } if (copy == NULL) { Py_DECREF(d); return NULL; From 0bbdb4e897ae909af39cd93f7a25de89b724ab47 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 18 Feb 2026 21:23:49 +0100 Subject: [PATCH 060/110] gh-141510: Replace MappingProxyType with frozendict (#144904) --- Lib/dataclasses.py | 4 ++-- Lib/email/headerregistry.py | 4 +--- Lib/test/support/hashlib_helper.py | 5 ++--- Lib/test/test_dataclasses/__init__.py | 2 +- Lib/test/test_hmac.py | 5 ++--- 5 files changed, 8 insertions(+), 12 deletions(-) diff --git a/Lib/dataclasses.py b/Lib/dataclasses.py index 730ced7299865e..482a4c61039184 100644 --- a/Lib/dataclasses.py +++ b/Lib/dataclasses.py @@ -191,8 +191,8 @@ class _KW_ONLY_TYPE: KW_ONLY = _KW_ONLY_TYPE() # Since most per-field metadata will be unused, create an empty -# read-only proxy that can be shared among all fields. -_EMPTY_METADATA = types.MappingProxyType({}) +# read-only dictionary that can be shared among all fields. +_EMPTY_METADATA = frozendict() # Markers for the various kinds of fields and pseudo-fields. class _FIELD_BASE: diff --git a/Lib/email/headerregistry.py b/Lib/email/headerregistry.py index 0e8698efc0b966..48cd85a65ba9f6 100644 --- a/Lib/email/headerregistry.py +++ b/Lib/email/headerregistry.py @@ -3,8 +3,6 @@ This module provides an implementation of the HeaderRegistry API. The implementation is designed to flexibly follow RFC5322 rules. """ -from types import MappingProxyType - from email import utils from email import errors from email import _header_value_parser as parser @@ -462,7 +460,7 @@ def init(self, *args, **kw): @property def params(self): - return MappingProxyType(self._params) + return frozendict(self._params) class ContentTypeHeader(ParameterizedMIMEHeader): diff --git a/Lib/test/support/hashlib_helper.py b/Lib/test/support/hashlib_helper.py index 49077d7cb4d757..818f99d0023dae 100644 --- a/Lib/test/support/hashlib_helper.py +++ b/Lib/test/support/hashlib_helper.py @@ -6,7 +6,6 @@ import unittest import unittest.mock from test.support import import_helper -from types import MappingProxyType def _parse_fullname(fullname, *, strict=False): @@ -351,7 +350,7 @@ def __init__( ) -_HASHINFO_DATABASE = MappingProxyType({ +_HASHINFO_DATABASE = frozendict({ _HashId.md5: _HashInfo( _HashId.md5, "_md5.MD5Type", @@ -500,7 +499,7 @@ def _iter_hash_func_info(excluded): # keyed hash function. However, as it's exposed by HACL*, we test it. _HMACINFO_DATABASE[_HashId.blake2s] = _HashInfoItem('_hmac.compute_blake2s_32') _HMACINFO_DATABASE[_HashId.blake2b] = _HashInfoItem('_hmac.compute_blake2b_32') -_HMACINFO_DATABASE = MappingProxyType(_HMACINFO_DATABASE) +_HMACINFO_DATABASE = frozendict(_HMACINFO_DATABASE) assert _HMACINFO_DATABASE.keys() == CANONICAL_DIGEST_NAMES diff --git a/Lib/test/test_dataclasses/__init__.py b/Lib/test/test_dataclasses/__init__.py index 3b335429b98500..8b5e0cf7806ba9 100644 --- a/Lib/test/test_dataclasses/__init__.py +++ b/Lib/test/test_dataclasses/__init__.py @@ -71,7 +71,7 @@ def test_field_repr(self): expected_output = "Field(name='id',type=None," \ f"default=1,default_factory={MISSING!r}," \ "init=True,repr=False,hash=None," \ - "compare=True,metadata=mappingproxy({})," \ + "compare=True,metadata=frozendict()," \ f"kw_only={MISSING!r}," \ "doc='Docstring'," \ "_field_type=None)" diff --git a/Lib/test/test_hmac.py b/Lib/test/test_hmac.py index 17888a9f286c8f..de4d200374bcea 100644 --- a/Lib/test/test_hmac.py +++ b/Lib/test/test_hmac.py @@ -21,7 +21,6 @@ import hmac import hashlib import random -import types import unittest import warnings from _operator import _compare_digest as operator_compare_digest @@ -303,7 +302,7 @@ def assert_hmac_new_by_name( def check_hmac_new( self, key, msg, hexdigest, hashname, digest_size, block_size, - hmac_new_func, hmac_new_kwds=types.MappingProxyType({}), + hmac_new_func, hmac_new_kwds=frozendict(), ): """Check that HMAC(key, msg) == digest. @@ -349,7 +348,7 @@ def assert_hmac_hexdigest_by_name( def check_hmac_hexdigest( self, key, msg, hexdigest, digest_size, - hmac_digest_func, hmac_digest_kwds=types.MappingProxyType({}), + hmac_digest_func, hmac_digest_kwds=frozendict(), ): """Check and return a HMAC digest computed by hmac_digest_func(). From 7ebe9243950e9038dbbd9ddf46d4601ad6212260 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Wed, 18 Feb 2026 19:49:09 -0500 Subject: [PATCH 061/110] gh-144969: Document that the free threading GC can change ob_tid (#144972) --- Include/internal/pycore_critical_section.h | 9 +++++++++ InternalDocs/garbage_collector.md | 6 +++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Include/internal/pycore_critical_section.h b/Include/internal/pycore_critical_section.h index 60b6fc4a72e88f..2a2846b1296b90 100644 --- a/Include/internal/pycore_critical_section.h +++ b/Include/internal/pycore_critical_section.h @@ -50,6 +50,15 @@ extern "C" { // Asserts that the mutex for the given object is locked. The mutex must // be held by the top-most critical section otherwise there's the // possibility that the mutex would be swalled out in some code paths. +// +// NOTE: We use Py_REFCNT(op) != 1 instead of +// !PyUnstable_Object_IsUniquelyReferenced(op) because the free threading +// GC can change an object's ob_tid (it overwrites ob_tid and later +// restores it from the mimalloc segment). This means +// PyUnstable_Object_IsUniquelyReferenced() may spuriously return false +// after a GC collection, even though the thread may still have exclusive +// access to the object. The refcount check is a looser but still catches +// most misuses. #ifdef Py_DEBUG # define _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(op) \ diff --git a/InternalDocs/garbage_collector.md b/InternalDocs/garbage_collector.md index a7d872f3ec4392..94e6fb05b68d6f 100644 --- a/InternalDocs/garbage_collector.md +++ b/InternalDocs/garbage_collector.md @@ -153,7 +153,11 @@ pointer-sized (that is, eight bytes on a 64-bit platform). The garbage collector also temporarily repurposes the `ob_tid` (thread ID) and `ob_ref_local` (local reference count) fields for other purposes during -collections. +collections. The `ob_tid` field is later restored from the containing +mimalloc segment data structure. In some cases, such as when the original +allocating thread exits, this can result in a different `ob_tid` value. +Code should not rely on `ob_tid` being stable across operations that may +trigger garbage collection. C APIs From e84a2cc83c273329553377e99c9520d3f1225eda Mon Sep 17 00:00:00 2001 From: Ken Jin Date: Thu, 19 Feb 2026 11:44:50 +0800 Subject: [PATCH 062/110] gh-144888: Don't invalidate executors during function deallocation (#144974) --- Objects/funcobject.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Objects/funcobject.c b/Objects/funcobject.c index ee0c46a95b9708..8099b82f4835fb 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -1126,10 +1126,6 @@ func_dealloc(PyObject *self) if (_PyObject_ResurrectEnd(self)) { return; } -#if _Py_TIER2 - _Py_Executors_InvalidateDependency(_PyInterpreterState_GET(), self, 1); - _PyJit_Tracer_InvalidateDependency(_PyThreadState_GET(), self); -#endif _PyObject_GC_UNTRACK(op); FT_CLEAR_WEAKREFS(self, op->func_weakreflist); (void)func_clear((PyObject*)op); From 20caf1c08440684b618d2166022ae82b2db3b696 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Thu, 19 Feb 2026 11:45:30 +0000 Subject: [PATCH 063/110] Remove unused :platform: in module's docs (GH-144988) It has not been outputted since Sphinx 1.1. --- Doc/library/curses.rst | 3 ++- Doc/library/dbm.rst | 7 ++++--- Doc/library/dialog.rst | 3 --- Doc/library/fcntl.rst | 1 - Doc/library/grp.rst | 1 - Doc/library/msvcrt.rst | 1 - Doc/library/posix.rst | 1 - Doc/library/pty.rst | 1 - Doc/library/pwd.rst | 1 - Doc/library/readline.rst | 3 ++- Doc/library/resource.rst | 1 - Doc/library/syslog.rst | 1 - Doc/library/termios.rst | 1 - Doc/library/tkinter.colorchooser.rst | 1 - Doc/library/tkinter.dnd.rst | 1 - Doc/library/tkinter.font.rst | 1 - Doc/library/tkinter.messagebox.rst | 1 - Doc/library/tkinter.scrolledtext.rst | 1 - Doc/library/tty.rst | 1 - Doc/library/winreg.rst | 1 - Doc/library/winsound.rst | 1 - 21 files changed, 8 insertions(+), 25 deletions(-) diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index 84efc6654e87c6..2dc638b3d4014b 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -4,7 +4,6 @@ .. module:: curses :synopsis: An interface to the curses library, providing portable terminal handling. - :platform: Unix .. sectionauthor:: Moshe Zadka .. sectionauthor:: Eric Raymond @@ -25,6 +24,8 @@ Linux and the BSD variants of Unix. .. include:: ../includes/optional-module.rst +.. availability:: Unix. + .. note:: Whenever the documentation mentions a *character* it can be specified diff --git a/Doc/library/dbm.rst b/Doc/library/dbm.rst index 2481d77f5fbfba..646981e8692cc5 100644 --- a/Doc/library/dbm.rst +++ b/Doc/library/dbm.rst @@ -161,7 +161,6 @@ The individual submodules are described in the following sections. ---------------------------------------------- .. module:: dbm.sqlite3 - :platform: All :synopsis: SQLite backend for dbm .. versionadded:: 3.13 @@ -224,7 +223,6 @@ or any other SQLite browser, including the SQLite CLI. ---------------------------------------- .. module:: dbm.gnu - :platform: Unix :synopsis: GNU database manager **Source code:** :source:`Lib/dbm/gnu.py` @@ -242,6 +240,8 @@ functionality like crash tolerance. .. include:: ../includes/wasm-mobile-notavail.rst +.. availability:: Unix. + .. exception:: error Raised on :mod:`!dbm.gnu`-specific errors, such as I/O errors. :exc:`KeyError` is @@ -347,7 +347,6 @@ functionality like crash tolerance. ----------------------------------------- .. module:: dbm.ndbm - :platform: Unix :synopsis: The New Database Manager **Source code:** :source:`Lib/dbm/ndbm.py` @@ -373,6 +372,8 @@ This module can be used with the "classic" NDBM interface or the .. include:: ../includes/wasm-mobile-notavail.rst +.. availability:: Unix. + .. exception:: error Raised on :mod:`!dbm.ndbm`-specific errors, such as I/O errors. :exc:`KeyError` is raised diff --git a/Doc/library/dialog.rst b/Doc/library/dialog.rst index 6fee23e942183d..5d522556235a02 100644 --- a/Doc/library/dialog.rst +++ b/Doc/library/dialog.rst @@ -5,7 +5,6 @@ Tkinter Dialogs ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. module:: tkinter.simpledialog - :platform: Tk :synopsis: Simple dialog windows **Source code:** :source:`Lib/tkinter/simpledialog.py` @@ -43,7 +42,6 @@ functions for creating simple modal dialogs to get a value from the user. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. module:: tkinter.filedialog - :platform: Tk :synopsis: Dialog classes for file selection **Source code:** :source:`Lib/tkinter/filedialog.py` @@ -208,7 +206,6 @@ These do not emulate the native look-and-feel of the platform. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. module:: tkinter.commondialog - :platform: Tk :synopsis: Tkinter base class for dialogs **Source code:** :source:`Lib/tkinter/commondialog.py` diff --git a/Doc/library/fcntl.rst b/Doc/library/fcntl.rst index 2c9e883f56904f..6e69d24a0e4586 100644 --- a/Doc/library/fcntl.rst +++ b/Doc/library/fcntl.rst @@ -2,7 +2,6 @@ ========================================================== .. module:: fcntl - :platform: Unix :synopsis: The fcntl() and ioctl() system calls. .. sectionauthor:: Jaap Vermeulen diff --git a/Doc/library/grp.rst b/Doc/library/grp.rst index d1c7f22a209780..f436970e791ace 100644 --- a/Doc/library/grp.rst +++ b/Doc/library/grp.rst @@ -2,7 +2,6 @@ ================================== .. module:: grp - :platform: Unix :synopsis: The group database (getgrnam() and friends). -------------- diff --git a/Doc/library/msvcrt.rst b/Doc/library/msvcrt.rst index 80f3ae4ee3f5c1..ee6798f969a1b6 100644 --- a/Doc/library/msvcrt.rst +++ b/Doc/library/msvcrt.rst @@ -2,7 +2,6 @@ =========================================================== .. module:: msvcrt - :platform: Windows :synopsis: Miscellaneous useful routines from the MS VC++ runtime. .. sectionauthor:: Fred L. Drake, Jr. diff --git a/Doc/library/posix.rst b/Doc/library/posix.rst index c52661ae112541..1f1ca03dfd6222 100644 --- a/Doc/library/posix.rst +++ b/Doc/library/posix.rst @@ -2,7 +2,6 @@ ==================================================== .. module:: posix - :platform: Unix :synopsis: The most common POSIX system calls (normally used via module os). -------------- diff --git a/Doc/library/pty.rst b/Doc/library/pty.rst index 397cf0ea7cece4..f0314ea5af8118 100644 --- a/Doc/library/pty.rst +++ b/Doc/library/pty.rst @@ -2,7 +2,6 @@ ========================================= .. module:: pty - :platform: Unix :synopsis: Pseudo-Terminal Handling for Unix. .. moduleauthor:: Steen Lumholt diff --git a/Doc/library/pwd.rst b/Doc/library/pwd.rst index e1ff32912132f7..7691fed2c7cb83 100644 --- a/Doc/library/pwd.rst +++ b/Doc/library/pwd.rst @@ -2,7 +2,6 @@ ===================================== .. module:: pwd - :platform: Unix :synopsis: The password database (getpwnam() and friends). -------------- diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst index 1bdfb6ce0ed426..59f5b54a042ea3 100644 --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -2,7 +2,6 @@ =========================================== .. module:: readline - :platform: Unix :synopsis: GNU readline support for Python. .. sectionauthor:: Skip Montanaro @@ -28,6 +27,8 @@ Readline library in general. .. include:: ../includes/optional-module.rst +.. availability:: Unix. + .. note:: The underlying Readline library API may be implemented by diff --git a/Doc/library/resource.rst b/Doc/library/resource.rst index b176a28fdfe35b..94bfbeab967693 100644 --- a/Doc/library/resource.rst +++ b/Doc/library/resource.rst @@ -2,7 +2,6 @@ =============================================== .. module:: resource - :platform: Unix :synopsis: An interface to provide resource usage information on the current process. .. moduleauthor:: Jeremy Hylton diff --git a/Doc/library/syslog.rst b/Doc/library/syslog.rst index 548898a37bc6ea..b6bf01240951eb 100644 --- a/Doc/library/syslog.rst +++ b/Doc/library/syslog.rst @@ -2,7 +2,6 @@ =============================================== .. module:: syslog - :platform: Unix :synopsis: An interface to the Unix syslog library routines. -------------- diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst index e3ce596d18486f..537dfcedd8cf5a 100644 --- a/Doc/library/termios.rst +++ b/Doc/library/termios.rst @@ -2,7 +2,6 @@ =========================================== .. module:: termios - :platform: Unix :synopsis: POSIX style tty control. .. index:: diff --git a/Doc/library/tkinter.colorchooser.rst b/Doc/library/tkinter.colorchooser.rst index a8468a4807357f..73f8f76a21044b 100644 --- a/Doc/library/tkinter.colorchooser.rst +++ b/Doc/library/tkinter.colorchooser.rst @@ -2,7 +2,6 @@ ====================================================== .. module:: tkinter.colorchooser - :platform: Tk :synopsis: Color choosing dialog **Source code:** :source:`Lib/tkinter/colorchooser.py` diff --git a/Doc/library/tkinter.dnd.rst b/Doc/library/tkinter.dnd.rst index 8c179d9793a855..48d16ccb204b9d 100644 --- a/Doc/library/tkinter.dnd.rst +++ b/Doc/library/tkinter.dnd.rst @@ -2,7 +2,6 @@ ============================================= .. module:: tkinter.dnd - :platform: Tk :synopsis: Tkinter drag-and-drop interface **Source code:** :source:`Lib/tkinter/dnd.py` diff --git a/Doc/library/tkinter.font.rst b/Doc/library/tkinter.font.rst index 9d7b3e0fc227c1..9eecb803c3aedc 100644 --- a/Doc/library/tkinter.font.rst +++ b/Doc/library/tkinter.font.rst @@ -2,7 +2,6 @@ ============================================= .. module:: tkinter.font - :platform: Tk :synopsis: Tkinter font-wrapping class **Source code:** :source:`Lib/tkinter/font.py` diff --git a/Doc/library/tkinter.messagebox.rst b/Doc/library/tkinter.messagebox.rst index 4503913d6889b8..2a69d282638529 100644 --- a/Doc/library/tkinter.messagebox.rst +++ b/Doc/library/tkinter.messagebox.rst @@ -2,7 +2,6 @@ ====================================================== .. module:: tkinter.messagebox - :platform: Tk :synopsis: Various types of alert dialogs **Source code:** :source:`Lib/tkinter/messagebox.py` diff --git a/Doc/library/tkinter.scrolledtext.rst b/Doc/library/tkinter.scrolledtext.rst index d2543c524b2532..6c3c74afd47d82 100644 --- a/Doc/library/tkinter.scrolledtext.rst +++ b/Doc/library/tkinter.scrolledtext.rst @@ -2,7 +2,6 @@ ===================================================== .. module:: tkinter.scrolledtext - :platform: Tk :synopsis: Text widget with a vertical scroll bar. .. sectionauthor:: Fred L. Drake, Jr. diff --git a/Doc/library/tty.rst b/Doc/library/tty.rst index b2fe1bac9b0b2f..fe46be8b3211a2 100644 --- a/Doc/library/tty.rst +++ b/Doc/library/tty.rst @@ -2,7 +2,6 @@ ========================================== .. module:: tty - :platform: Unix :synopsis: Utility functions that perform common terminal control operations. .. moduleauthor:: Steen Lumholt diff --git a/Doc/library/winreg.rst b/Doc/library/winreg.rst index 99137db4496c55..12f9252af9356e 100644 --- a/Doc/library/winreg.rst +++ b/Doc/library/winreg.rst @@ -2,7 +2,6 @@ ========================================== .. module:: winreg - :platform: Windows :synopsis: Routines and objects for manipulating the Windows registry. .. sectionauthor:: Mark Hammond diff --git a/Doc/library/winsound.rst b/Doc/library/winsound.rst index 8efe4b1ee643e7..730b1bac658002 100644 --- a/Doc/library/winsound.rst +++ b/Doc/library/winsound.rst @@ -2,7 +2,6 @@ ======================================================== .. module:: winsound - :platform: Windows :synopsis: Access to the sound-playing machinery for Windows. .. moduleauthor:: Toby Dickenson From 3f37b94c7377a971a063aaf13387b940cb4cac01 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Thu, 19 Feb 2026 11:52:57 +0000 Subject: [PATCH 064/110] GH-144651: Optimize the new uops added when recording values during tracing. (GH-144948) * Handle dependencies in the optimizer, not the tracer * Strengthen some checks to avoid relying on optimizer for correctness --- Include/internal/pycore_optimizer.h | 26 +++--- Include/internal/pycore_optimizer_types.h | 6 +- Include/internal/pycore_uop_ids.h | 10 +-- Include/internal/pycore_uop_metadata.h | 32 +++---- Lib/test/test_capi/test_opt.py | 1 + Modules/_testinternalcapi/test_cases.c.h | 3 +- Objects/codeobject.c | 1 - Objects/frameobject.c | 1 - Objects/funcobject.c | 2 +- Python/bytecodes.c | 16 ++-- Python/executor_cases.c.h | 54 ++++-------- Python/generated_cases.c.h | 3 +- Python/instrumentation.c | 7 +- Python/optimizer.c | 57 +++--------- Python/optimizer_analysis.c | 25 +++--- Python/optimizer_bytecodes.c | 100 ++++++++++++++-------- Python/optimizer_cases.c.h | 85 ++++++++++-------- Python/optimizer_symbols.c | 90 +++++++++++++------ 18 files changed, 277 insertions(+), 242 deletions(-) diff --git a/Include/internal/pycore_optimizer.h b/Include/internal/pycore_optimizer.h index 79a2d60eb788ea..d9f7f59de1798e 100644 --- a/Include/internal/pycore_optimizer.h +++ b/Include/internal/pycore_optimizer.h @@ -22,6 +22,10 @@ typedef struct _PyJitUopBuffer { _PyUOpInstruction *end; } _PyJitUopBuffer; +typedef struct _JitOptRefBuffer { + JitOptRef *used; + JitOptRef *end; +} _JitOptRefBuffer; typedef struct _JitOptContext { char done; @@ -37,10 +41,15 @@ typedef struct _JitOptContext { // Arena for the symbolic types. ty_arena t_arena; - JitOptRef *n_consumed; - JitOptRef *limit; - JitOptRef locals_and_stack[MAX_ABSTRACT_INTERP_SIZE]; + /* To do -- We could make this more space efficient + * by using a single array and growing the stack and + * locals toward each other. */ + _JitOptRefBuffer locals; + _JitOptRefBuffer stack; + JitOptRef locals_array[ABSTRACT_INTERP_LOCALS_SIZE]; + JitOptRef stack_array[ABSTRACT_INTERP_STACK_SIZE]; _PyJitUopBuffer out_buffer; + _PyBloomFilter *dependencies; } JitOptContext; @@ -83,13 +92,11 @@ typedef struct _PyJitTracerInitialState { } _PyJitTracerInitialState; typedef struct _PyJitTracerPreviousState { - bool dependencies_still_valid; int instr_oparg; int instr_stacklevel; _Py_CODEUNIT *instr; PyCodeObject *instr_code; // Strong struct _PyInterpreterFrame *instr_frame; - _PyBloomFilter dependencies; PyObject *recorded_value; // Strong, may be NULL } _PyJitTracerPreviousState; @@ -303,25 +310,24 @@ extern void _Py_uop_sym_set_recorded_type(JitOptContext *ctx, JitOptRef sym, PyT extern void _Py_uop_sym_set_recorded_gen_func(JitOptContext *ctx, JitOptRef ref, PyFunctionObject *value); extern PyCodeObject *_Py_uop_sym_get_probable_func_code(JitOptRef sym); extern PyObject *_Py_uop_sym_get_probable_value(JitOptRef sym); +extern JitOptRef *_Py_uop_sym_set_stack_depth(JitOptContext *ctx, int stack_depth, JitOptRef *current_sp); -extern void _Py_uop_abstractcontext_init(JitOptContext *ctx); +extern void _Py_uop_abstractcontext_init(JitOptContext *ctx, _PyBloomFilter *dependencies); extern void _Py_uop_abstractcontext_fini(JitOptContext *ctx); extern _Py_UOpsAbstractFrame *_Py_uop_frame_new( JitOptContext *ctx, PyCodeObject *co, - int curr_stackentries, JitOptRef *args, int arg_len); extern _Py_UOpsAbstractFrame *_Py_uop_frame_new_from_symbol( JitOptContext *ctx, JitOptRef callable, - int curr_stackentries, JitOptRef *args, int arg_len); -extern int _Py_uop_frame_pop(JitOptContext *ctx, PyCodeObject *co, int curr_stackentries); +extern int _Py_uop_frame_pop(JitOptContext *ctx, PyCodeObject *co); PyAPI_FUNC(PyObject *) _Py_uop_symbols_test(PyObject *self, PyObject *ignored); @@ -357,8 +363,6 @@ PyAPI_FUNC(void) _PyJit_FinalizeTracing(PyThreadState *tstate, int err); void _PyPrintExecutor(_PyExecutorObject *executor, const _PyUOpInstruction *marker); void _PyJit_TracerFree(_PyThreadStateImpl *_tstate); -void _PyJit_Tracer_InvalidateDependency(PyThreadState *old_tstate, void *obj); - #ifdef _Py_TIER2 typedef void (*_Py_RecordFuncPtr)(_PyInterpreterFrame *frame, _PyStackRef *stackpointer, int oparg, PyObject **recorded_value); PyAPI_DATA(const _Py_RecordFuncPtr) _PyOpcode_RecordFunctions[]; diff --git a/Include/internal/pycore_optimizer_types.h b/Include/internal/pycore_optimizer_types.h index 57c0c828c2aabd..2958db5b787975 100644 --- a/Include/internal/pycore_optimizer_types.h +++ b/Include/internal/pycore_optimizer_types.h @@ -11,8 +11,9 @@ extern "C" { #include #include "pycore_uop.h" // UOP_MAX_TRACE_LENGTH -// Holds locals, stack, locals, stack ... (in that order) -#define MAX_ABSTRACT_INTERP_SIZE 512 +#define ABSTRACT_INTERP_STACK_SIZE 256 +#define ABSTRACT_INTERP_LOCALS_SIZE 512 + #define TY_ARENA_SIZE (UOP_MAX_TRACE_LENGTH * 5) @@ -138,6 +139,7 @@ typedef struct _Py_UOpsAbstractFrame { // Max stacklen int stack_len; int locals_len; + bool caller; // We have made a call from this frame during the trace PyFunctionObject *func; PyCodeObject *code; diff --git a/Include/internal/pycore_uop_ids.h b/Include/internal/pycore_uop_ids.h index 94b05b736ed277..ebf21b12633c78 100644 --- a/Include/internal/pycore_uop_ids.h +++ b/Include/internal/pycore_uop_ids.h @@ -147,7 +147,7 @@ extern "C" { #define _GUARD_CALLABLE_STR_1 402 #define _GUARD_CALLABLE_TUPLE_1 403 #define _GUARD_CALLABLE_TYPE_1 404 -#define _GUARD_CODE 405 +#define _GUARD_CODE_VERSION 405 #define _GUARD_DORV_NO_DICT 406 #define _GUARD_DORV_VALUES_INST_ATTR_FROM_DICT 407 #define _GUARD_GLOBALS_VERSION 408 @@ -658,10 +658,10 @@ extern "C" { #define _GUARD_CALLABLE_TYPE_1_r13 855 #define _GUARD_CALLABLE_TYPE_1_r23 856 #define _GUARD_CALLABLE_TYPE_1_r33 857 -#define _GUARD_CODE_r00 858 -#define _GUARD_CODE_r11 859 -#define _GUARD_CODE_r22 860 -#define _GUARD_CODE_r33 861 +#define _GUARD_CODE_VERSION_r00 858 +#define _GUARD_CODE_VERSION_r11 859 +#define _GUARD_CODE_VERSION_r22 860 +#define _GUARD_CODE_VERSION_r33 861 #define _GUARD_DORV_NO_DICT_r01 862 #define _GUARD_DORV_NO_DICT_r11 863 #define _GUARD_DORV_NO_DICT_r22 864 diff --git a/Include/internal/pycore_uop_metadata.h b/Include/internal/pycore_uop_metadata.h index 5a47eae7a9abb1..7921d229f11db3 100644 --- a/Include/internal/pycore_uop_metadata.h +++ b/Include/internal/pycore_uop_metadata.h @@ -370,7 +370,7 @@ const uint32_t _PyUop_Flags[MAX_UOP_ID+1] = { [_TIER2_RESUME_CHECK] = HAS_PERIODIC_FLAG, [_COLD_EXIT] = HAS_SYNC_SP_FLAG, [_COLD_DYNAMIC_EXIT] = HAS_SYNC_SP_FLAG, - [_GUARD_CODE] = HAS_EXIT_FLAG, + [_GUARD_CODE_VERSION] = HAS_EXIT_FLAG, [_GUARD_IP__PUSH_FRAME] = HAS_EXIT_FLAG, [_GUARD_IP_YIELD_VALUE] = HAS_EXIT_FLAG, [_GUARD_IP_RETURN_VALUE] = HAS_EXIT_FLAG, @@ -3404,13 +3404,13 @@ const _PyUopCachingInfo _PyUop_Caching[MAX_UOP_ID+1] = { { -1, -1, -1 }, }, }, - [_GUARD_CODE] = { + [_GUARD_CODE_VERSION] = { .best = { 0, 1, 2, 3 }, .entries = { - { 0, 0, _GUARD_CODE_r00 }, - { 1, 1, _GUARD_CODE_r11 }, - { 2, 2, _GUARD_CODE_r22 }, - { 3, 3, _GUARD_CODE_r33 }, + { 0, 0, _GUARD_CODE_VERSION_r00 }, + { 1, 1, _GUARD_CODE_VERSION_r11 }, + { 2, 2, _GUARD_CODE_VERSION_r22 }, + { 3, 3, _GUARD_CODE_VERSION_r33 }, }, }, [_GUARD_IP__PUSH_FRAME] = { @@ -4221,10 +4221,10 @@ const uint16_t _PyUop_Uncached[MAX_UOP_REGS_ID+1] = { [_TIER2_RESUME_CHECK_r33] = _TIER2_RESUME_CHECK, [_COLD_EXIT_r00] = _COLD_EXIT, [_COLD_DYNAMIC_EXIT_r00] = _COLD_DYNAMIC_EXIT, - [_GUARD_CODE_r00] = _GUARD_CODE, - [_GUARD_CODE_r11] = _GUARD_CODE, - [_GUARD_CODE_r22] = _GUARD_CODE, - [_GUARD_CODE_r33] = _GUARD_CODE, + [_GUARD_CODE_VERSION_r00] = _GUARD_CODE_VERSION, + [_GUARD_CODE_VERSION_r11] = _GUARD_CODE_VERSION, + [_GUARD_CODE_VERSION_r22] = _GUARD_CODE_VERSION, + [_GUARD_CODE_VERSION_r33] = _GUARD_CODE_VERSION, [_GUARD_IP__PUSH_FRAME_r00] = _GUARD_IP__PUSH_FRAME, [_GUARD_IP__PUSH_FRAME_r11] = _GUARD_IP__PUSH_FRAME, [_GUARD_IP__PUSH_FRAME_r22] = _GUARD_IP__PUSH_FRAME, @@ -4655,11 +4655,11 @@ const char *const _PyOpcode_uop_name[MAX_UOP_REGS_ID+1] = { [_GUARD_CALLABLE_TYPE_1_r13] = "_GUARD_CALLABLE_TYPE_1_r13", [_GUARD_CALLABLE_TYPE_1_r23] = "_GUARD_CALLABLE_TYPE_1_r23", [_GUARD_CALLABLE_TYPE_1_r33] = "_GUARD_CALLABLE_TYPE_1_r33", - [_GUARD_CODE] = "_GUARD_CODE", - [_GUARD_CODE_r00] = "_GUARD_CODE_r00", - [_GUARD_CODE_r11] = "_GUARD_CODE_r11", - [_GUARD_CODE_r22] = "_GUARD_CODE_r22", - [_GUARD_CODE_r33] = "_GUARD_CODE_r33", + [_GUARD_CODE_VERSION] = "_GUARD_CODE_VERSION", + [_GUARD_CODE_VERSION_r00] = "_GUARD_CODE_VERSION_r00", + [_GUARD_CODE_VERSION_r11] = "_GUARD_CODE_VERSION_r11", + [_GUARD_CODE_VERSION_r22] = "_GUARD_CODE_VERSION_r22", + [_GUARD_CODE_VERSION_r33] = "_GUARD_CODE_VERSION_r33", [_GUARD_DORV_NO_DICT] = "_GUARD_DORV_NO_DICT", [_GUARD_DORV_NO_DICT_r01] = "_GUARD_DORV_NO_DICT_r01", [_GUARD_DORV_NO_DICT_r11] = "_GUARD_DORV_NO_DICT_r11", @@ -6070,7 +6070,7 @@ int _PyUop_num_popped(int opcode, int oparg) return 0; case _COLD_DYNAMIC_EXIT: return 0; - case _GUARD_CODE: + case _GUARD_CODE_VERSION: return 0; case _GUARD_IP__PUSH_FRAME: return 0; diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index 2cad53d9c0728b..7ac71fbfab1fe0 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -110,6 +110,7 @@ def f{n}(): for exe in executors[:i]: self.assertTrue(exe.is_valid()) + @unittest.skipIf(os.getenv("PYTHON_UOPS_OPTIMIZE") == "0", "Needs uop optimizer to run.") def test_uop_optimizer_invalidation(self): # Generate a new function at each call ns = {} diff --git a/Modules/_testinternalcapi/test_cases.c.h b/Modules/_testinternalcapi/test_cases.c.h index a9cd0574a596a1..fde6db4933f74a 100644 --- a/Modules/_testinternalcapi/test_cases.c.h +++ b/Modules/_testinternalcapi/test_cases.c.h @@ -5675,7 +5675,8 @@ assert(executor->vm_data.code == code); assert(executor->vm_data.valid); assert(tstate->current_executor == NULL); - if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) & _PY_EVAL_EVENTS_MASK) { + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(code->_co_instrumentation_version); + if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) != iversion) { opcode = executor->vm_data.opcode; oparg = (oparg & ~255) | executor->vm_data.oparg; next_instr = this_instr; diff --git a/Objects/codeobject.c b/Objects/codeobject.c index ed3cc41480ab5c..776444a0cc2086 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -2433,7 +2433,6 @@ code_dealloc(PyObject *self) PyMem_Free(co_extra); } #ifdef _Py_TIER2 - _PyJit_Tracer_InvalidateDependency(tstate, self); if (co->co_executors != NULL) { clear_executors(co); } diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 9d774a71edb797..9a7abfc0ec26ab 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.c @@ -262,7 +262,6 @@ framelocalsproxy_setitem(PyObject *self, PyObject *key, PyObject *value) #if _Py_TIER2 _Py_Executors_InvalidateDependency(_PyInterpreterState_GET(), co, 1); - _PyJit_Tracer_InvalidateDependency(_PyThreadState_GET(), co); #endif _PyLocals_Kind kind = _PyLocals_GetKind(co->co_localspluskinds, i); diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 8099b82f4835fb..efe27a2b70c4de 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -12,7 +12,7 @@ #include "pycore_setobject.h" // _PySet_NextEntry() #include "pycore_stats.h" #include "pycore_weakref.h" // FT_CLEAR_WEAKREFS() -#include "pycore_optimizer.h" // _PyJit_Tracer_InvalidateDependency +#include "pycore_optimizer.h" // _Py_Executors_InvalidateDependency static const char * func_event_name(PyFunction_WatchEvent event) { diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 63a4222264985a..01eaf4a59b645a 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -3125,10 +3125,10 @@ dummy_func( assert(executor->vm_data.code == code); assert(executor->vm_data.valid); assert(tstate->current_executor == NULL); - /* If the eval breaker is set then stay in tier 1. - * This avoids any potentially infinite loops - * involving _RESUME_CHECK */ - if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) & _PY_EVAL_EVENTS_MASK) { + /* If the eval breaker is set, or instrumentation is needed, then stay in tier 1. + * This avoids any potentially infinite loops involving _RESUME_CHECK */ + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(code->_co_instrumentation_version); + if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) != iversion) { opcode = executor->vm_data.opcode; oparg = (oparg & ~255) | executor->vm_data.oparg; next_instr = this_instr; @@ -5616,9 +5616,9 @@ dummy_func( HANDLE_PENDING_AND_DEOPT_IF(_Py_emscripten_signal_clock == 0); _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING; #endif + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version); uintptr_t eval_breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker); - HANDLE_PENDING_AND_DEOPT_IF(eval_breaker & _PY_EVAL_EVENTS_MASK); - assert(tstate->tracing || eval_breaker == FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version)); + HANDLE_PENDING_AND_DEOPT_IF(eval_breaker != iversion); } tier2 op(_COLD_EXIT, ( -- )) { @@ -5668,9 +5668,9 @@ dummy_func( Py_UNREACHABLE(); } - tier2 op(_GUARD_CODE, (version/2 -- )) { + tier2 op(_GUARD_CODE_VERSION, (version/2 -- )) { PyObject *code = PyStackRef_AsPyObjectBorrow(frame->f_executable); - EXIT_IF(code == Py_None); + assert(PyCode_Check(code)); EXIT_IF(((PyCodeObject *)code)->co_version != version); } diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h index 1b3de80e4443b1..8b36d1abf2e916 100644 --- a/Python/executor_cases.c.h +++ b/Python/executor_cases.c.h @@ -20034,13 +20034,13 @@ } _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING; #endif + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version); uintptr_t eval_breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker); - if (eval_breaker & _PY_EVAL_EVENTS_MASK) { + if (eval_breaker != iversion) { UOP_STAT_INC(uopcode, miss); SET_CURRENT_CACHED_VALUES(0); JUMP_TO_JUMP_TARGET(); } - assert(tstate->tracing || eval_breaker == FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version)); SET_CURRENT_CACHED_VALUES(0); assert(WITHIN_STACK_BOUNDS_IGNORING_CACHE()); break; @@ -20059,14 +20059,14 @@ } _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING; #endif + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version); uintptr_t eval_breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker); - if (eval_breaker & _PY_EVAL_EVENTS_MASK) { + if (eval_breaker != iversion) { UOP_STAT_INC(uopcode, miss); _tos_cache0 = _stack_item_0; SET_CURRENT_CACHED_VALUES(1); JUMP_TO_JUMP_TARGET(); } - assert(tstate->tracing || eval_breaker == FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version)); _tos_cache0 = _stack_item_0; SET_CURRENT_CACHED_VALUES(1); assert(WITHIN_STACK_BOUNDS_IGNORING_CACHE()); @@ -20088,15 +20088,15 @@ } _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING; #endif + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version); uintptr_t eval_breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker); - if (eval_breaker & _PY_EVAL_EVENTS_MASK) { + if (eval_breaker != iversion) { UOP_STAT_INC(uopcode, miss); _tos_cache1 = _stack_item_1; _tos_cache0 = _stack_item_0; SET_CURRENT_CACHED_VALUES(2); JUMP_TO_JUMP_TARGET(); } - assert(tstate->tracing || eval_breaker == FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version)); _tos_cache1 = _stack_item_1; _tos_cache0 = _stack_item_0; SET_CURRENT_CACHED_VALUES(2); @@ -20121,8 +20121,9 @@ } _Py_emscripten_signal_clock -= Py_EMSCRIPTEN_SIGNAL_HANDLING; #endif + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version); uintptr_t eval_breaker = _Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker); - if (eval_breaker & _PY_EVAL_EVENTS_MASK) { + if (eval_breaker != iversion) { UOP_STAT_INC(uopcode, miss); _tos_cache2 = _stack_item_2; _tos_cache1 = _stack_item_1; @@ -20130,7 +20131,6 @@ SET_CURRENT_CACHED_VALUES(3); JUMP_TO_JUMP_TARGET(); } - assert(tstate->tracing || eval_breaker == FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version)); _tos_cache2 = _stack_item_2; _tos_cache1 = _stack_item_1; _tos_cache0 = _stack_item_0; @@ -20184,16 +20184,12 @@ GOTO_TIER_ONE(target); } - case _GUARD_CODE_r00: { + case _GUARD_CODE_VERSION_r00: { CHECK_CURRENT_CACHED_VALUES(0); assert(WITHIN_STACK_BOUNDS_IGNORING_CACHE()); uint32_t version = (uint32_t)CURRENT_OPERAND0_32(); PyObject *code = PyStackRef_AsPyObjectBorrow(frame->f_executable); - if (code == Py_None) { - UOP_STAT_INC(uopcode, miss); - SET_CURRENT_CACHED_VALUES(0); - JUMP_TO_JUMP_TARGET(); - } + assert(PyCode_Check(code)); if (((PyCodeObject *)code)->co_version != version) { UOP_STAT_INC(uopcode, miss); SET_CURRENT_CACHED_VALUES(0); @@ -20204,18 +20200,13 @@ break; } - case _GUARD_CODE_r11: { + case _GUARD_CODE_VERSION_r11: { CHECK_CURRENT_CACHED_VALUES(1); assert(WITHIN_STACK_BOUNDS_IGNORING_CACHE()); _PyStackRef _stack_item_0 = _tos_cache0; uint32_t version = (uint32_t)CURRENT_OPERAND0_32(); PyObject *code = PyStackRef_AsPyObjectBorrow(frame->f_executable); - if (code == Py_None) { - UOP_STAT_INC(uopcode, miss); - _tos_cache0 = _stack_item_0; - SET_CURRENT_CACHED_VALUES(1); - JUMP_TO_JUMP_TARGET(); - } + assert(PyCode_Check(code)); if (((PyCodeObject *)code)->co_version != version) { UOP_STAT_INC(uopcode, miss); _tos_cache0 = _stack_item_0; @@ -20228,20 +20219,14 @@ break; } - case _GUARD_CODE_r22: { + case _GUARD_CODE_VERSION_r22: { CHECK_CURRENT_CACHED_VALUES(2); assert(WITHIN_STACK_BOUNDS_IGNORING_CACHE()); _PyStackRef _stack_item_0 = _tos_cache0; _PyStackRef _stack_item_1 = _tos_cache1; uint32_t version = (uint32_t)CURRENT_OPERAND0_32(); PyObject *code = PyStackRef_AsPyObjectBorrow(frame->f_executable); - if (code == Py_None) { - UOP_STAT_INC(uopcode, miss); - _tos_cache1 = _stack_item_1; - _tos_cache0 = _stack_item_0; - SET_CURRENT_CACHED_VALUES(2); - JUMP_TO_JUMP_TARGET(); - } + assert(PyCode_Check(code)); if (((PyCodeObject *)code)->co_version != version) { UOP_STAT_INC(uopcode, miss); _tos_cache1 = _stack_item_1; @@ -20256,7 +20241,7 @@ break; } - case _GUARD_CODE_r33: { + case _GUARD_CODE_VERSION_r33: { CHECK_CURRENT_CACHED_VALUES(3); assert(WITHIN_STACK_BOUNDS_IGNORING_CACHE()); _PyStackRef _stack_item_0 = _tos_cache0; @@ -20264,14 +20249,7 @@ _PyStackRef _stack_item_2 = _tos_cache2; uint32_t version = (uint32_t)CURRENT_OPERAND0_32(); PyObject *code = PyStackRef_AsPyObjectBorrow(frame->f_executable); - if (code == Py_None) { - UOP_STAT_INC(uopcode, miss); - _tos_cache2 = _stack_item_2; - _tos_cache1 = _stack_item_1; - _tos_cache0 = _stack_item_0; - SET_CURRENT_CACHED_VALUES(3); - JUMP_TO_JUMP_TARGET(); - } + assert(PyCode_Check(code)); if (((PyCodeObject *)code)->co_version != version) { UOP_STAT_INC(uopcode, miss); _tos_cache2 = _stack_item_2; diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 829a6988954e5f..bc9ae7e0ab3be3 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -5675,7 +5675,8 @@ assert(executor->vm_data.code == code); assert(executor->vm_data.valid); assert(tstate->current_executor == NULL); - if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) & _PY_EVAL_EVENTS_MASK) { + uintptr_t iversion = FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(code->_co_instrumentation_version); + if (_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) != iversion) { opcode = executor->vm_data.opcode; oparg = (oparg & ~255) | executor->vm_data.oparg; next_instr = this_instr; diff --git a/Python/instrumentation.c b/Python/instrumentation.c index 28bbe1d82a3b88..b074d23277878b 100644 --- a/Python/instrumentation.c +++ b/Python/instrumentation.c @@ -1785,7 +1785,6 @@ force_instrument_lock_held(PyCodeObject *code, PyInterpreterState *interp) _PyCode_Clear_Executors(code); } _Py_Executors_InvalidateDependency(interp, code, 1); - _PyJit_Tracer_InvalidateDependency(PyThreadState_GET(), code); #endif int code_len = (int)Py_SIZE(code); /* Exit early to avoid creating instrumentation @@ -2115,6 +2114,9 @@ int _PyMonitoring_ClearToolId(int tool_id) // Set the new global version so all the code objects can refresh the // instrumentation. set_global_version(_PyThreadState_GET(), version); +#ifdef _Py_TIER2 + _Py_Executors_InvalidateAll(interp, 1); +#endif int res = instrument_all_executing_code_objects(interp); _PyEval_StartTheWorld(interp); return res; @@ -2457,6 +2459,9 @@ monitoring_restart_events_impl(PyObject *module) } interp->last_restart_version = restart_version; set_global_version(tstate, new_version); +#ifdef _Py_TIER2 + _Py_Executors_InvalidateAll(interp, 1); +#endif int res = instrument_all_executing_code_objects(interp); _PyEval_StartTheWorld(interp); diff --git a/Python/optimizer.c b/Python/optimizer.c index 466729b158d345..f075e28d71e0f8 100644 --- a/Python/optimizer.c +++ b/Python/optimizer.c @@ -160,11 +160,6 @@ _PyOptimizer_Optimize( interp->compiling = false; return 0; } - // One of our dependencies while tracing was invalidated. Not worth compiling. - if (!_tstate->jit_tracer_state->prev_state.dependencies_still_valid) { - interp->compiling = false; - return 0; - } _PyExecutorObject *executor; int err = uop_optimize(frame, tstate, &executor, progress_needed); if (err <= 0) { @@ -615,7 +610,6 @@ _PyJit_translate_single_bytecode_to_trace( _PyJitTracerState *tracer = _tstate->jit_tracer_state; PyCodeObject *old_code = tracer->prev_state.instr_code; bool progress_needed = (tracer->initial_state.chain_depth % MAX_CHAIN_DEPTH) == 0; - _PyBloomFilter *dependencies = &tracer->prev_state.dependencies; _PyJitUopBuffer *trace = &tracer->code_buffer; _Py_CODEUNIT *this_instr = tracer->prev_state.instr; @@ -701,10 +695,6 @@ _PyJit_translate_single_bytecode_to_trace( } #endif - if (!tracer->prev_state.dependencies_still_valid) { - goto done; - } - // This happens when a recursive call happens that we can't trace. Such as Python -> C -> Python calls // If we haven't guarded the IP, then it's untraceable. if (frame != tracer->prev_state.instr_frame && !needs_guard_ip) { @@ -784,11 +774,6 @@ _PyJit_translate_single_bytecode_to_trace( ADD_TO_TRACE(_SET_IP, 0, (uintptr_t)target_instr, target); } - // Can be NULL for the entry frame. - if (old_code != NULL) { - _Py_BloomFilter_Add(dependencies, old_code); - } - switch (opcode) { case POP_JUMP_IF_NONE: case POP_JUMP_IF_NOT_NONE: @@ -925,15 +910,6 @@ _PyJit_translate_single_bytecode_to_trace( expansion->uops[i].offset); Py_FatalError("garbled expansion"); } - if (uop == _PUSH_FRAME || uop == _RETURN_VALUE || uop == _RETURN_GENERATOR || uop == _YIELD_VALUE) { - PyCodeObject *new_code = (PyCodeObject *)PyStackRef_AsPyObjectBorrow(frame->f_executable); - if (new_code != NULL && !Py_IsNone((PyObject*)new_code)) { - _Py_BloomFilter_Add(dependencies, new_code); - } - ADD_TO_TRACE(uop, oparg, operand, target); - uop_buffer_last(trace)->operand1 = PyStackRef_IsNone(frame->f_executable) ? 2 : ((int)(frame->stackpointer - _PyFrame_Stackbase(frame))); - break; - } if (uop == _BINARY_OP_INPLACE_ADD_UNICODE) { assert(i + 1 == nuops); _Py_CODEUNIT *next = target_instr + 1 + _PyOpcode_Caches[_PyOpcode_Deopt[opcode]]; @@ -964,7 +940,10 @@ _PyJit_translate_single_bytecode_to_trace( ADD_TO_TRACE(_RECORD_CODE, 0, (uintptr_t)code, 0); ADD_TO_TRACE(guard_ip, 0, (uintptr_t)next_instr, 0); if (PyCode_Check(code)) { - ADD_TO_TRACE(_GUARD_CODE, 0, ((PyCodeObject *)code)->co_version, 0); + /* Record stack depth, in operand1 */ + int stack_depth = (int)(frame->stackpointer - _PyFrame_Stackbase(frame)); + uop_buffer_last(trace)->operand1 = stack_depth; + ADD_TO_TRACE(_GUARD_CODE_VERSION, 0, ((PyCodeObject *)code)->co_version, 0); } } // Loop back to the start @@ -1046,7 +1025,6 @@ _PyJit_TryInitializeTracing( tracer->initial_state.exit = exit; tracer->initial_state.stack_depth = (int)(stack_pointer - _PyFrame_Stackbase(frame)); tracer->initial_state.chain_depth = chain_depth; - tracer->prev_state.dependencies_still_valid = true; tracer->prev_state.instr_code = (PyCodeObject *)Py_NewRef(_PyFrame_GetCode(frame)); tracer->prev_state.instr = curr_instr; tracer->prev_state.instr_frame = frame; @@ -1064,7 +1042,6 @@ _PyJit_TryInitializeTracing( if (_PyOpcode_Caches[_PyOpcode_Deopt[close_loop_instr->op.code]]) { close_loop_instr[1].counter = trigger_backoff_counter(); } - _Py_BloomFilter_Init(&tracer->prev_state.dependencies); tracer->is_tracing = true; return 1; } @@ -1216,7 +1193,7 @@ prepare_for_execution(_PyUOpInstruction *buffer, int length) base_opcode == _GUARD_IP_RETURN_VALUE || base_opcode == _GUARD_IP_YIELD_VALUE || base_opcode == _GUARD_IP_RETURN_GENERATOR || - base_opcode == _GUARD_CODE + base_opcode == _GUARD_CODE_VERSION ) { base_exit_op = _DYNAMIC_EXIT; } @@ -1498,7 +1475,6 @@ uop_optimize( { _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate; assert(_tstate->jit_tracer_state != NULL); - _PyBloomFilter *dependencies = &_tstate->jit_tracer_state->prev_state.dependencies; _PyUOpInstruction *buffer = _tstate->jit_tracer_state->code_buffer.start; OPT_STAT_INC(attempts); bool is_noopt = !tstate->interp->opt_config.uops_optimize_enabled; @@ -1510,11 +1486,15 @@ uop_optimize( assert(length > 0); assert(length < UOP_MAX_TRACE_LENGTH); OPT_STAT_INC(traces_created); + + _PyBloomFilter dependencies; + _Py_BloomFilter_Init(&dependencies); if (!is_noopt) { _PyUOpInstruction *output = &_tstate->jit_tracer_state->uop_array[UOP_MAX_TRACE_LENGTH]; length = _Py_uop_analyze_and_optimize( _tstate, buffer, length, curr_stackentries, - output, dependencies); + output, &dependencies); + if (length <= 0) { return length; } @@ -1546,7 +1526,7 @@ uop_optimize( length = prepare_for_execution(buffer, length); assert(length <= UOP_MAX_TRACE_LENGTH); _PyExecutorObject *executor = make_executor_from_uops( - _tstate, buffer, length, dependencies); + _tstate, buffer, length, &dependencies); if (executor == NULL) { return -1; } @@ -1861,21 +1841,6 @@ _Py_Executors_InvalidateDependency(PyInterpreterState *interp, void *obj, int is _Py_Executors_InvalidateAll(interp, is_invalidation); } -void -_PyJit_Tracer_InvalidateDependency(PyThreadState *tstate, void *obj) -{ - _PyBloomFilter obj_filter; - _Py_BloomFilter_Init(&obj_filter); - _Py_BloomFilter_Add(&obj_filter, obj); - _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate; - if (_tstate->jit_tracer_state == NULL) { - return; - } - if (bloom_filter_may_contain(&_tstate->jit_tracer_state->prev_state.dependencies, &obj_filter)) - { - _tstate->jit_tracer_state->prev_state.dependencies_still_valid = false; - } -} /* Invalidate all executors */ void _Py_Executors_InvalidateAll(PyInterpreterState *interp, int is_invalidation) diff --git a/Python/optimizer_analysis.c b/Python/optimizer_analysis.c index c6a513ad220b63..45dd42c96064bc 100644 --- a/Python/optimizer_analysis.c +++ b/Python/optimizer_analysis.c @@ -55,23 +55,21 @@ static void dump_abstract_stack(_Py_UOpsAbstractFrame *frame, JitOptRef *stack_pointer) { - JitOptRef *stack_base = frame->stack; - JitOptRef *locals_base = frame->locals; printf(" locals=["); - for (JitOptRef *ptr = locals_base; ptr < stack_base; ptr++) { - if (ptr != locals_base) { + for (int i = 0 ; i < frame->locals_len; i++) { + if (i > 0) { printf(", "); } - _PyUOpSymPrint(*ptr); + _PyUOpSymPrint(frame->locals[i]); } printf("]\n"); - if (stack_pointer < stack_base) { - printf(" stack=%d\n", (int)(stack_pointer - stack_base)); + if (stack_pointer < frame->stack) { + printf(" stack=%d\n", (int)(stack_pointer - frame->stack)); } else { printf(" stack=["); - for (JitOptRef *ptr = stack_base; ptr < stack_pointer; ptr++) { - if (ptr != stack_base) { + for (JitOptRef *ptr = frame->stack; ptr < stack_pointer; ptr++) { + if (ptr != frame->stack) { printf(", "); } _PyUOpSymPrint(*ptr); @@ -291,6 +289,7 @@ add_op(JitOptContext *ctx, _PyUOpInstruction *this_instr, #define sym_set_recorded_gen_func(SYM, VAL) _Py_uop_sym_set_recorded_gen_func(ctx, SYM, VAL) #define sym_get_probable_func_code _Py_uop_sym_get_probable_func_code #define sym_get_probable_value _Py_uop_sym_get_probable_value +#define sym_set_stack_depth(DEPTH, SP) _Py_uop_sym_set_stack_depth(ctx, DEPTH, SP) /* Comparison oparg masks */ #define COMPARE_LT_MASK 2 @@ -473,14 +472,15 @@ optimize_uops( interp->type_watchers[TYPE_WATCHER_ID] = type_watcher_callback; } - _Py_uop_abstractcontext_init(ctx); - _Py_UOpsAbstractFrame *frame = _Py_uop_frame_new(ctx, (PyCodeObject *)func->func_code, curr_stacklen, NULL, 0); + _Py_uop_abstractcontext_init(ctx, dependencies); + _Py_UOpsAbstractFrame *frame = _Py_uop_frame_new(ctx, (PyCodeObject *)func->func_code, NULL, 0); if (frame == NULL) { return 0; } frame->func = func; ctx->curr_frame_depth++; ctx->frame = frame; + _Py_uop_sym_set_stack_depth(ctx, curr_stacklen, frame->stack_pointer); _PyUOpInstruction *this_instr = NULL; JitOptRef *stack_pointer = ctx->frame->stack_pointer; @@ -718,8 +718,7 @@ _Py_uop_analyze_and_optimize( OPT_STAT_INC(optimizer_attempts); length = optimize_uops( - tstate, buffer, length, curr_stacklen, - output, dependencies); + tstate, buffer, length, curr_stacklen, output, dependencies); if (length == 0) { return length; diff --git a/Python/optimizer_bytecodes.c b/Python/optimizer_bytecodes.c index 2b35628ad99999..228bd51a28bb69 100644 --- a/Python/optimizer_bytecodes.c +++ b/Python/optimizer_bytecodes.c @@ -46,6 +46,7 @@ typedef struct _Py_UOpsAbstractFrame _Py_UOpsAbstractFrame; #define sym_set_recorded_gen_func(SYM, VAL) _Py_uop_sym_set_recorded_gen_func(ctx, SYM, VAL) #define sym_get_probable_func_code _Py_uop_sym_get_probable_func_code #define sym_get_probable_value _Py_uop_sym_get_probable_value +#define sym_set_stack_depth(DEPTH, SP) _Py_uop_sym_set_stack_depth(ctx, DEPTH, SP) extern int optimize_to_bool( @@ -362,7 +363,7 @@ dummy_func(void) { } op(_BINARY_OP_SUBSCR_INIT_CALL, (container, sub, getitem -- new_frame)) { - _Py_UOpsAbstractFrame *f = frame_new_from_symbol(ctx, getitem, 0, NULL, 0); + _Py_UOpsAbstractFrame *f = frame_new_from_symbol(ctx, getitem, NULL, 0); if (f == NULL) { break; } @@ -833,7 +834,7 @@ dummy_func(void) { // + 1 for _SAVE_RETURN_OFFSET // FIX ME -- This needs a version check and function watcher PyCodeObject *co = (PyCodeObject *)((PyFunctionObject *)fget)->func_code; - _Py_UOpsAbstractFrame *f = frame_new(ctx, co, 0, NULL, 0); + _Py_UOpsAbstractFrame *f = frame_new(ctx, co, NULL, 0); if (f == NULL) { break; } @@ -894,9 +895,9 @@ dummy_func(void) { } if (sym_is_null(self_or_null) || sym_is_not_null(self_or_null)) { - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, args, argcount)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, args, argcount)); } else { - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, NULL, 0)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, NULL, 0)); } } @@ -907,15 +908,15 @@ dummy_func(void) { } op(_PY_FRAME_GENERAL, (callable, self_or_null, args[oparg] -- new_frame)) { - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, NULL, 0)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, NULL, 0)); } op(_PY_FRAME_KW, (callable, self_or_null, args[oparg], kwnames -- new_frame)) { - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, NULL, 0)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, NULL, 0)); } op(_PY_FRAME_EX, (func_st, null, callargs_st, kwargs_st -- ex_frame)) { - ex_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, func_st, 0, NULL, 0)); + ex_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, func_st, NULL, 0)); } op(_CHECK_AND_ALLOCATE_OBJECT, (type_version/2, callable, self_or_null, args[oparg] -- callable, self_or_null, args[oparg])) { @@ -927,18 +928,18 @@ dummy_func(void) { op(_CREATE_INIT_FRAME, (init, self, args[oparg] -- init_frame)) { ctx->frame->stack_pointer = stack_pointer - oparg - 2; - _Py_UOpsAbstractFrame *shim = frame_new(ctx, (PyCodeObject *)&_Py_InitCleanup, 0, NULL, 0); + _Py_UOpsAbstractFrame *shim = frame_new(ctx, (PyCodeObject *)&_Py_InitCleanup, NULL, 0); if (shim == NULL) { break; } /* Push self onto stack of shim */ - shim->stack[0] = self; + shim->stack_pointer[0] = self; shim->stack_pointer++; assert((int)(shim->stack_pointer - shim->stack) == 1); ctx->frame = shim; ctx->curr_frame_depth++; assert((this_instr + 1)->opcode == _PUSH_FRAME); - init_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, init, 0, args-1, oparg+1)); + init_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, init, args-1, oparg+1)); } op(_RETURN_VALUE, (retval -- res)) { @@ -954,15 +955,7 @@ dummy_func(void) { ctx->done = true; break; } - int returning_stacklevel = (int)this_instr->operand1; - if (ctx->curr_frame_depth >= 2) { - PyCodeObject *expected_code = ctx->frames[ctx->curr_frame_depth - 2].code; - if (expected_code == returning_code) { - assert(this_instr[2].opcode == _GUARD_IP_RETURN_VALUE); - REPLACE_OP((this_instr + 2), _NOP, 0, 0); - } - } - if (frame_pop(ctx, returning_code, returning_stacklevel)) { + if (frame_pop(ctx, returning_code)) { break; } stack_pointer = ctx->frame->stack_pointer; @@ -976,14 +969,12 @@ dummy_func(void) { ctx->frame->stack_pointer = stack_pointer; assert(this_instr[1].opcode == _RECORD_CODE); PyCodeObject *returning_code = (PyCodeObject *)this_instr[1].operand0; - assert(PyCode_Check(returning_code)); if (returning_code == NULL) { ctx->done = true; break; } - _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = (int)this_instr->operand1; - if (frame_pop(ctx, returning_code, returning_stacklevel)) { + assert(PyCode_Check(returning_code)); + if (frame_pop(ctx, returning_code)) { break; } stack_pointer = ctx->frame->stack_pointer; @@ -998,14 +989,12 @@ dummy_func(void) { ctx->frame->stack_pointer = stack_pointer; assert(this_instr[1].opcode == _RECORD_CODE); PyCodeObject *returning_code = (PyCodeObject *)this_instr[1].operand0; - assert(PyCode_Check(returning_code)); if (returning_code == NULL) { ctx->done = true; break; } - _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = (int)this_instr->operand1; - if (frame_pop(ctx, returning_code, returning_stacklevel)) { + assert(PyCode_Check(returning_code)); + if (frame_pop(ctx, returning_code)) { break; } stack_pointer = ctx->frame->stack_pointer; @@ -1025,22 +1014,24 @@ dummy_func(void) { } op(_FOR_ITER_GEN_FRAME, (iter, unused -- iter, unused, gen_frame)) { - _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, iter, 1, NULL, 0); + _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, iter, NULL, 0); if (new_frame == NULL) { ctx->done = true; break; } - new_frame->stack[0] = sym_new_const(ctx, Py_None); + new_frame->stack_pointer[0] = sym_new_const(ctx, Py_None); + new_frame->stack_pointer++; gen_frame = PyJitRef_WrapInvalid(new_frame); } op(_SEND_GEN_FRAME, (receiver, v -- receiver, gen_frame)) { - _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, receiver, 1, NULL, 0); + _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, receiver, NULL, 0); if (new_frame == NULL) { ctx->done = true; break; } - new_frame->stack[0] = PyJitRef_StripReferenceInfo(v); + new_frame->stack_pointer[0] = PyJitRef_StripReferenceInfo(v); + new_frame->stack_pointer++; gen_frame = PyJitRef_WrapInvalid(new_frame); } @@ -1062,14 +1053,10 @@ dummy_func(void) { if (!CURRENT_FRAME_IS_INIT_SHIM()) { ctx->frame->stack_pointer = stack_pointer; } + ctx->frame->caller = true; ctx->frame = (_Py_UOpsAbstractFrame *)PyJitRef_Unwrap(new_frame); ctx->curr_frame_depth++; stack_pointer = ctx->frame->stack_pointer; - // Fixed calls don't need IP guards. - if ((this_instr-1)->opcode == _CREATE_INIT_FRAME) { - assert((this_instr+1)->opcode == _GUARD_IP__PUSH_FRAME); - REPLACE_OP(this_instr+1, _NOP, 0, 0); - } assert(ctx->frame->locals != NULL); } @@ -1653,6 +1640,47 @@ dummy_func(void) { sym_set_recorded_gen_func(nos, func); } + op(_GUARD_IP__PUSH_FRAME, (ip/4 --)) { + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + // TO DO + // Normal function calls to known functions + // do not need an IP guard. + } + + op(_GUARD_CODE_VERSION, (version/2 -- )) { + PyCodeObject *co = get_current_code_object(ctx); + if (co->co_version == version) { + _Py_BloomFilter_Add(dependencies, co); + REPLACE_OP(this_instr, _NOP, 0, 0); + } + else { + ctx->done = true; + } + } + + op(_GUARD_IP_YIELD_VALUE, (ip/4 --)) { + if (ctx->frame->caller) { + REPLACE_OP(this_instr, _NOP, 0, 0); + } + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + } + + op(_GUARD_IP_RETURN_VALUE, (ip/4 --)) { + if (ctx->frame->caller) { + REPLACE_OP(this_instr, _NOP, 0, 0); + } + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + } + + op(_GUARD_IP_RETURN_GENERATOR, (ip/4 --)) { + if (ctx->frame->caller) { + REPLACE_OP(this_instr, _NOP, 0, 0); + } + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + } + + + // END BYTECODES // } diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 7faa699a058249..a93e85329297cd 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -1162,7 +1162,7 @@ getitem = stack_pointer[-1]; sub = stack_pointer[-2]; container = stack_pointer[-3]; - _Py_UOpsAbstractFrame *f = frame_new_from_symbol(ctx, getitem, 0, NULL, 0); + _Py_UOpsAbstractFrame *f = frame_new_from_symbol(ctx, getitem, NULL, 0); if (f == NULL) { break; } @@ -1272,15 +1272,7 @@ ctx->done = true; break; } - int returning_stacklevel = (int)this_instr->operand1; - if (ctx->curr_frame_depth >= 2) { - PyCodeObject *expected_code = ctx->frames[ctx->curr_frame_depth - 2].code; - if (expected_code == returning_code) { - assert(this_instr[2].opcode == _GUARD_IP_RETURN_VALUE); - REPLACE_OP((this_instr + 2), _NOP, 0, 0); - } - } - if (frame_pop(ctx, returning_code, returning_stacklevel)) { + if (frame_pop(ctx, returning_code)) { break; } stack_pointer = ctx->frame->stack_pointer; @@ -1324,12 +1316,13 @@ JitOptRef gen_frame; v = stack_pointer[-1]; receiver = stack_pointer[-2]; - _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, receiver, 1, NULL, 0); + _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, receiver, NULL, 0); if (new_frame == NULL) { ctx->done = true; break; } - new_frame->stack[0] = PyJitRef_StripReferenceInfo(v); + new_frame->stack_pointer[0] = PyJitRef_StripReferenceInfo(v); + new_frame->stack_pointer++; gen_frame = PyJitRef_WrapInvalid(new_frame); stack_pointer[-1] = gen_frame; break; @@ -1346,14 +1339,12 @@ ctx->frame->stack_pointer = stack_pointer; assert(this_instr[1].opcode == _RECORD_CODE); PyCodeObject *returning_code = (PyCodeObject *)this_instr[1].operand0; - assert(PyCode_Check(returning_code)); if (returning_code == NULL) { ctx->done = true; break; } - _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = (int)this_instr->operand1; - if (frame_pop(ctx, returning_code, returning_stacklevel)) { + assert(PyCode_Check(returning_code)); + if (frame_pop(ctx, returning_code)) { break; } stack_pointer = ctx->frame->stack_pointer; @@ -2011,7 +2002,7 @@ owner = stack_pointer[-1]; PyObject *fget = (PyObject *)this_instr->operand0; PyCodeObject *co = (PyCodeObject *)((PyFunctionObject *)fget)->func_code; - _Py_UOpsAbstractFrame *f = frame_new(ctx, co, 0, NULL, 0); + _Py_UOpsAbstractFrame *f = frame_new(ctx, co, NULL, 0); if (f == NULL) { break; } @@ -2711,12 +2702,13 @@ JitOptRef iter; JitOptRef gen_frame; iter = stack_pointer[-2]; - _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, iter, 1, NULL, 0); + _Py_UOpsAbstractFrame *new_frame = frame_new_from_symbol(ctx, iter, NULL, 0); if (new_frame == NULL) { ctx->done = true; break; } - new_frame->stack[0] = sym_new_const(ctx, Py_None); + new_frame->stack_pointer[0] = sym_new_const(ctx, Py_None); + new_frame->stack_pointer++; gen_frame = PyJitRef_WrapInvalid(new_frame); CHECK_STACK_BOUNDS(1); stack_pointer[0] = gen_frame; @@ -2897,7 +2889,7 @@ JitOptRef callable; JitOptRef new_frame; callable = stack_pointer[-2 - oparg]; - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, NULL, 0)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, NULL, 0)); CHECK_STACK_BOUNDS(-1 - oparg); stack_pointer[-2 - oparg] = new_frame; stack_pointer += -1 - oparg; @@ -3033,9 +3025,9 @@ argcount++; } if (sym_is_null(self_or_null) || sym_is_not_null(self_or_null)) { - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, args, argcount)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, args, argcount)); } else { - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, NULL, 0)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, NULL, 0)); } CHECK_STACK_BOUNDS(-1 - oparg); stack_pointer[-2 - oparg] = new_frame; @@ -3053,13 +3045,10 @@ if (!CURRENT_FRAME_IS_INIT_SHIM()) { ctx->frame->stack_pointer = stack_pointer; } + ctx->frame->caller = true; ctx->frame = (_Py_UOpsAbstractFrame *)PyJitRef_Unwrap(new_frame); ctx->curr_frame_depth++; stack_pointer = ctx->frame->stack_pointer; - if ((this_instr-1)->opcode == _CREATE_INIT_FRAME) { - assert((this_instr+1)->opcode == _GUARD_IP__PUSH_FRAME); - REPLACE_OP(this_instr+1, _NOP, 0, 0); - } assert(ctx->frame->locals != NULL); break; } @@ -3213,17 +3202,17 @@ self = stack_pointer[-1 - oparg]; init = stack_pointer[-2 - oparg]; ctx->frame->stack_pointer = stack_pointer - oparg - 2; - _Py_UOpsAbstractFrame *shim = frame_new(ctx, (PyCodeObject *)&_Py_InitCleanup, 0, NULL, 0); + _Py_UOpsAbstractFrame *shim = frame_new(ctx, (PyCodeObject *)&_Py_InitCleanup, NULL, 0); if (shim == NULL) { break; } - shim->stack[0] = self; + shim->stack_pointer[0] = self; shim->stack_pointer++; assert((int)(shim->stack_pointer - shim->stack) == 1); ctx->frame = shim; ctx->curr_frame_depth++; assert((this_instr + 1)->opcode == _PUSH_FRAME); - init_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, init, 0, args-1, oparg+1)); + init_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, init, args-1, oparg+1)); CHECK_STACK_BOUNDS(-1 - oparg); stack_pointer[-2 - oparg] = init_frame; stack_pointer += -1 - oparg; @@ -3500,7 +3489,7 @@ JitOptRef callable; JitOptRef new_frame; callable = stack_pointer[-3 - oparg]; - new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, 0, NULL, 0)); + new_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, callable, NULL, 0)); CHECK_STACK_BOUNDS(-2 - oparg); stack_pointer[-3 - oparg] = new_frame; stack_pointer += -2 - oparg; @@ -3548,7 +3537,7 @@ JitOptRef func_st; JitOptRef ex_frame; func_st = stack_pointer[-4]; - ex_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, func_st, 0, NULL, 0)); + ex_frame = PyJitRef_WrapInvalid(frame_new_from_symbol(ctx, func_st, NULL, 0)); CHECK_STACK_BOUNDS(-3); stack_pointer[-4] = ex_frame; stack_pointer += -3; @@ -3592,14 +3581,12 @@ ctx->frame->stack_pointer = stack_pointer; assert(this_instr[1].opcode == _RECORD_CODE); PyCodeObject *returning_code = (PyCodeObject *)this_instr[1].operand0; - assert(PyCode_Check(returning_code)); if (returning_code == NULL) { ctx->done = true; break; } - _Py_BloomFilter_Add(dependencies, returning_code); - int returning_stacklevel = (int)this_instr->operand1; - if (frame_pop(ctx, returning_code, returning_stacklevel)) { + assert(PyCode_Check(returning_code)); + if (frame_pop(ctx, returning_code)) { break; } stack_pointer = ctx->frame->stack_pointer; @@ -4157,23 +4144,49 @@ break; } - case _GUARD_CODE: { + case _GUARD_CODE_VERSION: { + uint32_t version = (uint32_t)this_instr->operand0; + PyCodeObject *co = get_current_code_object(ctx); + if (co->co_version == version) { + _Py_BloomFilter_Add(dependencies, co); + REPLACE_OP(this_instr, _NOP, 0, 0); + } + else { + ctx->done = true; + } break; } case _GUARD_IP__PUSH_FRAME: { + PyObject *ip = (PyObject *)this_instr->operand0; + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); break; } case _GUARD_IP_YIELD_VALUE: { + PyObject *ip = (PyObject *)this_instr->operand0; + if (ctx->frame->caller) { + REPLACE_OP(this_instr, _NOP, 0, 0); + } + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); break; } case _GUARD_IP_RETURN_VALUE: { + PyObject *ip = (PyObject *)this_instr->operand0; + if (ctx->frame->caller) { + REPLACE_OP(this_instr, _NOP, 0, 0); + } + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); break; } case _GUARD_IP_RETURN_GENERATOR: { + PyObject *ip = (PyObject *)this_instr->operand0; + if (ctx->frame->caller) { + REPLACE_OP(this_instr, _NOP, 0, 0); + } + stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); break; } diff --git a/Python/optimizer_symbols.c b/Python/optimizer_symbols.c index 635ce622c3c589..dcbe093fd6d74c 100644 --- a/Python/optimizer_symbols.c +++ b/Python/optimizer_symbols.c @@ -1284,7 +1284,6 @@ _Py_UOpsAbstractFrame * _Py_uop_frame_new_from_symbol( JitOptContext *ctx, JitOptRef callable, - int curr_stackentries, JitOptRef *args, int arg_len) { @@ -1293,7 +1292,7 @@ _Py_uop_frame_new_from_symbol( ctx->done = true; return NULL; } - _Py_UOpsAbstractFrame *frame = _Py_uop_frame_new(ctx, co, curr_stackentries, args, arg_len); + _Py_UOpsAbstractFrame *frame = _Py_uop_frame_new(ctx, co, args, arg_len); if (frame == NULL) { return NULL; } @@ -1311,7 +1310,6 @@ _Py_UOpsAbstractFrame * _Py_uop_frame_new( JitOptContext *ctx, PyCodeObject *co, - int curr_stackentries, JitOptRef *args, int arg_len) { @@ -1324,17 +1322,21 @@ _Py_uop_frame_new( } _Py_UOpsAbstractFrame *frame = &ctx->frames[ctx->curr_frame_depth]; frame->code = co; - frame->stack_len = co->co_stacksize; + + frame->locals = ctx->locals.used; + ctx->locals.used += co->co_nlocalsplus; frame->locals_len = co->co_nlocalsplus; - frame->locals = ctx->n_consumed; - frame->stack = frame->locals + co->co_nlocalsplus; - frame->stack_pointer = frame->stack + curr_stackentries; + frame->stack = ctx->stack.used; + ctx->stack.used += co->co_stacksize; + frame->stack_len = co->co_stacksize; + + frame->stack_pointer = frame->stack; frame->globals_checked_version = 0; frame->globals_watched = false; frame->func = NULL; - ctx->n_consumed = ctx->n_consumed + (co->co_nlocalsplus + co->co_stacksize); - if (ctx->n_consumed >= ctx->limit) { + frame->caller = false; + if (ctx->locals.used > ctx->locals.end || ctx->stack.used > ctx->stack.end) { ctx->done = true; ctx->out_of_space = true; return NULL; @@ -1354,16 +1356,45 @@ _Py_uop_frame_new( frame->locals[i] = local; } - // Initialize the stack as well - for (int i = 0; i < curr_stackentries; i++) { - JitOptRef stackvar = _Py_uop_sym_new_unknown(ctx); - frame->stack[i] = stackvar; - } + /* Most optimizations rely on code objects being immutable (including sys._getframe modifications), + * and up to date for instrumentation. */ + _Py_BloomFilter_Add(ctx->dependencies, co); assert(frame->locals != NULL); return frame; } +JitOptRef * +_Py_uop_sym_set_stack_depth(JitOptContext *ctx, int stack_depth, JitOptRef *current_sp) { + _Py_UOpsAbstractFrame *frame = ctx->frame; + assert(frame->stack != NULL); + JitOptRef *new_stack_pointer = frame->stack + stack_depth; + if (current_sp > new_stack_pointer) { + ctx->done = true; + ctx->contradiction = true; + return NULL; + } + if (new_stack_pointer > ctx->stack.end) { + ctx->done = true; + ctx->out_of_space = true; + return NULL; + } + int delta = (int)(new_stack_pointer - current_sp); + assert(delta >= 0); + if (delta) { + /* Shift existing stack elements up */ + for (JitOptRef *p = current_sp-1; p >= frame->stack; p--) { + p[delta] = *p; + } + /* Fill rest of stack with unknowns */ + for (int i = 0; i < delta; i++) { + frame->stack[i] = _Py_uop_sym_new_unknown(ctx); + } + } + return frame->stack_pointer = new_stack_pointer; +} + + void _Py_uop_abstractcontext_fini(JitOptContext *ctx) { @@ -1380,15 +1411,24 @@ _Py_uop_abstractcontext_fini(JitOptContext *ctx) } } +// Leave a bit of space to push values before checking that there is space for a new frame +#define STACK_HEADROOM 2 + void -_Py_uop_abstractcontext_init(JitOptContext *ctx) +_Py_uop_abstractcontext_init(JitOptContext *ctx, _PyBloomFilter *dependencies) { static_assert(sizeof(JitOptSymbol) <= 3 * sizeof(uint64_t), "JitOptSymbol has grown"); - ctx->limit = ctx->locals_and_stack + MAX_ABSTRACT_INTERP_SIZE; - ctx->n_consumed = ctx->locals_and_stack; + + ctx->stack.used = ctx->stack_array; + ctx->stack.end = &ctx->stack_array[ABSTRACT_INTERP_STACK_SIZE-STACK_HEADROOM]; + ctx->locals.used = ctx->locals_array; + ctx->locals.end = &ctx->locals_array[ABSTRACT_INTERP_LOCALS_SIZE-STACK_HEADROOM]; #ifdef Py_DEBUG // Aids debugging a little. There should never be NULL in the abstract interpreter. - for (int i = 0 ; i < MAX_ABSTRACT_INTERP_SIZE; i++) { - ctx->locals_and_stack[i] = PyJitRef_NULL; + for (int i = 0 ; i < ABSTRACT_INTERP_STACK_SIZE; i++) { + ctx->stack_array[i] = PyJitRef_NULL; + } + for (int i = 0 ; i < ABSTRACT_INTERP_LOCALS_SIZE; i++) { + ctx->locals_array[i] = PyJitRef_NULL; } #endif @@ -1406,13 +1446,15 @@ _Py_uop_abstractcontext_init(JitOptContext *ctx) ctx->out_of_space = false; ctx->contradiction = false; ctx->builtins_watched = false; + ctx->dependencies = dependencies; } int -_Py_uop_frame_pop(JitOptContext *ctx, PyCodeObject *co, int curr_stackentries) +_Py_uop_frame_pop(JitOptContext *ctx, PyCodeObject *co) { _Py_UOpsAbstractFrame *frame = ctx->frame; - ctx->n_consumed = frame->locals; + ctx->stack.used = frame->stack; + ctx->locals.used = frame->locals; ctx->curr_frame_depth--; @@ -1436,9 +1478,7 @@ _Py_uop_frame_pop(JitOptContext *ctx, PyCodeObject *co, int curr_stackentries) // Else: trace stack underflow. // This handles swapping out frames. - assert(curr_stackentries >= 1); - // -1 to stackentries as we push to the stack our return value after this. - _Py_UOpsAbstractFrame *new_frame = _Py_uop_frame_new(ctx, co, curr_stackentries - 1, NULL, 0); + _Py_UOpsAbstractFrame *new_frame = _Py_uop_frame_new(ctx, co, NULL, 0); if (new_frame == NULL) { ctx->done = true; return 1; @@ -1474,7 +1514,7 @@ _Py_uop_symbols_test(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(ignored)) { JitOptContext context; JitOptContext *ctx = &context; - _Py_uop_abstractcontext_init(ctx); + _Py_uop_abstractcontext_init(ctx, NULL); PyObject *val_42 = NULL; PyObject *val_43 = NULL; PyObject *val_big = NULL; From c06f4f43015528db45bd6b44b46c057d88b38583 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Thu, 19 Feb 2026 13:38:46 +0100 Subject: [PATCH 065/110] GH-144679: When building with VS 2026 on Windows, use PlatformToolset v145 by default (GH-144680) --- .../next/Build/2026-02-10-18-26-04.gh-issue-144679.FIH73W.rst | 2 ++ PCbuild/python.props | 2 +- PCbuild/pythoncore.vcxproj | 2 +- Tools/msi/bundle/bootstrap/pythonba.vcxproj | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 Misc/NEWS.d/next/Build/2026-02-10-18-26-04.gh-issue-144679.FIH73W.rst diff --git a/Misc/NEWS.d/next/Build/2026-02-10-18-26-04.gh-issue-144679.FIH73W.rst b/Misc/NEWS.d/next/Build/2026-02-10-18-26-04.gh-issue-144679.FIH73W.rst new file mode 100644 index 00000000000000..ebcfda54da39a7 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2026-02-10-18-26-04.gh-issue-144679.FIH73W.rst @@ -0,0 +1,2 @@ +When building with Visual Studio 2026 (Version 18), use PlatformToolSet v145 +by default. Patch by Chris Eibl. diff --git a/PCbuild/python.props b/PCbuild/python.props index 82e6365bb397a5..3ad8d81dfc9a95 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -11,7 +11,7 @@ We set BasePlatformToolset for ICC's benefit, it's otherwise ignored. --> - v143 + v145 v143 v142 v141 diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 5e37dd33c849f2..61bee29c0af3d6 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -730,7 +730,7 @@ - + diff --git a/Tools/msi/bundle/bootstrap/pythonba.vcxproj b/Tools/msi/bundle/bootstrap/pythonba.vcxproj index 3970e857894ba5..4b38582f0d31e5 100644 --- a/Tools/msi/bundle/bootstrap/pythonba.vcxproj +++ b/Tools/msi/bundle/bootstrap/pythonba.vcxproj @@ -21,6 +21,7 @@ Release Win32 + v145 v143 v142 v141 From 52794cba13801f24c228c8e1d95a4ef25a62b4e3 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Thu, 19 Feb 2026 21:48:57 +0900 Subject: [PATCH 066/110] gh-141510: Update Whats News for frozendict (gh-144961) --- Doc/whatsnew/3.15.rst | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index 62ce7121424651..feccc496fad0e0 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -188,14 +188,33 @@ raise :exc:`SyntaxError`). :pep:`814`: Add frozendict built-in type ---------------------------------------- -A new public immutable type :class:`frozendict` is added to the :mod:`builtins` -module. It is not a ``dict`` subclass but inherits directly from ``object``. - -A ``frozendict`` can be hashed with ``hash(frozendict)`` if all keys and values -can be hashed. +A new :term:`immutable` type, :class:`frozendict`, is added to the :mod:`builtins` module. +It does not allow modification after creation. A ``frozendict`` is not a subclass of ``dict``; +it inherits directly from ``object``. A ``frozendict`` is :term:`hashable` +as long as all of its keys and values are hashable. A ``frozendict`` preserves +insertion order, but comparison does not take order into account. + +For example:: + + >>> a = frozendict(x=1, y=2) + >>> a + frozendict({'x': 1, 'y': 2}) + >>> a['z'] = 3 + Traceback (most recent call last): + File "", line 1, in + a['z'] = 3 + ~^^^^^ + TypeError: 'frozendict' object does not support item assignment + >>> b = frozendict(y=2, x=1) + >>> hash(a) == hash(b) + True + >>> a == b + True .. seealso:: :pep:`814` for the full specification and rationale. +(Contributed by Victor Stinner and Donghee Na in :gh:`141510`.) + .. _whatsnew315-profiling-package: From 1d099164bc0732debb9e93f32ad96a7d3d55a9ba Mon Sep 17 00:00:00 2001 From: David Peter Date: Thu, 19 Feb 2026 14:31:13 +0100 Subject: [PATCH 067/110] gh-144702: Use standard terminology in class pattern error message (#144703) --- .../2026-02-11-11-28-25.gh-issue-144702.XjFumv.rst | 2 ++ Python/ceval.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-11-11-28-25.gh-issue-144702.XjFumv.rst diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-11-11-28-25.gh-issue-144702.XjFumv.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-11-11-28-25.gh-issue-144702.XjFumv.rst new file mode 100644 index 00000000000000..01d2b6570ded96 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-11-11-28-25.gh-issue-144702.XjFumv.rst @@ -0,0 +1,2 @@ +Clarify the error message raised when a class pattern is used to match on a +non-class object. diff --git a/Python/ceval.c b/Python/ceval.c index ab2eef560370f5..8e905a5e689ed9 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -534,7 +534,7 @@ _PyEval_MatchClass(PyThreadState *tstate, PyObject *subject, PyObject *type, Py_ssize_t nargs, PyObject *kwargs) { if (!PyType_Check(type)) { - const char *e = "called match pattern must be a class"; + const char *e = "class pattern must refer to a class"; _PyErr_Format(tstate, PyExc_TypeError, e); return NULL; } From 28b3a8ac08ed166705382113f5fea4b616064711 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Thu, 19 Feb 2026 23:06:15 +0900 Subject: [PATCH 068/110] gh-141510: Update ftscalingbench to support frozendict (gh-144999) --- Tools/ftscalingbench/ftscalingbench.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Tools/ftscalingbench/ftscalingbench.py b/Tools/ftscalingbench/ftscalingbench.py index 50d0e4c04fc319..f60f5adba5c12c 100644 --- a/Tools/ftscalingbench/ftscalingbench.py +++ b/Tools/ftscalingbench/ftscalingbench.py @@ -180,6 +180,12 @@ def create_dict(): "key": "value", } +if hasattr(__builtins__, "frozendict"): + @register_benchmark + def create_frozendict(): + for i in range(1000 * WORK_SCALE): + d = frozendict(key="value") + thread_local = threading.local() @register_benchmark From f1cf762ee7d52e8acb567f1817da90ed535ef419 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 19 Feb 2026 15:11:21 +0100 Subject: [PATCH 069/110] gh-84393: Remove AIX workaround: re-enable posix_fadvise and f_allocate (GH-144784) Co-authored-by: Batuhan Taskaya --- .../2020-04-07-05-09-34.bpo-40212.oPYeBs.rst | 1 + Modules/clinic/posixmodule.c.h | 10 +++++----- Modules/posixmodule.c | 18 ++++-------------- 3 files changed, 10 insertions(+), 19 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2020-04-07-05-09-34.bpo-40212.oPYeBs.rst diff --git a/Misc/NEWS.d/next/Library/2020-04-07-05-09-34.bpo-40212.oPYeBs.rst b/Misc/NEWS.d/next/Library/2020-04-07-05-09-34.bpo-40212.oPYeBs.rst new file mode 100644 index 00000000000000..2e9c3d81180e6a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-04-07-05-09-34.bpo-40212.oPYeBs.rst @@ -0,0 +1 @@ +Re-enable :func:`os.posix_fallocate` and :func:`os.posix_fadvise` on AIX. diff --git a/Modules/clinic/posixmodule.c.h b/Modules/clinic/posixmodule.c.h index 03c0f221ba98b3..c4f498d233164c 100644 --- a/Modules/clinic/posixmodule.c.h +++ b/Modules/clinic/posixmodule.c.h @@ -9418,7 +9418,7 @@ os_truncate(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject #endif /* (defined HAVE_TRUNCATE || defined MS_WINDOWS) */ -#if (defined(HAVE_POSIX_FALLOCATE) && !defined(POSIX_FADVISE_AIX_BUG) && !defined(__wasi__)) +#if (defined(HAVE_POSIX_FALLOCATE) && !defined(__wasi__)) PyDoc_STRVAR(os_posix_fallocate__doc__, "posix_fallocate($module, fd, offset, length, /)\n" @@ -9463,9 +9463,9 @@ os_posix_fallocate(PyObject *module, PyObject *const *args, Py_ssize_t nargs) return return_value; } -#endif /* (defined(HAVE_POSIX_FALLOCATE) && !defined(POSIX_FADVISE_AIX_BUG) && !defined(__wasi__)) */ +#endif /* (defined(HAVE_POSIX_FALLOCATE) && !defined(__wasi__)) */ -#if (defined(HAVE_POSIX_FADVISE) && !defined(POSIX_FADVISE_AIX_BUG)) +#if defined(HAVE_POSIX_FADVISE) PyDoc_STRVAR(os_posix_fadvise__doc__, "posix_fadvise($module, fd, offset, length, advice, /)\n" @@ -9520,7 +9520,7 @@ os_posix_fadvise(PyObject *module, PyObject *const *args, Py_ssize_t nargs) return return_value; } -#endif /* (defined(HAVE_POSIX_FADVISE) && !defined(POSIX_FADVISE_AIX_BUG)) */ +#endif /* defined(HAVE_POSIX_FADVISE) */ #if defined(MS_WINDOWS) @@ -13611,4 +13611,4 @@ os__emscripten_log(PyObject *module, PyObject *const *args, Py_ssize_t nargs, Py #ifndef OS__EMSCRIPTEN_LOG_METHODDEF #define OS__EMSCRIPTEN_LOG_METHODDEF #endif /* !defined(OS__EMSCRIPTEN_LOG_METHODDEF) */ -/*[clinic end generated code: output=5fd2aeb6ba9a5df8 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=89c21e2151ac7316 input=a9049054013a1b77]*/ diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index ef90ac5de09c65..072027fa0f6174 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -13376,19 +13376,9 @@ os_truncate_impl(PyObject *module, path_t *path, Py_off_t length) #endif /* HAVE_TRUNCATE || MS_WINDOWS */ -/* Issue #22396: On 32-bit AIX platform, the prototypes of os.posix_fadvise() - and os.posix_fallocate() in system headers are wrong if _LARGE_FILES is - defined, which is the case in Python on AIX. AIX bug report: - http://www-01.ibm.com/support/docview.wss?uid=isg1IV56170 */ -#if defined(_AIX) && defined(_LARGE_FILES) && !defined(__64BIT__) -# define POSIX_FADVISE_AIX_BUG -#endif - - /* GH-111804: Due to posix_fallocate() not having consistent semantics across OSs, support was dropped in WASI preview2. */ -#if defined(HAVE_POSIX_FALLOCATE) && !defined(POSIX_FADVISE_AIX_BUG) && \ - !defined(__wasi__) +#if defined(HAVE_POSIX_FALLOCATE) && !defined(__wasi__) /*[clinic input] os.posix_fallocate @@ -13426,10 +13416,10 @@ os_posix_fallocate_impl(PyObject *module, int fd, Py_off_t offset, errno = result; return posix_error(); } -#endif /* HAVE_POSIX_FALLOCATE) && !POSIX_FADVISE_AIX_BUG && !defined(__wasi__) */ +#endif /* HAVE_POSIX_FALLOCATE && !defined(__wasi__) */ -#if defined(HAVE_POSIX_FADVISE) && !defined(POSIX_FADVISE_AIX_BUG) +#if defined(HAVE_POSIX_FADVISE) /*[clinic input] os.posix_fadvise @@ -13473,7 +13463,7 @@ os_posix_fadvise_impl(PyObject *module, int fd, Py_off_t offset, errno = result; return posix_error(); } -#endif /* HAVE_POSIX_FADVISE && !POSIX_FADVISE_AIX_BUG */ +#endif /* HAVE_POSIX_FADVISE */ #ifdef MS_WINDOWS From 157f271de352f16ecd052fb1fb0fcce528962407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20La=C3=ADns?= Date: Thu, 19 Feb 2026 15:25:50 +0000 Subject: [PATCH 070/110] gh-139899: Introduce MetaPathFinder.discover and PathEntryFinder.discover (#139900) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gh-139899: Introduce MetaPathFinder.discover and PathEntryFinder.discover Signed-off-by: Filipe Laíns * Fix doc reference Signed-off-by: Filipe Laíns * Remove specific doc references Signed-off-by: Filipe Laíns * Fix docstrings Signed-off-by: Filipe Laíns * Revert "Remove specific doc references" This reverts commit 31d1a8f5510e0f7a53016c7120ea2e1bda46e60c. Signed-off-by: Filipe Laíns * Fix news references Signed-off-by: Filipe Laíns * Add docs warning Signed-off-by: Filipe Laíns * Raise ValueError on invalid parent Signed-off-by: Filipe Laíns * Dedupe __path__ in PathFinder.discover Signed-off-by: Filipe Laíns * Use context manager and add error handling to os.scandir Signed-off-by: Filipe Laíns * Raise ValueError on invalid parent Signed-off-by: Filipe Laíns * Dedupe when package exists with multiple suffixes Signed-off-by: Filipe Laíns * Apply suggestions from code review Co-authored-by: Alyssa Coghlan * Add tests Signed-off-by: Filipe Laíns --------- Signed-off-by: Filipe Laíns Co-authored-by: Alyssa Coghlan Co-authored-by: Brett Cannon --- Doc/library/importlib.rst | 44 +++++++ Lib/importlib/_bootstrap_external.py | 48 +++++++ Lib/importlib/abc.py | 19 +++ Lib/test/test_importlib/test_discover.py | 121 ++++++++++++++++++ ...-10-10-14-08-58.gh-issue-139899.09leRY.rst | 3 + 5 files changed, 235 insertions(+) create mode 100644 Lib/test/test_importlib/test_discover.py create mode 100644 Misc/NEWS.d/next/Library/2025-10-10-14-08-58.gh-issue-139899.09leRY.rst diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 5f0858cb134ebf..795524e5b62145 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -275,6 +275,28 @@ ABC hierarchy:: .. versionchanged:: 3.4 Returns ``None`` when called instead of :data:`NotImplemented`. + .. method:: discover(parent=None) + + An optional method which searches for possible specs with given *parent* + module spec. If *parent* is *None*, :meth:`MetaPathFinder.discover` will + search for top-level modules. + + Returns an iterable of possible specs. + + Raises :exc:`ValueError` if *parent* is not a package module. + + .. warning:: + This method can potentially yield a very large number of objects, and + it may carry out IO operations when computing these values. + + Because of this, it will generaly be desirable to compute the result + values on-the-fly, as they are needed. As such, the returned object is + only guaranteed to be an :class:`iterable `, + instead of a :class:`list` or other + :class:`collection ` type. + + .. versionadded:: next + .. class:: PathEntryFinder @@ -307,6 +329,28 @@ ABC hierarchy:: :meth:`importlib.machinery.PathFinder.invalidate_caches` when invalidating the caches of all cached finders. + .. method:: discover(parent=None) + + An optional method which searches for possible specs with given *parent* + module spec. If *parent* is *None*, :meth:`PathEntryFinder.discover` will + search for top-level modules. + + Returns an iterable of possible specs. + + Raises :exc:`ValueError` if *parent* is not a package module. + + .. warning:: + This method can potentially yield a very large number of objects, and + it may carry out IO operations when computing these values. + + Because of this, it will generaly be desirable to compute the result + values on-the-fly, as they are needed. As such, the returned object is + only guaranteed to be an :class:`iterable `, + instead of a :class:`list` or other + :class:`collection ` type. + + .. versionadded:: next + .. class:: Loader diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index b576ceb1ce9f6e..213190d2098e75 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -1283,6 +1283,23 @@ def find_spec(cls, fullname, path=None, target=None): else: return spec + @classmethod + def discover(cls, parent=None): + if parent is None: + path = sys.path + elif parent.submodule_search_locations is None: + raise ValueError(f'{parent} is not a package module') + else: + path = parent.submodule_search_locations + + for entry in set(path): + if not isinstance(entry, str): + continue + if (finder := cls._path_importer_cache(entry)) is None: + continue + if discover := getattr(finder, 'discover', None): + yield from discover(parent) + @staticmethod def find_distributions(*args, **kwargs): """ @@ -1432,6 +1449,37 @@ def path_hook_for_FileFinder(path): return path_hook_for_FileFinder + def _find_children(self): + with _os.scandir(self.path) as scan_iterator: + while True: + try: + entry = next(scan_iterator) + if entry.name == _PYCACHE: + continue + # packages + if entry.is_dir() and '.' not in entry.name: + yield entry.name + # files + if entry.is_file(): + yield from { + entry.name.removesuffix(suffix) + for suffix, _ in self._loaders + if entry.name.endswith(suffix) + } + except OSError: + pass # ignore exceptions from next(scan_iterator) and os.DirEntry + except StopIteration: + break + + def discover(self, parent=None): + if parent and parent.submodule_search_locations is None: + raise ValueError(f'{parent} is not a package module') + + module_prefix = f'{parent.name}.' if parent else '' + for child_name in self._find_children(): + if spec := self.find_spec(module_prefix + child_name): + yield spec + def __repr__(self): return f'FileFinder({self.path!r})' diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py index 87922f32d1111b..9ca127ad9c7d0f 100644 --- a/Lib/importlib/abc.py +++ b/Lib/importlib/abc.py @@ -45,6 +45,16 @@ def invalidate_caches(self): This method is used by importlib.invalidate_caches(). """ + def discover(self, parent=None): + """An optional method which searches for possible specs with given *parent* + module spec. If *parent* is *None*, MetaPathFinder.discover will search + for top-level modules. + + Returns an iterable of possible specs. + """ + return () + + _register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter, machinery.PathFinder, machinery.WindowsRegistryFinder) @@ -58,6 +68,15 @@ def invalidate_caches(self): This method is used by PathFinder.invalidate_caches(). """ + def discover(self, parent=None): + """An optional method which searches for possible specs with given + *parent* module spec. If *parent* is *None*, PathEntryFinder.discover + will search for top-level modules. + + Returns an iterable of possible specs. + """ + return () + _register(PathEntryFinder, machinery.FileFinder) diff --git a/Lib/test/test_importlib/test_discover.py b/Lib/test/test_importlib/test_discover.py new file mode 100644 index 00000000000000..8c5fa65a564c6d --- /dev/null +++ b/Lib/test/test_importlib/test_discover.py @@ -0,0 +1,121 @@ +from unittest.mock import Mock + +from test.test_importlib import util + +importlib = util.import_importlib('importlib') +machinery = util.import_importlib('importlib.machinery') + + +class DiscoverableFinder: + def __init__(self, discover=[]): + self._discovered_values = discover + + def find_spec(self, fullname, path=None, target=None): + raise NotImplemented + + def discover(self, parent=None): + yield from self._discovered_values + + +class TestPathFinder: + """PathFinder implements MetaPathFinder, which uses the PathEntryFinder(s) + registered in sys.path_hooks (and sys.path_importer_cache) to search + sys.path or the parent's __path__. + + PathFinder.discover() should redirect to the .discover() method of the + PathEntryFinder for each path entry. + """ + + def test_search_path_hooks_top_level(self): + modules = [ + self.machinery.ModuleSpec(name='example1', loader=None), + self.machinery.ModuleSpec(name='example2', loader=None), + self.machinery.ModuleSpec(name='example3', loader=None), + ] + + with util.import_state( + path_importer_cache={ + 'discoverable': DiscoverableFinder(discover=modules), + }, + path=['discoverable'], + ): + discovered = list(self.machinery.PathFinder.discover()) + + self.assertEqual(discovered, modules) + + + def test_search_path_hooks_parent(self): + parent = self.machinery.ModuleSpec(name='example', loader=None, is_package=True) + parent.submodule_search_locations.append('discoverable') + + children = [ + self.machinery.ModuleSpec(name='example.child1', loader=None), + self.machinery.ModuleSpec(name='example.child2', loader=None), + self.machinery.ModuleSpec(name='example.child3', loader=None), + ] + + with util.import_state( + path_importer_cache={ + 'discoverable': DiscoverableFinder(discover=children) + }, + path=[], + ): + discovered = list(self.machinery.PathFinder.discover(parent)) + + self.assertEqual(discovered, children) + + def test_invalid_parent(self): + parent = self.machinery.ModuleSpec(name='example', loader=None) + with self.assertRaises(ValueError): + list(self.machinery.PathFinder.discover(parent)) + + +( + Frozen_TestPathFinder, + Source_TestPathFinder, +) = util.test_both(TestPathFinder, importlib=importlib, machinery=machinery) + + +class TestFileFinder: + """FileFinder implements PathEntryFinder and provides the base finder + implementation to search the file system. + """ + + def get_finder(self, path): + loader_details = [ + (self.machinery.SourceFileLoader, self.machinery.SOURCE_SUFFIXES), + (self.machinery.SourcelessFileLoader, self.machinery.BYTECODE_SUFFIXES), + ] + return self.machinery.FileFinder(path, *loader_details) + + def test_discover_top_level(self): + modules = {'example1', 'example2', 'example3'} + with util.create_modules(*modules) as mapping: + finder = self.get_finder(mapping['.root']) + discovered = list(finder.discover()) + self.assertEqual({spec.name for spec in discovered}, modules) + + def test_discover_parent(self): + modules = { + 'example.child1', + 'example.child2', + 'example.child3', + } + with util.create_modules(*modules) as mapping: + example = self.get_finder(mapping['.root']).find_spec('example') + finder = self.get_finder(example.submodule_search_locations[0]) + discovered = list(finder.discover(example)) + self.assertEqual({spec.name for spec in discovered}, modules) + + def test_invalid_parent(self): + with util.create_modules('example') as mapping: + finder = self.get_finder(mapping['.root']) + example = finder.find_spec('example') + with self.assertRaises(ValueError): + list(finder.discover(example)) + + +( + Frozen_TestFileFinder, + Source_TestFileFinder, +) = util.test_both(TestFileFinder, importlib=importlib, machinery=machinery) diff --git a/Misc/NEWS.d/next/Library/2025-10-10-14-08-58.gh-issue-139899.09leRY.rst b/Misc/NEWS.d/next/Library/2025-10-10-14-08-58.gh-issue-139899.09leRY.rst new file mode 100644 index 00000000000000..fe5e7d17ab6c8c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2025-10-10-14-08-58.gh-issue-139899.09leRY.rst @@ -0,0 +1,3 @@ +Introduced :meth:`importlib.abc.MetaPathFinder.discover` +and :meth:`importlib.abc.PathEntryFinder.discover` to allow module and submodule +name discovery without assuming the use of traditional filesystem based imports. From f282f7aed91a872078ea88df3d22a780bbd7bee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20La=C3=ADns?= Date: Thu, 19 Feb 2026 16:10:58 +0000 Subject: [PATCH 071/110] GH-134872: add ModuleNotFoundError suggestions (#142512) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gh-134872: Add traceback suggestions for ModuleNotFoundError Signed-off-by: Filipe Laíns * Add news Signed-off-by: Filipe Laíns --------- Signed-off-by: Filipe Laíns --- Lib/traceback.py | 17 +++++++++++++++++ ...26-02-19-15-42-06.gh-issue-134872.sjYX1-.rst | 1 + 2 files changed, 18 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2026-02-19-15-42-06.gh-issue-134872.sjYX1-.rst diff --git a/Lib/traceback.py b/Lib/traceback.py index 42453b4867ce99..b16cd8646e43f1 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -11,6 +11,7 @@ import keyword import tokenize import io +import importlib.util import _colorize from contextlib import suppress @@ -1128,6 +1129,10 @@ def __init__(self, exc_type, exc_value, exc_traceback, *, limit=None, self._str += (". Site initialization is disabled, did you forget to " + "add the site-packages directory to sys.path " + "or to enable your virtual environment?") + else: + suggestion = _compute_suggestion_error(exc_value, exc_traceback, module_name) + if suggestion: + self._str += f". Did you mean: '{suggestion}'?" elif exc_type and issubclass(exc_type, AttributeError) and \ getattr(exc_value, "name", None) is not None: wrong_name = getattr(exc_value, "name", None) @@ -1717,6 +1722,18 @@ def _compute_suggestion_error(exc_value, tb, wrong_name): d = [x for x in d if x[:1] != '_'] except Exception: return None + elif isinstance(exc_value, ModuleNotFoundError): + try: + if parent_name := wrong_name.rpartition('.')[0]: + parent = importlib.util.find_spec(parent_name) + else: + parent = None + d = [] + for finder in sys.meta_path: + if discover := getattr(finder, 'discover', None): + d += [spec.name for spec in discover(parent)] + except Exception: + return None elif isinstance(exc_value, ImportError): try: mod = __import__(exc_value.name) diff --git a/Misc/NEWS.d/next/Library/2026-02-19-15-42-06.gh-issue-134872.sjYX1-.rst b/Misc/NEWS.d/next/Library/2026-02-19-15-42-06.gh-issue-134872.sjYX1-.rst new file mode 100644 index 00000000000000..4654dd060a6b78 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-19-15-42-06.gh-issue-134872.sjYX1-.rst @@ -0,0 +1 @@ +Add valid import name suggestions on :exc:`ModuleNotFoundError`. From 0341b10a5d790aa70776f881a1c9bc1f75fac602 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Thu, 19 Feb 2026 17:38:26 +0100 Subject: [PATCH 072/110] GH-144679: MSVC tailcall CI no longer needs to specify PlatformToolset (GH-145004) MSVC tailcall CI no longer needs to specify PlatformToolset --- .github/workflows/tail-call.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tail-call.yml b/.github/workflows/tail-call.yml index 1ab225656d694d..32c6aa75e479f8 100644 --- a/.github/workflows/tail-call.yml +++ b/.github/workflows/tail-call.yml @@ -51,7 +51,6 @@ jobs: - name: Build shell: pwsh run: | - $env:PlatformToolset = "v145" ./PCbuild/build.bat --tail-call-interp ${{ matrix.build_flags }} -c Release -p ${{ matrix.architecture }} - name: Test if: matrix.run_tests From 930b3fd1df67eea85d0b1e284d76cb1223ba05f8 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Thu, 19 Feb 2026 16:49:34 +0000 Subject: [PATCH 073/110] `compute-changes.py`: Fix & test `process_changed_files()` (#144674) Co-authored-by: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> --- .github/CODEOWNERS | 7 +- Lib/test/test_tools/test_compute_changes.py | 144 ++++++++++++++++++++ Tools/build/compute-changes.py | 12 +- 3 files changed, 158 insertions(+), 5 deletions(-) create mode 100644 Lib/test/test_tools/test_compute_changes.py diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index dcebcbb434643f..67c08c9ddaee9e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -63,9 +63,10 @@ .azure-pipelines/ @AA-Turner # GitHub & related scripts -.github/ @ezio-melotti @hugovk @AA-Turner @webknjaz -Tools/build/compute-changes.py @AA-Turner @hugovk @webknjaz -Tools/build/verify_ensurepip_wheels.py @AA-Turner @pfmoore @pradyunsg +.github/ @ezio-melotti @hugovk @AA-Turner @webknjaz +Tools/build/compute-changes.py @AA-Turner @hugovk @webknjaz +Lib/test/test_tools/test_compute_changes.py @AA-Turner @hugovk @webknjaz +Tools/build/verify_ensurepip_wheels.py @AA-Turner @pfmoore @pradyunsg # Pre-commit .pre-commit-config.yaml @hugovk diff --git a/Lib/test/test_tools/test_compute_changes.py b/Lib/test/test_tools/test_compute_changes.py new file mode 100644 index 00000000000000..b20ff975fc2834 --- /dev/null +++ b/Lib/test/test_tools/test_compute_changes.py @@ -0,0 +1,144 @@ +"""Tests to cover the Tools/build/compute-changes.py script.""" + +import importlib +import os +import unittest +from pathlib import Path +from unittest.mock import patch + +from test.test_tools import skip_if_missing, imports_under_tool + +skip_if_missing("build") + +with patch.dict(os.environ, {"GITHUB_DEFAULT_BRANCH": "main"}): + with imports_under_tool("build"): + compute_changes = importlib.import_module("compute-changes") + +process_changed_files = compute_changes.process_changed_files +Outputs = compute_changes.Outputs +ANDROID_DIRS = compute_changes.ANDROID_DIRS +IOS_DIRS = compute_changes.IOS_DIRS +MACOS_DIRS = compute_changes.MACOS_DIRS +WASI_DIRS = compute_changes.WASI_DIRS +RUN_TESTS_IGNORE = compute_changes.RUN_TESTS_IGNORE +UNIX_BUILD_SYSTEM_FILE_NAMES = compute_changes.UNIX_BUILD_SYSTEM_FILE_NAMES +LIBRARY_FUZZER_PATHS = compute_changes.LIBRARY_FUZZER_PATHS + + +class TestProcessChangedFiles(unittest.TestCase): + + def test_windows(self): + f = {Path(".github/workflows/reusable-windows.yml")} + result = process_changed_files(f) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_windows_tests) + + def test_docs(self): + for f in ( + ".github/workflows/reusable-docs.yml", + "Doc/library/datetime.rst", + "Doc/Makefile", + ): + with self.subTest(f=f): + result = process_changed_files({Path(f)}) + self.assertTrue(result.run_docs) + self.assertFalse(result.run_tests) + + def test_ci_fuzz_stdlib(self): + for p in LIBRARY_FUZZER_PATHS: + with self.subTest(p=p): + if p.is_dir(): + f = p / "file" + elif p.is_file(): + f = p + else: + continue + result = process_changed_files({f}) + self.assertTrue(result.run_ci_fuzz_stdlib) + + def test_android(self): + for d in ANDROID_DIRS: + with self.subTest(d=d): + result = process_changed_files({Path(d) / "file"}) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_android) + self.assertFalse(result.run_windows_tests) + + def test_ios(self): + for d in IOS_DIRS: + with self.subTest(d=d): + result = process_changed_files({Path(d) / "file"}) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_ios) + self.assertFalse(result.run_windows_tests) + + def test_macos(self): + f = {Path(".github/workflows/reusable-macos.yml")} + result = process_changed_files(f) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_macos) + + for d in MACOS_DIRS: + with self.subTest(d=d): + result = process_changed_files({Path(d) / "file"}) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_macos) + self.assertFalse(result.run_windows_tests) + + def test_wasi(self): + f = {Path(".github/workflows/reusable-wasi.yml")} + result = process_changed_files(f) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_wasi) + + for d in WASI_DIRS: + with self.subTest(d=d): + result = process_changed_files({d / "file"}) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_wasi) + self.assertFalse(result.run_windows_tests) + + def test_unix(self): + for f in UNIX_BUILD_SYSTEM_FILE_NAMES: + with self.subTest(f=f): + result = process_changed_files({f}) + self.assertTrue(result.run_tests) + self.assertFalse(result.run_windows_tests) + + def test_msi(self): + for f in ( + ".github/workflows/reusable-windows-msi.yml", + "Tools/msi/build.bat", + ): + with self.subTest(f=f): + result = process_changed_files({Path(f)}) + self.assertTrue(result.run_windows_msi) + + def test_all_run(self): + for f in ( + ".github/workflows/some-new-workflow.yml", + ".github/workflows/build.yml", + ): + with self.subTest(f=f): + result = process_changed_files({Path(f)}) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_android) + self.assertTrue(result.run_ios) + self.assertTrue(result.run_macos) + self.assertTrue(result.run_ubuntu) + self.assertTrue(result.run_wasi) + + def test_all_ignored(self): + for f in RUN_TESTS_IGNORE: + with self.subTest(f=f): + self.assertEqual(process_changed_files({Path(f)}), Outputs()) + + def test_wasi_and_android(self): + f = {Path(".github/workflows/reusable-wasi.yml"), Path("Android/file")} + result = process_changed_files(f) + self.assertTrue(result.run_tests) + self.assertTrue(result.run_wasi) + + +if __name__ == "__main__": + unittest.main() diff --git a/Tools/build/compute-changes.py b/Tools/build/compute-changes.py index 00fd0edd8537bf..67d2b060969660 100644 --- a/Tools/build/compute-changes.py +++ b/Tools/build/compute-changes.py @@ -225,19 +225,27 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs: if file.parent == GITHUB_WORKFLOWS_PATH: if file.name in ("build.yml", "reusable-cifuzz.yml"): - run_tests = run_ci_fuzz = run_ci_fuzz_stdlib = True + run_tests = run_ci_fuzz = run_ci_fuzz_stdlib = run_windows_tests = True has_platform_specific_change = False + continue if file.name == "reusable-docs.yml": run_docs = True + continue + if file.name == "reusable-windows.yml": + run_tests = True + run_windows_tests = True + continue if file.name == "reusable-windows-msi.yml": run_windows_msi = True + continue if file.name == "reusable-macos.yml": run_tests = True platforms_changed.add("macos") + continue if file.name == "reusable-wasi.yml": run_tests = True platforms_changed.add("wasi") - continue + continue if not doc_file and file not in RUN_TESTS_IGNORE: run_tests = True From 6485c8583a112c343525a14cf519275267b95185 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Thu, 19 Feb 2026 19:10:00 +0100 Subject: [PATCH 074/110] GH-144679: Switch to windows-2025-vs2026 build image in GitHub Actions (GH-145005) --- .github/workflows/jit.yml | 4 ++-- .github/workflows/reusable-windows-msi.yml | 2 +- .github/workflows/reusable-windows.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/jit.yml b/.github/workflows/jit.yml index 5a564b63f9d120..9188839b26ee71 100644 --- a/.github/workflows/jit.yml +++ b/.github/workflows/jit.yml @@ -74,10 +74,10 @@ jobs: include: - target: i686-pc-windows-msvc/msvc architecture: Win32 - runner: windows-2025 + runner: windows-2025-vs2026 - target: x86_64-pc-windows-msvc/msvc architecture: x64 - runner: windows-2025 + runner: windows-2025-vs2026 - target: aarch64-pc-windows-msvc/msvc architecture: ARM64 runner: windows-11-arm diff --git a/.github/workflows/reusable-windows-msi.yml b/.github/workflows/reusable-windows-msi.yml index 96fc338c47bf29..42c0dfd9636d30 100644 --- a/.github/workflows/reusable-windows-msi.yml +++ b/.github/workflows/reusable-windows-msi.yml @@ -17,7 +17,7 @@ env: jobs: build: name: installer for ${{ inputs.arch }} - runs-on: ${{ inputs.arch == 'arm64' && 'windows-11-arm' || 'windows-2025' }} + runs-on: ${{ inputs.arch == 'arm64' && 'windows-11-arm' || 'windows-2025-vs2026' }} timeout-minutes: 60 env: ARCH: ${{ inputs.arch }} diff --git a/.github/workflows/reusable-windows.yml b/.github/workflows/reusable-windows.yml index 2f6caf2f0044d4..2f667ace9194d7 100644 --- a/.github/workflows/reusable-windows.yml +++ b/.github/workflows/reusable-windows.yml @@ -21,7 +21,7 @@ env: jobs: build: name: Build and test (${{ inputs.arch }}) - runs-on: ${{ inputs.arch == 'arm64' && 'windows-11-arm' || 'windows-2025' }} + runs-on: ${{ inputs.arch == 'arm64' && 'windows-11-arm' || 'windows-2025-vs2026' }} timeout-minutes: 60 env: ARCH: ${{ inputs.arch }} From 0f7cd5544a4dd1d7cf892c93c661510d619caaa7 Mon Sep 17 00:00:00 2001 From: Robsdedude Date: Thu, 19 Feb 2026 19:29:05 +0100 Subject: [PATCH 075/110] gh-144156: Fix email header folding concatenating encoded words (#144692) The fix for gh-92081 (gh-92281) was unfortunately flawed, and broke whitespace handling for encoded word patterns that had previously been working correctly but had no corresponding tests, unfortunately in a way that made the resulting headers not RFC compliant, in such a way that Yahoo started rejecting the resulting emails. This fix was released in 3.14 alpha 1, 3.13 beta 2 and 3.12.5. This PR fixes the original problem in a way that does not break anything, and in fact fixes a small pre-existing bug (a spurious whitespace after the ':' of the header label if the header value is immediately wrapped on to the next line). (RDM) Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: R. David Murray --- Lib/email/_header_value_parser.py | 73 ++++++++++--------- Lib/test/test_email/test_generator.py | 44 +++++++++++ Lib/test/test_email/test_headerregistry.py | 4 +- Lib/test/test_email/test_policy.py | 2 +- ...-02-10-22-05-51.gh-issue-144156.UbrC7F.rst | 1 + 5 files changed, 85 insertions(+), 39 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-10-22-05-51.gh-issue-144156.UbrC7F.rst diff --git a/Lib/email/_header_value_parser.py b/Lib/email/_header_value_parser.py index 172f9ef9e5f096..4c5394ab6353ac 100644 --- a/Lib/email/_header_value_parser.py +++ b/Lib/email/_header_value_parser.py @@ -80,7 +80,8 @@ # Useful constants and functions # -WSP = set(' \t') +_WSP = ' \t' +WSP = set(_WSP) CFWS_LEADER = WSP | set('(') SPECIALS = set(r'()<>@,:;.\"[]') ATOM_ENDS = SPECIALS | WSP @@ -2835,6 +2836,7 @@ def _steal_trailing_WSP_if_exists(lines): lines.pop() return wsp + def _refold_parse_tree(parse_tree, *, policy): """Return string of contents of parse_tree folded according to RFC rules. @@ -2843,11 +2845,9 @@ def _refold_parse_tree(parse_tree, *, policy): maxlen = policy.max_line_length or sys.maxsize encoding = 'utf-8' if policy.utf8 else 'us-ascii' lines = [''] # Folded lines to be output - leading_whitespace = '' # When we have whitespace between two encoded - # words, we may need to encode the whitespace - # at the beginning of the second word. - last_ew = None # Points to the last encoded character if there's an ew on - # the line + last_word_is_ew = False + last_ew = None # if there is an encoded word in the last line of lines, + # points to the encoded word's first character last_charset = None wrap_as_ew_blocked = 0 want_encoding = False # This is set to True if we need to encode this part @@ -2882,6 +2882,7 @@ def _refold_parse_tree(parse_tree, *, policy): if part.token_type == 'mime-parameters': # Mime parameter folding (using RFC2231) is extra special. _fold_mime_parameters(part, lines, maxlen, encoding) + last_word_is_ew = False continue if want_encoding and not wrap_as_ew_blocked: @@ -2898,6 +2899,7 @@ def _refold_parse_tree(parse_tree, *, policy): # XXX what if encoded_part has no leading FWS? lines.append(newline) lines[-1] += encoded_part + last_word_is_ew = False continue # Either this is not a major syntactic break, so we don't # want it on a line by itself even if it fits, or it @@ -2916,11 +2918,16 @@ def _refold_parse_tree(parse_tree, *, policy): (last_charset == 'unknown-8bit' or last_charset == 'utf-8' and charset != 'us-ascii')): last_ew = None - last_ew = _fold_as_ew(tstr, lines, maxlen, last_ew, - part.ew_combine_allowed, charset, leading_whitespace) - # This whitespace has been added to the lines in _fold_as_ew() - # so clear it now. - leading_whitespace = '' + last_ew = _fold_as_ew( + tstr, + lines, + maxlen, + last_ew, + part.ew_combine_allowed, + charset, + last_word_is_ew, + ) + last_word_is_ew = True last_charset = charset want_encoding = False continue @@ -2933,28 +2940,19 @@ def _refold_parse_tree(parse_tree, *, policy): if len(tstr) <= maxlen - len(lines[-1]): lines[-1] += tstr + last_word_is_ew = last_word_is_ew and not bool(tstr.strip(_WSP)) continue # This part is too long to fit. The RFC wants us to break at # "major syntactic breaks", so unless we don't consider this # to be one, check if it will fit on the next line by itself. - leading_whitespace = '' if (part.syntactic_break and len(tstr) + 1 <= maxlen): newline = _steal_trailing_WSP_if_exists(lines) if newline or part.startswith_fws(): - # We're going to fold the data onto a new line here. Due to - # the way encoded strings handle continuation lines, we need to - # be prepared to encode any whitespace if the next line turns - # out to start with an encoded word. lines.append(newline + tstr) - - whitespace_accumulator = [] - for char in lines[-1]: - if char not in WSP: - break - whitespace_accumulator.append(char) - leading_whitespace = ''.join(whitespace_accumulator) + last_word_is_ew = (last_word_is_ew + and not bool(lines[-1].strip(_WSP))) last_ew = None continue if not hasattr(part, 'encode'): @@ -2994,10 +2992,11 @@ def _refold_parse_tree(parse_tree, *, policy): else: # We can't fold it onto the next line either... lines[-1] += tstr + last_word_is_ew = last_word_is_ew and not bool(tstr.strip(_WSP)) return policy.linesep.join(lines) + policy.linesep -def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset, leading_whitespace): +def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset, last_word_is_ew): """Fold string to_encode into lines as encoded word, combining if allowed. Return the new value for last_ew, or None if ew_combine_allowed is False. @@ -3012,6 +3011,16 @@ def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset, to_encode = str( get_unstructured(lines[-1][last_ew:] + to_encode)) lines[-1] = lines[-1][:last_ew] + elif last_word_is_ew: + # If we are following up an encoded word with another encoded word, + # any white space between the two will be ignored when decoded. + # Therefore, we encode all to-be-displayed whitespace in the second + # encoded word. + len_without_wsp = len(lines[-1].rstrip(_WSP)) + leading_whitespace = lines[-1][len_without_wsp:] + lines[-1] = (lines[-1][:len_without_wsp] + + (' ' if leading_whitespace else '')) + to_encode = leading_whitespace + to_encode elif to_encode[0] in WSP: # We're joining this to non-encoded text, so don't encode # the leading blank. @@ -3040,20 +3049,13 @@ def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset, while to_encode: remaining_space = maxlen - len(lines[-1]) - text_space = remaining_space - chrome_len - len(leading_whitespace) + text_space = remaining_space - chrome_len if text_space <= 0: - lines.append(' ') + newline = _steal_trailing_WSP_if_exists(lines) + lines.append(newline or ' ') + new_last_ew = len(lines[-1]) continue - # If we are at the start of a continuation line, prepend whitespace - # (we only want to do this when the line starts with an encoded word - # but if we're folding in this helper function, then we know that we - # are going to be writing out an encoded word.) - if len(lines) > 1 and len(lines[-1]) == 1 and leading_whitespace: - encoded_word = _ew.encode(leading_whitespace, charset=encode_as) - lines[-1] += encoded_word - leading_whitespace = '' - to_encode_word = to_encode[:text_space] encoded_word = _ew.encode(to_encode_word, charset=encode_as) excess = len(encoded_word) - remaining_space @@ -3065,7 +3067,6 @@ def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset, excess = len(encoded_word) - remaining_space lines[-1] += encoded_word to_encode = to_encode[len(to_encode_word):] - leading_whitespace = '' if to_encode: lines.append(' ') diff --git a/Lib/test/test_email/test_generator.py b/Lib/test/test_email/test_generator.py index 3ca79edf6a65d9..c2d7d09d591e86 100644 --- a/Lib/test/test_email/test_generator.py +++ b/Lib/test/test_email/test_generator.py @@ -393,6 +393,50 @@ def test_defaults_handle_spaces_at_start_of_continuation_line(self): g.flatten(msg) self.assertEqual(s.getvalue(), expected) + # gh-144156: fold between non-encoded and encoded words don't need to encoded + # the separating space + def test_defaults_handle_spaces_at_start_of_continuation_line_2(self): + source = ("Re: [SOS-1495488] Commande et livraison - Demande de retour - " + "bibijolie - 251210-AABBCC - Abo actualités digitales 20 semaines " + "d’abonnement à 24 heures, Bilan, Tribune de Genève et tous les titres Tamedia") + expected = ( + b"Subject: " + b"Re: [SOS-1495488] Commande et livraison - Demande de retour -\n" + b" bibijolie - 251210-AABBCC - Abo =?utf-8?q?actualit=C3=A9s?= digitales 20\n" + b" semaines =?utf-8?q?d=E2=80=99abonnement_=C3=A0?= 24 heures, Bilan, Tribune de\n" + b" =?utf-8?q?Gen=C3=A8ve?= et tous les titres Tamedia\n\n" + ) + msg = EmailMessage() + msg['Subject'] = source + s = io.BytesIO() + g = BytesGenerator(s) + g.flatten(msg) + self.assertEqual(s.getvalue(), expected) + + def test_ew_folding_round_trip_1(self): + print() + source = "aaaaaaaaa фффффффф " + msg = EmailMessage() + msg['Subject'] = source + s = io.BytesIO() + g = BytesGenerator(s, maxheaderlen=30) + g.flatten(msg) + flat = s.getvalue() + reparsed = message_from_bytes(flat, policy=policy.default)['Subject'] + self.assertMultiLineEqual(reparsed, source) + + def test_ew_folding_round_trip_2(self): + print() + source = "aaa aaaaaaa aaa ффф фффф " + msg = EmailMessage() + msg['Subject'] = source + s = io.BytesIO() + g = BytesGenerator(s, maxheaderlen=30) + g.flatten(msg) + flat = s.getvalue() + reparsed = message_from_bytes(flat, policy=policy.default)['Subject'] + self.assertMultiLineEqual(reparsed, source) + def test_cte_type_7bit_handles_unknown_8bit(self): source = ("Subject: Maintenant je vous présente mon " "collègue\n\n").encode('utf-8') diff --git a/Lib/test/test_email/test_headerregistry.py b/Lib/test/test_email/test_headerregistry.py index 95c6afbee41ef5..c9c63951597244 100644 --- a/Lib/test/test_email/test_headerregistry.py +++ b/Lib/test/test_email/test_headerregistry.py @@ -1711,7 +1711,7 @@ def test_fold_unstructured_with_overlong_word(self): 'singlewordthatwontfit') self.assertEqual( h.fold(policy=policy.default.clone(max_line_length=20)), - 'Subject: \n' + 'Subject:\n' ' =?utf-8?q?thisisa?=\n' ' =?utf-8?q?verylon?=\n' ' =?utf-8?q?glineco?=\n' @@ -1727,7 +1727,7 @@ def test_fold_unstructured_with_two_overlong_words(self): 'singlewordthatwontfit plusanotherverylongwordthatwontfit') self.assertEqual( h.fold(policy=policy.default.clone(max_line_length=20)), - 'Subject: \n' + 'Subject:\n' ' =?utf-8?q?thisisa?=\n' ' =?utf-8?q?verylon?=\n' ' =?utf-8?q?glineco?=\n' diff --git a/Lib/test/test_email/test_policy.py b/Lib/test/test_email/test_policy.py index 71ec0febb0fd86..90e8e5580295f9 100644 --- a/Lib/test/test_email/test_policy.py +++ b/Lib/test/test_email/test_policy.py @@ -273,7 +273,7 @@ def test_non_ascii_chars_do_not_cause_inf_loop(self): actual = policy.fold('Subject', 'ą' * 12) self.assertEqual( actual, - 'Subject: \n' + + 'Subject:\n' + 12 * ' =?utf-8?q?=C4=85?=\n') def test_short_maxlen_error(self): diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-10-22-05-51.gh-issue-144156.UbrC7F.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-10-22-05-51.gh-issue-144156.UbrC7F.rst new file mode 100644 index 00000000000000..c4a065528512e1 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-10-22-05-51.gh-issue-144156.UbrC7F.rst @@ -0,0 +1 @@ +Fix the folding of headers by the :mod:`email` library when :rfc:`2047` encoded words are used. Now whitespace is correctly preserved and also correctly added between adjacent encoded words. The latter property was broken by the fix for gh-92081, which mostly fixed previous failures to preserve whitespace. From b5c8e6e1334f1756ead5e2cd5966731844428e2c Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Thu, 19 Feb 2026 20:45:59 +0100 Subject: [PATCH 076/110] gh-100239: Use ``PyFloat_AS_DOUBLE`` and `_PyLong_IsZero`` in the float / compactlong specializations (#144826) --- .../2026-02-17-21-04-03.gh-issue-100239.LyVabQ.rst | 2 ++ Python/specialize.c | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-21-04-03.gh-issue-100239.LyVabQ.rst diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-21-04-03.gh-issue-100239.LyVabQ.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-21-04-03.gh-issue-100239.LyVabQ.rst new file mode 100644 index 00000000000000..3cfc3e930d1e9d --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-17-21-04-03.gh-issue-100239.LyVabQ.rst @@ -0,0 +1,2 @@ +Speedup ``BINARY_OP_EXTEND`` for exact floats and medium-size integers by up +to 15%. Patch by Chris Eibl. diff --git a/Python/specialize.c b/Python/specialize.c index 4d3ba4acbbf038..1eabdb1b5b194e 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -2100,7 +2100,7 @@ float_compactlong_guard(PyObject *lhs, PyObject *rhs) { return ( PyFloat_CheckExact(lhs) && - !isnan(PyFloat_AsDouble(lhs)) && + !isnan(PyFloat_AS_DOUBLE(lhs)) && PyLong_CheckExact(rhs) && _PyLong_IsCompact((PyLongObject *)rhs) ); @@ -2110,7 +2110,7 @@ static inline int nonzero_float_compactlong_guard(PyObject *lhs, PyObject *rhs) { return ( - float_compactlong_guard(lhs, rhs) && !PyLong_IsZero(rhs) + float_compactlong_guard(lhs, rhs) && !_PyLong_IsZero((PyLongObject*)rhs) ); } @@ -2118,7 +2118,7 @@ nonzero_float_compactlong_guard(PyObject *lhs, PyObject *rhs) static PyObject * \ (NAME)(PyObject *lhs, PyObject *rhs) \ { \ - double lhs_val = PyFloat_AsDouble(lhs); \ + double lhs_val = PyFloat_AS_DOUBLE(lhs); \ Py_ssize_t rhs_val = _PyLong_CompactValue((PyLongObject *)rhs); \ return PyFloat_FromDouble(lhs_val OP rhs_val); \ } @@ -2137,7 +2137,7 @@ compactlong_float_guard(PyObject *lhs, PyObject *rhs) PyLong_CheckExact(lhs) && _PyLong_IsCompact((PyLongObject *)lhs) && PyFloat_CheckExact(rhs) && - !isnan(PyFloat_AsDouble(rhs)) + !isnan(PyFloat_AS_DOUBLE(rhs)) ); } @@ -2145,7 +2145,7 @@ static inline int nonzero_compactlong_float_guard(PyObject *lhs, PyObject *rhs) { return ( - compactlong_float_guard(lhs, rhs) && PyFloat_AsDouble(rhs) != 0.0 + compactlong_float_guard(lhs, rhs) && PyFloat_AS_DOUBLE(rhs) != 0.0 ); } @@ -2153,7 +2153,7 @@ nonzero_compactlong_float_guard(PyObject *lhs, PyObject *rhs) static PyObject * \ (NAME)(PyObject *lhs, PyObject *rhs) \ { \ - double rhs_val = PyFloat_AsDouble(rhs); \ + double rhs_val = PyFloat_AS_DOUBLE(rhs); \ Py_ssize_t lhs_val = _PyLong_CompactValue((PyLongObject *)lhs); \ return PyFloat_FromDouble(lhs_val OP rhs_val); \ } From 87c4fc1321b8e5dae4db8d2ca9e335276c2ccfc3 Mon Sep 17 00:00:00 2001 From: Peter Bierma Date: Thu, 19 Feb 2026 15:18:37 -0500 Subject: [PATCH 077/110] Add myself as a codeowner for the C API documentation (#145017) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 67c08c9ddaee9e..f656e8e52cd3dc 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -111,6 +111,7 @@ Doc/tools/ @AA-Turner @hugovk .readthedocs.yml @AA-Turner # Sections +Doc/c-api/ @ZeroIntensity Doc/reference/ @willingc @AA-Turner Doc/whatsnew/ @AA-Turner From 50c14719fbd47f500dd1a468998201d22475126d Mon Sep 17 00:00:00 2001 From: Shamil Date: Thu, 19 Feb 2026 23:42:55 +0300 Subject: [PATCH 078/110] gh-144986: Fix memory leak in atexit.register() (#144987) --- .../2026-02-19-00-00-00.gh-issue-144986.atexit-leak.rst | 2 ++ Modules/atexitmodule.c | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2026-02-19-00-00-00.gh-issue-144986.atexit-leak.rst diff --git a/Misc/NEWS.d/next/Library/2026-02-19-00-00-00.gh-issue-144986.atexit-leak.rst b/Misc/NEWS.d/next/Library/2026-02-19-00-00-00.gh-issue-144986.atexit-leak.rst new file mode 100644 index 00000000000000..841c3758ec4df1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-19-00-00-00.gh-issue-144986.atexit-leak.rst @@ -0,0 +1,2 @@ +Fix a memory leak in :func:`atexit.register`. +Patch by Shamil Abdulaev. diff --git a/Modules/atexitmodule.c b/Modules/atexitmodule.c index 1c901d9124d9ca..3ddbbd59a1ef0c 100644 --- a/Modules/atexitmodule.c +++ b/Modules/atexitmodule.c @@ -185,6 +185,9 @@ atexit_register(PyObject *module, PyObject *args, PyObject *kwargs) return NULL; } PyObject *func_args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); + if (func_args == NULL) { + return NULL; + } PyObject *func_kwargs = kwargs; if (func_kwargs == NULL) @@ -192,6 +195,7 @@ atexit_register(PyObject *module, PyObject *args, PyObject *kwargs) func_kwargs = Py_None; } PyObject *callback = PyTuple_Pack(3, func, func_args, func_kwargs); + Py_DECREF(func_args); if (callback == NULL) { return NULL; From beb8e3f2763d35ed85ae4bb82ef0073dfaaa3a67 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 19 Feb 2026 22:13:16 +0100 Subject: [PATCH 079/110] gh-141510: Document ParameterizedMIMEHeader.params change (#145003) Document also the dataclasses.field() metadata change. --- Doc/library/dataclasses.rst | 4 ++++ Doc/library/email.headerregistry.rst | 4 ++++ .../Library/2026-02-19-16-26-08.gh-issue-141510.4Qxy8_.rst | 3 +++ .../Library/2026-02-19-18-02-54.gh-issue-141510.qzvYsO.rst | 3 +++ 4 files changed, 14 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2026-02-19-16-26-08.gh-issue-141510.4Qxy8_.rst create mode 100644 Misc/NEWS.d/next/Library/2026-02-19-18-02-54.gh-issue-141510.qzvYsO.rst diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index cff36e258224d3..2864149a08fd50 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -333,6 +333,10 @@ Module contents :attr:`!C.t` will be ``20``, and the class attributes :attr:`!C.x` and :attr:`!C.y` will not be set. + .. versionchanged:: next + If *metadata* is ``None``, use an empty :class:`frozendict`, instead + of a :func:`~types.MappingProxyType` of an empty :class:`dict`. + .. class:: Field :class:`!Field` objects describe each defined field. These objects diff --git a/Doc/library/email.headerregistry.rst b/Doc/library/email.headerregistry.rst index ff8b601fe3d1bb..f4c11821c4b91d 100644 --- a/Doc/library/email.headerregistry.rst +++ b/Doc/library/email.headerregistry.rst @@ -269,6 +269,10 @@ variant, :attr:`~.BaseHeader.max_count` is set to 1. A dictionary mapping parameter names to parameter values. + .. versionchanged:: next + It is now a :class:`frozendict` instead of a + :class:`types.MappingProxyType`. + .. class:: ContentTypeHeader diff --git a/Misc/NEWS.d/next/Library/2026-02-19-16-26-08.gh-issue-141510.4Qxy8_.rst b/Misc/NEWS.d/next/Library/2026-02-19-16-26-08.gh-issue-141510.4Qxy8_.rst new file mode 100644 index 00000000000000..cf22e82b8415b8 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-19-16-26-08.gh-issue-141510.4Qxy8_.rst @@ -0,0 +1,3 @@ +``ParameterizedMIMEHeader.params`` of :mod:`email.headerregistry` is now a +:class:`frozendict` instead of a :class:`types.MappingProxyType`. Patch by +Victor Stinner. diff --git a/Misc/NEWS.d/next/Library/2026-02-19-18-02-54.gh-issue-141510.qzvYsO.rst b/Misc/NEWS.d/next/Library/2026-02-19-18-02-54.gh-issue-141510.qzvYsO.rst new file mode 100644 index 00000000000000..ae46ff0cbdd8b1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-19-18-02-54.gh-issue-141510.qzvYsO.rst @@ -0,0 +1,3 @@ +:func:`dataclasses.field`: if *metadata* is ``None``, use an empty +:class:`frozendict`, instead of a :func:`~types.MappingProxyType` of an +empty :class:`dict`. Patch by Victor Stinner. From 4141f0a1ee6a6e9d5b4ba24f15a9d17df6933321 Mon Sep 17 00:00:00 2001 From: J Berg Date: Thu, 19 Feb 2026 22:48:01 +0000 Subject: [PATCH 080/110] Correct MAX_N in Lib/zipfile ZipExtFile (GH-144973) "<<" has lower precedence than "-". --- Lib/test/test_compile.py | 4 ++-- Lib/test/test_unpack_ex.py | 4 ++-- Lib/zipfile/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 591332cb5b9bcf..302b2c21935efe 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -249,8 +249,8 @@ def test_32_63_bit_values(self): d = -281474976710656 # 1 << 48 e = +4611686018427387904 # 1 << 62 f = -4611686018427387904 # 1 << 62 - g = +9223372036854775807 # 1 << 63 - 1 - h = -9223372036854775807 # 1 << 63 - 1 + g = +9223372036854775807 # (1 << 63) - 1 + h = -9223372036854775807 # (1 << 63) - 1 for variable in self.test_32_63_bit_values.__code__.co_consts: if variable is not None: diff --git a/Lib/test/test_unpack_ex.py b/Lib/test/test_unpack_ex.py index d147cd96d207db..904cf4f626ae78 100644 --- a/Lib/test/test_unpack_ex.py +++ b/Lib/test/test_unpack_ex.py @@ -543,13 +543,13 @@ Some size constraints (all fail.) - >>> s = ", ".join("a%d" % i for i in range(1<<8)) + ", *rest = range(1<<8 + 1)" + >>> s = ", ".join("a%d" % i for i in range(1<<8)) + ", *rest = range((1<<8) + 1)" >>> compile(s, 'test', 'exec') # doctest:+ELLIPSIS Traceback (most recent call last): ... SyntaxError: too many expressions in star-unpacking assignment - >>> s = ", ".join("a%d" % i for i in range(1<<8 + 1)) + ", *rest = range(1<<8 + 2)" + >>> s = ", ".join("a%d" % i for i in range((1<<8) + 1)) + ", *rest = range((1<<8) + 2)" >>> compile(s, 'test', 'exec') # doctest:+ELLIPSIS Traceback (most recent call last): ... diff --git a/Lib/zipfile/__init__.py b/Lib/zipfile/__init__.py index 8234bf52d39c5f..51e0ce9fa36d7e 100644 --- a/Lib/zipfile/__init__.py +++ b/Lib/zipfile/__init__.py @@ -950,7 +950,7 @@ class ZipExtFile(io.BufferedIOBase): """ # Max size supported by decompressor. - MAX_N = 1 << 31 - 1 + MAX_N = (1 << 31) - 1 # Read from compressed files in 4k blocks. MIN_READ_SIZE = 4096 From 852ec189784d6f11e6c2e29961d21b2ba4b59c68 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 19 Feb 2026 18:45:28 -0500 Subject: [PATCH 081/110] Docs: remove unneeded author attributions (#145002) These directives are not maintained and misleadingly indicate individual rather than community ownership. See https://github.com/python/docs-community/issues/180 for discussion, and https://github.com/python/devguide/pull/1740 for an update to the devguide. Also ensured that everyone is in the Misc/ACKS file. --- Doc/c-api/buffer.rst | 5 ----- Doc/c-api/code.rst | 2 -- Doc/c-api/init.rst | 8 -------- Doc/c-api/memory.rst | 4 ---- Doc/c-api/set.rst | 3 --- Doc/c-api/typeobj.rst | 15 --------------- Doc/c-api/unicode.rst | 3 --- Doc/extending/extending.rst | 3 --- Doc/extending/newtypes_tutorial.rst | 5 ----- Doc/extending/windows.rst | 6 ------ Doc/howto/logging-cookbook.rst | 3 --- Doc/library/abc.rst | 4 ---- Doc/library/argparse.rst | 3 --- Doc/library/ast.rst | 3 --- Doc/library/atexit.rst | 3 --- Doc/library/bisect.rst | 3 --- Doc/library/bz2.rst | 5 ----- Doc/library/calendar.rst | 2 -- Doc/library/cmd.rst | 4 ---- Doc/library/codecs.rst | 6 ------ Doc/library/codeop.rst | 3 --- Doc/library/collections.abc.rst | 3 --- Doc/library/collections.rst | 3 --- Doc/library/colorsys.rst | 2 -- Doc/library/concurrent.interpreters.rst | 3 --- Doc/library/configparser.rst | 7 ------- Doc/library/contextvars.rst | 2 -- Doc/library/csv.rst | 2 -- Doc/library/ctypes.rst | 2 -- Doc/library/curses.ascii.rst | 3 --- Doc/library/curses.panel.rst | 2 -- Doc/library/curses.rst | 6 ------ Doc/library/dataclasses.rst | 3 --- Doc/library/datetime.rst | 4 ---- Doc/library/decimal.rst | 8 -------- Doc/library/difflib.rst | 4 ---- Doc/library/doctest.rst | 5 ----- Doc/library/email.contentmanager.rst | 3 --- Doc/library/email.headerregistry.rst | 3 --- Doc/library/email.message.rst | 3 --- Doc/library/email.policy.rst | 3 --- Doc/library/email.rst | 3 --- Doc/library/enum.rst | 5 ----- Doc/library/fcntl.rst | 2 -- Doc/library/filecmp.rst | 2 -- Doc/library/fileinput.rst | 3 --- Doc/library/fractions.rst | 3 --- Doc/library/functools.rst | 7 ------- Doc/library/gc.rst | 3 --- Doc/library/getpass.rst | 4 ---- Doc/library/gettext.rst | 3 --- Doc/library/hashlib.rst | 5 ----- Doc/library/heapq.rst | 5 ----- Doc/library/hmac.rst | 3 --- Doc/library/html.entities.rst | 2 -- Doc/library/http.cookiejar.rst | 3 --- Doc/library/http.cookies.rst | 3 --- Doc/library/idle.rst | 2 -- Doc/library/imaplib.rst | 8 -------- Doc/library/importlib.rst | 3 --- Doc/library/inspect.rst | 3 --- Doc/library/io.rst | 8 -------- Doc/library/ipaddress.rst | 2 -- Doc/library/itertools.rst | 3 --- Doc/library/json.rst | 3 --- Doc/library/linecache.rst | 2 -- Doc/library/locale.rst | 3 --- Doc/library/logging.config.rst | 3 --- Doc/library/logging.handlers.rst | 3 --- Doc/library/logging.rst | 3 --- Doc/library/lzma.rst | 3 --- Doc/library/mailbox.rst | 3 --- Doc/library/mimetypes.rst | 2 -- Doc/library/modulefinder.rst | 2 -- Doc/library/msvcrt.rst | 2 -- Doc/library/netrc.rst | 3 --- Doc/library/operator.rst | 2 -- Doc/library/optparse.rst | 3 --- Doc/library/pickle.rst | 3 --- Doc/library/platform.rst | 3 --- Doc/library/plistlib.rst | 4 ---- Doc/library/poplib.rst | 3 --- Doc/library/posix.rst | 2 -- Doc/library/pprint.rst | 3 --- Doc/library/pty.rst | 5 ----- Doc/library/py_compile.rst | 3 --- Doc/library/pyclbr.rst | 2 -- Doc/library/pydoc.rst | 3 --- Doc/library/pyexpat.rst | 7 ------- Doc/library/re.rst | 5 ----- Doc/library/readline.rst | 2 -- Doc/library/reprlib.rst | 2 -- Doc/library/resource.rst | 3 --- Doc/library/rlcompleter.rst | 2 -- Doc/library/runpy.rst | 2 -- Doc/library/sched.rst | 2 -- Doc/library/secrets.rst | 2 -- Doc/library/shlex.rst | 5 ----- Doc/library/shutil.rst | 3 --- Doc/library/smtplib.rst | 2 -- Doc/library/sqlite3.rst | 2 -- Doc/library/ssl.rst | 3 --- Doc/library/stat.rst | 2 -- Doc/library/statistics.rst | 3 --- Doc/library/stringprep.rst | 3 --- Doc/library/subprocess.rst | 3 --- Doc/library/symtable.rst | 4 ---- Doc/library/sysconfig.rst | 3 --- Doc/library/tabnanny.rst | 5 ----- Doc/library/tarfile.rst | 3 --- Doc/library/tempfile.rst | 2 -- Doc/library/test.rst | 2 -- Doc/library/textwrap.rst | 3 --- Doc/library/tkinter.rst | 2 -- Doc/library/tkinter.scrolledtext.rst | 2 -- Doc/library/tkinter.ttk.rst | 2 -- Doc/library/token.rst | 2 -- Doc/library/tokenize.rst | 3 --- Doc/library/tomllib.rst | 3 --- Doc/library/tty.rst | 3 --- Doc/library/turtle.rst | 2 -- Doc/library/unicodedata.rst | 4 ---- Doc/library/unittest.mock-examples.rst | 1 - Doc/library/unittest.mock.rst | 1 - Doc/library/unittest.rst | 5 ----- Doc/library/urllib.error.rst | 3 --- Doc/library/urllib.request.rst | 4 ---- Doc/library/urllib.robotparser.rst | 2 -- Doc/library/uuid.rst | 2 -- Doc/library/venv.rst | 3 --- Doc/library/wave.rst | 3 --- Doc/library/weakref.rst | 5 ----- Doc/library/webbrowser.rst | 3 --- Doc/library/winreg.rst | 2 -- Doc/library/winsound.rst | 3 --- Doc/library/wsgiref.rst | 3 --- Doc/library/xml.dom.minidom.rst | 4 ---- Doc/library/xml.dom.pulldom.rst | 2 -- Doc/library/xml.dom.rst | 3 --- Doc/library/xml.etree.elementtree.rst | 2 -- Doc/library/xml.rst | 3 --- Doc/library/xml.sax.handler.rst | 3 --- Doc/library/xml.sax.reader.rst | 3 --- Doc/library/xml.sax.rst | 4 ---- Doc/library/xml.sax.utils.rst | 3 --- Doc/library/xmlrpc.client.rst | 3 --- Doc/library/xmlrpc.server.rst | 3 --- Doc/library/zipfile.rst | 3 --- Doc/library/zipimport.rst | 2 -- Doc/library/zoneinfo.rst | 3 --- Doc/tutorial/controlflow.rst | 2 -- Doc/tutorial/datastructures.rst | 5 ----- Doc/tutorial/floatingpoint.rst | 4 ---- Doc/using/mac.rst | 3 --- Doc/using/unix.rst | 3 --- Doc/using/windows.rst | 2 -- Misc/ACKS | 12 ++++++++++++ 157 files changed, 12 insertions(+), 515 deletions(-) diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst index 6bb72a2312be3b..e00b28ca4d7a7e 100644 --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -10,11 +10,6 @@ Buffer Protocol --------------- -.. sectionauthor:: Greg Stein -.. sectionauthor:: Benjamin Peterson -.. sectionauthor:: Stefan Krah - - Certain objects available in Python wrap access to an underlying memory array or *buffer*. Such objects include the built-in :class:`bytes` and :class:`bytearray`, and some extension types like :class:`array.array`. diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst index 048bc2c2154e77..be2c85ec97489e 100644 --- a/Doc/c-api/code.rst +++ b/Doc/c-api/code.rst @@ -7,8 +7,6 @@ Code Objects ------------ -.. sectionauthor:: Jeffrey Yasskin - Code objects are a low-level detail of the CPython implementation. Each one represents a chunk of executable code that hasn't yet been bound into a function. diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 6786aa76563f52..52ed9e0647780b 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -1916,9 +1916,6 @@ pointer and a void pointer argument. Profiling and Tracing ===================== -.. sectionauthor:: Fred L. Drake, Jr. - - The Python interpreter provides some low-level support for attaching profiling and execution tracing facilities. These are used for profiling, debugging, and coverage analysis tools. @@ -2148,9 +2145,6 @@ Reference tracing Advanced Debugger Support ========================= -.. sectionauthor:: Fred L. Drake, Jr. - - These functions are only intended to be used by advanced debugging tools. @@ -2187,8 +2181,6 @@ These functions are only intended to be used by advanced debugging tools. Thread Local Storage Support ============================ -.. sectionauthor:: Masayuki Yamamoto - The Python interpreter provides low-level support for thread-local storage (TLS) which wraps the underlying native TLS implementation to support the Python-level thread local storage API (:class:`threading.local`). The diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst index 58f0de5d0fc541..563c5d96b05362 100644 --- a/Doc/c-api/memory.rst +++ b/Doc/c-api/memory.rst @@ -7,10 +7,6 @@ Memory Management ***************** -.. sectionauthor:: Vladimir Marangozov - - - .. _memoryoverview: Overview diff --git a/Doc/c-api/set.rst b/Doc/c-api/set.rst index b74859dd669c54..6974f74fbd597a 100644 --- a/Doc/c-api/set.rst +++ b/Doc/c-api/set.rst @@ -5,9 +5,6 @@ Set Objects ----------- -.. sectionauthor:: Raymond D. Hettinger - - .. index:: pair: object; set pair: object; frozenset diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index a33da367e6071f..bc134b5d00b4ad 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -2632,9 +2632,6 @@ This is done by filling a :c:type:`PyType_Spec` structure and calling Number Object Structures ------------------------ -.. sectionauthor:: Amaury Forgeot d'Arc - - .. c:type:: PyNumberMethods This structure holds pointers to the functions which an object uses to @@ -2852,9 +2849,6 @@ Number Object Structures Mapping Object Structures ------------------------- -.. sectionauthor:: Amaury Forgeot d'Arc - - .. c:type:: PyMappingMethods This structure holds pointers to the functions which an object uses to @@ -2895,9 +2889,6 @@ Mapping Object Structures Sequence Object Structures -------------------------- -.. sectionauthor:: Amaury Forgeot d'Arc - - .. c:type:: PySequenceMethods This structure holds pointers to the functions which an object uses to @@ -2991,10 +2982,6 @@ Sequence Object Structures Buffer Object Structures ------------------------ -.. sectionauthor:: Greg J. Stein -.. sectionauthor:: Benjamin Peterson -.. sectionauthor:: Stefan Krah - .. c:type:: PyBufferProcs This structure holds pointers to the functions required by the @@ -3090,8 +3077,6 @@ Buffer Object Structures Async Object Structures ----------------------- -.. sectionauthor:: Yury Selivanov - .. versionadded:: 3.5 .. c:type:: PyAsyncMethods diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index d2b6643c700e88..4845e0f300278d 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -5,9 +5,6 @@ Unicode Objects and Codecs -------------------------- -.. sectionauthor:: Marc-André Lemburg -.. sectionauthor:: Georg Brandl - Unicode Objects ^^^^^^^^^^^^^^^ diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index c0066d315d092b..d33cbd2813d637 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -903,9 +903,6 @@ define this symbol). Providing a C API for an Extension Module ========================================= -.. sectionauthor:: Konrad Hinsen - - Many extension modules just provide new functions and types to be used from Python, but sometimes the code in an extension module can be useful for other extension modules. For example, an extension module could implement a type diff --git a/Doc/extending/newtypes_tutorial.rst b/Doc/extending/newtypes_tutorial.rst index 3bbee33bd50698..9f3cd1d6f4cf33 100644 --- a/Doc/extending/newtypes_tutorial.rst +++ b/Doc/extending/newtypes_tutorial.rst @@ -6,11 +6,6 @@ Defining Extension Types: Tutorial ********************************** -.. sectionauthor:: Michael Hudson -.. sectionauthor:: Dave Kuhlman -.. sectionauthor:: Jim Fulton - - Python allows the writer of a C extension module to define new types that can be manipulated from Python code, much like the built-in :class:`str` and :class:`list` types. The code for all extension types follows a diff --git a/Doc/extending/windows.rst b/Doc/extending/windows.rst index a97c6182553c30..cd81b443603d17 100644 --- a/Doc/extending/windows.rst +++ b/Doc/extending/windows.rst @@ -47,9 +47,6 @@ things manually, it may be instructive to study the project file for the Differences Between Unix and Windows ==================================== -.. sectionauthor:: Chris Phoenix - - Unix and Windows use completely different paradigms for run-time loading of code. Before you try to build a module that can be dynamically loaded, be aware of how your system works. @@ -109,9 +106,6 @@ separate copy. Using DLLs in Practice ====================== -.. sectionauthor:: Chris Phoenix - - Windows Python is built in Microsoft Visual C++; using other compilers may or may not work. The rest of this section is MSVC++ specific. diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 9633bc75f2c914..b87ac93296b915 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1564,9 +1564,6 @@ process. This can be set up using a process management tool such as Supervisor - Using file rotation ------------------- -.. sectionauthor:: Doug Hellmann, Vinay Sajip (changes) -.. (see ) - Sometimes you want to let a log file grow to a certain size, then open a new file and log to that. You may want to keep a certain number of these files, and when that many files have been created, rotate the files so that the number of diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 49e541a9d9b1cb..8112cfee7d204d 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -4,10 +4,6 @@ .. module:: abc :synopsis: Abstract base classes according to :pep:`3119`. -.. moduleauthor:: Guido van Rossum -.. sectionauthor:: Georg Brandl -.. much of the content adapted from docstrings - **Source code:** :source:`Lib/abc.py` -------------- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 60411b0a0c9748..ebcf8bf4dac002 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -4,9 +4,6 @@ .. module:: argparse :synopsis: Command-line option and argument parsing library. -.. moduleauthor:: Steven Bethard -.. sectionauthor:: Steven Bethard - .. versionadded:: 3.2 **Source code:** :source:`Lib/argparse.py` diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index 8815187ea8c884..9660ad70932764 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -4,9 +4,6 @@ .. module:: ast :synopsis: Abstract Syntax Tree classes and manipulation. -.. sectionauthor:: Martin v. Löwis -.. sectionauthor:: Georg Brandl - .. testsetup:: import ast diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index 24a3492ba10c91..b5caf5502d0e1c 100644 --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -4,9 +4,6 @@ .. module:: atexit :synopsis: Register and execute cleanup functions. -.. moduleauthor:: Skip Montanaro -.. sectionauthor:: Skip Montanaro - -------------- The :mod:`!atexit` module defines functions to register and unregister cleanup diff --git a/Doc/library/bisect.rst b/Doc/library/bisect.rst index 3efa3999171646..7f75e85a7eb641 100644 --- a/Doc/library/bisect.rst +++ b/Doc/library/bisect.rst @@ -3,9 +3,6 @@ .. module:: bisect :synopsis: Array bisection algorithms for binary searching. -.. sectionauthor:: Fred L. Drake, Jr. -.. sectionauthor:: Raymond Hettinger -.. example based on the PyModules FAQ entry by Aaron Watters **Source code:** :source:`Lib/bisect.py` diff --git a/Doc/library/bz2.rst b/Doc/library/bz2.rst index 32e223ddbdd8a2..6c20e9c94a3eae 100644 --- a/Doc/library/bz2.rst +++ b/Doc/library/bz2.rst @@ -4,11 +4,6 @@ .. module:: bz2 :synopsis: Interfaces for bzip2 compression and decompression. -.. moduleauthor:: Gustavo Niemeyer -.. moduleauthor:: Nadeem Vawda -.. sectionauthor:: Gustavo Niemeyer -.. sectionauthor:: Nadeem Vawda - **Source code:** :source:`Lib/bz2.py` -------------- diff --git a/Doc/library/calendar.rst b/Doc/library/calendar.rst index 48472840eab319..54cafaf4fe47d8 100644 --- a/Doc/library/calendar.rst +++ b/Doc/library/calendar.rst @@ -5,8 +5,6 @@ :synopsis: Functions for working with calendars, including some emulation of the Unix cal program. -.. sectionauthor:: Drew Csillag - **Source code:** :source:`Lib/calendar.py` -------------- diff --git a/Doc/library/cmd.rst b/Doc/library/cmd.rst index 1757dedabbf633..c988fcebd68a01 100644 --- a/Doc/library/cmd.rst +++ b/Doc/library/cmd.rst @@ -4,8 +4,6 @@ .. module:: cmd :synopsis: Build line-oriented command interpreters. -.. sectionauthor:: Eric S. Raymond - **Source code:** :source:`Lib/cmd.py` -------------- @@ -243,8 +241,6 @@ Instances of :class:`Cmd` subclasses have some public instance variables: Cmd Example ----------- -.. sectionauthor:: Raymond Hettinger - The :mod:`!cmd` module is mainly useful for building custom shells that let a user work with a program interactively. diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 36f5e94b8477ec..9259ab10d5850b 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -4,10 +4,6 @@ .. module:: codecs :synopsis: Encode and decode data and streams. -.. moduleauthor:: Marc-André Lemburg -.. sectionauthor:: Marc-André Lemburg -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/codecs.py` .. index:: @@ -1616,7 +1612,6 @@ This module implements the following exception: .. module:: encodings.idna :synopsis: Internationalized Domain Names implementation -.. moduleauthor:: Martin v. Löwis This module implements :rfc:`3490` (Internationalized Domain Names in Applications) and :rfc:`3492` (Nameprep: A Stringprep Profile for @@ -1700,7 +1695,6 @@ This module implements the ANSI codepage (CP_ACP). .. module:: encodings.utf_8_sig :synopsis: UTF-8 codec with BOM signature -.. moduleauthor:: Walter Dörwald This module implements a variant of the UTF-8 codec. On encoding, a UTF-8 encoded BOM will be prepended to the UTF-8 encoded bytes. For the stateful encoder this diff --git a/Doc/library/codeop.rst b/Doc/library/codeop.rst index 2e6d65980381ad..622e57d2ee63db 100644 --- a/Doc/library/codeop.rst +++ b/Doc/library/codeop.rst @@ -4,9 +4,6 @@ .. module:: codeop :synopsis: Compile (possibly incomplete) Python code. -.. sectionauthor:: Moshe Zadka -.. sectionauthor:: Michael Hudson - **Source code:** :source:`Lib/codeop.py` -------------- diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index e6daccb91f2b4e..51853725b1b297 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -4,9 +4,6 @@ .. module:: collections.abc :synopsis: Abstract base classes for containers -.. moduleauthor:: Raymond Hettinger -.. sectionauthor:: Raymond Hettinger - .. versionadded:: 3.3 Formerly, this module was part of the :mod:`collections` module. diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 4e0db485e068a8..58bbc9afe709af 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -4,9 +4,6 @@ .. module:: collections :synopsis: Container datatypes -.. moduleauthor:: Raymond Hettinger -.. sectionauthor:: Raymond Hettinger - **Source code:** :source:`Lib/collections/__init__.py` .. testsetup:: * diff --git a/Doc/library/colorsys.rst b/Doc/library/colorsys.rst index 2d3dc2b8b57935..dffc16ae8b7d47 100644 --- a/Doc/library/colorsys.rst +++ b/Doc/library/colorsys.rst @@ -4,8 +4,6 @@ .. module:: colorsys :synopsis: Conversion functions between RGB and other color systems. -.. sectionauthor:: David Ascher - **Source code:** :source:`Lib/colorsys.py` -------------- diff --git a/Doc/library/concurrent.interpreters.rst b/Doc/library/concurrent.interpreters.rst index 55036090e8d5b8..a7b115e5f6307d 100644 --- a/Doc/library/concurrent.interpreters.rst +++ b/Doc/library/concurrent.interpreters.rst @@ -4,9 +4,6 @@ .. module:: concurrent.interpreters :synopsis: Multiple interpreters in the same process -.. moduleauthor:: Eric Snow -.. sectionauthor:: Eric Snow - .. versionadded:: 3.14 **Source code:** :source:`Lib/concurrent/interpreters` diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index f73252a90265cf..4c1750de1d3933 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -4,13 +4,6 @@ .. module:: configparser :synopsis: Configuration file parser. -.. moduleauthor:: Ken Manheimer -.. moduleauthor:: Barry Warsaw -.. moduleauthor:: Eric S. Raymond -.. moduleauthor:: Łukasz Langa -.. sectionauthor:: Christopher G. Petrilli -.. sectionauthor:: Łukasz Langa - **Source code:** :source:`Lib/configparser.py` .. index:: diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst index 653d8b597c2362..93d0c0d34bf039 100644 --- a/Doc/library/contextvars.rst +++ b/Doc/library/contextvars.rst @@ -4,8 +4,6 @@ .. module:: contextvars :synopsis: Context Variables -.. sectionauthor:: Yury Selivanov - -------------- This module provides APIs to manage, store, and access context-local diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 5c086ab94229ac..21ecdbcc08f348 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -4,8 +4,6 @@ .. module:: csv :synopsis: Write and read tabular data to and from delimited files. -.. sectionauthor:: Skip Montanaro - **Source code:** :source:`Lib/csv.py` .. index:: diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 53849ac2a6aeb6..c23e81e29df0f5 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -4,8 +4,6 @@ .. module:: ctypes :synopsis: A foreign function library for Python. -.. moduleauthor:: Thomas Heller - **Source code:** :source:`Lib/ctypes` -------------- diff --git a/Doc/library/curses.ascii.rst b/Doc/library/curses.ascii.rst index 4910954b7784b0..9ae82c14465538 100644 --- a/Doc/library/curses.ascii.rst +++ b/Doc/library/curses.ascii.rst @@ -4,9 +4,6 @@ .. module:: curses.ascii :synopsis: Constants and set-membership functions for ASCII characters. -.. moduleauthor:: Eric S. Raymond -.. sectionauthor:: Eric S. Raymond - **Source code:** :source:`Lib/curses/ascii.py` -------------- diff --git a/Doc/library/curses.panel.rst b/Doc/library/curses.panel.rst index e52f588c5bc337..5bc6b74b7f07ca 100644 --- a/Doc/library/curses.panel.rst +++ b/Doc/library/curses.panel.rst @@ -4,8 +4,6 @@ .. module:: curses.panel :synopsis: A panel stack extension that adds depth to curses windows. -.. sectionauthor:: A.M. Kuchling - -------------- Panels are windows with the added feature of depth, so they can be stacked on diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index 2dc638b3d4014b..0f1449873fcf73 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -5,9 +5,6 @@ :synopsis: An interface to the curses library, providing portable terminal handling. -.. sectionauthor:: Moshe Zadka -.. sectionauthor:: Eric Raymond - **Source code:** :source:`Lib/curses` -------------- @@ -1830,9 +1827,6 @@ The following table lists the predefined colors: .. module:: curses.textpad :synopsis: Emacs-like input editing in a curses window. -.. moduleauthor:: Eric Raymond -.. sectionauthor:: Eric Raymond - The :mod:`!curses.textpad` module provides a :class:`Textbox` class that handles elementary text editing in a curses window, supporting a set of keybindings diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index 2864149a08fd50..447f05e67d8418 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -4,9 +4,6 @@ .. module:: dataclasses :synopsis: Generate special methods on user-defined classes. -.. moduleauthor:: Eric V. Smith -.. sectionauthor:: Eric V. Smith - **Source code:** :source:`Lib/dataclasses.py` -------------- diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index b806a49e1be903..f27844c98ccff6 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -4,10 +4,6 @@ .. module:: datetime :synopsis: Basic date and time types. -.. moduleauthor:: Tim Peters -.. sectionauthor:: Tim Peters -.. sectionauthor:: A.M. Kuchling - **Source code:** :source:`Lib/datetime.py` -------------- diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 17b1604dd0ee9b..2af5dfce9612b3 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -4,14 +4,6 @@ .. module:: decimal :synopsis: Implementation of the General Decimal Arithmetic Specification. -.. moduleauthor:: Eric Price -.. moduleauthor:: Facundo Batista -.. moduleauthor:: Raymond Hettinger -.. moduleauthor:: Aahz -.. moduleauthor:: Tim Peters -.. moduleauthor:: Stefan Krah -.. sectionauthor:: Raymond D. Hettinger - **Source code:** :source:`Lib/decimal.py` .. import modules for testing inline doctests with the Sphinx doctest builder diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst index 9e5a62d8fe5260..e56c4f5e7dfbf7 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -4,10 +4,6 @@ .. module:: difflib :synopsis: Helpers for computing differences between objects. -.. moduleauthor:: Tim Peters -.. sectionauthor:: Tim Peters -.. Markup by Fred L. Drake, Jr. - **Source code:** :source:`Lib/difflib.py` .. testsetup:: diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst index 3bc0f88d229681..3298697af8511b 100644 --- a/Doc/library/doctest.rst +++ b/Doc/library/doctest.rst @@ -4,11 +4,6 @@ .. module:: doctest :synopsis: Test pieces of code within docstrings. -.. moduleauthor:: Tim Peters -.. sectionauthor:: Tim Peters -.. sectionauthor:: Moshe Zadka -.. sectionauthor:: Edward Loper - **Source code:** :source:`Lib/doctest.py` -------------- diff --git a/Doc/library/email.contentmanager.rst b/Doc/library/email.contentmanager.rst index b33fe82a6e4c9f..04a41667f7dc2c 100644 --- a/Doc/library/email.contentmanager.rst +++ b/Doc/library/email.contentmanager.rst @@ -4,9 +4,6 @@ .. module:: email.contentmanager :synopsis: Storing and Retrieving Content from MIME Parts -.. moduleauthor:: R. David Murray -.. sectionauthor:: R. David Murray - **Source code:** :source:`Lib/email/contentmanager.py` ------------ diff --git a/Doc/library/email.headerregistry.rst b/Doc/library/email.headerregistry.rst index f4c11821c4b91d..8dfcd492f0a763 100644 --- a/Doc/library/email.headerregistry.rst +++ b/Doc/library/email.headerregistry.rst @@ -4,9 +4,6 @@ .. module:: email.headerregistry :synopsis: Automatic Parsing of headers based on the field name -.. moduleauthor:: R. David Murray -.. sectionauthor:: R. David Murray - **Source code:** :source:`Lib/email/headerregistry.py` -------------- diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst index f6908d2e6e9748..b70df130e06dfa 100644 --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -3,9 +3,6 @@ .. module:: email.message :synopsis: The base class representing email messages. -.. moduleauthor:: R. David Murray -.. sectionauthor:: R. David Murray , - Barry A. Warsaw **Source code:** :source:`Lib/email/message.py` diff --git a/Doc/library/email.policy.rst b/Doc/library/email.policy.rst index fef064114ecf1b..8f6e4218c97b38 100644 --- a/Doc/library/email.policy.rst +++ b/Doc/library/email.policy.rst @@ -4,9 +4,6 @@ .. module:: email.policy :synopsis: Controlling the parsing and generating of messages -.. moduleauthor:: R. David Murray -.. sectionauthor:: R. David Murray - .. versionadded:: 3.3 **Source code:** :source:`Lib/email/policy.py` diff --git a/Doc/library/email.rst b/Doc/library/email.rst index 03ac1783be08bd..98b47ffd74096c 100644 --- a/Doc/library/email.rst +++ b/Doc/library/email.rst @@ -4,9 +4,6 @@ .. module:: email :synopsis: Package supporting the parsing, manipulating, and generating email messages. -.. moduleauthor:: Barry A. Warsaw , - R. David Murray -.. sectionauthor:: R. David Murray **Source code:** :source:`Lib/email/__init__.py` diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index de56048f56a243..8a8a2edc9e542d 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -4,11 +4,6 @@ .. module:: enum :synopsis: Implementation of an enumeration class. -.. moduleauthor:: Ethan Furman -.. sectionauthor:: Barry Warsaw -.. sectionauthor:: Eli Bendersky -.. sectionauthor:: Ethan Furman - .. versionadded:: 3.4 **Source code:** :source:`Lib/enum.py` diff --git a/Doc/library/fcntl.rst b/Doc/library/fcntl.rst index 6e69d24a0e4586..c28e4d6c0cc80c 100644 --- a/Doc/library/fcntl.rst +++ b/Doc/library/fcntl.rst @@ -4,8 +4,6 @@ .. module:: fcntl :synopsis: The fcntl() and ioctl() system calls. -.. sectionauthor:: Jaap Vermeulen - .. index:: pair: UNIX; file control pair: UNIX; I/O control diff --git a/Doc/library/filecmp.rst b/Doc/library/filecmp.rst index e87a7869685d04..f8365b44c5a502 100644 --- a/Doc/library/filecmp.rst +++ b/Doc/library/filecmp.rst @@ -4,8 +4,6 @@ .. module:: filecmp :synopsis: Compare files efficiently. -.. sectionauthor:: Moshe Zadka - **Source code:** :source:`Lib/filecmp.py` -------------- diff --git a/Doc/library/fileinput.rst b/Doc/library/fileinput.rst index 8f32b11e565365..5be16797be908c 100644 --- a/Doc/library/fileinput.rst +++ b/Doc/library/fileinput.rst @@ -4,9 +4,6 @@ .. module:: fileinput :synopsis: Loop over standard input or a list of files. -.. moduleauthor:: Guido van Rossum -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/fileinput.py` -------------- diff --git a/Doc/library/fractions.rst b/Doc/library/fractions.rst index 575e90942d48b0..b02e7b5b641136 100644 --- a/Doc/library/fractions.rst +++ b/Doc/library/fractions.rst @@ -4,9 +4,6 @@ .. module:: fractions :synopsis: Rational numbers. -.. moduleauthor:: Jeffrey Yasskin -.. sectionauthor:: Jeffrey Yasskin - **Source code:** :source:`Lib/fractions.py` -------------- diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index f09e4c0536639e..265610db3caabd 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -4,13 +4,6 @@ .. module:: functools :synopsis: Higher-order functions and operations on callable objects. -.. moduleauthor:: Peter Harris -.. moduleauthor:: Raymond Hettinger -.. moduleauthor:: Nick Coghlan -.. moduleauthor:: Łukasz Langa -.. moduleauthor:: Pablo Galindo -.. sectionauthor:: Peter Harris - **Source code:** :source:`Lib/functools.py` .. testsetup:: default diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst index 250c31e7eee63f..652475886fc30f 100644 --- a/Doc/library/gc.rst +++ b/Doc/library/gc.rst @@ -4,9 +4,6 @@ .. module:: gc :synopsis: Interface to the cycle-detecting garbage collector. -.. moduleauthor:: Neil Schemenauer -.. sectionauthor:: Neil Schemenauer - -------------- This module provides an interface to the optional garbage collector. It diff --git a/Doc/library/getpass.rst b/Doc/library/getpass.rst index 37ffbe1be55a73..1fb34d14d8b007 100644 --- a/Doc/library/getpass.rst +++ b/Doc/library/getpass.rst @@ -4,10 +4,6 @@ .. module:: getpass :synopsis: Portable reading of passwords and retrieval of the userid. -.. moduleauthor:: Piers Lauder -.. sectionauthor:: Fred L. Drake, Jr. -.. Windows (& Mac?) support by Guido van Rossum. - **Source code:** :source:`Lib/getpass.py` -------------- diff --git a/Doc/library/gettext.rst b/Doc/library/gettext.rst index ddd0188e6614e8..2de16fe40362b3 100644 --- a/Doc/library/gettext.rst +++ b/Doc/library/gettext.rst @@ -4,9 +4,6 @@ .. module:: gettext :synopsis: Multilingual internationalization services. -.. moduleauthor:: Barry A. Warsaw -.. sectionauthor:: Barry A. Warsaw - **Source code:** :source:`Lib/gettext.py` -------------- diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index 542a72d4afe933..ed0b0b2735b5c3 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -4,9 +4,6 @@ .. module:: hashlib :synopsis: Secure hash and message digest algorithms. -.. moduleauthor:: Gregory P. Smith -.. sectionauthor:: Gregory P. Smith - **Source code:** :source:`Lib/hashlib.py` .. index:: @@ -379,8 +376,6 @@ include a `salt `_. BLAKE2 ------ -.. sectionauthor:: Dmitry Chestnykh - .. index:: single: blake2b, blake2s diff --git a/Doc/library/heapq.rst b/Doc/library/heapq.rst index 5049262306a228..26cffa7c643028 100644 --- a/Doc/library/heapq.rst +++ b/Doc/library/heapq.rst @@ -4,11 +4,6 @@ .. module:: heapq :synopsis: Heap queue algorithm (a.k.a. priority queue). -.. moduleauthor:: Kevin O'Connor -.. sectionauthor:: Guido van Rossum -.. sectionauthor:: François Pinard -.. sectionauthor:: Raymond Hettinger - **Source code:** :source:`Lib/heapq.py` -------------- diff --git a/Doc/library/hmac.rst b/Doc/library/hmac.rst index d5608bd7543eb1..2ee0c0bd9128b8 100644 --- a/Doc/library/hmac.rst +++ b/Doc/library/hmac.rst @@ -4,9 +4,6 @@ .. module:: hmac :synopsis: Keyed-Hashing for Message Authentication (HMAC) implementation -.. moduleauthor:: Gerhard Häring -.. sectionauthor:: Gerhard Häring - **Source code:** :source:`Lib/hmac.py` -------------- diff --git a/Doc/library/html.entities.rst b/Doc/library/html.entities.rst index add18e4c87d220..15d2dc2e9aa6bc 100644 --- a/Doc/library/html.entities.rst +++ b/Doc/library/html.entities.rst @@ -4,8 +4,6 @@ .. module:: html.entities :synopsis: Definitions of HTML general entities. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/html/entities.py` -------------- diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst index 90daaf28f8d505..5ee783b7fae950 100644 --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -4,9 +4,6 @@ .. module:: http.cookiejar :synopsis: Classes for automatic handling of HTTP cookies. -.. moduleauthor:: John J. Lee -.. sectionauthor:: John J. Lee - **Source code:** :source:`Lib/http/cookiejar.py` -------------- diff --git a/Doc/library/http.cookies.rst b/Doc/library/http.cookies.rst index a829fb27363ea5..b3fcd21c7e2244 100644 --- a/Doc/library/http.cookies.rst +++ b/Doc/library/http.cookies.rst @@ -4,9 +4,6 @@ .. module:: http.cookies :synopsis: Support for HTTP state management (cookies). -.. moduleauthor:: Timothy O'Malley -.. sectionauthor:: Moshe Zadka - **Source code:** :source:`Lib/http/cookies.py` -------------- diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst index 89be225b6baae4..c7c30e5300c2a4 100644 --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -3,8 +3,6 @@ IDLE --- Python editor and shell ================================ -.. moduleauthor:: Guido van Rossum - **Source code:** :source:`Lib/idlelib/` .. index:: diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst index 5129ae7f9d20f7..b29b02d3cf5fe8 100644 --- a/Doc/library/imaplib.rst +++ b/Doc/library/imaplib.rst @@ -4,14 +4,6 @@ .. module:: imaplib :synopsis: IMAP4 protocol client (requires sockets). -.. moduleauthor:: Piers Lauder -.. sectionauthor:: Piers Lauder -.. revised by ESR, January 2000 -.. changes for IMAP4_SSL by Tino Lange , March 2002 -.. changes for IMAP4_stream by Piers Lauder , - November 2002 -.. changes for IMAP4 IDLE by Forest , August 2024 - **Source code:** :source:`Lib/imaplib.py` .. index:: diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 795524e5b62145..d5036a0fe7510b 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -4,9 +4,6 @@ .. module:: importlib :synopsis: The implementation of the import machinery. -.. moduleauthor:: Brett Cannon -.. sectionauthor:: Brett Cannon - .. versionadded:: 3.1 **Source code:** :source:`Lib/importlib/__init__.py` diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 1455d907de8888..ff893a4513926a 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -9,9 +9,6 @@ .. module:: inspect :synopsis: Extract information and source code from live objects. -.. moduleauthor:: Ka-Ping Yee -.. sectionauthor:: Ka-Ping Yee - **Source code:** :source:`Lib/inspect.py` -------------- diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 84e28986c31599..494e57fe1c0474 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -4,14 +4,6 @@ .. module:: io :synopsis: Core tools for working with streams. -.. moduleauthor:: Guido van Rossum -.. moduleauthor:: Mike Verdone -.. moduleauthor:: Mark Russell -.. moduleauthor:: Antoine Pitrou -.. moduleauthor:: Amaury Forgeot d'Arc -.. moduleauthor:: Benjamin Peterson -.. sectionauthor:: Benjamin Peterson - **Source code:** :source:`Lib/io.py` -------------- diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst index c546d913cbea9d..ba20310d63b277 100644 --- a/Doc/library/ipaddress.rst +++ b/Doc/library/ipaddress.rst @@ -4,8 +4,6 @@ .. module:: ipaddress :synopsis: IPv4/IPv6 manipulation library. -.. moduleauthor:: Peter Moody - **Source code:** :source:`Lib/ipaddress.py` -------------- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 4f73a74bdd17e2..ce444d7bdfbadb 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -4,9 +4,6 @@ .. module:: itertools :synopsis: Functions creating iterators for efficient looping. -.. moduleauthor:: Raymond Hettinger -.. sectionauthor:: Raymond Hettinger - .. testsetup:: from itertools import * diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 57aad5ba9d1793..4a26419e65bee4 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -4,9 +4,6 @@ .. module:: json :synopsis: Encode and decode the JSON format. -.. moduleauthor:: Bob Ippolito -.. sectionauthor:: Bob Ippolito - **Source code:** :source:`Lib/json/__init__.py` -------------- diff --git a/Doc/library/linecache.rst b/Doc/library/linecache.rst index 0a5373ec976371..ff07499e58f0f6 100644 --- a/Doc/library/linecache.rst +++ b/Doc/library/linecache.rst @@ -4,8 +4,6 @@ .. module:: linecache :synopsis: Provides random access to individual lines from text files. -.. sectionauthor:: Moshe Zadka - **Source code:** :source:`Lib/linecache.py` -------------- diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst index 72311ecaabfc9f..e02cbe7d669f8b 100644 --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -4,9 +4,6 @@ .. module:: locale :synopsis: Internationalization services. -.. moduleauthor:: Martin von Löwis -.. sectionauthor:: Martin von Löwis - **Source code:** :source:`Lib/locale.py` -------------- diff --git a/Doc/library/logging.config.rst b/Doc/library/logging.config.rst index 6709062dfca72b..30bf7860a75119 100644 --- a/Doc/library/logging.config.rst +++ b/Doc/library/logging.config.rst @@ -4,9 +4,6 @@ .. module:: logging.config :synopsis: Configuration of the logging module. -.. moduleauthor:: Vinay Sajip -.. sectionauthor:: Vinay Sajip - **Source code:** :source:`Lib/logging/config.py` .. sidebar:: Important diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index d128f64aae7236..714db5fa12af0a 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -4,9 +4,6 @@ .. module:: logging.handlers :synopsis: Handlers for the logging module. -.. moduleauthor:: Vinay Sajip -.. sectionauthor:: Vinay Sajip - **Source code:** :source:`Lib/logging/handlers.py` .. sidebar:: Important diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 35ee87d736e7d6..aba530844d7177 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -4,9 +4,6 @@ .. module:: logging :synopsis: Flexible event logging system for applications. -.. moduleauthor:: Vinay Sajip -.. sectionauthor:: Vinay Sajip - **Source code:** :source:`Lib/logging/__init__.py` .. index:: pair: Errors; logging diff --git a/Doc/library/lzma.rst b/Doc/library/lzma.rst index 8a4f68f3502521..6cede00b218678 100644 --- a/Doc/library/lzma.rst +++ b/Doc/library/lzma.rst @@ -4,9 +4,6 @@ .. module:: lzma :synopsis: A Python wrapper for the liblzma compression library. -.. moduleauthor:: Nadeem Vawda -.. sectionauthor:: Nadeem Vawda - .. versionadded:: 3.3 **Source code:** :source:`Lib/lzma.py` diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst index 3b0c17c838c879..b9a55a03dc8ae7 100644 --- a/Doc/library/mailbox.rst +++ b/Doc/library/mailbox.rst @@ -4,9 +4,6 @@ .. module:: mailbox :synopsis: Manipulate mailboxes in various formats -.. moduleauthor:: Gregory K. Johnson -.. sectionauthor:: Gregory K. Johnson - **Source code:** :source:`Lib/mailbox.py` -------------- diff --git a/Doc/library/mimetypes.rst b/Doc/library/mimetypes.rst index f489b60af3cb44..1e599bde8bcddd 100644 --- a/Doc/library/mimetypes.rst +++ b/Doc/library/mimetypes.rst @@ -4,8 +4,6 @@ .. module:: mimetypes :synopsis: Mapping of filename extensions to MIME types. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/mimetypes.py` .. index:: pair: MIME; content type diff --git a/Doc/library/modulefinder.rst b/Doc/library/modulefinder.rst index 823d853f1ed8eb..d26dcbd5f68725 100644 --- a/Doc/library/modulefinder.rst +++ b/Doc/library/modulefinder.rst @@ -4,8 +4,6 @@ .. module:: modulefinder :synopsis: Find modules used by a script. -.. sectionauthor:: A.M. Kuchling - **Source code:** :source:`Lib/modulefinder.py` -------------- diff --git a/Doc/library/msvcrt.rst b/Doc/library/msvcrt.rst index ee6798f969a1b6..6b49c1a9ccd6e1 100644 --- a/Doc/library/msvcrt.rst +++ b/Doc/library/msvcrt.rst @@ -4,8 +4,6 @@ .. module:: msvcrt :synopsis: Miscellaneous useful routines from the MS VC++ runtime. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`PC/msvcrtmodule.c` -------------- diff --git a/Doc/library/netrc.rst b/Doc/library/netrc.rst index 74c97e8c9a9759..3fbd2b57426ebe 100644 --- a/Doc/library/netrc.rst +++ b/Doc/library/netrc.rst @@ -4,9 +4,6 @@ .. module:: netrc :synopsis: Loading of .netrc files. -.. moduleauthor:: Eric S. Raymond -.. sectionauthor:: Eric S. Raymond - **Source code:** :source:`Lib/netrc.py` -------------- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index c715e977cca6cd..c0dab83977e427 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -4,8 +4,6 @@ .. module:: operator :synopsis: Functions corresponding to the standard operators. -.. sectionauthor:: Skip Montanaro - **Source code:** :source:`Lib/operator.py` .. testsetup:: diff --git a/Doc/library/optparse.rst b/Doc/library/optparse.rst index 51827e1f8da534..905212965bd70f 100644 --- a/Doc/library/optparse.rst +++ b/Doc/library/optparse.rst @@ -4,9 +4,6 @@ .. module:: optparse :synopsis: Command-line option parsing library. -.. moduleauthor:: Greg Ward -.. sectionauthor:: Greg Ward - **Source code:** :source:`Lib/optparse.py` -------------- diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 02b79a9f3a7a47..f8975c2f4281d4 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -4,9 +4,6 @@ .. module:: pickle :synopsis: Convert Python objects to streams of bytes and back. -.. sectionauthor:: Jim Kerr . -.. sectionauthor:: Barry Warsaw - **Source code:** :source:`Lib/pickle.py` .. index:: diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst index 9950d7ef36f4de..1d30966794fd1b 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -4,9 +4,6 @@ .. module:: platform :synopsis: Retrieves as much platform identifying data as possible. -.. moduleauthor:: Marc-André Lemburg -.. sectionauthor:: Bjorn Pettersen - **Source code:** :source:`Lib/platform.py` -------------- diff --git a/Doc/library/plistlib.rst b/Doc/library/plistlib.rst index 415c4b45c4f100..e5fc19f495226e 100644 --- a/Doc/library/plistlib.rst +++ b/Doc/library/plistlib.rst @@ -4,10 +4,6 @@ .. module:: plistlib :synopsis: Generate and parse Apple plist files. -.. moduleauthor:: Jack Jansen -.. sectionauthor:: Georg Brandl -.. (harvested from docstrings in the original file) - **Source code:** :source:`Lib/plistlib.py` .. index:: diff --git a/Doc/library/poplib.rst b/Doc/library/poplib.rst index 51ae480338ddb7..cd3a58016e9c12 100644 --- a/Doc/library/poplib.rst +++ b/Doc/library/poplib.rst @@ -4,9 +4,6 @@ .. module:: poplib :synopsis: POP3 protocol client (requires sockets). -.. sectionauthor:: Andrew T. Csillag -.. revised by ESR, January 2000 - **Source code:** :source:`Lib/poplib.py` .. index:: pair: POP3; protocol diff --git a/Doc/library/posix.rst b/Doc/library/posix.rst index 1f1ca03dfd6222..7d43b5d4cf7657 100644 --- a/Doc/library/posix.rst +++ b/Doc/library/posix.rst @@ -36,8 +36,6 @@ Large File Support single: large files single: file; large files -.. sectionauthor:: Steve Clift - Several operating systems (including AIX and Solaris) provide support for files that are larger than 2 GiB from a C programming model where :c:expr:`int` and :c:expr:`long` are 32-bit values. This is typically accomplished diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst index be942949d3ebfe..350831d6ad3c1b 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -4,9 +4,6 @@ .. module:: pprint :synopsis: Data pretty printer. -.. moduleauthor:: Fred L. Drake, Jr. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/pprint.py` -------------- diff --git a/Doc/library/pty.rst b/Doc/library/pty.rst index f0314ea5af8118..a7be5779fb2620 100644 --- a/Doc/library/pty.rst +++ b/Doc/library/pty.rst @@ -4,9 +4,6 @@ .. module:: pty :synopsis: Pseudo-Terminal Handling for Unix. -.. moduleauthor:: Steen Lumholt -.. sectionauthor:: Moshe Zadka - **Source code:** :source:`Lib/pty.py` -------------- @@ -92,8 +89,6 @@ The :mod:`!pty` module defines the following functions: Example ------- -.. sectionauthor:: Steen Lumholt - The following program acts like the Unix command :manpage:`script(1)`, using a pseudo-terminal to record all input and output of a terminal session in a "typescript". :: diff --git a/Doc/library/py_compile.rst b/Doc/library/py_compile.rst index 1cff16b6c1bf97..7aa960de3f2345 100644 --- a/Doc/library/py_compile.rst +++ b/Doc/library/py_compile.rst @@ -4,9 +4,6 @@ .. module:: py_compile :synopsis: Generate byte-code files from Python source files. -.. sectionauthor:: Fred L. Drake, Jr. -.. documentation based on module docstrings - **Source code:** :source:`Lib/py_compile.py` .. index:: pair: file; byte-code diff --git a/Doc/library/pyclbr.rst b/Doc/library/pyclbr.rst index 40f93646af2ceb..ed9fc6d0b5cf8c 100644 --- a/Doc/library/pyclbr.rst +++ b/Doc/library/pyclbr.rst @@ -4,8 +4,6 @@ .. module:: pyclbr :synopsis: Supports information extraction for a Python module browser. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/pyclbr.py` -------------- diff --git a/Doc/library/pydoc.rst b/Doc/library/pydoc.rst index e8f153ee1b35ce..f236eba8457657 100644 --- a/Doc/library/pydoc.rst +++ b/Doc/library/pydoc.rst @@ -4,9 +4,6 @@ .. module:: pydoc :synopsis: Documentation generator and online help system. -.. moduleauthor:: Ka-Ping Yee -.. sectionauthor:: Ka-Ping Yee - **Source code:** :source:`Lib/pydoc.py` .. index:: diff --git a/Doc/library/pyexpat.rst b/Doc/library/pyexpat.rst index ff5265835da3f8..2e6938b5cf6860 100644 --- a/Doc/library/pyexpat.rst +++ b/Doc/library/pyexpat.rst @@ -4,8 +4,6 @@ .. module:: xml.parsers.expat :synopsis: An interface to the Expat non-validating XML parser. -.. moduleauthor:: Paul Prescod - -------------- .. Markup notes: @@ -666,9 +664,6 @@ otherwise stated. ExpatError Exceptions --------------------- -.. sectionauthor:: Fred L. Drake, Jr. - - :exc:`ExpatError` exceptions have a number of interesting attributes: @@ -752,8 +747,6 @@ Content Model Descriptions .. module:: xml.parsers.expat.model -.. sectionauthor:: Fred L. Drake, Jr. - Content models are described using nested tuples. Each tuple contains four values: the type, the quantifier, the name, and a tuple of children. Children are simply additional content model descriptions. diff --git a/Doc/library/re.rst b/Doc/library/re.rst index df99acf354bf1b..cc11d0205dc5cb 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -4,9 +4,6 @@ .. module:: re :synopsis: Regular expression operations. -.. moduleauthor:: Fredrik Lundh -.. sectionauthor:: Andrew M. Kuchling - **Source code:** :source:`Lib/re/` -------------- @@ -1726,8 +1723,6 @@ The equivalent regular expression would be :: search() vs. prefixmatch() ^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. sectionauthor:: Fred L. Drake, Jr. - Python offers different primitive operations based on regular expressions: + :func:`re.prefixmatch` checks for a match only at the beginning of the string diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst index 59f5b54a042ea3..234af8d191e3e3 100644 --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -4,8 +4,6 @@ .. module:: readline :synopsis: GNU readline support for Python. -.. sectionauthor:: Skip Montanaro - -------------- The :mod:`!readline` module defines a number of functions to facilitate diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst index 28c7855dfeeef3..d269d8bbaa55da 100644 --- a/Doc/library/reprlib.rst +++ b/Doc/library/reprlib.rst @@ -4,8 +4,6 @@ .. module:: reprlib :synopsis: Alternate repr() implementation with size limits. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/reprlib.py` -------------- diff --git a/Doc/library/resource.rst b/Doc/library/resource.rst index 94bfbeab967693..561b2976ecea22 100644 --- a/Doc/library/resource.rst +++ b/Doc/library/resource.rst @@ -4,9 +4,6 @@ .. module:: resource :synopsis: An interface to provide resource usage information on the current process. -.. moduleauthor:: Jeremy Hylton -.. sectionauthor:: Jeremy Hylton - -------------- This module provides basic mechanisms for measuring and controlling system diff --git a/Doc/library/rlcompleter.rst b/Doc/library/rlcompleter.rst index 91779feb525013..2acd1df3c49007 100644 --- a/Doc/library/rlcompleter.rst +++ b/Doc/library/rlcompleter.rst @@ -4,8 +4,6 @@ .. module:: rlcompleter :synopsis: Python identifier completion, suitable for the GNU readline library. -.. sectionauthor:: Moshe Zadka - **Source code:** :source:`Lib/rlcompleter.py` -------------- diff --git a/Doc/library/runpy.rst b/Doc/library/runpy.rst index bb977e01a61bbf..536b5980f86a81 100644 --- a/Doc/library/runpy.rst +++ b/Doc/library/runpy.rst @@ -4,8 +4,6 @@ .. module:: runpy :synopsis: Locate and run Python modules without importing them first. -.. moduleauthor:: Nick Coghlan - **Source code:** :source:`Lib/runpy.py` -------------- diff --git a/Doc/library/sched.rst b/Doc/library/sched.rst index 5560478ce15e28..70541c5f3cb367 100644 --- a/Doc/library/sched.rst +++ b/Doc/library/sched.rst @@ -4,8 +4,6 @@ .. module:: sched :synopsis: General purpose event scheduler. -.. sectionauthor:: Moshe Zadka - **Source code:** :source:`Lib/sched.py` .. index:: single: event scheduling diff --git a/Doc/library/secrets.rst b/Doc/library/secrets.rst index e266849918a80b..3b5b57fb1c2170 100644 --- a/Doc/library/secrets.rst +++ b/Doc/library/secrets.rst @@ -4,8 +4,6 @@ .. module:: secrets :synopsis: Generate secure random numbers for managing secrets. -.. moduleauthor:: Steven D'Aprano -.. sectionauthor:: Steven D'Aprano .. versionadded:: 3.6 .. testsetup:: diff --git a/Doc/library/shlex.rst b/Doc/library/shlex.rst index 0653bf2f4189c2..2ab12f2f6f9169 100644 --- a/Doc/library/shlex.rst +++ b/Doc/library/shlex.rst @@ -4,11 +4,6 @@ .. module:: shlex :synopsis: Simple lexical analysis for Unix shell-like languages. -.. moduleauthor:: Eric S. Raymond -.. moduleauthor:: Gustavo Niemeyer -.. sectionauthor:: Eric S. Raymond -.. sectionauthor:: Gustavo Niemeyer - **Source code:** :source:`Lib/shlex.py` -------------- diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index 33f56121e84514..22444c4d804265 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -4,9 +4,6 @@ .. module:: shutil :synopsis: High-level file operations, including copying. -.. sectionauthor:: Fred L. Drake, Jr. -.. partly based on the docstrings - **Source code:** :source:`Lib/shutil.py` .. index:: diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst index e1a4cd9c2f50ea..5c97199bc453e8 100644 --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -4,8 +4,6 @@ .. module:: smtplib :synopsis: SMTP protocol client (requires sockets). -.. sectionauthor:: Eric S. Raymond - **Source code:** :source:`Lib/smtplib.py` .. index:: diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 02663e2054d5f1..40d103c13f8f38 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -4,8 +4,6 @@ .. module:: sqlite3 :synopsis: A DB-API 2.0 implementation using SQLite 3.x. -.. sectionauthor:: Gerhard Häring - **Source code:** :source:`Lib/sqlite3/` .. Make sure we always doctest the tutorial with an empty database. diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 366ae00efa2fc9..e83c2c9a8bc792 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -4,9 +4,6 @@ .. module:: ssl :synopsis: TLS/SSL wrapper for socket objects -.. moduleauthor:: Bill Janssen -.. sectionauthor:: Bill Janssen - **Source code:** :source:`Lib/ssl.py` .. index:: single: OpenSSL; (use in module ssl) diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst index dc852bbb754d9b..5c5f1858ba4476 100644 --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -5,8 +5,6 @@ :synopsis: Utilities for interpreting the results of os.stat(), os.lstat() and os.fstat(). -.. sectionauthor:: Skip Montanaro - **Source code:** :source:`Lib/stat.py` -------------- diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst index 614f5b905a4a2e..cbb131855dc664 100644 --- a/Doc/library/statistics.rst +++ b/Doc/library/statistics.rst @@ -4,9 +4,6 @@ .. module:: statistics :synopsis: Mathematical statistics functions -.. moduleauthor:: Steven D'Aprano -.. sectionauthor:: Steven D'Aprano - .. versionadded:: 3.4 **Source code:** :source:`Lib/statistics.py` diff --git a/Doc/library/stringprep.rst b/Doc/library/stringprep.rst index b9caa2aa830e94..325ac9ae7c5293 100644 --- a/Doc/library/stringprep.rst +++ b/Doc/library/stringprep.rst @@ -4,9 +4,6 @@ .. module:: stringprep :synopsis: String preparation, as per RFC 3453 -.. moduleauthor:: Martin v. Löwis -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/stringprep.py` -------------- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 020326b78c6b3d..def6d58eabbeee 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -4,9 +4,6 @@ .. module:: subprocess :synopsis: Subprocess management. -.. moduleauthor:: Peter Åstrand -.. sectionauthor:: Peter Åstrand - **Source code:** :source:`Lib/subprocess.py` -------------- diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst index 264857f7b76aad..52a722608db431 100644 --- a/Doc/library/symtable.rst +++ b/Doc/library/symtable.rst @@ -8,10 +8,6 @@ -------------- -.. moduleauthor:: Jeremy Hylton -.. sectionauthor:: Benjamin Peterson - - Symbol tables are generated by the compiler from AST just before bytecode is generated. The symbol table is responsible for calculating the scope of every identifier in the code. :mod:`!symtable` provides an interface to examine these diff --git a/Doc/library/sysconfig.rst b/Doc/library/sysconfig.rst index 5c65d6fd016175..8aa912d99ba756 100644 --- a/Doc/library/sysconfig.rst +++ b/Doc/library/sysconfig.rst @@ -4,9 +4,6 @@ .. module:: sysconfig :synopsis: Python's configuration information -.. moduleauthor:: Tarek Ziadé -.. sectionauthor:: Tarek Ziadé - .. versionadded:: 3.2 **Source code:** :source:`Lib/sysconfig` diff --git a/Doc/library/tabnanny.rst b/Doc/library/tabnanny.rst index 4f61b3dd761400..570cc7fd93beef 100644 --- a/Doc/library/tabnanny.rst +++ b/Doc/library/tabnanny.rst @@ -5,11 +5,6 @@ :synopsis: Tool for detecting white space related problems in Python source files in a directory tree. -.. moduleauthor:: Tim Peters -.. sectionauthor:: Peter Funk - -.. rudimentary documentation based on module comments - **Source code:** :source:`Lib/tabnanny.py` -------------- diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index d162070e27a7d2..a86469bb9ad704 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -4,9 +4,6 @@ .. module:: tarfile :synopsis: Read and write tar-format archive files. -.. moduleauthor:: Lars Gustäbel -.. sectionauthor:: Lars Gustäbel - **Source code:** :source:`Lib/tarfile.py` -------------- diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst index 78d37d8135cc51..bf9198e175a0e1 100644 --- a/Doc/library/tempfile.rst +++ b/Doc/library/tempfile.rst @@ -4,8 +4,6 @@ .. module:: tempfile :synopsis: Generate temporary files and directories. -.. sectionauthor:: Zack Weinberg - **Source code:** :source:`Lib/tempfile.py` .. index:: diff --git a/Doc/library/test.rst b/Doc/library/test.rst index b5a3005f854410..7ae3fabf1cec64 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -4,8 +4,6 @@ .. module:: test :synopsis: Regression tests package containing the testing suite for Python. -.. sectionauthor:: Brett Cannon - .. note:: The :mod:`!test` package is meant for internal use by Python only. It is documented for the benefit of the core developers of Python. Any use of diff --git a/Doc/library/textwrap.rst b/Doc/library/textwrap.rst index c9230f7d82705f..d12968dee91f3c 100644 --- a/Doc/library/textwrap.rst +++ b/Doc/library/textwrap.rst @@ -4,9 +4,6 @@ .. module:: textwrap :synopsis: Text wrapping and filling -.. moduleauthor:: Greg Ward -.. sectionauthor:: Greg Ward - **Source code:** :source:`Lib/textwrap.py` -------------- diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 805f619eab8c07..a34b74a088874f 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -4,8 +4,6 @@ .. module:: tkinter :synopsis: Interface to Tcl/Tk for graphical user interfaces -.. moduleauthor:: Guido van Rossum - **Source code:** :source:`Lib/tkinter/__init__.py` -------------- diff --git a/Doc/library/tkinter.scrolledtext.rst b/Doc/library/tkinter.scrolledtext.rst index 6c3c74afd47d82..eb30b9c3eacc1b 100644 --- a/Doc/library/tkinter.scrolledtext.rst +++ b/Doc/library/tkinter.scrolledtext.rst @@ -4,8 +4,6 @@ .. module:: tkinter.scrolledtext :synopsis: Text widget with a vertical scroll bar. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/tkinter/scrolledtext.py` -------------- diff --git a/Doc/library/tkinter.ttk.rst b/Doc/library/tkinter.ttk.rst index 7db5756469976b..e1383e189a31a2 100644 --- a/Doc/library/tkinter.ttk.rst +++ b/Doc/library/tkinter.ttk.rst @@ -4,8 +4,6 @@ .. module:: tkinter.ttk :synopsis: Tk themed widget set -.. sectionauthor:: Guilherme Polo - **Source code:** :source:`Lib/tkinter/ttk.py` .. index:: single: ttk diff --git a/Doc/library/token.rst b/Doc/library/token.rst index fb826f5465bd80..3253be96238c35 100644 --- a/Doc/library/token.rst +++ b/Doc/library/token.rst @@ -4,8 +4,6 @@ .. module:: token :synopsis: Constants representing terminal nodes of the parse tree. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/token.py` -------------- diff --git a/Doc/library/tokenize.rst b/Doc/library/tokenize.rst index cf638f0b095bd6..3db4cf42c17f3d 100644 --- a/Doc/library/tokenize.rst +++ b/Doc/library/tokenize.rst @@ -4,9 +4,6 @@ .. module:: tokenize :synopsis: Lexical scanner for Python source code. -.. moduleauthor:: Ka Ping Yee -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/tokenize.py` -------------- diff --git a/Doc/library/tomllib.rst b/Doc/library/tomllib.rst index dc6e0cc178bf66..2bac968c2bea68 100644 --- a/Doc/library/tomllib.rst +++ b/Doc/library/tomllib.rst @@ -4,9 +4,6 @@ .. module:: tomllib :synopsis: Parse TOML files. -.. moduleauthor:: Taneli Hukkinen -.. sectionauthor:: Taneli Hukkinen - **Source code:** :source:`Lib/tomllib` -------------- diff --git a/Doc/library/tty.rst b/Doc/library/tty.rst index fe46be8b3211a2..9a8e69f09e8946 100644 --- a/Doc/library/tty.rst +++ b/Doc/library/tty.rst @@ -4,9 +4,6 @@ .. module:: tty :synopsis: Utility functions that perform common terminal control operations. -.. moduleauthor:: Steen Lumholt -.. sectionauthor:: Moshe Zadka - **Source code:** :source:`Lib/tty.py` -------------- diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index bfe93bc253d4fc..234042c661f51a 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -5,8 +5,6 @@ .. module:: turtle :synopsis: An educational framework for simple graphics applications -.. sectionauthor:: Gregor Lingl - **Source code:** :source:`Lib/turtle.py` .. testsetup:: default diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst index 838744c3f899b9..2fc8b1d8b52341 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -4,10 +4,6 @@ .. module:: unicodedata :synopsis: Access the Unicode Database. -.. moduleauthor:: Marc-André Lemburg -.. sectionauthor:: Marc-André Lemburg -.. sectionauthor:: Martin v. Löwis - .. index:: single: Unicode single: character diff --git a/Doc/library/unittest.mock-examples.rst b/Doc/library/unittest.mock-examples.rst index 61c75b5a03b103..7c81f52165972a 100644 --- a/Doc/library/unittest.mock-examples.rst +++ b/Doc/library/unittest.mock-examples.rst @@ -1,7 +1,6 @@ :mod:`!unittest.mock` --- getting started ========================================= -.. moduleauthor:: Michael Foord .. currentmodule:: unittest.mock .. versionadded:: 3.3 diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index 549b04997886fa..2ff1015af7a86e 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -4,7 +4,6 @@ .. module:: unittest.mock :synopsis: Mock object library. -.. moduleauthor:: Michael Foord .. currentmodule:: unittest.mock .. versionadded:: 3.3 diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 9677612823df40..c7682c2274633b 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -4,11 +4,6 @@ .. module:: unittest :synopsis: Unit testing framework for Python. -.. moduleauthor:: Steve Purcell -.. sectionauthor:: Steve Purcell -.. sectionauthor:: Fred L. Drake, Jr. -.. sectionauthor:: Raymond Hettinger - **Source code:** :source:`Lib/unittest/__init__.py` -------------- diff --git a/Doc/library/urllib.error.rst b/Doc/library/urllib.error.rst index dd2c9858eaad69..b8864e36981ab9 100644 --- a/Doc/library/urllib.error.rst +++ b/Doc/library/urllib.error.rst @@ -4,9 +4,6 @@ .. module:: urllib.error :synopsis: Exception classes raised by urllib.request. -.. moduleauthor:: Jeremy Hylton -.. sectionauthor:: Senthil Kumaran - **Source code:** :source:`Lib/urllib/error.py` -------------- diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index b857b2a235e1bd..64e915d042d4a0 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -4,10 +4,6 @@ .. module:: urllib.request :synopsis: Extensible library for opening URLs. -.. moduleauthor:: Jeremy Hylton -.. sectionauthor:: Moshe Zadka -.. sectionauthor:: Senthil Kumaran - **Source code:** :source:`Lib/urllib/request.py` -------------- diff --git a/Doc/library/urllib.robotparser.rst b/Doc/library/urllib.robotparser.rst index ba719ae084e7e0..492c65ae209d92 100644 --- a/Doc/library/urllib.robotparser.rst +++ b/Doc/library/urllib.robotparser.rst @@ -5,8 +5,6 @@ :synopsis: Load a robots.txt file and answer questions about fetchability of other URLs. -.. sectionauthor:: Skip Montanaro - **Source code:** :source:`Lib/urllib/robotparser.py` .. index:: diff --git a/Doc/library/uuid.rst b/Doc/library/uuid.rst index fe3a3a8e510bd8..4b505c81c06f0f 100644 --- a/Doc/library/uuid.rst +++ b/Doc/library/uuid.rst @@ -3,8 +3,6 @@ .. module:: uuid :synopsis: UUID objects (universally unique identifiers) according to RFC 9562 -.. moduleauthor:: Ka-Ping Yee -.. sectionauthor:: George Yoshida **Source code:** :source:`Lib/uuid.py` diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index c75d7348343e16..8bb267d5a0b958 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -4,9 +4,6 @@ .. module:: venv :synopsis: Creation of virtual environments. -.. moduleauthor:: Vinay Sajip -.. sectionauthor:: Vinay Sajip - .. versionadded:: 3.3 **Source code:** :source:`Lib/venv/` diff --git a/Doc/library/wave.rst b/Doc/library/wave.rst index da793a64c45f0d..6e61a1a44ad232 100644 --- a/Doc/library/wave.rst +++ b/Doc/library/wave.rst @@ -4,9 +4,6 @@ .. module:: wave :synopsis: Provide an interface to the WAV sound format. -.. sectionauthor:: Moshe Zadka -.. Documentations stolen from comments in file. - **Source code:** :source:`Lib/wave.py` -------------- diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst index 6dc5f90686c778..87dd860da4dcc4 100644 --- a/Doc/library/weakref.rst +++ b/Doc/library/weakref.rst @@ -6,11 +6,6 @@ .. module:: weakref :synopsis: Support for weak references and weak dictionaries. -.. moduleauthor:: Fred L. Drake, Jr. -.. moduleauthor:: Neil Schemenauer -.. moduleauthor:: Martin von Löwis -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/weakref.py` -------------- diff --git a/Doc/library/webbrowser.rst b/Doc/library/webbrowser.rst index 7b37b270e75343..389648d4f393e4 100644 --- a/Doc/library/webbrowser.rst +++ b/Doc/library/webbrowser.rst @@ -4,9 +4,6 @@ .. module:: webbrowser :synopsis: Easy-to-use controller for web browsers. -.. moduleauthor:: Fred L. Drake, Jr. -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/webbrowser.py` -------------- diff --git a/Doc/library/winreg.rst b/Doc/library/winreg.rst index 12f9252af9356e..2353bfd5281dab 100644 --- a/Doc/library/winreg.rst +++ b/Doc/library/winreg.rst @@ -4,8 +4,6 @@ .. module:: winreg :synopsis: Routines and objects for manipulating the Windows registry. -.. sectionauthor:: Mark Hammond - **Source code:** :source:`PC/winreg.c` -------------- diff --git a/Doc/library/winsound.rst b/Doc/library/winsound.rst index 730b1bac658002..6b5f88021489d3 100644 --- a/Doc/library/winsound.rst +++ b/Doc/library/winsound.rst @@ -4,9 +4,6 @@ .. module:: winsound :synopsis: Access to the sound-playing machinery for Windows. -.. moduleauthor:: Toby Dickenson -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`PC/winsound.c` -------------- diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst index 0ace7b72d32570..2af54dc2a7e632 100644 --- a/Doc/library/wsgiref.rst +++ b/Doc/library/wsgiref.rst @@ -4,9 +4,6 @@ .. module:: wsgiref :synopsis: WSGI Utilities and Reference Implementation. -.. moduleauthor:: Phillip J. Eby -.. sectionauthor:: Phillip J. Eby - **Source code:** :source:`Lib/wsgiref` -------------- diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index 321d93079bc6fa..1a5291d018ac70 100644 --- a/Doc/library/xml.dom.minidom.rst +++ b/Doc/library/xml.dom.minidom.rst @@ -4,10 +4,6 @@ .. module:: xml.dom.minidom :synopsis: Minimal Document Object Model (DOM) implementation. -.. moduleauthor:: Paul Prescod -.. sectionauthor:: Paul Prescod -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/xml/dom/minidom.py` -------------- diff --git a/Doc/library/xml.dom.pulldom.rst b/Doc/library/xml.dom.pulldom.rst index 5027596ed96ad5..52340ffe92eb85 100644 --- a/Doc/library/xml.dom.pulldom.rst +++ b/Doc/library/xml.dom.pulldom.rst @@ -4,8 +4,6 @@ .. module:: xml.dom.pulldom :synopsis: Support for building partial DOM trees from SAX events. -.. moduleauthor:: Paul Prescod - **Source code:** :source:`Lib/xml/dom/pulldom.py` -------------- diff --git a/Doc/library/xml.dom.rst b/Doc/library/xml.dom.rst index 8e5a3c13cfd860..34e58dcad93012 100644 --- a/Doc/library/xml.dom.rst +++ b/Doc/library/xml.dom.rst @@ -4,9 +4,6 @@ .. module:: xml.dom :synopsis: Document Object Model API for Python. -.. sectionauthor:: Paul Prescod -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/xml/dom/__init__.py` -------------- diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index 177be9ff4bad25..e021a81d2a2b87 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -4,8 +4,6 @@ .. module:: xml.etree.ElementTree :synopsis: Implementation of the ElementTree API. -.. moduleauthor:: Fredrik Lundh - **Source code:** :source:`Lib/xml/etree/ElementTree.py` -------------- diff --git a/Doc/library/xml.rst b/Doc/library/xml.rst index 81d47147f33816..a47d31465b19f1 100644 --- a/Doc/library/xml.rst +++ b/Doc/library/xml.rst @@ -6,9 +6,6 @@ XML Processing Modules .. module:: xml :synopsis: Package containing XML processing modules -.. sectionauthor:: Christian Heimes -.. sectionauthor:: Georg Brandl - **Source code:** :source:`Lib/xml/` -------------- diff --git a/Doc/library/xml.sax.handler.rst b/Doc/library/xml.sax.handler.rst index 5079fc0f19ea96..4188debf566d9b 100644 --- a/Doc/library/xml.sax.handler.rst +++ b/Doc/library/xml.sax.handler.rst @@ -4,9 +4,6 @@ .. module:: xml.sax.handler :synopsis: Base classes for SAX event handlers. -.. moduleauthor:: Lars Marius Garshol -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/xml/sax/handler.py` -------------- diff --git a/Doc/library/xml.sax.reader.rst b/Doc/library/xml.sax.reader.rst index b0bc84062e0719..1a5ab6a214f819 100644 --- a/Doc/library/xml.sax.reader.rst +++ b/Doc/library/xml.sax.reader.rst @@ -4,9 +4,6 @@ .. module:: xml.sax.xmlreader :synopsis: Interface which SAX-compliant XML parsers must implement. -.. moduleauthor:: Lars Marius Garshol -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/xml/sax/xmlreader.py` -------------- diff --git a/Doc/library/xml.sax.rst b/Doc/library/xml.sax.rst index 148cb863aca277..77234cac5d92ad 100644 --- a/Doc/library/xml.sax.rst +++ b/Doc/library/xml.sax.rst @@ -4,10 +4,6 @@ .. module:: xml.sax :synopsis: Package containing SAX2 base classes and convenience functions. -.. moduleauthor:: Lars Marius Garshol -.. sectionauthor:: Fred L. Drake, Jr. -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/xml/sax/__init__.py` -------------- diff --git a/Doc/library/xml.sax.utils.rst b/Doc/library/xml.sax.utils.rst index f93fe374e1c862..2de7ae2bda4260 100644 --- a/Doc/library/xml.sax.utils.rst +++ b/Doc/library/xml.sax.utils.rst @@ -4,9 +4,6 @@ .. module:: xml.sax.saxutils :synopsis: Convenience functions and classes for use with SAX. -.. moduleauthor:: Lars Marius Garshol -.. sectionauthor:: Martin v. Löwis - **Source code:** :source:`Lib/xml/sax/saxutils.py` -------------- diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index 75de47d9595628..8b3b3dcaa13447 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -4,9 +4,6 @@ .. module:: xmlrpc.client :synopsis: XML-RPC client access. -.. moduleauthor:: Fredrik Lundh -.. sectionauthor:: Eric S. Raymond - **Source code:** :source:`Lib/xmlrpc/client.py` .. XXX Not everything is documented yet. It might be good to describe diff --git a/Doc/library/xmlrpc.server.rst b/Doc/library/xmlrpc.server.rst index 9f16c470567406..2c130785be0db0 100644 --- a/Doc/library/xmlrpc.server.rst +++ b/Doc/library/xmlrpc.server.rst @@ -4,9 +4,6 @@ .. module:: xmlrpc.server :synopsis: Basic XML-RPC server implementations. -.. moduleauthor:: Brian Quinlan -.. sectionauthor:: Fred L. Drake, Jr. - **Source code:** :source:`Lib/xmlrpc/server.py` -------------- diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index 082c4f8d3b40c3..2d9231707d9f2d 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -4,9 +4,6 @@ .. module:: zipfile :synopsis: Read and write ZIP-format archive files. -.. moduleauthor:: James C. Ahlstrom -.. sectionauthor:: James C. Ahlstrom - **Source code:** :source:`Lib/zipfile/` -------------- diff --git a/Doc/library/zipimport.rst b/Doc/library/zipimport.rst index 97f3ede21525cf..a4136733a55030 100644 --- a/Doc/library/zipimport.rst +++ b/Doc/library/zipimport.rst @@ -4,8 +4,6 @@ .. module:: zipimport :synopsis: Support for importing Python modules from ZIP archives. -.. moduleauthor:: Just van Rossum - **Source code:** :source:`Lib/zipimport.py` -------------- diff --git a/Doc/library/zoneinfo.rst b/Doc/library/zoneinfo.rst index 099b50b0747504..cba08d6614fc08 100644 --- a/Doc/library/zoneinfo.rst +++ b/Doc/library/zoneinfo.rst @@ -6,9 +6,6 @@ .. versionadded:: 3.9 -.. moduleauthor:: Paul Ganssle -.. sectionauthor:: Paul Ganssle - **Source code:** :source:`Lib/zoneinfo` -------------- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index bee6cc39fafcdb..8bac8df4368c00 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -1068,7 +1068,6 @@ Here is an example of a multi-line docstring:: Function Annotations -------------------- -.. sectionauthor:: Zachary Ware .. index:: pair: function; annotations single: ->; function annotations @@ -1102,7 +1101,6 @@ value annotated:: Intermezzo: Coding Style ======================== -.. sectionauthor:: Georg Brandl .. index:: pair: coding; style Now that you are about to write longer, more complex pieces of Python, it is a diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index fe62ee153fe034..eba2474cd4009d 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -136,9 +136,6 @@ comparison. Using Lists as Stacks --------------------- -.. sectionauthor:: Ka-Ping Yee - - The list methods make it very easy to use a list as a stack, where the last element added is the first element retrieved ("last-in, first-out"). To add an item to the top of the stack, use :meth:`~list.append`. To retrieve an item from the @@ -166,8 +163,6 @@ top of the stack, use :meth:`~list.pop` without an explicit index. For example: Using Lists as Queues --------------------- -.. sectionauthor:: Ka-Ping Yee - It is also possible to use a list as a queue, where the first element added is the first element retrieved ("first-in, first-out"); however, lists are not efficient for this purpose. While appends and pops from the end of list are diff --git a/Doc/tutorial/floatingpoint.rst b/Doc/tutorial/floatingpoint.rst index dfe2d1d3a8378f..37e23ba1cd0c81 100644 --- a/Doc/tutorial/floatingpoint.rst +++ b/Doc/tutorial/floatingpoint.rst @@ -9,10 +9,6 @@ Floating-Point Arithmetic: Issues and Limitations ************************************************** -.. sectionauthor:: Tim Peters -.. sectionauthor:: Raymond Hettinger - - Floating-point numbers are represented in computer hardware as base 2 (binary) fractions. For example, the **decimal** fraction ``0.625`` has value 6/10 + 2/100 + 5/1000, and in the same way the **binary** fraction ``0.101`` diff --git a/Doc/using/mac.rst b/Doc/using/mac.rst index 2fd6eace2b5dda..6cf945de5b3f3b 100644 --- a/Doc/using/mac.rst +++ b/Doc/using/mac.rst @@ -5,9 +5,6 @@ Using Python on macOS ********************* -.. sectionauthor:: Bob Savage -.. sectionauthor:: Ned Deily - This document aims to give an overview of macOS-specific behavior you should know about to get started with Python on Mac computers. Python on a Mac running macOS is very similar to Python on other Unix-derived platforms, diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst index a9950ef7525497..829bdfe8b1121f 100644 --- a/Doc/using/unix.rst +++ b/Doc/using/unix.rst @@ -6,9 +6,6 @@ Using Python on Unix platforms ******************************** -.. sectionauthor:: Shriphani Palakodety - - Getting and installing the latest version of Python =================================================== diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index d286788e8054cc..69fe89290e3b27 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -12,8 +12,6 @@ Using Python on Windows ************************* -.. sectionauthor:: Steve Dower - This document aims to give an overview of Windows-specific behaviour you should know about when using Python on Microsoft Windows. diff --git a/Misc/ACKS b/Misc/ACKS index 4295eff8c1e225..3464bd95bac791 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -122,6 +122,7 @@ Don Bashford Pior Bastida Nick Bastin Ned Batchelder +Facundo Batista Jeff Bauer Michael R Bax Anthony Baxter @@ -328,6 +329,7 @@ David Chaum Nicolas Chauvat Jerry Chen Michael Chermside +Dmitry Chestnykh Ingrid Cheung Adam Chhina Terry Chia @@ -424,6 +426,7 @@ Eric Daniel Scott David Daniels Derzsi Dániel Lawrence D'Anna +Steven D'Aprano Ben Darnell Kushal Das Jonathan Dasteel @@ -500,6 +503,7 @@ Eugene Dvurechenski Karmen Dykstra Josip Dzolonga Maxim Dzumanenko +Phillip J. Eby Hans Eckardt Rodolpho Eckhardt Ulrich Eckhardt @@ -738,6 +742,7 @@ Derek Harland Jason Harper David Harrigan Brian Harring +Peter Harris Jonathan Hartley Travis B. Hartwell Henrik Harutyunyan @@ -758,6 +763,7 @@ Tim Heaney Henrik Heimbuerger Christian Heimes Thomas Heller +Doug Hellmann Malte Helmert Lance Finn Helsten Gordon P. Hemsley @@ -844,6 +850,7 @@ Lawrence Hudson Michael Hudson Roberto Hueso Gomez Jim Hugunin +Taneli Hukkinen Greg Humphreys Chris Hunt Eric Huss @@ -1051,6 +1058,7 @@ Jon Kuhn Andrei Kulakov Ilya Kulakov Upendra Kumar +Senthil Kumaran Toshio Kuratomi Ilia Kurenkov Vladimir Kushnir @@ -1159,6 +1167,7 @@ Yuan Liu Nick Lockwood Stephanie Lockwood Martin von Löwis +Edward Loper Hugo Lopes Tavares Guillermo López-Anglada Anne Lord @@ -1175,6 +1184,7 @@ Kang-Hao (Kenny) Lu Raymond Lu Lukas Lueg Loren Luke +Steen Lumholt Fredrik Lundh Mike Lundy Zhongyue Luo @@ -1661,6 +1671,7 @@ Amit Saha Suman Saha Koki Saito Hajime Saitou +Vinay Sajip George Sakkis Victor Salgado Rich Salz @@ -2134,6 +2145,7 @@ Alakshendra Yadav Hirokazu Yamamoto Masayuki Yamamoto Zhikang Yan +Jeffrey Yasskin Jingchen Ye Ka-Ping Yee Chi Hsuan Yen From 175ab31377d9e616efb95168099d8c2c9036504a Mon Sep 17 00:00:00 2001 From: Anton Ryzhov Date: Fri, 20 Feb 2026 08:56:56 +0100 Subject: [PATCH 082/110] Update comments in `_strptime` module (GH-144979) Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- Lib/_strptime.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Lib/_strptime.py b/Lib/_strptime.py index fe34808d88769a..0d81ff6765e1ed 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -7,7 +7,7 @@ FUNCTIONS: _getlang -- Figure out what language is being used for the locale - strptime -- Calculates the time struct represented by the passed-in string + _strptime -- Calculates the time struct represented by the passed-in string """ import os @@ -518,9 +518,10 @@ def _calc_julian_from_U_or_W(year, week_of_year, day_of_week, week_starts_Mon): def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"): - """Return a 2-tuple consisting of a time struct and an int containing - the number of microseconds based on the input string and the - format string.""" + """Return a 3-tuple consisting of a tuple with time components, + an int containing the number of microseconds, and an int + containing the microseconds part of the GMT offset, based on the + input string and the format string.""" for index, arg in enumerate([data_string, format]): if not isinstance(arg, str): From 60f3c396fe5dc56bc3a56341e2d31fd6061bb068 Mon Sep 17 00:00:00 2001 From: Peter Bierma Date: Fri, 20 Feb 2026 11:37:39 -0500 Subject: [PATCH 083/110] gh-141811: Split up `init.rst` into multiple pages (GH-144844) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Benedikt Johannes --- Doc/c-api/index.rst | 9 +- Doc/c-api/init.rst | 2758 +------------------------------- Doc/c-api/interp-lifecycle.rst | 797 +++++++++ Doc/c-api/profiling.rst | 239 +++ Doc/c-api/subinterpreters.rst | 470 ++++++ Doc/c-api/synchronization.rst | 308 ++++ Doc/c-api/threads.rst | 827 ++++++++++ Doc/c-api/tls.rst | 155 ++ 8 files changed, 2813 insertions(+), 2750 deletions(-) create mode 100644 Doc/c-api/interp-lifecycle.rst create mode 100644 Doc/c-api/profiling.rst create mode 100644 Doc/c-api/subinterpreters.rst create mode 100644 Doc/c-api/synchronization.rst create mode 100644 Doc/c-api/threads.rst create mode 100644 Doc/c-api/tls.rst diff --git a/Doc/c-api/index.rst b/Doc/c-api/index.rst index e9df2a304d975b..eabe00f4004001 100644 --- a/Doc/c-api/index.rst +++ b/Doc/c-api/index.rst @@ -1,7 +1,7 @@ .. _c-api-index: ################################## - Python/C API Reference Manual + Python/C API reference manual ################################## This manual documents the API used by C and C++ programmers who want to write @@ -21,7 +21,12 @@ document the API functions in detail. utilities.rst abstract.rst concrete.rst - init.rst + interp-lifecycle.rst + threads.rst + synchronization.rst + tls.rst + subinterpreters.rst + profiling.rst init_config.rst memory.rst objimpl.rst diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 52ed9e0647780b..e56c67f95348c7 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -1,2751 +1,13 @@ -.. highlight:: c +:orphan: +Initialization, finalization, and threads +========================================= -.. _initialization: +This page has been split up into the following: -***************************************** -Initialization, Finalization, and Threads -***************************************** - -See :ref:`Python Initialization Configuration ` for details -on how to configure the interpreter prior to initialization. - -.. _pre-init-safe: - -Before Python Initialization -============================ - -In an application embedding Python, the :c:func:`Py_Initialize` function must -be called before using any other Python/C API functions; with the exception of -a few functions and the :ref:`global configuration variables -`. - -The following functions can be safely called before Python is initialized: - -* Functions that initialize the interpreter: - - * :c:func:`Py_Initialize` - * :c:func:`Py_InitializeEx` - * :c:func:`Py_InitializeFromConfig` - * :c:func:`Py_BytesMain` - * :c:func:`Py_Main` - * the runtime pre-initialization functions covered in :ref:`init-config` - -* Configuration functions: - - * :c:func:`PyImport_AppendInittab` - * :c:func:`PyImport_ExtendInittab` - * :c:func:`!PyInitFrozenExtensions` - * :c:func:`PyMem_SetAllocator` - * :c:func:`PyMem_SetupDebugHooks` - * :c:func:`PyObject_SetArenaAllocator` - * :c:func:`Py_SetProgramName` - * :c:func:`Py_SetPythonHome` - * the configuration functions covered in :ref:`init-config` - -* Informative functions: - - * :c:func:`Py_IsInitialized` - * :c:func:`PyMem_GetAllocator` - * :c:func:`PyObject_GetArenaAllocator` - * :c:func:`Py_GetBuildInfo` - * :c:func:`Py_GetCompiler` - * :c:func:`Py_GetCopyright` - * :c:func:`Py_GetPlatform` - * :c:func:`Py_GetVersion` - * :c:func:`Py_IsInitialized` - -* Utilities: - - * :c:func:`Py_DecodeLocale` - * the status reporting and utility functions covered in :ref:`init-config` - -* Memory allocators: - - * :c:func:`PyMem_RawMalloc` - * :c:func:`PyMem_RawRealloc` - * :c:func:`PyMem_RawCalloc` - * :c:func:`PyMem_RawFree` - -* Synchronization: - - * :c:func:`PyMutex_Lock` - * :c:func:`PyMutex_Unlock` - -.. note:: - - Despite their apparent similarity to some of the functions listed above, - the following functions **should not be called** before the interpreter has - been initialized: :c:func:`Py_EncodeLocale`, :c:func:`PyEval_InitThreads`, and - :c:func:`Py_RunMain`. - - -.. _global-conf-vars: - -Global configuration variables -============================== - -Python has variables for the global configuration to control different features -and options. By default, these flags are controlled by :ref:`command line -options `. - -When a flag is set by an option, the value of the flag is the number of times -that the option was set. For example, ``-b`` sets :c:data:`Py_BytesWarningFlag` -to 1 and ``-bb`` sets :c:data:`Py_BytesWarningFlag` to 2. - -.. c:var:: int Py_BytesWarningFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.bytes_warning` should be used instead, see :ref:`Python - Initialization Configuration `. - - Issue a warning when comparing :class:`bytes` or :class:`bytearray` with - :class:`str` or :class:`bytes` with :class:`int`. Issue an error if greater - or equal to ``2``. - - Set by the :option:`-b` option. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_DebugFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.parser_debug` should be used instead, see :ref:`Python - Initialization Configuration `. - - Turn on parser debugging output (for expert only, depending on compilation - options). - - Set by the :option:`-d` option and the :envvar:`PYTHONDEBUG` environment - variable. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_DontWriteBytecodeFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.write_bytecode` should be used instead, see :ref:`Python - Initialization Configuration `. - - If set to non-zero, Python won't try to write ``.pyc`` files on the - import of source modules. - - Set by the :option:`-B` option and the :envvar:`PYTHONDONTWRITEBYTECODE` - environment variable. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_FrozenFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.pathconfig_warnings` should be used instead, see - :ref:`Python Initialization Configuration `. - - Private flag used by ``_freeze_module`` and ``frozenmain`` programs. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_HashRandomizationFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.hash_seed` and :c:member:`PyConfig.use_hash_seed` should - be used instead, see :ref:`Python Initialization Configuration - `. - - Set to ``1`` if the :envvar:`PYTHONHASHSEED` environment variable is set to - a non-empty string. - - If the flag is non-zero, read the :envvar:`PYTHONHASHSEED` environment - variable to initialize the secret hash seed. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_IgnoreEnvironmentFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.use_environment` should be used instead, see - :ref:`Python Initialization Configuration `. - - Ignore all :envvar:`!PYTHON*` environment variables, e.g. - :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set. - - Set by the :option:`-E` and :option:`-I` options. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_InspectFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.inspect` should be used instead, see - :ref:`Python Initialization Configuration `. - - When a script is passed as first argument or the :option:`-c` option is used, - enter interactive mode after executing the script or the command, even when - :data:`sys.stdin` does not appear to be a terminal. - - Set by the :option:`-i` option and the :envvar:`PYTHONINSPECT` environment - variable. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_InteractiveFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.interactive` should be used instead, see - :ref:`Python Initialization Configuration `. - - Set by the :option:`-i` option. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_IsolatedFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.isolated` should be used instead, see - :ref:`Python Initialization Configuration `. - - Run Python in isolated mode. In isolated mode :data:`sys.path` contains - neither the script's directory nor the user's site-packages directory. - - Set by the :option:`-I` option. - - .. versionadded:: 3.4 - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_LegacyWindowsFSEncodingFlag - - This API is kept for backward compatibility: setting - :c:member:`PyPreConfig.legacy_windows_fs_encoding` should be used instead, see - :ref:`Python Initialization Configuration `. - - If the flag is non-zero, use the ``mbcs`` encoding with ``replace`` error - handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler, - for the :term:`filesystem encoding and error handler`. - - Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment - variable is set to a non-empty string. - - See :pep:`529` for more details. - - .. availability:: Windows. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_LegacyWindowsStdioFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.legacy_windows_stdio` should be used instead, see - :ref:`Python Initialization Configuration `. - - If the flag is non-zero, use :class:`io.FileIO` instead of - :class:`!io._WindowsConsoleIO` for :mod:`sys` standard streams. - - Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment - variable is set to a non-empty string. - - See :pep:`528` for more details. - - .. availability:: Windows. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_NoSiteFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.site_import` should be used instead, see - :ref:`Python Initialization Configuration `. - - Disable the import of the module :mod:`site` and the site-dependent - manipulations of :data:`sys.path` that it entails. Also disable these - manipulations if :mod:`site` is explicitly imported later (call - :func:`site.main` if you want them to be triggered). - - Set by the :option:`-S` option. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_NoUserSiteDirectory - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.user_site_directory` should be used instead, see - :ref:`Python Initialization Configuration `. - - Don't add the :data:`user site-packages directory ` to - :data:`sys.path`. - - Set by the :option:`-s` and :option:`-I` options, and the - :envvar:`PYTHONNOUSERSITE` environment variable. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_OptimizeFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.optimization_level` should be used instead, see - :ref:`Python Initialization Configuration `. - - Set by the :option:`-O` option and the :envvar:`PYTHONOPTIMIZE` environment - variable. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_QuietFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.quiet` should be used instead, see :ref:`Python - Initialization Configuration `. - - Don't display the copyright and version messages even in interactive mode. - - Set by the :option:`-q` option. - - .. versionadded:: 3.2 - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_UnbufferedStdioFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.buffered_stdio` should be used instead, see :ref:`Python - Initialization Configuration `. - - Force the stdout and stderr streams to be unbuffered. - - Set by the :option:`-u` option and the :envvar:`PYTHONUNBUFFERED` - environment variable. - - .. deprecated-removed:: 3.12 3.15 - -.. c:var:: int Py_VerboseFlag - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.verbose` should be used instead, see :ref:`Python - Initialization Configuration `. - - Print a message each time a module is initialized, showing the place - (filename or built-in module) from which it is loaded. If greater or equal - to ``2``, print a message for each file that is checked for when - searching for a module. Also provides information on module cleanup at exit. - - Set by the :option:`-v` option and the :envvar:`PYTHONVERBOSE` environment - variable. - - .. deprecated-removed:: 3.12 3.15 - - -Initializing and finalizing the interpreter -=========================================== - - -.. c:function:: void Py_Initialize() - - .. index:: - single: PyEval_InitThreads() - single: modules (in module sys) - single: path (in module sys) - pair: module; builtins - pair: module; __main__ - pair: module; sys - triple: module; search; path - single: Py_FinalizeEx (C function) - - Initialize the Python interpreter. In an application embedding Python, - this should be called before using any other Python/C API functions; see - :ref:`Before Python Initialization ` for the few exceptions. - - This initializes the table of loaded modules (``sys.modules``), and creates - the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. - It also initializes the module search path (``sys.path``). It does not set - ``sys.argv``; use the :ref:`Python Initialization Configuration ` - API for that. This is a no-op when called for a second time (without calling - :c:func:`Py_FinalizeEx` first). There is no return value; it is a fatal - error if the initialization fails. - - Use :c:func:`Py_InitializeFromConfig` to customize the - :ref:`Python Initialization Configuration `. - - .. note:: - On Windows, changes the console mode from ``O_TEXT`` to ``O_BINARY``, - which will also affect non-Python uses of the console using the C Runtime. - - -.. c:function:: void Py_InitializeEx(int initsigs) - - This function works like :c:func:`Py_Initialize` if *initsigs* is ``1``. If - *initsigs* is ``0``, it skips initialization registration of signal handlers, - which may be useful when CPython is embedded as part of a larger application. - - Use :c:func:`Py_InitializeFromConfig` to customize the - :ref:`Python Initialization Configuration `. - - -.. c:function:: PyStatus Py_InitializeFromConfig(const PyConfig *config) - - Initialize Python from *config* configuration, as described in - :ref:`init-from-config`. - - See the :ref:`init-config` section for details on pre-initializing the - interpreter, populating the runtime configuration structure, and querying - the returned status structure. - - -.. c:function:: int Py_IsInitialized() - - Return true (nonzero) when the Python interpreter has been initialized, false - (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns false until - :c:func:`Py_Initialize` is called again. - - -.. c:function:: int Py_IsFinalizing() - - Return true (non-zero) if the main Python interpreter is - :term:`shutting down `. Return false (zero) otherwise. - - .. versionadded:: 3.13 - - -.. c:function:: int Py_FinalizeEx() - - Undo all initializations made by :c:func:`Py_Initialize` and subsequent use of - Python/C API functions, and destroy all sub-interpreters (see - :c:func:`Py_NewInterpreter` below) that were created and not yet destroyed since - the last call to :c:func:`Py_Initialize`. This is a no-op when called for a second - time (without calling :c:func:`Py_Initialize` again first). - - Since this is the reverse of :c:func:`Py_Initialize`, it should be called - in the same thread with the same interpreter active. That means - the main thread and the main interpreter. - This should never be called while :c:func:`Py_RunMain` is running. - - Normally the return value is ``0``. - If there were errors during finalization (flushing buffered data), - ``-1`` is returned. - - Note that Python will do a best effort at freeing all memory allocated by the Python - interpreter. Therefore, any C-Extension should make sure to correctly clean up all - of the previously allocated PyObjects before using them in subsequent calls to - :c:func:`Py_Initialize`. Otherwise it could introduce vulnerabilities and incorrect - behavior. - - This function is provided for a number of reasons. An embedding application - might want to restart Python without having to restart the application itself. - An application that has loaded the Python interpreter from a dynamically - loadable library (or DLL) might want to free all memory allocated by Python - before unloading the DLL. During a hunt for memory leaks in an application a - developer might want to free all memory allocated by Python before exiting from - the application. - - **Bugs and caveats:** The destruction of modules and objects in modules is done - in random order; this may cause destructors (:meth:`~object.__del__` methods) to fail - when they depend on other objects (even functions) or modules. Dynamically - loaded extension modules loaded by Python are not unloaded. Small amounts of - memory allocated by the Python interpreter may not be freed (if you find a leak, - please report it). Memory tied up in circular references between objects is not - freed. Interned strings will all be deallocated regardless of their reference count. - Some memory allocated by extension modules may not be freed. Some extensions may not - work properly if their initialization routine is called more than once; this can - happen if an application calls :c:func:`Py_Initialize` and :c:func:`Py_FinalizeEx` - more than once. :c:func:`Py_FinalizeEx` must not be called recursively from - within itself. Therefore, it must not be called by any code that may be run - as part of the interpreter shutdown process, such as :py:mod:`atexit` - handlers, object finalizers, or any code that may be run while flushing the - stdout and stderr files. - - .. audit-event:: cpython._PySys_ClearAuditHooks "" c.Py_FinalizeEx - - .. versionadded:: 3.6 - - -.. c:function:: void Py_Finalize() - - This is a backwards-compatible version of :c:func:`Py_FinalizeEx` that - disregards the return value. - - -.. c:function:: int Py_BytesMain(int argc, char **argv) - - Similar to :c:func:`Py_Main` but *argv* is an array of bytes strings, - allowing the calling application to delegate the text decoding step to - the CPython runtime. - - .. versionadded:: 3.8 - - -.. c:function:: int Py_Main(int argc, wchar_t **argv) - - The main program for the standard interpreter, encapsulating a full - initialization/finalization cycle, as well as additional - behaviour to implement reading configurations settings from the environment - and command line, and then executing ``__main__`` in accordance with - :ref:`using-on-cmdline`. - - This is made available for programs which wish to support the full CPython - command line interface, rather than just embedding a Python runtime in a - larger application. - - The *argc* and *argv* parameters are similar to those which are passed to a - C program's :c:func:`main` function, except that the *argv* entries are first - converted to ``wchar_t`` using :c:func:`Py_DecodeLocale`. It is also - important to note that the argument list entries may be modified to point to - strings other than those passed in (however, the contents of the strings - pointed to by the argument list are not modified). - - The return value is ``2`` if the argument list does not represent a valid - Python command line, and otherwise the same as :c:func:`Py_RunMain`. - - In terms of the CPython runtime configuration APIs documented in the - :ref:`runtime configuration ` section (and without accounting - for error handling), ``Py_Main`` is approximately equivalent to:: - - PyConfig config; - PyConfig_InitPythonConfig(&config); - PyConfig_SetArgv(&config, argc, argv); - Py_InitializeFromConfig(&config); - PyConfig_Clear(&config); - - Py_RunMain(); - - In normal usage, an embedding application will call this function - *instead* of calling :c:func:`Py_Initialize`, :c:func:`Py_InitializeEx` or - :c:func:`Py_InitializeFromConfig` directly, and all settings will be applied - as described elsewhere in this documentation. If this function is instead - called *after* a preceding runtime initialization API call, then exactly - which environmental and command line configuration settings will be updated - is version dependent (as it depends on which settings correctly support - being modified after they have already been set once when the runtime was - first initialized). - - -.. c:function:: int Py_RunMain(void) - - Executes the main module in a fully configured CPython runtime. - - Executes the command (:c:member:`PyConfig.run_command`), the script - (:c:member:`PyConfig.run_filename`) or the module - (:c:member:`PyConfig.run_module`) specified on the command line or in the - configuration. If none of these values are set, runs the interactive Python - prompt (REPL) using the ``__main__`` module's global namespace. - - If :c:member:`PyConfig.inspect` is not set (the default), the return value - will be ``0`` if the interpreter exits normally (that is, without raising - an exception), the exit status of an unhandled :exc:`SystemExit`, or ``1`` - for any other unhandled exception. - - If :c:member:`PyConfig.inspect` is set (such as when the :option:`-i` option - is used), rather than returning when the interpreter exits, execution will - instead resume in an interactive Python prompt (REPL) using the ``__main__`` - module's global namespace. If the interpreter exited with an exception, it - is immediately raised in the REPL session. The function return value is - then determined by the way the *REPL session* terminates: ``0``, ``1``, or - the status of a :exc:`SystemExit`, as specified above. - - This function always finalizes the Python interpreter before it returns. - - See :ref:`Python Configuration ` for an example of a - customized Python that always runs in isolated mode using - :c:func:`Py_RunMain`. - -.. c:function:: int PyUnstable_AtExit(PyInterpreterState *interp, void (*func)(void *), void *data) - - Register an :mod:`atexit` callback for the target interpreter *interp*. - This is similar to :c:func:`Py_AtExit`, but takes an explicit interpreter and - data pointer for the callback. - - There must be an :term:`attached thread state` for *interp*. - - .. versionadded:: 3.13 - -Process-wide parameters -======================= - - -.. c:function:: void Py_SetProgramName(const wchar_t *name) - - .. index:: - single: Py_Initialize() - single: main() - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.program_name` should be used instead, see :ref:`Python - Initialization Configuration `. - - This function should be called before :c:func:`Py_Initialize` is called for - the first time, if it is called at all. It tells the interpreter the value - of the ``argv[0]`` argument to the :c:func:`main` function of the program - (converted to wide characters). - This is used by some other functions below to find - the Python run-time libraries relative to the interpreter executable. The - default value is ``'python'``. The argument should point to a - zero-terminated wide character string in static storage whose contents will not - change for the duration of the program's execution. No code in the Python - interpreter will change the contents of this storage. - - Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a - :c:expr:`wchar_t*` string. - - .. deprecated-removed:: 3.11 3.15 - - -.. c:function:: const char* Py_GetVersion() - - Return the version of this Python interpreter. This is a string that looks - something like :: - - "3.0a5+ (py3k:63103M, May 12 2008, 00:53:55) \n[GCC 4.2.3]" - - .. index:: single: version (in module sys) - - The first word (up to the first space character) is the current Python version; - the first characters are the major and minor version separated by a - period. The returned string points into static storage; the caller should not - modify its value. The value is available to Python code as :data:`sys.version`. - - See also the :c:var:`Py_Version` constant. - - -.. c:function:: const char* Py_GetPlatform() - - .. index:: single: platform (in module sys) - - Return the platform identifier for the current platform. On Unix, this is - formed from the "official" name of the operating system, converted to lower - case, followed by the major revision number; e.g., for Solaris 2.x, which is - also known as SunOS 5.x, the value is ``'sunos5'``. On macOS, it is - ``'darwin'``. On Windows, it is ``'win'``. The returned string points into - static storage; the caller should not modify its value. The value is available - to Python code as ``sys.platform``. - - -.. c:function:: const char* Py_GetCopyright() - - Return the official copyright string for the current Python version, for example - - ``'Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam'`` - - .. index:: single: copyright (in module sys) - - The returned string points into static storage; the caller should not modify its - value. The value is available to Python code as ``sys.copyright``. - - -.. c:function:: const char* Py_GetCompiler() - - Return an indication of the compiler used to build the current Python version, - in square brackets, for example:: - - "[GCC 2.7.2.2]" - - .. index:: single: version (in module sys) - - The returned string points into static storage; the caller should not modify its - value. The value is available to Python code as part of the variable - ``sys.version``. - - -.. c:function:: const char* Py_GetBuildInfo() - - Return information about the sequence number and build date and time of the - current Python interpreter instance, for example :: - - "#67, Aug 1 1997, 22:34:28" - - .. index:: single: version (in module sys) - - The returned string points into static storage; the caller should not modify its - value. The value is available to Python code as part of the variable - ``sys.version``. - - -.. c:function:: void PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath) - - .. index:: - single: main() - single: Py_FatalError() - single: argv (in module sys) - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.argv`, :c:member:`PyConfig.parse_argv` and - :c:member:`PyConfig.safe_path` should be used instead, see :ref:`Python - Initialization Configuration `. - - Set :data:`sys.argv` based on *argc* and *argv*. These parameters are - similar to those passed to the program's :c:func:`main` function with the - difference that the first entry should refer to the script file to be - executed rather than the executable hosting the Python interpreter. If there - isn't a script that will be run, the first entry in *argv* can be an empty - string. If this function fails to initialize :data:`sys.argv`, a fatal - condition is signalled using :c:func:`Py_FatalError`. - - If *updatepath* is zero, this is all the function does. If *updatepath* - is non-zero, the function also modifies :data:`sys.path` according to the - following algorithm: - - - If the name of an existing script is passed in ``argv[0]``, the absolute - path of the directory where the script is located is prepended to - :data:`sys.path`. - - Otherwise (that is, if *argc* is ``0`` or ``argv[0]`` doesn't point - to an existing file name), an empty string is prepended to - :data:`sys.path`, which is the same as prepending the current working - directory (``"."``). - - Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a - :c:expr:`wchar_t*` string. - - See also :c:member:`PyConfig.orig_argv` and :c:member:`PyConfig.argv` - members of the :ref:`Python Initialization Configuration `. - - .. note:: - It is recommended that applications embedding the Python interpreter - for purposes other than executing a single script pass ``0`` as *updatepath*, - and update :data:`sys.path` themselves if desired. - See :cve:`2008-5983`. - - On versions before 3.1.3, you can achieve the same effect by manually - popping the first :data:`sys.path` element after having called - :c:func:`PySys_SetArgv`, for example using:: - - PyRun_SimpleString("import sys; sys.path.pop(0)\n"); - - .. versionadded:: 3.1.3 - - .. XXX impl. doesn't seem consistent in allowing ``0``/``NULL`` for the params; - check w/ Guido. - - .. deprecated-removed:: 3.11 3.15 - - -.. c:function:: void PySys_SetArgv(int argc, wchar_t **argv) - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.argv` and :c:member:`PyConfig.parse_argv` should be used - instead, see :ref:`Python Initialization Configuration `. - - This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set - to ``1`` unless the :program:`python` interpreter was started with the - :option:`-I`. - - Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a - :c:expr:`wchar_t*` string. - - See also :c:member:`PyConfig.orig_argv` and :c:member:`PyConfig.argv` - members of the :ref:`Python Initialization Configuration `. - - .. versionchanged:: 3.4 The *updatepath* value depends on :option:`-I`. - - .. deprecated-removed:: 3.11 3.15 - - -.. c:function:: void Py_SetPythonHome(const wchar_t *home) - - This API is kept for backward compatibility: setting - :c:member:`PyConfig.home` should be used instead, see :ref:`Python - Initialization Configuration `. - - Set the default "home" directory, that is, the location of the standard - Python libraries. See :envvar:`PYTHONHOME` for the meaning of the - argument string. - - The argument should point to a zero-terminated character string in static - storage whose contents will not change for the duration of the program's - execution. No code in the Python interpreter will change the contents of - this storage. - - Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a - :c:expr:`wchar_t*` string. - - .. deprecated-removed:: 3.11 3.15 - - -.. _threads: - -Thread State and the Global Interpreter Lock -============================================ - -.. index:: - single: global interpreter lock - single: interpreter lock - single: lock, interpreter - -Unless on a :term:`free-threaded ` build of :term:`CPython`, -the Python interpreter is not fully thread-safe. In order to support -multi-threaded Python programs, there's a global lock, called the :term:`global -interpreter lock` or :term:`GIL`, that must be held by the current thread before -it can safely access Python objects. Without the lock, even the simplest -operations could cause problems in a multi-threaded program: for example, when -two threads simultaneously increment the reference count of the same object, the -reference count could end up being incremented only once instead of twice. - -.. index:: single: setswitchinterval (in module sys) - -Therefore, the rule exists that only the thread that has acquired the -:term:`GIL` may operate on Python objects or call Python/C API functions. -In order to emulate concurrency of execution, the interpreter regularly -tries to switch threads (see :func:`sys.setswitchinterval`). The lock is also -released around potentially blocking I/O operations like reading or writing -a file, so that other Python threads can run in the meantime. - -.. index:: - single: PyThreadState (C type) - -The Python interpreter keeps some thread-specific bookkeeping information -inside a data structure called :c:type:`PyThreadState`, known as a :term:`thread state`. -Each OS thread has a thread-local pointer to a :c:type:`PyThreadState`; a thread state -referenced by this pointer is considered to be :term:`attached `. - -A thread can only have one :term:`attached thread state` at a time. An attached -thread state is typically analogous with holding the :term:`GIL`, except on -:term:`free-threaded ` builds. On builds with the :term:`GIL` enabled, -:term:`attaching ` a thread state will block until the :term:`GIL` -can be acquired. However, even on builds with the :term:`GIL` disabled, it is still required -to have an attached thread state to call most of the C API. - -In general, there will always be an :term:`attached thread state` when using Python's C API. -Only in some specific cases (such as in a :c:macro:`Py_BEGIN_ALLOW_THREADS` block) will the -thread not have an attached thread state. If uncertain, check if :c:func:`PyThreadState_GetUnchecked` returns -``NULL``. - -Detaching the thread state from extension code ----------------------------------------------- - -Most extension code manipulating the :term:`thread state` has the following simple -structure:: - - Save the thread state in a local variable. - ... Do some blocking I/O operation ... - Restore the thread state from the local variable. - -This is so common that a pair of macros exists to simplify it:: - - Py_BEGIN_ALLOW_THREADS - ... Do some blocking I/O operation ... - Py_END_ALLOW_THREADS - -.. index:: - single: Py_BEGIN_ALLOW_THREADS (C macro) - single: Py_END_ALLOW_THREADS (C macro) - -The :c:macro:`Py_BEGIN_ALLOW_THREADS` macro opens a new block and declares a -hidden local variable; the :c:macro:`Py_END_ALLOW_THREADS` macro closes the -block. - -The block above expands to the following code:: - - PyThreadState *_save; - - _save = PyEval_SaveThread(); - ... Do some blocking I/O operation ... - PyEval_RestoreThread(_save); - -.. index:: - single: PyEval_RestoreThread (C function) - single: PyEval_SaveThread (C function) - -Here is how these functions work: - -The :term:`attached thread state` holds the :term:`GIL` for the entire interpreter. When detaching -the :term:`attached thread state`, the :term:`GIL` is released, allowing other threads to attach -a thread state to their own thread, thus getting the :term:`GIL` and can start executing. -The pointer to the prior :term:`attached thread state` is stored as a local variable. -Upon reaching :c:macro:`Py_END_ALLOW_THREADS`, the thread state that was -previously :term:`attached ` is passed to :c:func:`PyEval_RestoreThread`. -This function will block until another releases its :term:`thread state `, -thus allowing the old :term:`thread state ` to get re-attached and the -C API can be called again. - -For :term:`free-threaded ` builds, the :term:`GIL` is normally -out of the question, but detaching the :term:`thread state ` is still required -for blocking I/O and long operations. The difference is that threads don't have to wait for the :term:`GIL` -to be released to attach their thread state, allowing true multi-core parallelism. - -.. note:: - Calling system I/O functions is the most common use case for detaching - the :term:`thread state `, but it can also be useful before calling - long-running computations which don't need access to Python objects, such - as compression or cryptographic functions operating over memory buffers. - For example, the standard :mod:`zlib` and :mod:`hashlib` modules detach the - :term:`thread state ` when compressing or hashing data. - - -.. _gilstate: - -Non-Python created threads --------------------------- - -When threads are created using the dedicated Python APIs (such as the -:mod:`threading` module), a thread state is automatically associated to them -and the code showed above is therefore correct. However, when threads are -created from C (for example by a third-party library with its own thread -management), they don't hold the :term:`GIL`, because they don't have an -:term:`attached thread state`. - -If you need to call Python code from these threads (often this will be part -of a callback API provided by the aforementioned third-party library), -you must first register these threads with the interpreter by -creating an :term:`attached thread state` before you can start using the Python/C -API. When you are done, you should detach the :term:`thread state `, and -finally free it. - -The :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` functions do -all of the above automatically. The typical idiom for calling into Python -from a C thread is:: - - PyGILState_STATE gstate; - gstate = PyGILState_Ensure(); - - /* Perform Python actions here. */ - result = CallSomeFunction(); - /* evaluate result or handle exception */ - - /* Release the thread. No Python API allowed beyond this point. */ - PyGILState_Release(gstate); - -Note that the ``PyGILState_*`` functions assume there is only one global -interpreter (created automatically by :c:func:`Py_Initialize`). Python -supports the creation of additional interpreters (using -:c:func:`Py_NewInterpreter`), but mixing multiple interpreters and the -``PyGILState_*`` API is unsupported. This is because :c:func:`PyGILState_Ensure` -and similar functions default to :term:`attaching ` a -:term:`thread state` for the main interpreter, meaning that the thread can't safely -interact with the calling subinterpreter. - -Supporting subinterpreters in non-Python threads ------------------------------------------------- - -If you would like to support subinterpreters with non-Python created threads, you -must use the ``PyThreadState_*`` API instead of the traditional ``PyGILState_*`` -API. - -In particular, you must store the interpreter state from the calling -function and pass it to :c:func:`PyThreadState_New`, which will ensure that -the :term:`thread state` is targeting the correct interpreter:: - - /* The return value of PyInterpreterState_Get() from the - function that created this thread. */ - PyInterpreterState *interp = ThreadData->interp; - PyThreadState *tstate = PyThreadState_New(interp); - PyThreadState_Swap(tstate); - - /* GIL of the subinterpreter is now held. - Perform Python actions here. */ - result = CallSomeFunction(); - /* evaluate result or handle exception */ - - /* Destroy the thread state. No Python API allowed beyond this point. */ - PyThreadState_Clear(tstate); - PyThreadState_DeleteCurrent(); - -.. _fork-and-threads: - -Cautions about fork() ---------------------- - -Another important thing to note about threads is their behaviour in the face -of the C :c:func:`fork` call. On most systems with :c:func:`fork`, after a -process forks only the thread that issued the fork will exist. This has a -concrete impact both on how locks must be handled and on all stored state -in CPython's runtime. - -The fact that only the "current" thread remains -means any locks held by other threads will never be released. Python solves -this for :func:`os.fork` by acquiring the locks it uses internally before -the fork, and releasing them afterwards. In addition, it resets any -:ref:`lock-objects` in the child. When extending or embedding Python, there -is no way to inform Python of additional (non-Python) locks that need to be -acquired before or reset after a fork. OS facilities such as -:c:func:`!pthread_atfork` would need to be used to accomplish the same thing. -Additionally, when extending or embedding Python, calling :c:func:`fork` -directly rather than through :func:`os.fork` (and returning to or calling -into Python) may result in a deadlock by one of Python's internal locks -being held by a thread that is defunct after the fork. -:c:func:`PyOS_AfterFork_Child` tries to reset the necessary locks, but is not -always able to. - -The fact that all other threads go away also means that CPython's -runtime state there must be cleaned up properly, which :func:`os.fork` -does. This means finalizing all other :c:type:`PyThreadState` objects -belonging to the current interpreter and all other -:c:type:`PyInterpreterState` objects. Due to this and the special -nature of the :ref:`"main" interpreter `, -:c:func:`fork` should only be called in that interpreter's "main" -thread, where the CPython global runtime was originally initialized. -The only exception is if :c:func:`exec` will be called immediately -after. - -.. _cautions-regarding-runtime-finalization: - -Cautions regarding runtime finalization ---------------------------------------- - -In the late stage of :term:`interpreter shutdown`, after attempting to wait for -non-daemon threads to exit (though this can be interrupted by -:class:`KeyboardInterrupt`) and running the :mod:`atexit` functions, the runtime -is marked as *finalizing*: :c:func:`Py_IsFinalizing` and -:func:`sys.is_finalizing` return true. At this point, only the *finalization -thread* that initiated finalization (typically the main thread) is allowed to -acquire the :term:`GIL`. - -If any thread, other than the finalization thread, attempts to attach a :term:`thread state` -during finalization, either explicitly or -implicitly, the thread enters **a permanently blocked state** -where it remains until the program exits. In most cases this is harmless, but this can result -in deadlock if a later stage of finalization attempts to acquire a lock owned by the -blocked thread, or otherwise waits on the blocked thread. - -Gross? Yes. This prevents random crashes and/or unexpectedly skipped C++ -finalizations further up the call stack when such threads were forcibly exited -here in CPython 3.13 and earlier. The CPython runtime :term:`thread state` C APIs -have never had any error reporting or handling expectations at :term:`thread state` -attachment time that would've allowed for graceful exit from this situation. Changing that -would require new stable C APIs and rewriting the majority of C code in the -CPython ecosystem to use those with error handling. - - -High-level API --------------- - -These are the most commonly used types and functions when writing C extension -code, or when embedding the Python interpreter: - -.. c:type:: PyInterpreterState - - This data structure represents the state shared by a number of cooperating - threads. Threads belonging to the same interpreter share their module - administration and a few other internal items. There are no public members in - this structure. - - Threads belonging to different interpreters initially share nothing, except - process state like available memory, open file descriptors and such. The global - interpreter lock is also shared by all threads, regardless of to which - interpreter they belong. - - .. versionchanged:: 3.12 - - :pep:`684` introduced the possibility - of a :ref:`per-interpreter GIL `. - See :c:func:`Py_NewInterpreterFromConfig`. - - -.. c:type:: PyThreadState - - This data structure represents the state of a single thread. The only public - data member is: - - .. c:member:: PyInterpreterState *interp - - This thread's interpreter state. - - -.. c:function:: void PyEval_InitThreads() - - .. index:: - single: PyEval_AcquireThread() - single: PyEval_ReleaseThread() - single: PyEval_SaveThread() - single: PyEval_RestoreThread() - - Deprecated function which does nothing. - - In Python 3.6 and older, this function created the GIL if it didn't exist. - - .. versionchanged:: 3.9 - The function now does nothing. - - .. versionchanged:: 3.7 - This function is now called by :c:func:`Py_Initialize()`, so you don't - have to call it yourself anymore. - - .. versionchanged:: 3.2 - This function cannot be called before :c:func:`Py_Initialize()` anymore. - - .. deprecated:: 3.9 - - .. index:: pair: module; _thread - - -.. c:function:: PyThreadState* PyEval_SaveThread() - - Detach the :term:`attached thread state` and return it. - The thread will have no :term:`thread state` upon returning. - - -.. c:function:: void PyEval_RestoreThread(PyThreadState *tstate) - - Set the :term:`attached thread state` to *tstate*. - The passed :term:`thread state` **should not** be :term:`attached `, - otherwise deadlock ensues. *tstate* will be attached upon returning. - - .. note:: - Calling this function from a thread when the runtime is finalizing will - hang the thread until the program exits, even if the thread was not - created by Python. Refer to - :ref:`cautions-regarding-runtime-finalization` for more details. - - .. versionchanged:: 3.14 - Hangs the current thread, rather than terminating it, if called while the - interpreter is finalizing. - -.. c:function:: PyThreadState* PyThreadState_Get() - - Return the :term:`attached thread state`. If the thread has no attached - thread state, (such as when inside of :c:macro:`Py_BEGIN_ALLOW_THREADS` - block), then this issues a fatal error (so that the caller needn't check - for ``NULL``). - - See also :c:func:`PyThreadState_GetUnchecked`. - -.. c:function:: PyThreadState* PyThreadState_GetUnchecked() - - Similar to :c:func:`PyThreadState_Get`, but don't kill the process with a - fatal error if it is NULL. The caller is responsible to check if the result - is NULL. - - .. versionadded:: 3.13 - In Python 3.5 to 3.12, the function was private and known as - ``_PyThreadState_UncheckedGet()``. - - -.. c:function:: PyThreadState* PyThreadState_Swap(PyThreadState *tstate) - - Set the :term:`attached thread state` to *tstate*, and return the - :term:`thread state` that was attached prior to calling. - - This function is safe to call without an :term:`attached thread state`; it - will simply return ``NULL`` indicating that there was no prior thread state. - - .. seealso:: - :c:func:`PyEval_ReleaseThread` - - .. note:: - Similar to :c:func:`PyGILState_Ensure`, this function will hang the - thread if the runtime is finalizing. - - -The following functions use thread-local storage, and are not compatible -with sub-interpreters: - -.. c:type:: PyGILState_STATE - - The type of the value returned by :c:func:`PyGILState_Ensure` and passed to - :c:func:`PyGILState_Release`. - - .. c:enumerator:: PyGILState_LOCKED - - The GIL was already held when :c:func:`PyGILState_Ensure` was called. - - .. c:enumerator:: PyGILState_UNLOCKED - - The GIL was not held when :c:func:`PyGILState_Ensure` was called. - -.. c:function:: PyGILState_STATE PyGILState_Ensure() - - Ensure that the current thread is ready to call the Python C API regardless - of the current state of Python, or of the :term:`attached thread state`. This may - be called as many times as desired by a thread as long as each call is - matched with a call to :c:func:`PyGILState_Release`. In general, other - thread-related APIs may be used between :c:func:`PyGILState_Ensure` and - :c:func:`PyGILState_Release` calls as long as the thread state is restored to - its previous state before the Release(). For example, normal usage of the - :c:macro:`Py_BEGIN_ALLOW_THREADS` and :c:macro:`Py_END_ALLOW_THREADS` macros is - acceptable. - - The return value is an opaque "handle" to the :term:`attached thread state` when - :c:func:`PyGILState_Ensure` was called, and must be passed to - :c:func:`PyGILState_Release` to ensure Python is left in the same state. Even - though recursive calls are allowed, these handles *cannot* be shared - each - unique call to :c:func:`PyGILState_Ensure` must save the handle for its call - to :c:func:`PyGILState_Release`. - - When the function returns, there will be an :term:`attached thread state` - and the thread will be able to call arbitrary Python code. Failure is a fatal error. - - .. warning:: - Calling this function when the runtime is finalizing is unsafe. Doing - so will either hang the thread until the program ends, or fully crash - the interpreter in rare cases. Refer to - :ref:`cautions-regarding-runtime-finalization` for more details. - - .. versionchanged:: 3.14 - Hangs the current thread, rather than terminating it, if called while the - interpreter is finalizing. - -.. c:function:: void PyGILState_Release(PyGILState_STATE) - - Release any resources previously acquired. After this call, Python's state will - be the same as it was prior to the corresponding :c:func:`PyGILState_Ensure` call - (but generally this state will be unknown to the caller, hence the use of the - GILState API). - - Every call to :c:func:`PyGILState_Ensure` must be matched by a call to - :c:func:`PyGILState_Release` on the same thread. - -.. c:function:: PyThreadState* PyGILState_GetThisThreadState() - - Get the :term:`attached thread state` for this thread. May return ``NULL`` if no - GILState API has been used on the current thread. Note that the main thread - always has such a thread-state, even if no auto-thread-state call has been - made on the main thread. This is mainly a helper/diagnostic function. - - .. note:: - This function may return non-``NULL`` even when the :term:`thread state` - is detached. - Prefer :c:func:`PyThreadState_Get` or :c:func:`PyThreadState_GetUnchecked` - for most cases. - - .. seealso:: :c:func:`PyThreadState_Get` - -.. c:function:: int PyGILState_Check() - - Return ``1`` if the current thread is holding the :term:`GIL` and ``0`` otherwise. - This function can be called from any thread at any time. - Only if it has had its :term:`thread state ` initialized - via :c:func:`PyGILState_Ensure` will it return ``1``. - This is mainly a helper/diagnostic function. It can be useful - for example in callback contexts or memory allocation functions when - knowing that the :term:`GIL` is locked can allow the caller to perform sensitive - actions or otherwise behave differently. - - .. note:: - If the current Python process has ever created a subinterpreter, this - function will *always* return ``1``. Prefer :c:func:`PyThreadState_GetUnchecked` - for most cases. - - .. versionadded:: 3.4 - - -The following macros are normally used without a trailing semicolon; look for -example usage in the Python source distribution. - - -.. c:macro:: Py_BEGIN_ALLOW_THREADS - - This macro expands to ``{ PyThreadState *_save; _save = PyEval_SaveThread();``. - Note that it contains an opening brace; it must be matched with a following - :c:macro:`Py_END_ALLOW_THREADS` macro. See above for further discussion of this - macro. - - -.. c:macro:: Py_END_ALLOW_THREADS - - This macro expands to ``PyEval_RestoreThread(_save); }``. Note that it contains - a closing brace; it must be matched with an earlier - :c:macro:`Py_BEGIN_ALLOW_THREADS` macro. See above for further discussion of - this macro. - - -.. c:macro:: Py_BLOCK_THREADS - - This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent to - :c:macro:`Py_END_ALLOW_THREADS` without the closing brace. - - -.. c:macro:: Py_UNBLOCK_THREADS - - This macro expands to ``_save = PyEval_SaveThread();``: it is equivalent to - :c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable - declaration. - - -Low-level API -------------- - -All of the following functions must be called after :c:func:`Py_Initialize`. - -.. versionchanged:: 3.7 - :c:func:`Py_Initialize()` now initializes the :term:`GIL` - and sets an :term:`attached thread state`. - - -.. c:function:: PyInterpreterState* PyInterpreterState_New() - - Create a new interpreter state object. An :term:`attached thread state` is not needed, - but may optionally exist if it is necessary to serialize calls to this - function. - - .. audit-event:: cpython.PyInterpreterState_New "" c.PyInterpreterState_New - - -.. c:function:: void PyInterpreterState_Clear(PyInterpreterState *interp) - - Reset all information in an interpreter state object. There must be - an :term:`attached thread state` for the interpreter. - - .. audit-event:: cpython.PyInterpreterState_Clear "" c.PyInterpreterState_Clear - - -.. c:function:: void PyInterpreterState_Delete(PyInterpreterState *interp) - - Destroy an interpreter state object. There **should not** be an - :term:`attached thread state` for the target interpreter. The interpreter - state must have been reset with a previous call to :c:func:`PyInterpreterState_Clear`. - - -.. c:function:: PyThreadState* PyThreadState_New(PyInterpreterState *interp) - - Create a new thread state object belonging to the given interpreter object. - An :term:`attached thread state` is not needed. - -.. c:function:: void PyThreadState_Clear(PyThreadState *tstate) - - Reset all information in a :term:`thread state` object. *tstate* - must be :term:`attached ` - - .. versionchanged:: 3.9 - This function now calls the :c:member:`!PyThreadState.on_delete` callback. - Previously, that happened in :c:func:`PyThreadState_Delete`. - - .. versionchanged:: 3.13 - The :c:member:`!PyThreadState.on_delete` callback was removed. - - -.. c:function:: void PyThreadState_Delete(PyThreadState *tstate) - - Destroy a :term:`thread state` object. *tstate* should not - be :term:`attached ` to any thread. - *tstate* must have been reset with a previous call to - :c:func:`PyThreadState_Clear`. - - -.. c:function:: void PyThreadState_DeleteCurrent(void) - - Detach the :term:`attached thread state` (which must have been reset - with a previous call to :c:func:`PyThreadState_Clear`) and then destroy it. - - No :term:`thread state` will be :term:`attached ` upon - returning. - -.. c:function:: PyFrameObject* PyThreadState_GetFrame(PyThreadState *tstate) - - Get the current frame of the Python thread state *tstate*. - - Return a :term:`strong reference`. Return ``NULL`` if no frame is currently - executing. - - See also :c:func:`PyEval_GetFrame`. - - *tstate* must not be ``NULL``, and must be :term:`attached `. - - .. versionadded:: 3.9 - - -.. c:function:: uint64_t PyThreadState_GetID(PyThreadState *tstate) - - Get the unique :term:`thread state` identifier of the Python thread state *tstate*. - - *tstate* must not be ``NULL``, and must be :term:`attached `. - - .. versionadded:: 3.9 - - -.. c:function:: PyInterpreterState* PyThreadState_GetInterpreter(PyThreadState *tstate) - - Get the interpreter of the Python thread state *tstate*. - - *tstate* must not be ``NULL``, and must be :term:`attached `. - - .. versionadded:: 3.9 - - -.. c:function:: void PyThreadState_EnterTracing(PyThreadState *tstate) - - Suspend tracing and profiling in the Python thread state *tstate*. - - Resume them using the :c:func:`PyThreadState_LeaveTracing` function. - - .. versionadded:: 3.11 - - -.. c:function:: void PyThreadState_LeaveTracing(PyThreadState *tstate) - - Resume tracing and profiling in the Python thread state *tstate* suspended - by the :c:func:`PyThreadState_EnterTracing` function. - - See also :c:func:`PyEval_SetTrace` and :c:func:`PyEval_SetProfile` - functions. - - .. versionadded:: 3.11 - - -.. c:function:: int PyUnstable_ThreadState_SetStackProtection(PyThreadState *tstate, void *stack_start_addr, size_t stack_size) - - Set the stack protection start address and stack protection size - of a Python thread state. - - On success, return ``0``. - On failure, set an exception and return ``-1``. - - CPython implements :ref:`recursion control ` for C code by raising - :py:exc:`RecursionError` when it notices that the machine execution stack is close - to overflow. See for example the :c:func:`Py_EnterRecursiveCall` function. - For this, it needs to know the location of the current thread's stack, which it - normally gets from the operating system. - When the stack is changed, for example using context switching techniques like the - Boost library's ``boost::context``, you must call - :c:func:`~PyUnstable_ThreadState_SetStackProtection` to inform CPython of the change. - - Call :c:func:`~PyUnstable_ThreadState_SetStackProtection` either before - or after changing the stack. - Do not call any other Python C API between the call and the stack - change. - - See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this operation. - - .. versionadded:: 3.15 - - -.. c:function:: void PyUnstable_ThreadState_ResetStackProtection(PyThreadState *tstate) - - Reset the stack protection start address and stack protection size - of a Python thread state to the operating system defaults. - - See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation. - - .. versionadded:: 3.15 - - -.. c:function:: PyInterpreterState* PyInterpreterState_Get(void) - - Get the current interpreter. - - Issue a fatal error if there is no :term:`attached thread state`. - It cannot return NULL. - - .. versionadded:: 3.9 - - -.. c:function:: int64_t PyInterpreterState_GetID(PyInterpreterState *interp) - - Return the interpreter's unique ID. If there was any error in doing - so then ``-1`` is returned and an error is set. - - The caller must have an :term:`attached thread state`. - - .. versionadded:: 3.7 - - -.. c:function:: PyObject* PyInterpreterState_GetDict(PyInterpreterState *interp) - - Return a dictionary in which interpreter-specific data may be stored. - If this function returns ``NULL`` then no exception has been raised and - the caller should assume no interpreter-specific dict is available. - - This is not a replacement for :c:func:`PyModule_GetState()`, which - extensions should use to store interpreter-specific state information. - - The returned dictionary is borrowed from the interpreter and is valid until - interpreter shutdown. - - .. versionadded:: 3.8 - - -.. c:type:: PyObject* (*_PyFrameEvalFunction)(PyThreadState *tstate, _PyInterpreterFrame *frame, int throwflag) - - Type of a frame evaluation function. - - The *throwflag* parameter is used by the ``throw()`` method of generators: - if non-zero, handle the current exception. - - .. versionchanged:: 3.9 - The function now takes a *tstate* parameter. - - .. versionchanged:: 3.11 - The *frame* parameter changed from ``PyFrameObject*`` to ``_PyInterpreterFrame*``. - -.. c:function:: _PyFrameEvalFunction _PyInterpreterState_GetEvalFrameFunc(PyInterpreterState *interp) - - Get the frame evaluation function. - - See the :pep:`523` "Adding a frame evaluation API to CPython". - - .. versionadded:: 3.9 - -.. c:function:: void _PyInterpreterState_SetEvalFrameFunc(PyInterpreterState *interp, _PyFrameEvalFunction eval_frame) - - Set the frame evaluation function. - - See the :pep:`523` "Adding a frame evaluation API to CPython". - - .. versionadded:: 3.9 - - -.. c:function:: PyObject* PyThreadState_GetDict() - - Return a dictionary in which extensions can store thread-specific state - information. Each extension should use a unique key to use to store state in - the dictionary. It is okay to call this function when no :term:`thread state` - is :term:`attached `. If this function returns - ``NULL``, no exception has been raised and the caller should assume no - thread state is attached. - - -.. c:function:: int PyThreadState_SetAsyncExc(unsigned long id, PyObject *exc) - - Asynchronously raise an exception in a thread. The *id* argument is the thread - id of the target thread; *exc* is the exception object to be raised. This - function does not steal any references to *exc*. To prevent naive misuse, you - must write your own C extension to call this. Must be called with an :term:`attached thread state`. - Returns the number of thread states modified; this is normally one, but will be - zero if the thread id isn't found. If *exc* is ``NULL``, the pending - exception (if any) for the thread is cleared. This raises no exceptions. - - .. versionchanged:: 3.7 - The type of the *id* parameter changed from :c:expr:`long` to - :c:expr:`unsigned long`. - -.. c:function:: void PyEval_AcquireThread(PyThreadState *tstate) - - :term:`Attach ` *tstate* to the current thread, - which must not be ``NULL`` or already :term:`attached `. - - The calling thread must not already have an :term:`attached thread state`. - - .. note:: - Calling this function from a thread when the runtime is finalizing will - hang the thread until the program exits, even if the thread was not - created by Python. Refer to - :ref:`cautions-regarding-runtime-finalization` for more details. - - .. versionchanged:: 3.8 - Updated to be consistent with :c:func:`PyEval_RestoreThread`, - :c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`, - and terminate the current thread if called while the interpreter is finalizing. - - .. versionchanged:: 3.14 - Hangs the current thread, rather than terminating it, if called while the - interpreter is finalizing. - - :c:func:`PyEval_RestoreThread` is a higher-level function which is always - available (even when threads have not been initialized). - - -.. c:function:: void PyEval_ReleaseThread(PyThreadState *tstate) - - Detach the :term:`attached thread state`. - The *tstate* argument, which must not be ``NULL``, is only used to check - that it represents the :term:`attached thread state` --- if it isn't, a fatal error is - reported. - - :c:func:`PyEval_SaveThread` is a higher-level function which is always - available (even when threads have not been initialized). - - -.. _sub-interpreter-support: - -Sub-interpreter support -======================= - -While in most uses, you will only embed a single Python interpreter, there -are cases where you need to create several independent interpreters in the -same process and perhaps even in the same thread. Sub-interpreters allow -you to do that. - -The "main" interpreter is the first one created when the runtime initializes. -It is usually the only Python interpreter in a process. Unlike sub-interpreters, -the main interpreter has unique process-global responsibilities like signal -handling. It is also responsible for execution during runtime initialization and -is usually the active interpreter during runtime finalization. The -:c:func:`PyInterpreterState_Main` function returns a pointer to its state. - -You can switch between sub-interpreters using the :c:func:`PyThreadState_Swap` -function. You can create and destroy them using the following functions: - - -.. c:type:: PyInterpreterConfig - - Structure containing most parameters to configure a sub-interpreter. - Its values are used only in :c:func:`Py_NewInterpreterFromConfig` and - never modified by the runtime. - - .. versionadded:: 3.12 - - Structure fields: - - .. c:member:: int use_main_obmalloc - - If this is ``0`` then the sub-interpreter will use its own - "object" allocator state. - Otherwise it will use (share) the main interpreter's. - - If this is ``0`` then - :c:member:`~PyInterpreterConfig.check_multi_interp_extensions` - must be ``1`` (non-zero). - If this is ``1`` then :c:member:`~PyInterpreterConfig.gil` - must not be :c:macro:`PyInterpreterConfig_OWN_GIL`. - - .. c:member:: int allow_fork - - If this is ``0`` then the runtime will not support forking the - process in any thread where the sub-interpreter is currently active. - Otherwise fork is unrestricted. - - Note that the :mod:`subprocess` module still works - when fork is disallowed. - - .. c:member:: int allow_exec - - If this is ``0`` then the runtime will not support replacing the - current process via exec (e.g. :func:`os.execv`) in any thread - where the sub-interpreter is currently active. - Otherwise exec is unrestricted. - - Note that the :mod:`subprocess` module still works - when exec is disallowed. - - .. c:member:: int allow_threads - - If this is ``0`` then the sub-interpreter's :mod:`threading` module - won't create threads. - Otherwise threads are allowed. - - .. c:member:: int allow_daemon_threads - - If this is ``0`` then the sub-interpreter's :mod:`threading` module - won't create daemon threads. - Otherwise daemon threads are allowed (as long as - :c:member:`~PyInterpreterConfig.allow_threads` is non-zero). - - .. c:member:: int check_multi_interp_extensions - - If this is ``0`` then all extension modules may be imported, - including legacy (single-phase init) modules, - in any thread where the sub-interpreter is currently active. - Otherwise only multi-phase init extension modules - (see :pep:`489`) may be imported. - (Also see :c:macro:`Py_mod_multiple_interpreters`.) - - This must be ``1`` (non-zero) if - :c:member:`~PyInterpreterConfig.use_main_obmalloc` is ``0``. - - .. c:member:: int gil - - This determines the operation of the GIL for the sub-interpreter. - It may be one of the following: - - .. c:namespace:: NULL - - .. c:macro:: PyInterpreterConfig_DEFAULT_GIL - - Use the default selection (:c:macro:`PyInterpreterConfig_SHARED_GIL`). - - .. c:macro:: PyInterpreterConfig_SHARED_GIL - - Use (share) the main interpreter's GIL. - - .. c:macro:: PyInterpreterConfig_OWN_GIL - - Use the sub-interpreter's own GIL. - - If this is :c:macro:`PyInterpreterConfig_OWN_GIL` then - :c:member:`PyInterpreterConfig.use_main_obmalloc` must be ``0``. - - -.. c:function:: PyStatus Py_NewInterpreterFromConfig(PyThreadState **tstate_p, const PyInterpreterConfig *config) - - .. index:: - pair: module; builtins - pair: module; __main__ - pair: module; sys - single: stdout (in module sys) - single: stderr (in module sys) - single: stdin (in module sys) - - Create a new sub-interpreter. This is an (almost) totally separate environment - for the execution of Python code. In particular, the new interpreter has - separate, independent versions of all imported modules, including the - fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. The - table of loaded modules (``sys.modules``) and the module search path - (``sys.path``) are also separate. The new environment has no ``sys.argv`` - variable. It has new standard I/O stream file objects ``sys.stdin``, - ``sys.stdout`` and ``sys.stderr`` (however these refer to the same underlying - file descriptors). - - The given *config* controls the options with which the interpreter - is initialized. - - Upon success, *tstate_p* will be set to the first :term:`thread state` - created in the new sub-interpreter. This thread state is - :term:`attached `. - Note that no actual thread is created; see the discussion of thread states - below. If creation of the new interpreter is unsuccessful, - *tstate_p* is set to ``NULL``; - no exception is set since the exception state is stored in the - :term:`attached thread state`, which might not exist. - - Like all other Python/C API functions, an :term:`attached thread state` - must be present before calling this function, but it might be detached upon - returning. On success, the returned thread state will be :term:`attached `. - If the sub-interpreter is created with its own :term:`GIL` then the - :term:`attached thread state` of the calling interpreter will be detached. - When the function returns, the new interpreter's :term:`thread state` - will be :term:`attached ` to the current thread and - the previous interpreter's :term:`attached thread state` will remain detached. - - .. versionadded:: 3.12 - - Sub-interpreters are most effective when isolated from each other, - with certain functionality restricted:: - - PyInterpreterConfig config = { - .use_main_obmalloc = 0, - .allow_fork = 0, - .allow_exec = 0, - .allow_threads = 1, - .allow_daemon_threads = 0, - .check_multi_interp_extensions = 1, - .gil = PyInterpreterConfig_OWN_GIL, - }; - PyThreadState *tstate = NULL; - PyStatus status = Py_NewInterpreterFromConfig(&tstate, &config); - if (PyStatus_Exception(status)) { - Py_ExitStatusException(status); - } - - Note that the config is used only briefly and does not get modified. - During initialization the config's values are converted into various - :c:type:`PyInterpreterState` values. A read-only copy of the config - may be stored internally on the :c:type:`PyInterpreterState`. - - .. index:: - single: Py_FinalizeEx (C function) - single: Py_Initialize (C function) - - Extension modules are shared between (sub-)interpreters as follows: - - * For modules using multi-phase initialization, - e.g. :c:func:`PyModule_FromDefAndSpec`, a separate module object is - created and initialized for each interpreter. - Only C-level static and global variables are shared between these - module objects. - - * For modules using legacy - :ref:`single-phase initialization `, - e.g. :c:func:`PyModule_Create`, the first time a particular extension - is imported, it is initialized normally, and a (shallow) copy of its - module's dictionary is squirreled away. - When the same extension is imported by another (sub-)interpreter, a new - module is initialized and filled with the contents of this copy; the - extension's ``init`` function is not called. - Objects in the module's dictionary thus end up shared across - (sub-)interpreters, which might cause unwanted behavior (see - `Bugs and caveats`_ below). - - Note that this is different from what happens when an extension is - imported after the interpreter has been completely re-initialized by - calling :c:func:`Py_FinalizeEx` and :c:func:`Py_Initialize`; in that - case, the extension's ``initmodule`` function *is* called again. - As with multi-phase initialization, this means that only C-level static - and global variables are shared between these modules. - - .. index:: single: close (in module os) - - -.. c:function:: PyThreadState* Py_NewInterpreter(void) - - .. index:: - pair: module; builtins - pair: module; __main__ - pair: module; sys - single: stdout (in module sys) - single: stderr (in module sys) - single: stdin (in module sys) - - Create a new sub-interpreter. This is essentially just a wrapper - around :c:func:`Py_NewInterpreterFromConfig` with a config that - preserves the existing behavior. The result is an unisolated - sub-interpreter that shares the main interpreter's GIL, allows - fork/exec, allows daemon threads, and allows single-phase init - modules. - - -.. c:function:: void Py_EndInterpreter(PyThreadState *tstate) - - .. index:: single: Py_FinalizeEx (C function) - - Destroy the (sub-)interpreter represented by the given :term:`thread state`. - The given thread state must be :term:`attached `. - When the call returns, there will be no :term:`attached thread state`. - All thread states associated with this interpreter are destroyed. - - :c:func:`Py_FinalizeEx` will destroy all sub-interpreters that - haven't been explicitly destroyed at that point. - - -.. _per-interpreter-gil: - -A Per-Interpreter GIL ---------------------- - -Using :c:func:`Py_NewInterpreterFromConfig` you can create -a sub-interpreter that is completely isolated from other interpreters, -including having its own GIL. The most important benefit of this -isolation is that such an interpreter can execute Python code without -being blocked by other interpreters or blocking any others. Thus a -single Python process can truly take advantage of multiple CPU cores -when running Python code. The isolation also encourages a different -approach to concurrency than that of just using threads. -(See :pep:`554` and :pep:`684`.) - -Using an isolated interpreter requires vigilance in preserving that -isolation. That especially means not sharing any objects or mutable -state without guarantees about thread-safety. Even objects that are -otherwise immutable (e.g. ``None``, ``(1, 5)``) can't normally be shared -because of the refcount. One simple but less-efficient approach around -this is to use a global lock around all use of some state (or object). -Alternately, effectively immutable objects (like integers or strings) -can be made safe in spite of their refcounts by making them :term:`immortal`. -In fact, this has been done for the builtin singletons, small integers, -and a number of other builtin objects. - -If you preserve isolation then you will have access to proper multi-core -computing without the complications that come with free-threading. -Failure to preserve isolation will expose you to the full consequences -of free-threading, including races and hard-to-debug crashes. - -Aside from that, one of the main challenges of using multiple isolated -interpreters is how to communicate between them safely (not break -isolation) and efficiently. The runtime and stdlib do not provide -any standard approach to this yet. A future stdlib module would help -mitigate the effort of preserving isolation and expose effective tools -for communicating (and sharing) data between interpreters. - -.. versionadded:: 3.12 - - -Bugs and caveats ----------------- - -Because sub-interpreters (and the main interpreter) are part of the same -process, the insulation between them isn't perfect --- for example, using -low-level file operations like :func:`os.close` they can -(accidentally or maliciously) affect each other's open files. Because of the -way extensions are shared between (sub-)interpreters, some extensions may not -work properly; this is especially likely when using single-phase initialization -or (static) global variables. -It is possible to insert objects created in one sub-interpreter into -a namespace of another (sub-)interpreter; this should be avoided if possible. - -Special care should be taken to avoid sharing user-defined functions, -methods, instances or classes between sub-interpreters, since import -operations executed by such objects may affect the wrong (sub-)interpreter's -dictionary of loaded modules. It is equally important to avoid sharing -objects from which the above are reachable. - -Also note that combining this functionality with ``PyGILState_*`` APIs -is delicate, because these APIs assume a bijection between Python thread states -and OS-level threads, an assumption broken by the presence of sub-interpreters. -It is highly recommended that you don't switch sub-interpreters between a pair -of matching :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` calls. -Furthermore, extensions (such as :mod:`ctypes`) using these APIs to allow calling -of Python code from non-Python created threads will probably be broken when using -sub-interpreters. - - -Asynchronous Notifications -========================== - -A mechanism is provided to make asynchronous notifications to the main -interpreter thread. These notifications take the form of a function -pointer and a void pointer argument. - - -.. c:function:: int Py_AddPendingCall(int (*func)(void *), void *arg) - - Schedule a function to be called from the main interpreter thread. On - success, ``0`` is returned and *func* is queued for being called in the - main thread. On failure, ``-1`` is returned without setting any exception. - - When successfully queued, *func* will be *eventually* called from the - main interpreter thread with the argument *arg*. It will be called - asynchronously with respect to normally running Python code, but with - both these conditions met: - - * on a :term:`bytecode` boundary; - * with the main thread holding an :term:`attached thread state` - (*func* can therefore use the full C API). - - *func* must return ``0`` on success, or ``-1`` on failure with an exception - set. *func* won't be interrupted to perform another asynchronous - notification recursively, but it can still be interrupted to switch - threads if the :term:`thread state ` is detached. - - This function doesn't need an :term:`attached thread state`. However, to call this - function in a subinterpreter, the caller must have an :term:`attached thread state`. - Otherwise, the function *func* can be scheduled to be called from the wrong interpreter. - - .. warning:: - This is a low-level function, only useful for very special cases. - There is no guarantee that *func* will be called as quick as - possible. If the main thread is busy executing a system call, - *func* won't be called before the system call returns. This - function is generally **not** suitable for calling Python code from - arbitrary C threads. Instead, use the :ref:`PyGILState API`. - - .. versionadded:: 3.1 - - .. versionchanged:: 3.9 - If this function is called in a subinterpreter, the function *func* is - now scheduled to be called from the subinterpreter, rather than being - called from the main interpreter. Each subinterpreter now has its own - list of scheduled calls. - - .. versionchanged:: 3.12 - This function now always schedules *func* to be run in the main - interpreter. - - -.. c:function:: int Py_MakePendingCalls(void) - - Execute all pending calls. This is usually executed automatically by the - interpreter. - - This function returns ``0`` on success, and returns ``-1`` with an exception - set on failure. - - If this is not called in the main thread of the main - interpreter, this function does nothing and returns ``0``. - The caller must hold an :term:`attached thread state`. - - .. versionadded:: 3.1 - - .. versionchanged:: 3.12 - This function only runs pending calls in the main interpreter. - - -.. _profiling: - -Profiling and Tracing -===================== - -The Python interpreter provides some low-level support for attaching profiling -and execution tracing facilities. These are used for profiling, debugging, and -coverage analysis tools. - -This C interface allows the profiling or tracing code to avoid the overhead of -calling through Python-level callable objects, making a direct C function call -instead. The essential attributes of the facility have not changed; the -interface allows trace functions to be installed per-thread, and the basic -events reported to the trace function are the same as had been reported to the -Python-level trace functions in previous versions. - - -.. c:type:: int (*Py_tracefunc)(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) - - The type of the trace function registered using :c:func:`PyEval_SetProfile` and - :c:func:`PyEval_SetTrace`. The first parameter is the object passed to the - registration function as *obj*, *frame* is the frame object to which the event - pertains, *what* is one of the constants :c:data:`PyTrace_CALL`, - :c:data:`PyTrace_EXCEPTION`, :c:data:`PyTrace_LINE`, :c:data:`PyTrace_RETURN`, - :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION`, :c:data:`PyTrace_C_RETURN`, - or :c:data:`PyTrace_OPCODE`, and *arg* depends on the value of *what*: - - +-------------------------------+----------------------------------------+ - | Value of *what* | Meaning of *arg* | - +===============================+========================================+ - | :c:data:`PyTrace_CALL` | Always :c:data:`Py_None`. | - +-------------------------------+----------------------------------------+ - | :c:data:`PyTrace_EXCEPTION` | Exception information as returned by | - | | :func:`sys.exc_info`. | - +-------------------------------+----------------------------------------+ - | :c:data:`PyTrace_LINE` | Always :c:data:`Py_None`. | - +-------------------------------+----------------------------------------+ - | :c:data:`PyTrace_RETURN` | Value being returned to the caller, | - | | or ``NULL`` if caused by an exception. | - +-------------------------------+----------------------------------------+ - | :c:data:`PyTrace_C_CALL` | Function object being called. | - +-------------------------------+----------------------------------------+ - | :c:data:`PyTrace_C_EXCEPTION` | Function object being called. | - +-------------------------------+----------------------------------------+ - | :c:data:`PyTrace_C_RETURN` | Function object being called. | - +-------------------------------+----------------------------------------+ - | :c:data:`PyTrace_OPCODE` | Always :c:data:`Py_None`. | - +-------------------------------+----------------------------------------+ - -.. c:var:: int PyTrace_CALL - - The value of the *what* parameter to a :c:type:`Py_tracefunc` function when a new - call to a function or method is being reported, or a new entry into a generator. - Note that the creation of the iterator for a generator function is not reported - as there is no control transfer to the Python bytecode in the corresponding - frame. - - -.. c:var:: int PyTrace_EXCEPTION - - The value of the *what* parameter to a :c:type:`Py_tracefunc` function when an - exception has been raised. The callback function is called with this value for - *what* when after any bytecode is processed after which the exception becomes - set within the frame being executed. The effect of this is that as exception - propagation causes the Python stack to unwind, the callback is called upon - return to each frame as the exception propagates. Only trace functions receive - these events; they are not needed by the profiler. - - -.. c:var:: int PyTrace_LINE - - The value passed as the *what* parameter to a :c:type:`Py_tracefunc` function - (but not a profiling function) when a line-number event is being reported. - It may be disabled for a frame by setting :attr:`~frame.f_trace_lines` to - *0* on that frame. - - -.. c:var:: int PyTrace_RETURN - - The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a - call is about to return. - - -.. c:var:: int PyTrace_C_CALL - - The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C - function is about to be called. - - -.. c:var:: int PyTrace_C_EXCEPTION - - The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C - function has raised an exception. - - -.. c:var:: int PyTrace_C_RETURN - - The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C - function has returned. - - -.. c:var:: int PyTrace_OPCODE - - The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but not - profiling functions) when a new opcode is about to be executed. This event is - not emitted by default: it must be explicitly requested by setting - :attr:`~frame.f_trace_opcodes` to *1* on the frame. - - -.. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) - - Set the profiler function to *func*. The *obj* parameter is passed to the - function as its first parameter, and may be any Python object, or ``NULL``. If - the profile function needs to maintain state, using a different value for *obj* - for each thread provides a convenient and thread-safe place to store it. The - profile function is called for all monitored events except :c:data:`PyTrace_LINE` - :c:data:`PyTrace_OPCODE` and :c:data:`PyTrace_EXCEPTION`. - - See also the :func:`sys.setprofile` function. - - The caller must have an :term:`attached thread state`. - -.. c:function:: void PyEval_SetProfileAllThreads(Py_tracefunc func, PyObject *obj) - - Like :c:func:`PyEval_SetProfile` but sets the profile function in all running threads - belonging to the current interpreter instead of the setting it only on the current thread. - - The caller must have an :term:`attached thread state`. - - As :c:func:`PyEval_SetProfile`, this function ignores any exceptions raised while - setting the profile functions in all threads. - -.. versionadded:: 3.12 - - -.. c:function:: void PyEval_SetTrace(Py_tracefunc func, PyObject *obj) - - Set the tracing function to *func*. This is similar to - :c:func:`PyEval_SetProfile`, except the tracing function does receive line-number - events and per-opcode events, but does not receive any event related to C function - objects being called. Any trace function registered using :c:func:`PyEval_SetTrace` - will not receive :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION` or - :c:data:`PyTrace_C_RETURN` as a value for the *what* parameter. - - See also the :func:`sys.settrace` function. - - The caller must have an :term:`attached thread state`. - -.. c:function:: void PyEval_SetTraceAllThreads(Py_tracefunc func, PyObject *obj) - - Like :c:func:`PyEval_SetTrace` but sets the tracing function in all running threads - belonging to the current interpreter instead of the setting it only on the current thread. - - The caller must have an :term:`attached thread state`. - - As :c:func:`PyEval_SetTrace`, this function ignores any exceptions raised while - setting the trace functions in all threads. - -.. versionadded:: 3.12 - -Reference tracing -================= - -.. versionadded:: 3.13 - -.. c:type:: int (*PyRefTracer)(PyObject *, int event, void* data) - - The type of the trace function registered using :c:func:`PyRefTracer_SetTracer`. - The first parameter is a Python object that has been just created (when **event** - is set to :c:data:`PyRefTracer_CREATE`) or about to be destroyed (when **event** - is set to :c:data:`PyRefTracer_DESTROY`). The **data** argument is the opaque pointer - that was provided when :c:func:`PyRefTracer_SetTracer` was called. - - If a new tracing function is registered replacing the current a call to the - trace function will be made with the object set to **NULL** and **event** set to - :c:data:`PyRefTracer_TRACKER_REMOVED`. This will happen just before the new - function is registered. - -.. versionadded:: 3.13 - -.. c:var:: int PyRefTracer_CREATE - - The value for the *event* parameter to :c:type:`PyRefTracer` functions when a Python - object has been created. - -.. c:var:: int PyRefTracer_DESTROY - - The value for the *event* parameter to :c:type:`PyRefTracer` functions when a Python - object has been destroyed. - -.. c:var:: int PyRefTracer_TRACKER_REMOVED - - The value for the *event* parameter to :c:type:`PyRefTracer` functions when the - current tracer is about to be replaced by a new one. - - .. versionadded:: 3.14 - -.. c:function:: int PyRefTracer_SetTracer(PyRefTracer tracer, void *data) - - Register a reference tracer function. The function will be called when a new - Python has been created or when an object is going to be destroyed. If - **data** is provided it must be an opaque pointer that will be provided when - the tracer function is called. Return ``0`` on success. Set an exception and - return ``-1`` on error. - - Note that tracer functions **must not** create Python objects inside or - otherwise the call will be re-entrant. The tracer also **must not** clear - any existing exception or set an exception. A :term:`thread state` will be active - every time the tracer function is called. - - There must be an :term:`attached thread state` when calling this function. - - If another tracer function was already registered, the old function will be - called with **event** set to :c:data:`PyRefTracer_TRACKER_REMOVED` just before - the new function is registered. - -.. versionadded:: 3.13 - -.. c:function:: PyRefTracer PyRefTracer_GetTracer(void** data) - - Get the registered reference tracer function and the value of the opaque data - pointer that was registered when :c:func:`PyRefTracer_SetTracer` was called. - If no tracer was registered this function will return NULL and will set the - **data** pointer to NULL. - - There must be an :term:`attached thread state` when calling this function. - -.. versionadded:: 3.13 - -.. _advanced-debugging: - -Advanced Debugger Support -========================= - -These functions are only intended to be used by advanced debugging tools. - - -.. c:function:: PyInterpreterState* PyInterpreterState_Head() - - Return the interpreter state object at the head of the list of all such objects. - - -.. c:function:: PyInterpreterState* PyInterpreterState_Main() - - Return the main interpreter state object. - - -.. c:function:: PyInterpreterState* PyInterpreterState_Next(PyInterpreterState *interp) - - Return the next interpreter state object after *interp* from the list of all - such objects. - - -.. c:function:: PyThreadState * PyInterpreterState_ThreadHead(PyInterpreterState *interp) - - Return the pointer to the first :c:type:`PyThreadState` object in the list of - threads associated with the interpreter *interp*. - - -.. c:function:: PyThreadState* PyThreadState_Next(PyThreadState *tstate) - - Return the next thread state object after *tstate* from the list of all such - objects belonging to the same :c:type:`PyInterpreterState` object. - - -.. _thread-local-storage: - -Thread Local Storage Support -============================ - -The Python interpreter provides low-level support for thread-local storage -(TLS) which wraps the underlying native TLS implementation to support the -Python-level thread local storage API (:class:`threading.local`). The -CPython C level APIs are similar to those offered by pthreads and Windows: -use a thread key and functions to associate a :c:expr:`void*` value per -thread. - -A :term:`thread state` does *not* need to be :term:`attached ` -when calling these functions; they supply their own locking. - -Note that :file:`Python.h` does not include the declaration of the TLS APIs, -you need to include :file:`pythread.h` to use thread-local storage. - -.. note:: - None of these API functions handle memory management on behalf of the - :c:expr:`void*` values. You need to allocate and deallocate them yourself. - If the :c:expr:`void*` values happen to be :c:expr:`PyObject*`, these - functions don't do refcount operations on them either. - -.. _thread-specific-storage-api: - -Thread Specific Storage (TSS) API ---------------------------------- - -TSS API is introduced to supersede the use of the existing TLS API within the -CPython interpreter. This API uses a new type :c:type:`Py_tss_t` instead of -:c:expr:`int` to represent thread keys. - -.. versionadded:: 3.7 - -.. seealso:: "A New C-API for Thread-Local Storage in CPython" (:pep:`539`) - - -.. c:type:: Py_tss_t - - This data structure represents the state of a thread key, the definition of - which may depend on the underlying TLS implementation, and it has an - internal field representing the key's initialization state. There are no - public members in this structure. - - When :ref:`Py_LIMITED_API ` is not defined, static allocation of - this type by :c:macro:`Py_tss_NEEDS_INIT` is allowed. - - -.. c:macro:: Py_tss_NEEDS_INIT - - This macro expands to the initializer for :c:type:`Py_tss_t` variables. - Note that this macro won't be defined with :ref:`Py_LIMITED_API `. - - -Dynamic Allocation -~~~~~~~~~~~~~~~~~~ - -Dynamic allocation of the :c:type:`Py_tss_t`, required in extension modules -built with :ref:`Py_LIMITED_API `, where static allocation of this type -is not possible due to its implementation being opaque at build time. - - -.. c:function:: Py_tss_t* PyThread_tss_alloc() - - Return a value which is the same state as a value initialized with - :c:macro:`Py_tss_NEEDS_INIT`, or ``NULL`` in the case of dynamic allocation - failure. - - -.. c:function:: void PyThread_tss_free(Py_tss_t *key) - - Free the given *key* allocated by :c:func:`PyThread_tss_alloc`, after - first calling :c:func:`PyThread_tss_delete` to ensure any associated - thread locals have been unassigned. This is a no-op if the *key* - argument is ``NULL``. - - .. note:: - A freed key becomes a dangling pointer. You should reset the key to - ``NULL``. - - -Methods -~~~~~~~ - -The parameter *key* of these functions must not be ``NULL``. Moreover, the -behaviors of :c:func:`PyThread_tss_set` and :c:func:`PyThread_tss_get` are -undefined if the given :c:type:`Py_tss_t` has not been initialized by -:c:func:`PyThread_tss_create`. - - -.. c:function:: int PyThread_tss_is_created(Py_tss_t *key) - - Return a non-zero value if the given :c:type:`Py_tss_t` has been initialized - by :c:func:`PyThread_tss_create`. - - -.. c:function:: int PyThread_tss_create(Py_tss_t *key) - - Return a zero value on successful initialization of a TSS key. The behavior - is undefined if the value pointed to by the *key* argument is not - initialized by :c:macro:`Py_tss_NEEDS_INIT`. This function can be called - repeatedly on the same key -- calling it on an already initialized key is a - no-op and immediately returns success. - - -.. c:function:: void PyThread_tss_delete(Py_tss_t *key) - - Destroy a TSS key to forget the values associated with the key across all - threads, and change the key's initialization state to uninitialized. A - destroyed key is able to be initialized again by - :c:func:`PyThread_tss_create`. This function can be called repeatedly on - the same key -- calling it on an already destroyed key is a no-op. - - -.. c:function:: int PyThread_tss_set(Py_tss_t *key, void *value) - - Return a zero value to indicate successfully associating a :c:expr:`void*` - value with a TSS key in the current thread. Each thread has a distinct - mapping of the key to a :c:expr:`void*` value. - - -.. c:function:: void* PyThread_tss_get(Py_tss_t *key) - - Return the :c:expr:`void*` value associated with a TSS key in the current - thread. This returns ``NULL`` if no value is associated with the key in the - current thread. - - -.. _thread-local-storage-api: - -Thread Local Storage (TLS) API ------------------------------- - -.. deprecated:: 3.7 - This API is superseded by - :ref:`Thread Specific Storage (TSS) API `. - -.. note:: - This version of the API does not support platforms where the native TLS key - is defined in a way that cannot be safely cast to ``int``. On such platforms, - :c:func:`PyThread_create_key` will return immediately with a failure status, - and the other TLS functions will all be no-ops on such platforms. - -Due to the compatibility problem noted above, this version of the API should not -be used in new code. - -.. c:function:: int PyThread_create_key() -.. c:function:: void PyThread_delete_key(int key) -.. c:function:: int PyThread_set_key_value(int key, void *value) -.. c:function:: void* PyThread_get_key_value(int key) -.. c:function:: void PyThread_delete_key_value(int key) -.. c:function:: void PyThread_ReInitTLS() - -Synchronization Primitives -========================== - -The C-API provides a basic mutual exclusion lock. - -.. c:type:: PyMutex - - A mutual exclusion lock. The :c:type:`!PyMutex` should be initialized to - zero to represent the unlocked state. For example:: - - PyMutex mutex = {0}; - - Instances of :c:type:`!PyMutex` should not be copied or moved. Both the - contents and address of a :c:type:`!PyMutex` are meaningful, and it must - remain at a fixed, writable location in memory. - - .. note:: - - A :c:type:`!PyMutex` currently occupies one byte, but the size should be - considered unstable. The size may change in future Python releases - without a deprecation period. - - .. versionadded:: 3.13 - -.. c:function:: void PyMutex_Lock(PyMutex *m) - - Lock mutex *m*. If another thread has already locked it, the calling - thread will block until the mutex is unlocked. While blocked, the thread - will temporarily detach the :term:`thread state ` if one exists. - - .. versionadded:: 3.13 - -.. c:function:: void PyMutex_Unlock(PyMutex *m) - - Unlock mutex *m*. The mutex must be locked --- otherwise, the function will - issue a fatal error. - - .. versionadded:: 3.13 - -.. c:function:: int PyMutex_IsLocked(PyMutex *m) - - Returns non-zero if the mutex *m* is currently locked, zero otherwise. - - .. note:: - - This function is intended for use in assertions and debugging only and - should not be used to make concurrency control decisions, as the lock - state may change immediately after the check. - - .. versionadded:: 3.14 - -.. _python-critical-section-api: - -Python Critical Section API ---------------------------- - -The critical section API provides a deadlock avoidance layer on top of -per-object locks for :term:`free-threaded ` CPython. They are -intended to replace reliance on the :term:`global interpreter lock`, and are -no-ops in versions of Python with the global interpreter lock. - -Critical sections are intended to be used for custom types implemented -in C-API extensions. They should generally not be used with built-in types like -:class:`list` and :class:`dict` because their public C-APIs -already use critical sections internally, with the notable -exception of :c:func:`PyDict_Next`, which requires critical section -to be acquired externally. - -Critical sections avoid deadlocks by implicitly suspending active critical -sections, hence, they do not provide exclusive access such as provided by -traditional locks like :c:type:`PyMutex`. When a critical section is started, -the per-object lock for the object is acquired. If the code executed inside the -critical section calls C-API functions then it can suspend the critical section thereby -releasing the per-object lock, so other threads can acquire the per-object lock -for the same object. - -Variants that accept :c:type:`PyMutex` pointers rather than Python objects are also -available. Use these variants to start a critical section in a situation where -there is no :c:type:`PyObject` -- for example, when working with a C type that -does not extend or wrap :c:type:`PyObject` but still needs to call into the C -API in a manner that might lead to deadlocks. - -The functions and structs used by the macros are exposed for cases -where C macros are not available. They should only be used as in the -given macro expansions. Note that the sizes and contents of the structures may -change in future Python versions. - -.. note:: - - Operations that need to lock two objects at once must use - :c:macro:`Py_BEGIN_CRITICAL_SECTION2`. You *cannot* use nested critical - sections to lock more than one object at once, because the inner critical - section may suspend the outer critical sections. This API does not provide - a way to lock more than two objects at once. - -Example usage:: - - static PyObject * - set_field(MyObject *self, PyObject *value) - { - Py_BEGIN_CRITICAL_SECTION(self); - Py_SETREF(self->field, Py_XNewRef(value)); - Py_END_CRITICAL_SECTION(); - Py_RETURN_NONE; - } - -In the above example, :c:macro:`Py_SETREF` calls :c:macro:`Py_DECREF`, which -can call arbitrary code through an object's deallocation function. The critical -section API avoids potential deadlocks due to reentrancy and lock ordering -by allowing the runtime to temporarily suspend the critical section if the -code triggered by the finalizer blocks and calls :c:func:`PyEval_SaveThread`. - -.. c:macro:: Py_BEGIN_CRITICAL_SECTION(op) - - Acquires the per-object lock for the object *op* and begins a - critical section. - - In the free-threaded build, this macro expands to:: - - { - PyCriticalSection _py_cs; - PyCriticalSection_Begin(&_py_cs, (PyObject*)(op)) - - In the default build, this macro expands to ``{``. - - .. versionadded:: 3.13 - -.. c:macro:: Py_BEGIN_CRITICAL_SECTION_MUTEX(m) - - Locks the mutex *m* and begins a critical section. - - In the free-threaded build, this macro expands to:: - - { - PyCriticalSection _py_cs; - PyCriticalSection_BeginMutex(&_py_cs, m) - - Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION`, there is no cast for - the argument of the macro - it must be a :c:type:`PyMutex` pointer. - - On the default build, this macro expands to ``{``. - - .. versionadded:: 3.14 - -.. c:macro:: Py_END_CRITICAL_SECTION() - - Ends the critical section and releases the per-object lock. - - In the free-threaded build, this macro expands to:: - - PyCriticalSection_End(&_py_cs); - } - - In the default build, this macro expands to ``}``. - - .. versionadded:: 3.13 - -.. c:macro:: Py_BEGIN_CRITICAL_SECTION2(a, b) - - Acquires the per-objects locks for the objects *a* and *b* and begins a - critical section. The locks are acquired in a consistent order (lowest - address first) to avoid lock ordering deadlocks. - - In the free-threaded build, this macro expands to:: - - { - PyCriticalSection2 _py_cs2; - PyCriticalSection2_Begin(&_py_cs2, (PyObject*)(a), (PyObject*)(b)) - - In the default build, this macro expands to ``{``. - - .. versionadded:: 3.13 - -.. c:macro:: Py_BEGIN_CRITICAL_SECTION2_MUTEX(m1, m2) - - Locks the mutexes *m1* and *m2* and begins a critical section. - - In the free-threaded build, this macro expands to:: - - { - PyCriticalSection2 _py_cs2; - PyCriticalSection2_BeginMutex(&_py_cs2, m1, m2) - - Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION2`, there is no cast for - the arguments of the macro - they must be :c:type:`PyMutex` pointers. - - On the default build, this macro expands to ``{``. - - .. versionadded:: 3.14 - -.. c:macro:: Py_END_CRITICAL_SECTION2() - - Ends the critical section and releases the per-object locks. - - In the free-threaded build, this macro expands to:: - - PyCriticalSection2_End(&_py_cs2); - } - - In the default build, this macro expands to ``}``. - - .. versionadded:: 3.13 - - -Legacy Locking APIs -------------------- - -These APIs are obsolete since Python 3.13 with the introduction of -:c:type:`PyMutex`. - -.. versionchanged:: 3.15 - These APIs are now a simple wrapper around ``PyMutex``. - - -.. c:type:: PyThread_type_lock - - A pointer to a mutual exclusion lock. - - -.. c:type:: PyLockStatus - - The result of acquiring a lock with a timeout. - - .. c:namespace:: NULL - - .. c:enumerator:: PY_LOCK_FAILURE - - Failed to acquire the lock. - - .. c:enumerator:: PY_LOCK_ACQUIRED - - The lock was successfully acquired. - - .. c:enumerator:: PY_LOCK_INTR - - The lock was interrupted by a signal. - - -.. c:function:: PyThread_type_lock PyThread_allocate_lock(void) - - Allocate a new lock. - - On success, this function returns a lock; on failure, this - function returns ``0`` without an exception set. - - The caller does not need to hold an :term:`attached thread state`. - - .. versionchanged:: 3.15 - This function now always uses :c:type:`PyMutex`. In prior versions, this - would use a lock provided by the operating system. - - -.. c:function:: void PyThread_free_lock(PyThread_type_lock lock) - - Destroy *lock*. The lock should not be held by any thread when calling - this. - - The caller does not need to hold an :term:`attached thread state`. - - -.. c:function:: PyLockStatus PyThread_acquire_lock_timed(PyThread_type_lock lock, long long microseconds, int intr_flag) - - Acquire *lock* with a timeout. - - This will wait for *microseconds* microseconds to acquire the lock. If the - timeout expires, this function returns :c:enumerator:`PY_LOCK_FAILURE`. - If *microseconds* is ``-1``, this will wait indefinitely until the lock has - been released. - - If *intr_flag* is ``1``, acquiring the lock may be interrupted by a signal, - in which case this function returns :c:enumerator:`PY_LOCK_INTR`. Upon - interruption, it's generally expected that the caller makes a call to - :c:func:`Py_MakePendingCalls` to propagate an exception to Python code. - - If the lock is successfully acquired, this function returns - :c:enumerator:`PY_LOCK_ACQUIRED`. - - The caller does not need to hold an :term:`attached thread state`. - - -.. c:function:: int PyThread_acquire_lock(PyThread_type_lock lock, int waitflag) - - Acquire *lock*. - - If *waitflag* is ``1`` and another thread currently holds the lock, this - function will wait until the lock can be acquired and will always return - ``1``. - - If *waitflag* is ``0`` and another thread holds the lock, this function will - not wait and instead return ``0``. If the lock is not held by any other - thread, then this function will acquire it and return ``1``. - - Unlike :c:func:`PyThread_acquire_lock_timed`, acquiring the lock cannot be - interrupted by a signal. - - The caller does not need to hold an :term:`attached thread state`. - - -.. c:function:: int PyThread_release_lock(PyThread_type_lock lock) - - Release *lock*. If *lock* is not held, then this function issues a - fatal error. - - The caller does not need to hold an :term:`attached thread state`. - - -Operating System Thread APIs -============================ - -.. c:macro:: PYTHREAD_INVALID_THREAD_ID - - Sentinel value for an invalid thread ID. - - This is currently equivalent to ``(unsigned long)-1``. - - -.. c:function:: unsigned long PyThread_start_new_thread(void (*func)(void *), void *arg) - - Start function *func* in a new thread with argument *arg*. - The resulting thread is not intended to be joined. - - *func* must not be ``NULL``, but *arg* may be ``NULL``. - - On success, this function returns the identifier of the new thread; on failure, - this returns :c:macro:`PYTHREAD_INVALID_THREAD_ID`. - - The caller does not need to hold an :term:`attached thread state`. - - -.. c:function:: unsigned long PyThread_get_thread_ident(void) - - Return the identifier of the current thread, which will never be zero. - - This function cannot fail, and the caller does not need to hold an - :term:`attached thread state`. - - .. seealso:: - :py:func:`threading.get_ident` - - -.. c:function:: PyObject *PyThread_GetInfo(void) - - Get general information about the current thread in the form of a - :ref:`struct sequence ` object. This information is - accessible as :py:attr:`sys.thread_info` in Python. - - On success, this returns a new :term:`strong reference` to the thread - information; on failure, this returns ``NULL`` with an exception set. - - The caller must hold an :term:`attached thread state`. - - -.. c:macro:: PY_HAVE_THREAD_NATIVE_ID - - This macro is defined when the system supports native thread IDs. - - -.. c:function:: unsigned long PyThread_get_thread_native_id(void) - - Get the native identifier of the current thread as it was assigned by the operating - system's kernel, which will never be less than zero. - - This function is only available when :c:macro:`PY_HAVE_THREAD_NATIVE_ID` is - defined. - - This function cannot fail, and the caller does not need to hold an - :term:`attached thread state`. - - .. seealso:: - :py:func:`threading.get_native_id` - - -.. c:function:: void PyThread_exit_thread(void) - - Terminate the current thread. This function is generally considered unsafe - and should be avoided. It is kept solely for backwards compatibility. - - This function is only safe to call if all functions in the full call - stack are written to safely allow it. - - .. warning:: - - If the current system uses POSIX threads (also known as "pthreads"), - this calls :manpage:`pthread_exit(3)`, which attempts to unwind the stack - and call C++ destructors on some libc implementations. However, if a - ``noexcept`` function is reached, it may terminate the process. - Other systems, such as macOS, do unwinding. - - On Windows, this function calls ``_endthreadex()``, which kills the thread - without calling C++ destructors. - - In any case, there is a risk of corruption on the thread's stack. - - .. deprecated:: 3.14 - - -.. c:function:: void PyThread_init_thread(void) - - Initialize ``PyThread*`` APIs. Python executes this function automatically, - so there's little need to call it from an extension module. - - -.. c:function:: int PyThread_set_stacksize(size_t size) - - Set the stack size of the current thread to *size* bytes. - - This function returns ``0`` on success, ``-1`` if *size* is invalid, or - ``-2`` if the system does not support changing the stack size. This function - does not set exceptions. - - The caller does not need to hold an :term:`attached thread state`. - - -.. c:function:: size_t PyThread_get_stacksize(void) - - Return the stack size of the current thread in bytes, or ``0`` if the system's - default stack size is in use. - - The caller does not need to hold an :term:`attached thread state`. +- :ref:`initialization` +- :ref:`threads` +- :ref:`synchronization` +- :ref:`thread-local-storage` +- :ref:`sub-interpreter-support` +- :ref:`profiling` diff --git a/Doc/c-api/interp-lifecycle.rst b/Doc/c-api/interp-lifecycle.rst new file mode 100644 index 00000000000000..189d8e424f6814 --- /dev/null +++ b/Doc/c-api/interp-lifecycle.rst @@ -0,0 +1,797 @@ +.. highlight:: c + +.. _initialization: + +Interpreter initialization and finalization +=========================================== + +See :ref:`Python Initialization Configuration ` for details +on how to configure the interpreter prior to initialization. + +.. _pre-init-safe: + +Before Python initialization +---------------------------- + +In an application embedding Python, the :c:func:`Py_Initialize` function must +be called before using any other Python/C API functions; with the exception of +a few functions and the :ref:`global configuration variables +`. + +The following functions can be safely called before Python is initialized: + +* Functions that initialize the interpreter: + + * :c:func:`Py_Initialize` + * :c:func:`Py_InitializeEx` + * :c:func:`Py_InitializeFromConfig` + * :c:func:`Py_BytesMain` + * :c:func:`Py_Main` + * the runtime pre-initialization functions covered in :ref:`init-config` + +* Configuration functions: + + * :c:func:`PyImport_AppendInittab` + * :c:func:`PyImport_ExtendInittab` + * :c:func:`!PyInitFrozenExtensions` + * :c:func:`PyMem_SetAllocator` + * :c:func:`PyMem_SetupDebugHooks` + * :c:func:`PyObject_SetArenaAllocator` + * :c:func:`Py_SetProgramName` + * :c:func:`Py_SetPythonHome` + * the configuration functions covered in :ref:`init-config` + +* Informative functions: + + * :c:func:`Py_IsInitialized` + * :c:func:`PyMem_GetAllocator` + * :c:func:`PyObject_GetArenaAllocator` + * :c:func:`Py_GetBuildInfo` + * :c:func:`Py_GetCompiler` + * :c:func:`Py_GetCopyright` + * :c:func:`Py_GetPlatform` + * :c:func:`Py_GetVersion` + * :c:func:`Py_IsInitialized` + +* Utilities: + + * :c:func:`Py_DecodeLocale` + * the status reporting and utility functions covered in :ref:`init-config` + +* Memory allocators: + + * :c:func:`PyMem_RawMalloc` + * :c:func:`PyMem_RawRealloc` + * :c:func:`PyMem_RawCalloc` + * :c:func:`PyMem_RawFree` + +* Synchronization: + + * :c:func:`PyMutex_Lock` + * :c:func:`PyMutex_Unlock` + +.. note:: + + Despite their apparent similarity to some of the functions listed above, + the following functions **should not be called** before the interpreter has + been initialized: :c:func:`Py_EncodeLocale`, :c:func:`PyEval_InitThreads`, and + :c:func:`Py_RunMain`. + + +.. _global-conf-vars: + +Global configuration variables +------------------------------ + +Python has variables for the global configuration to control different features +and options. By default, these flags are controlled by :ref:`command line +options `. + +When a flag is set by an option, the value of the flag is the number of times +that the option was set. For example, ``-b`` sets :c:data:`Py_BytesWarningFlag` +to 1 and ``-bb`` sets :c:data:`Py_BytesWarningFlag` to 2. + + +.. c:var:: int Py_BytesWarningFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.bytes_warning` should be used instead, see :ref:`Python + Initialization Configuration `. + + Issue a warning when comparing :class:`bytes` or :class:`bytearray` with + :class:`str` or :class:`bytes` with :class:`int`. Issue an error if greater + or equal to ``2``. + + Set by the :option:`-b` option. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_DebugFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.parser_debug` should be used instead, see :ref:`Python + Initialization Configuration `. + + Turn on parser debugging output (for expert only, depending on compilation + options). + + Set by the :option:`-d` option and the :envvar:`PYTHONDEBUG` environment + variable. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_DontWriteBytecodeFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.write_bytecode` should be used instead, see :ref:`Python + Initialization Configuration `. + + If set to non-zero, Python won't try to write ``.pyc`` files on the + import of source modules. + + Set by the :option:`-B` option and the :envvar:`PYTHONDONTWRITEBYTECODE` + environment variable. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_FrozenFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.pathconfig_warnings` should be used instead, see + :ref:`Python Initialization Configuration `. + + Private flag used by ``_freeze_module`` and ``frozenmain`` programs. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_HashRandomizationFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.hash_seed` and :c:member:`PyConfig.use_hash_seed` should + be used instead, see :ref:`Python Initialization Configuration + `. + + Set to ``1`` if the :envvar:`PYTHONHASHSEED` environment variable is set to + a non-empty string. + + If the flag is non-zero, read the :envvar:`PYTHONHASHSEED` environment + variable to initialize the secret hash seed. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_IgnoreEnvironmentFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.use_environment` should be used instead, see + :ref:`Python Initialization Configuration `. + + Ignore all :envvar:`!PYTHON*` environment variables, e.g. + :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set. + + Set by the :option:`-E` and :option:`-I` options. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_InspectFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.inspect` should be used instead, see + :ref:`Python Initialization Configuration `. + + When a script is passed as first argument or the :option:`-c` option is used, + enter interactive mode after executing the script or the command, even when + :data:`sys.stdin` does not appear to be a terminal. + + Set by the :option:`-i` option and the :envvar:`PYTHONINSPECT` environment + variable. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_InteractiveFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.interactive` should be used instead, see + :ref:`Python Initialization Configuration `. + + Set by the :option:`-i` option. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_IsolatedFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.isolated` should be used instead, see + :ref:`Python Initialization Configuration `. + + Run Python in isolated mode. In isolated mode :data:`sys.path` contains + neither the script's directory nor the user's site-packages directory. + + Set by the :option:`-I` option. + + .. versionadded:: 3.4 + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_LegacyWindowsFSEncodingFlag + + This API is kept for backward compatibility: setting + :c:member:`PyPreConfig.legacy_windows_fs_encoding` should be used instead, see + :ref:`Python Initialization Configuration `. + + If the flag is non-zero, use the ``mbcs`` encoding with ``replace`` error + handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler, + for the :term:`filesystem encoding and error handler`. + + Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment + variable is set to a non-empty string. + + See :pep:`529` for more details. + + .. availability:: Windows. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_LegacyWindowsStdioFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.legacy_windows_stdio` should be used instead, see + :ref:`Python Initialization Configuration `. + + If the flag is non-zero, use :class:`io.FileIO` instead of + :class:`!io._WindowsConsoleIO` for :mod:`sys` standard streams. + + Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment + variable is set to a non-empty string. + + See :pep:`528` for more details. + + .. availability:: Windows. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_NoSiteFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.site_import` should be used instead, see + :ref:`Python Initialization Configuration `. + + Disable the import of the module :mod:`site` and the site-dependent + manipulations of :data:`sys.path` that it entails. Also disable these + manipulations if :mod:`site` is explicitly imported later (call + :func:`site.main` if you want them to be triggered). + + Set by the :option:`-S` option. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_NoUserSiteDirectory + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.user_site_directory` should be used instead, see + :ref:`Python Initialization Configuration `. + + Don't add the :data:`user site-packages directory ` to + :data:`sys.path`. + + Set by the :option:`-s` and :option:`-I` options, and the + :envvar:`PYTHONNOUSERSITE` environment variable. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_OptimizeFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.optimization_level` should be used instead, see + :ref:`Python Initialization Configuration `. + + Set by the :option:`-O` option and the :envvar:`PYTHONOPTIMIZE` environment + variable. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_QuietFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.quiet` should be used instead, see :ref:`Python + Initialization Configuration `. + + Don't display the copyright and version messages even in interactive mode. + + Set by the :option:`-q` option. + + .. versionadded:: 3.2 + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_UnbufferedStdioFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.buffered_stdio` should be used instead, see :ref:`Python + Initialization Configuration `. + + Force the stdout and stderr streams to be unbuffered. + + Set by the :option:`-u` option and the :envvar:`PYTHONUNBUFFERED` + environment variable. + + .. deprecated-removed:: 3.12 3.15 + + +.. c:var:: int Py_VerboseFlag + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.verbose` should be used instead, see :ref:`Python + Initialization Configuration `. + + Print a message each time a module is initialized, showing the place + (filename or built-in module) from which it is loaded. If greater or equal + to ``2``, print a message for each file that is checked for when + searching for a module. Also provides information on module cleanup at exit. + + Set by the :option:`-v` option and the :envvar:`PYTHONVERBOSE` environment + variable. + + .. deprecated-removed:: 3.12 3.15 + + +Initializing and finalizing the interpreter +------------------------------------------- + +.. c:function:: void Py_Initialize() + + .. index:: + single: PyEval_InitThreads() + single: modules (in module sys) + single: path (in module sys) + pair: module; builtins + pair: module; __main__ + pair: module; sys + triple: module; search; path + single: Py_FinalizeEx (C function) + + Initialize the Python interpreter. In an application embedding Python, + this should be called before using any other Python/C API functions; see + :ref:`Before Python Initialization ` for the few exceptions. + + This initializes the table of loaded modules (``sys.modules``), and creates + the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. + It also initializes the module search path (``sys.path``). It does not set + ``sys.argv``; use the :ref:`Python Initialization Configuration ` + API for that. This is a no-op when called for a second time (without calling + :c:func:`Py_FinalizeEx` first). There is no return value; it is a fatal + error if the initialization fails. + + Use :c:func:`Py_InitializeFromConfig` to customize the + :ref:`Python Initialization Configuration `. + + .. note:: + On Windows, changes the console mode from ``O_TEXT`` to ``O_BINARY``, + which will also affect non-Python uses of the console using the C Runtime. + + +.. c:function:: void Py_InitializeEx(int initsigs) + + This function works like :c:func:`Py_Initialize` if *initsigs* is ``1``. If + *initsigs* is ``0``, it skips initialization registration of signal handlers, + which may be useful when CPython is embedded as part of a larger application. + + Use :c:func:`Py_InitializeFromConfig` to customize the + :ref:`Python Initialization Configuration `. + + +.. c:function:: PyStatus Py_InitializeFromConfig(const PyConfig *config) + + Initialize Python from *config* configuration, as described in + :ref:`init-from-config`. + + See the :ref:`init-config` section for details on pre-initializing the + interpreter, populating the runtime configuration structure, and querying + the returned status structure. + + +.. c:function:: int Py_IsInitialized() + + Return true (nonzero) when the Python interpreter has been initialized, false + (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns false until + :c:func:`Py_Initialize` is called again. + + +.. c:function:: int Py_IsFinalizing() + + Return true (non-zero) if the main Python interpreter is + :term:`shutting down `. Return false (zero) otherwise. + + .. versionadded:: 3.13 + + +.. c:function:: int Py_FinalizeEx() + + Undo all initializations made by :c:func:`Py_Initialize` and subsequent use of + Python/C API functions, and destroy all sub-interpreters (see + :c:func:`Py_NewInterpreter` below) that were created and not yet destroyed since + the last call to :c:func:`Py_Initialize`. This is a no-op when called for a second + time (without calling :c:func:`Py_Initialize` again first). + + Since this is the reverse of :c:func:`Py_Initialize`, it should be called + in the same thread with the same interpreter active. That means + the main thread and the main interpreter. + This should never be called while :c:func:`Py_RunMain` is running. + + Normally the return value is ``0``. + If there were errors during finalization (flushing buffered data), + ``-1`` is returned. + + Note that Python will do a best effort at freeing all memory allocated by the Python + interpreter. Therefore, any C-Extension should make sure to correctly clean up all + of the previously allocated PyObjects before using them in subsequent calls to + :c:func:`Py_Initialize`. Otherwise it could introduce vulnerabilities and incorrect + behavior. + + This function is provided for a number of reasons. An embedding application + might want to restart Python without having to restart the application itself. + An application that has loaded the Python interpreter from a dynamically + loadable library (or DLL) might want to free all memory allocated by Python + before unloading the DLL. During a hunt for memory leaks in an application a + developer might want to free all memory allocated by Python before exiting from + the application. + + **Bugs and caveats:** The destruction of modules and objects in modules is done + in random order; this may cause destructors (:meth:`~object.__del__` methods) to fail + when they depend on other objects (even functions) or modules. Dynamically + loaded extension modules loaded by Python are not unloaded. Small amounts of + memory allocated by the Python interpreter may not be freed (if you find a leak, + please report it). Memory tied up in circular references between objects is not + freed. Interned strings will all be deallocated regardless of their reference count. + Some memory allocated by extension modules may not be freed. Some extensions may not + work properly if their initialization routine is called more than once; this can + happen if an application calls :c:func:`Py_Initialize` and :c:func:`Py_FinalizeEx` + more than once. :c:func:`Py_FinalizeEx` must not be called recursively from + within itself. Therefore, it must not be called by any code that may be run + as part of the interpreter shutdown process, such as :py:mod:`atexit` + handlers, object finalizers, or any code that may be run while flushing the + stdout and stderr files. + + .. audit-event:: cpython._PySys_ClearAuditHooks "" c.Py_FinalizeEx + + .. versionadded:: 3.6 + + +.. c:function:: void Py_Finalize() + + This is a backwards-compatible version of :c:func:`Py_FinalizeEx` that + disregards the return value. + + +.. c:function:: int Py_BytesMain(int argc, char **argv) + + Similar to :c:func:`Py_Main` but *argv* is an array of bytes strings, + allowing the calling application to delegate the text decoding step to + the CPython runtime. + + .. versionadded:: 3.8 + + +.. c:function:: int Py_Main(int argc, wchar_t **argv) + + The main program for the standard interpreter, encapsulating a full + initialization/finalization cycle, as well as additional + behaviour to implement reading configurations settings from the environment + and command line, and then executing ``__main__`` in accordance with + :ref:`using-on-cmdline`. + + This is made available for programs which wish to support the full CPython + command line interface, rather than just embedding a Python runtime in a + larger application. + + The *argc* and *argv* parameters are similar to those which are passed to a + C program's :c:func:`main` function, except that the *argv* entries are first + converted to ``wchar_t`` using :c:func:`Py_DecodeLocale`. It is also + important to note that the argument list entries may be modified to point to + strings other than those passed in (however, the contents of the strings + pointed to by the argument list are not modified). + + The return value is ``2`` if the argument list does not represent a valid + Python command line, and otherwise the same as :c:func:`Py_RunMain`. + + In terms of the CPython runtime configuration APIs documented in the + :ref:`runtime configuration ` section (and without accounting + for error handling), ``Py_Main`` is approximately equivalent to:: + + PyConfig config; + PyConfig_InitPythonConfig(&config); + PyConfig_SetArgv(&config, argc, argv); + Py_InitializeFromConfig(&config); + PyConfig_Clear(&config); + + Py_RunMain(); + + In normal usage, an embedding application will call this function + *instead* of calling :c:func:`Py_Initialize`, :c:func:`Py_InitializeEx` or + :c:func:`Py_InitializeFromConfig` directly, and all settings will be applied + as described elsewhere in this documentation. If this function is instead + called *after* a preceding runtime initialization API call, then exactly + which environmental and command line configuration settings will be updated + is version dependent (as it depends on which settings correctly support + being modified after they have already been set once when the runtime was + first initialized). + + +.. c:function:: int Py_RunMain(void) + + Executes the main module in a fully configured CPython runtime. + + Executes the command (:c:member:`PyConfig.run_command`), the script + (:c:member:`PyConfig.run_filename`) or the module + (:c:member:`PyConfig.run_module`) specified on the command line or in the + configuration. If none of these values are set, runs the interactive Python + prompt (REPL) using the ``__main__`` module's global namespace. + + If :c:member:`PyConfig.inspect` is not set (the default), the return value + will be ``0`` if the interpreter exits normally (that is, without raising + an exception), the exit status of an unhandled :exc:`SystemExit`, or ``1`` + for any other unhandled exception. + + If :c:member:`PyConfig.inspect` is set (such as when the :option:`-i` option + is used), rather than returning when the interpreter exits, execution will + instead resume in an interactive Python prompt (REPL) using the ``__main__`` + module's global namespace. If the interpreter exited with an exception, it + is immediately raised in the REPL session. The function return value is + then determined by the way the *REPL session* terminates: ``0``, ``1``, or + the status of a :exc:`SystemExit`, as specified above. + + This function always finalizes the Python interpreter before it returns. + + See :ref:`Python Configuration ` for an example of a + customized Python that always runs in isolated mode using + :c:func:`Py_RunMain`. + +.. c:function:: int PyUnstable_AtExit(PyInterpreterState *interp, void (*func)(void *), void *data) + + Register an :mod:`atexit` callback for the target interpreter *interp*. + This is similar to :c:func:`Py_AtExit`, but takes an explicit interpreter and + data pointer for the callback. + + There must be an :term:`attached thread state` for *interp*. + + .. versionadded:: 3.13 + + +.. _cautions-regarding-runtime-finalization: + +Cautions regarding runtime finalization +--------------------------------------- + +In the late stage of :term:`interpreter shutdown`, after attempting to wait for +non-daemon threads to exit (though this can be interrupted by +:class:`KeyboardInterrupt`) and running the :mod:`atexit` functions, the runtime +is marked as *finalizing*: :c:func:`Py_IsFinalizing` and +:func:`sys.is_finalizing` return true. At this point, only the *finalization +thread* that initiated finalization (typically the main thread) is allowed to +acquire the :term:`GIL`. + +If any thread, other than the finalization thread, attempts to attach a :term:`thread state` +during finalization, either explicitly or +implicitly, the thread enters **a permanently blocked state** +where it remains until the program exits. In most cases this is harmless, but this can result +in deadlock if a later stage of finalization attempts to acquire a lock owned by the +blocked thread, or otherwise waits on the blocked thread. + +Gross? Yes. This prevents random crashes and/or unexpectedly skipped C++ +finalizations further up the call stack when such threads were forcibly exited +here in CPython 3.13 and earlier. The CPython runtime :term:`thread state` C APIs +have never had any error reporting or handling expectations at :term:`thread state` +attachment time that would've allowed for graceful exit from this situation. Changing that +would require new stable C APIs and rewriting the majority of C code in the +CPython ecosystem to use those with error handling. + + +Process-wide parameters +----------------------- + +.. c:function:: void Py_SetProgramName(const wchar_t *name) + + .. index:: + single: Py_Initialize() + single: main() + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.program_name` should be used instead, see :ref:`Python + Initialization Configuration `. + + This function should be called before :c:func:`Py_Initialize` is called for + the first time, if it is called at all. It tells the interpreter the value + of the ``argv[0]`` argument to the :c:func:`main` function of the program + (converted to wide characters). + This is used by some other functions below to find + the Python run-time libraries relative to the interpreter executable. The + default value is ``'python'``. The argument should point to a + zero-terminated wide character string in static storage whose contents will not + change for the duration of the program's execution. No code in the Python + interpreter will change the contents of this storage. + + Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a + :c:expr:`wchar_t*` string. + + .. deprecated-removed:: 3.11 3.15 + + +.. c:function:: const char* Py_GetVersion() + + Return the version of this Python interpreter. This is a string that looks + something like :: + + "3.0a5+ (py3k:63103M, May 12 2008, 00:53:55) \n[GCC 4.2.3]" + + .. index:: single: version (in module sys) + + The first word (up to the first space character) is the current Python version; + the first characters are the major and minor version separated by a + period. The returned string points into static storage; the caller should not + modify its value. The value is available to Python code as :data:`sys.version`. + + See also the :c:var:`Py_Version` constant. + + +.. c:function:: const char* Py_GetPlatform() + + .. index:: single: platform (in module sys) + + Return the platform identifier for the current platform. On Unix, this is + formed from the "official" name of the operating system, converted to lower + case, followed by the major revision number; e.g., for Solaris 2.x, which is + also known as SunOS 5.x, the value is ``'sunos5'``. On macOS, it is + ``'darwin'``. On Windows, it is ``'win'``. The returned string points into + static storage; the caller should not modify its value. The value is available + to Python code as ``sys.platform``. + + +.. c:function:: const char* Py_GetCopyright() + + Return the official copyright string for the current Python version, for example + + ``'Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam'`` + + .. index:: single: copyright (in module sys) + + The returned string points into static storage; the caller should not modify its + value. The value is available to Python code as ``sys.copyright``. + + +.. c:function:: const char* Py_GetCompiler() + + Return an indication of the compiler used to build the current Python version, + in square brackets, for example:: + + "[GCC 2.7.2.2]" + + .. index:: single: version (in module sys) + + The returned string points into static storage; the caller should not modify its + value. The value is available to Python code as part of the variable + ``sys.version``. + + +.. c:function:: const char* Py_GetBuildInfo() + + Return information about the sequence number and build date and time of the + current Python interpreter instance, for example :: + + "#67, Aug 1 1997, 22:34:28" + + .. index:: single: version (in module sys) + + The returned string points into static storage; the caller should not modify its + value. The value is available to Python code as part of the variable + ``sys.version``. + + +.. c:function:: void PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath) + + .. index:: + single: main() + single: Py_FatalError() + single: argv (in module sys) + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.argv`, :c:member:`PyConfig.parse_argv` and + :c:member:`PyConfig.safe_path` should be used instead, see :ref:`Python + Initialization Configuration `. + + Set :data:`sys.argv` based on *argc* and *argv*. These parameters are + similar to those passed to the program's :c:func:`main` function with the + difference that the first entry should refer to the script file to be + executed rather than the executable hosting the Python interpreter. If there + isn't a script that will be run, the first entry in *argv* can be an empty + string. If this function fails to initialize :data:`sys.argv`, a fatal + condition is signalled using :c:func:`Py_FatalError`. + + If *updatepath* is zero, this is all the function does. If *updatepath* + is non-zero, the function also modifies :data:`sys.path` according to the + following algorithm: + + - If the name of an existing script is passed in ``argv[0]``, the absolute + path of the directory where the script is located is prepended to + :data:`sys.path`. + - Otherwise (that is, if *argc* is ``0`` or ``argv[0]`` doesn't point + to an existing file name), an empty string is prepended to + :data:`sys.path`, which is the same as prepending the current working + directory (``"."``). + + Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a + :c:expr:`wchar_t*` string. + + See also :c:member:`PyConfig.orig_argv` and :c:member:`PyConfig.argv` + members of the :ref:`Python Initialization Configuration `. + + .. note:: + It is recommended that applications embedding the Python interpreter + for purposes other than executing a single script pass ``0`` as *updatepath*, + and update :data:`sys.path` themselves if desired. + See :cve:`2008-5983`. + + On versions before 3.1.3, you can achieve the same effect by manually + popping the first :data:`sys.path` element after having called + :c:func:`PySys_SetArgv`, for example using:: + + PyRun_SimpleString("import sys; sys.path.pop(0)\n"); + + .. versionadded:: 3.1.3 + + .. deprecated-removed:: 3.11 3.15 + + +.. c:function:: void PySys_SetArgv(int argc, wchar_t **argv) + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.argv` and :c:member:`PyConfig.parse_argv` should be used + instead, see :ref:`Python Initialization Configuration `. + + This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set + to ``1`` unless the :program:`python` interpreter was started with the + :option:`-I`. + + Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a + :c:expr:`wchar_t*` string. + + See also :c:member:`PyConfig.orig_argv` and :c:member:`PyConfig.argv` + members of the :ref:`Python Initialization Configuration `. + + .. versionchanged:: 3.4 The *updatepath* value depends on :option:`-I`. + + .. deprecated-removed:: 3.11 3.15 + + +.. c:function:: void Py_SetPythonHome(const wchar_t *home) + + This API is kept for backward compatibility: setting + :c:member:`PyConfig.home` should be used instead, see :ref:`Python + Initialization Configuration `. + + Set the default "home" directory, that is, the location of the standard + Python libraries. See :envvar:`PYTHONHOME` for the meaning of the + argument string. + + The argument should point to a zero-terminated character string in static + storage whose contents will not change for the duration of the program's + execution. No code in the Python interpreter will change the contents of + this storage. + + Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a + :c:expr:`wchar_t*` string. + + .. deprecated-removed:: 3.11 3.15 diff --git a/Doc/c-api/profiling.rst b/Doc/c-api/profiling.rst new file mode 100644 index 00000000000000..0200f2eac6d908 --- /dev/null +++ b/Doc/c-api/profiling.rst @@ -0,0 +1,239 @@ +.. highlight:: c + +.. _profiling: + +Profiling and tracing +===================== + +The Python interpreter provides some low-level support for attaching profiling +and execution tracing facilities. These are used for profiling, debugging, and +coverage analysis tools. + +This C interface allows the profiling or tracing code to avoid the overhead of +calling through Python-level callable objects, making a direct C function call +instead. The essential attributes of the facility have not changed; the +interface allows trace functions to be installed per-thread, and the basic +events reported to the trace function are the same as had been reported to the +Python-level trace functions in previous versions. + + +.. c:type:: int (*Py_tracefunc)(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) + + The type of the trace function registered using :c:func:`PyEval_SetProfile` and + :c:func:`PyEval_SetTrace`. The first parameter is the object passed to the + registration function as *obj*, *frame* is the frame object to which the event + pertains, *what* is one of the constants :c:data:`PyTrace_CALL`, + :c:data:`PyTrace_EXCEPTION`, :c:data:`PyTrace_LINE`, :c:data:`PyTrace_RETURN`, + :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION`, :c:data:`PyTrace_C_RETURN`, + or :c:data:`PyTrace_OPCODE`, and *arg* depends on the value of *what*: + + +-------------------------------+----------------------------------------+ + | Value of *what* | Meaning of *arg* | + +===============================+========================================+ + | :c:data:`PyTrace_CALL` | Always :c:data:`Py_None`. | + +-------------------------------+----------------------------------------+ + | :c:data:`PyTrace_EXCEPTION` | Exception information as returned by | + | | :func:`sys.exc_info`. | + +-------------------------------+----------------------------------------+ + | :c:data:`PyTrace_LINE` | Always :c:data:`Py_None`. | + +-------------------------------+----------------------------------------+ + | :c:data:`PyTrace_RETURN` | Value being returned to the caller, | + | | or ``NULL`` if caused by an exception. | + +-------------------------------+----------------------------------------+ + | :c:data:`PyTrace_C_CALL` | Function object being called. | + +-------------------------------+----------------------------------------+ + | :c:data:`PyTrace_C_EXCEPTION` | Function object being called. | + +-------------------------------+----------------------------------------+ + | :c:data:`PyTrace_C_RETURN` | Function object being called. | + +-------------------------------+----------------------------------------+ + | :c:data:`PyTrace_OPCODE` | Always :c:data:`Py_None`. | + +-------------------------------+----------------------------------------+ + +.. c:var:: int PyTrace_CALL + + The value of the *what* parameter to a :c:type:`Py_tracefunc` function when a new + call to a function or method is being reported, or a new entry into a generator. + Note that the creation of the iterator for a generator function is not reported + as there is no control transfer to the Python bytecode in the corresponding + frame. + + +.. c:var:: int PyTrace_EXCEPTION + + The value of the *what* parameter to a :c:type:`Py_tracefunc` function when an + exception has been raised. The callback function is called with this value for + *what* when after any bytecode is processed after which the exception becomes + set within the frame being executed. The effect of this is that as exception + propagation causes the Python stack to unwind, the callback is called upon + return to each frame as the exception propagates. Only trace functions receive + these events; they are not needed by the profiler. + + +.. c:var:: int PyTrace_LINE + + The value passed as the *what* parameter to a :c:type:`Py_tracefunc` function + (but not a profiling function) when a line-number event is being reported. + It may be disabled for a frame by setting :attr:`~frame.f_trace_lines` to + *0* on that frame. + + +.. c:var:: int PyTrace_RETURN + + The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a + call is about to return. + + +.. c:var:: int PyTrace_C_CALL + + The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C + function is about to be called. + + +.. c:var:: int PyTrace_C_EXCEPTION + + The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C + function has raised an exception. + + +.. c:var:: int PyTrace_C_RETURN + + The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C + function has returned. + + +.. c:var:: int PyTrace_OPCODE + + The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but not + profiling functions) when a new opcode is about to be executed. This event is + not emitted by default: it must be explicitly requested by setting + :attr:`~frame.f_trace_opcodes` to *1* on the frame. + + +.. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) + + Set the profiler function to *func*. The *obj* parameter is passed to the + function as its first parameter, and may be any Python object, or ``NULL``. If + the profile function needs to maintain state, using a different value for *obj* + for each thread provides a convenient and thread-safe place to store it. The + profile function is called for all monitored events except :c:data:`PyTrace_LINE` + :c:data:`PyTrace_OPCODE` and :c:data:`PyTrace_EXCEPTION`. + + See also the :func:`sys.setprofile` function. + + The caller must have an :term:`attached thread state`. + + +.. c:function:: void PyEval_SetProfileAllThreads(Py_tracefunc func, PyObject *obj) + + Like :c:func:`PyEval_SetProfile` but sets the profile function in all running threads + belonging to the current interpreter instead of the setting it only on the current thread. + + The caller must have an :term:`attached thread state`. + + As :c:func:`PyEval_SetProfile`, this function ignores any exceptions raised while + setting the profile functions in all threads. + +.. versionadded:: 3.12 + + +.. c:function:: void PyEval_SetTrace(Py_tracefunc func, PyObject *obj) + + Set the tracing function to *func*. This is similar to + :c:func:`PyEval_SetProfile`, except the tracing function does receive line-number + events and per-opcode events, but does not receive any event related to C function + objects being called. Any trace function registered using :c:func:`PyEval_SetTrace` + will not receive :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION` or + :c:data:`PyTrace_C_RETURN` as a value for the *what* parameter. + + See also the :func:`sys.settrace` function. + + The caller must have an :term:`attached thread state`. + + +.. c:function:: void PyEval_SetTraceAllThreads(Py_tracefunc func, PyObject *obj) + + Like :c:func:`PyEval_SetTrace` but sets the tracing function in all running threads + belonging to the current interpreter instead of the setting it only on the current thread. + + The caller must have an :term:`attached thread state`. + + As :c:func:`PyEval_SetTrace`, this function ignores any exceptions raised while + setting the trace functions in all threads. + +.. versionadded:: 3.12 + + +Reference tracing +================= + +.. versionadded:: 3.13 + + +.. c:type:: int (*PyRefTracer)(PyObject *, int event, void* data) + + The type of the trace function registered using :c:func:`PyRefTracer_SetTracer`. + The first parameter is a Python object that has been just created (when **event** + is set to :c:data:`PyRefTracer_CREATE`) or about to be destroyed (when **event** + is set to :c:data:`PyRefTracer_DESTROY`). The **data** argument is the opaque pointer + that was provided when :c:func:`PyRefTracer_SetTracer` was called. + + If a new tracing function is registered replacing the current one, a call to the + trace function will be made with the object set to **NULL** and **event** set to + :c:data:`PyRefTracer_TRACKER_REMOVED`. This will happen just before the new + function is registered. + +.. versionadded:: 3.13 + + +.. c:var:: int PyRefTracer_CREATE + + The value for the *event* parameter to :c:type:`PyRefTracer` functions when a Python + object has been created. + + +.. c:var:: int PyRefTracer_DESTROY + + The value for the *event* parameter to :c:type:`PyRefTracer` functions when a Python + object has been destroyed. + + +.. c:var:: int PyRefTracer_TRACKER_REMOVED + + The value for the *event* parameter to :c:type:`PyRefTracer` functions when the + current tracer is about to be replaced by a new one. + + .. versionadded:: 3.14 + + +.. c:function:: int PyRefTracer_SetTracer(PyRefTracer tracer, void *data) + + Register a reference tracer function. The function will be called when a new + Python object has been created or when an object is going to be destroyed. If + **data** is provided it must be an opaque pointer that will be provided when + the tracer function is called. Return ``0`` on success. Set an exception and + return ``-1`` on error. + + Note that tracer functions **must not** create Python objects inside or + otherwise the call will be re-entrant. The tracer also **must not** clear + any existing exception or set an exception. A :term:`thread state` will be active + every time the tracer function is called. + + There must be an :term:`attached thread state` when calling this function. + + If another tracer function was already registered, the old function will be + called with **event** set to :c:data:`PyRefTracer_TRACKER_REMOVED` just before + the new function is registered. + +.. versionadded:: 3.13 + + +.. c:function:: PyRefTracer PyRefTracer_GetTracer(void** data) + + Get the registered reference tracer function and the value of the opaque data + pointer that was registered when :c:func:`PyRefTracer_SetTracer` was called. + If no tracer was registered this function will return NULL and will set the + **data** pointer to NULL. + + There must be an :term:`attached thread state` when calling this function. + +.. versionadded:: 3.13 diff --git a/Doc/c-api/subinterpreters.rst b/Doc/c-api/subinterpreters.rst new file mode 100644 index 00000000000000..44e3fc96841aac --- /dev/null +++ b/Doc/c-api/subinterpreters.rst @@ -0,0 +1,470 @@ +.. highlight:: c + +.. _sub-interpreter-support: + +Multiple interpreters in a Python process +========================================= + +While in most uses, you will only embed a single Python interpreter, there +are cases where you need to create several independent interpreters in the +same process and perhaps even in the same thread. Sub-interpreters allow +you to do that. + +The "main" interpreter is the first one created when the runtime initializes. +It is usually the only Python interpreter in a process. Unlike sub-interpreters, +the main interpreter has unique process-global responsibilities like signal +handling. It is also responsible for execution during runtime initialization and +is usually the active interpreter during runtime finalization. The +:c:func:`PyInterpreterState_Main` function returns a pointer to its state. + +You can switch between sub-interpreters using the :c:func:`PyThreadState_Swap` +function. You can create and destroy them using the following functions: + + +.. c:type:: PyInterpreterConfig + + Structure containing most parameters to configure a sub-interpreter. + Its values are used only in :c:func:`Py_NewInterpreterFromConfig` and + never modified by the runtime. + + .. versionadded:: 3.12 + + Structure fields: + + .. c:member:: int use_main_obmalloc + + If this is ``0`` then the sub-interpreter will use its own + "object" allocator state. + Otherwise it will use (share) the main interpreter's. + + If this is ``0`` then + :c:member:`~PyInterpreterConfig.check_multi_interp_extensions` + must be ``1`` (non-zero). + If this is ``1`` then :c:member:`~PyInterpreterConfig.gil` + must not be :c:macro:`PyInterpreterConfig_OWN_GIL`. + + .. c:member:: int allow_fork + + If this is ``0`` then the runtime will not support forking the + process in any thread where the sub-interpreter is currently active. + Otherwise fork is unrestricted. + + Note that the :mod:`subprocess` module still works + when fork is disallowed. + + .. c:member:: int allow_exec + + If this is ``0`` then the runtime will not support replacing the + current process via exec (e.g. :func:`os.execv`) in any thread + where the sub-interpreter is currently active. + Otherwise exec is unrestricted. + + Note that the :mod:`subprocess` module still works + when exec is disallowed. + + .. c:member:: int allow_threads + + If this is ``0`` then the sub-interpreter's :mod:`threading` module + won't create threads. + Otherwise threads are allowed. + + .. c:member:: int allow_daemon_threads + + If this is ``0`` then the sub-interpreter's :mod:`threading` module + won't create daemon threads. + Otherwise daemon threads are allowed (as long as + :c:member:`~PyInterpreterConfig.allow_threads` is non-zero). + + .. c:member:: int check_multi_interp_extensions + + If this is ``0`` then all extension modules may be imported, + including legacy (single-phase init) modules, + in any thread where the sub-interpreter is currently active. + Otherwise only multi-phase init extension modules + (see :pep:`489`) may be imported. + (Also see :c:macro:`Py_mod_multiple_interpreters`.) + + This must be ``1`` (non-zero) if + :c:member:`~PyInterpreterConfig.use_main_obmalloc` is ``0``. + + .. c:member:: int gil + + This determines the operation of the GIL for the sub-interpreter. + It may be one of the following: + + .. c:namespace:: NULL + + .. c:macro:: PyInterpreterConfig_DEFAULT_GIL + + Use the default selection (:c:macro:`PyInterpreterConfig_SHARED_GIL`). + + .. c:macro:: PyInterpreterConfig_SHARED_GIL + + Use (share) the main interpreter's GIL. + + .. c:macro:: PyInterpreterConfig_OWN_GIL + + Use the sub-interpreter's own GIL. + + If this is :c:macro:`PyInterpreterConfig_OWN_GIL` then + :c:member:`PyInterpreterConfig.use_main_obmalloc` must be ``0``. + + +.. c:function:: PyStatus Py_NewInterpreterFromConfig(PyThreadState **tstate_p, const PyInterpreterConfig *config) + + .. index:: + pair: module; builtins + pair: module; __main__ + pair: module; sys + single: stdout (in module sys) + single: stderr (in module sys) + single: stdin (in module sys) + + Create a new sub-interpreter. This is an (almost) totally separate environment + for the execution of Python code. In particular, the new interpreter has + separate, independent versions of all imported modules, including the + fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. The + table of loaded modules (``sys.modules``) and the module search path + (``sys.path``) are also separate. The new environment has no ``sys.argv`` + variable. It has new standard I/O stream file objects ``sys.stdin``, + ``sys.stdout`` and ``sys.stderr`` (however these refer to the same underlying + file descriptors). + + The given *config* controls the options with which the interpreter + is initialized. + + Upon success, *tstate_p* will be set to the first :term:`thread state` + created in the new sub-interpreter. This thread state is + :term:`attached `. + Note that no actual thread is created; see the discussion of thread states + below. If creation of the new interpreter is unsuccessful, + *tstate_p* is set to ``NULL``; + no exception is set since the exception state is stored in the + :term:`attached thread state`, which might not exist. + + Like all other Python/C API functions, an :term:`attached thread state` + must be present before calling this function, but it might be detached upon + returning. On success, the returned thread state will be :term:`attached `. + If the sub-interpreter is created with its own :term:`GIL` then the + :term:`attached thread state` of the calling interpreter will be detached. + When the function returns, the new interpreter's :term:`thread state` + will be :term:`attached ` to the current thread and + the previous interpreter's :term:`attached thread state` will remain detached. + + .. versionadded:: 3.12 + + Sub-interpreters are most effective when isolated from each other, + with certain functionality restricted:: + + PyInterpreterConfig config = { + .use_main_obmalloc = 0, + .allow_fork = 0, + .allow_exec = 0, + .allow_threads = 1, + .allow_daemon_threads = 0, + .check_multi_interp_extensions = 1, + .gil = PyInterpreterConfig_OWN_GIL, + }; + PyThreadState *tstate = NULL; + PyStatus status = Py_NewInterpreterFromConfig(&tstate, &config); + if (PyStatus_Exception(status)) { + Py_ExitStatusException(status); + } + + Note that the config is used only briefly and does not get modified. + During initialization the config's values are converted into various + :c:type:`PyInterpreterState` values. A read-only copy of the config + may be stored internally on the :c:type:`PyInterpreterState`. + + .. index:: + single: Py_FinalizeEx (C function) + single: Py_Initialize (C function) + + Extension modules are shared between (sub-)interpreters as follows: + + * For modules using multi-phase initialization, + e.g. :c:func:`PyModule_FromDefAndSpec`, a separate module object is + created and initialized for each interpreter. + Only C-level static and global variables are shared between these + module objects. + + * For modules using legacy + :ref:`single-phase initialization `, + e.g. :c:func:`PyModule_Create`, the first time a particular extension + is imported, it is initialized normally, and a (shallow) copy of its + module's dictionary is squirreled away. + When the same extension is imported by another (sub-)interpreter, a new + module is initialized and filled with the contents of this copy; the + extension's ``init`` function is not called. + Objects in the module's dictionary thus end up shared across + (sub-)interpreters, which might cause unwanted behavior (see + `Bugs and caveats`_ below). + + Note that this is different from what happens when an extension is + imported after the interpreter has been completely re-initialized by + calling :c:func:`Py_FinalizeEx` and :c:func:`Py_Initialize`; in that + case, the extension's ``initmodule`` function *is* called again. + As with multi-phase initialization, this means that only C-level static + and global variables are shared between these modules. + + .. index:: single: close (in module os) + + +.. c:function:: PyThreadState* Py_NewInterpreter(void) + + .. index:: + pair: module; builtins + pair: module; __main__ + pair: module; sys + single: stdout (in module sys) + single: stderr (in module sys) + single: stdin (in module sys) + + Create a new sub-interpreter. This is essentially just a wrapper + around :c:func:`Py_NewInterpreterFromConfig` with a config that + preserves the existing behavior. The result is an unisolated + sub-interpreter that shares the main interpreter's GIL, allows + fork/exec, allows daemon threads, and allows single-phase init + modules. + + +.. c:function:: void Py_EndInterpreter(PyThreadState *tstate) + + .. index:: single: Py_FinalizeEx (C function) + + Destroy the (sub-)interpreter represented by the given :term:`thread state`. + The given thread state must be :term:`attached `. + When the call returns, there will be no :term:`attached thread state`. + All thread states associated with this interpreter are destroyed. + + :c:func:`Py_FinalizeEx` will destroy all sub-interpreters that + haven't been explicitly destroyed at that point. + + +.. _per-interpreter-gil: + +A per-interpreter GIL +--------------------- + +.. versionadded:: 3.12 + +Using :c:func:`Py_NewInterpreterFromConfig` you can create +a sub-interpreter that is completely isolated from other interpreters, +including having its own GIL. The most important benefit of this +isolation is that such an interpreter can execute Python code without +being blocked by other interpreters or blocking any others. Thus a +single Python process can truly take advantage of multiple CPU cores +when running Python code. The isolation also encourages a different +approach to concurrency than that of just using threads. +(See :pep:`554` and :pep:`684`.) + +Using an isolated interpreter requires vigilance in preserving that +isolation. That especially means not sharing any objects or mutable +state without guarantees about thread-safety. Even objects that are +otherwise immutable (e.g. ``None``, ``(1, 5)``) can't normally be shared +because of the refcount. One simple but less-efficient approach around +this is to use a global lock around all use of some state (or object). +Alternately, effectively immutable objects (like integers or strings) +can be made safe in spite of their refcounts by making them :term:`immortal`. +In fact, this has been done for the builtin singletons, small integers, +and a number of other builtin objects. + +If you preserve isolation then you will have access to proper multi-core +computing without the complications that come with free-threading. +Failure to preserve isolation will expose you to the full consequences +of free-threading, including races and hard-to-debug crashes. + +Aside from that, one of the main challenges of using multiple isolated +interpreters is how to communicate between them safely (not break +isolation) and efficiently. The runtime and stdlib do not provide +any standard approach to this yet. A future stdlib module would help +mitigate the effort of preserving isolation and expose effective tools +for communicating (and sharing) data between interpreters. + + +Bugs and caveats +---------------- + +Because sub-interpreters (and the main interpreter) are part of the same +process, the insulation between them isn't perfect --- for example, using +low-level file operations like :func:`os.close` they can +(accidentally or maliciously) affect each other's open files. Because of the +way extensions are shared between (sub-)interpreters, some extensions may not +work properly; this is especially likely when using single-phase initialization +or (static) global variables. +It is possible to insert objects created in one sub-interpreter into +a namespace of another (sub-)interpreter; this should be avoided if possible. + +Special care should be taken to avoid sharing user-defined functions, +methods, instances or classes between sub-interpreters, since import +operations executed by such objects may affect the wrong (sub-)interpreter's +dictionary of loaded modules. It is equally important to avoid sharing +objects from which the above are reachable. + +Also note that combining this functionality with ``PyGILState_*`` APIs +is delicate, because these APIs assume a bijection between Python thread states +and OS-level threads, an assumption broken by the presence of sub-interpreters. +It is highly recommended that you don't switch sub-interpreters between a pair +of matching :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` calls. +Furthermore, extensions (such as :mod:`ctypes`) using these APIs to allow calling +of Python code from non-Python created threads will probably be broken when using +sub-interpreters. + + +High-level APIs +--------------- + +.. c:type:: PyInterpreterState + + This data structure represents the state shared by a number of cooperating + threads. Threads belonging to the same interpreter share their module + administration and a few other internal items. There are no public members in + this structure. + + Threads belonging to different interpreters initially share nothing, except + process state like available memory, open file descriptors and such. The global + interpreter lock is also shared by all threads, regardless of to which + interpreter they belong. + + .. versionchanged:: 3.12 + + :pep:`684` introduced the possibility + of a :ref:`per-interpreter GIL `. + See :c:func:`Py_NewInterpreterFromConfig`. + + +.. c:function:: PyInterpreterState* PyInterpreterState_Get(void) + + Get the current interpreter. + + Issue a fatal error if there is no :term:`attached thread state`. + It cannot return NULL. + + .. versionadded:: 3.9 + + +.. c:function:: int64_t PyInterpreterState_GetID(PyInterpreterState *interp) + + Return the interpreter's unique ID. If there was any error in doing + so then ``-1`` is returned and an error is set. + + The caller must have an :term:`attached thread state`. + + .. versionadded:: 3.7 + + +.. c:function:: PyObject* PyInterpreterState_GetDict(PyInterpreterState *interp) + + Return a dictionary in which interpreter-specific data may be stored. + If this function returns ``NULL`` then no exception has been raised and + the caller should assume no interpreter-specific dict is available. + + This is not a replacement for :c:func:`PyModule_GetState()`, which + extensions should use to store interpreter-specific state information. + + The returned dictionary is borrowed from the interpreter and is valid until + interpreter shutdown. + + .. versionadded:: 3.8 + + +.. c:type:: PyObject* (*_PyFrameEvalFunction)(PyThreadState *tstate, _PyInterpreterFrame *frame, int throwflag) + + Type of a frame evaluation function. + + The *throwflag* parameter is used by the ``throw()`` method of generators: + if non-zero, handle the current exception. + + .. versionchanged:: 3.9 + The function now takes a *tstate* parameter. + + .. versionchanged:: 3.11 + The *frame* parameter changed from ``PyFrameObject*`` to ``_PyInterpreterFrame*``. + + +.. c:function:: _PyFrameEvalFunction _PyInterpreterState_GetEvalFrameFunc(PyInterpreterState *interp) + + Get the frame evaluation function. + + See the :pep:`523` "Adding a frame evaluation API to CPython". + + .. versionadded:: 3.9 + + +.. c:function:: void _PyInterpreterState_SetEvalFrameFunc(PyInterpreterState *interp, _PyFrameEvalFunction eval_frame) + + Set the frame evaluation function. + + See the :pep:`523` "Adding a frame evaluation API to CPython". + + .. versionadded:: 3.9 + + +Low-level APIs +-------------- + +All of the following functions must be called after :c:func:`Py_Initialize`. + +.. versionchanged:: 3.7 + :c:func:`Py_Initialize()` now initializes the :term:`GIL` + and sets an :term:`attached thread state`. + + +.. c:function:: PyInterpreterState* PyInterpreterState_New() + + Create a new interpreter state object. An :term:`attached thread state` is not needed, + but may optionally exist if it is necessary to serialize calls to this + function. + + .. audit-event:: cpython.PyInterpreterState_New "" c.PyInterpreterState_New + + +.. c:function:: void PyInterpreterState_Clear(PyInterpreterState *interp) + + Reset all information in an interpreter state object. There must be + an :term:`attached thread state` for the interpreter. + + .. audit-event:: cpython.PyInterpreterState_Clear "" c.PyInterpreterState_Clear + + +.. c:function:: void PyInterpreterState_Delete(PyInterpreterState *interp) + + Destroy an interpreter state object. There **should not** be an + :term:`attached thread state` for the target interpreter. The interpreter + state must have been reset with a previous call to :c:func:`PyInterpreterState_Clear`. + + +.. _advanced-debugging: + +Advanced debugger support +------------------------- + +These functions are only intended to be used by advanced debugging tools. + + +.. c:function:: PyInterpreterState* PyInterpreterState_Head() + + Return the interpreter state object at the head of the list of all such objects. + + +.. c:function:: PyInterpreterState* PyInterpreterState_Main() + + Return the main interpreter state object. + + +.. c:function:: PyInterpreterState* PyInterpreterState_Next(PyInterpreterState *interp) + + Return the next interpreter state object after *interp* from the list of all + such objects. + + +.. c:function:: PyThreadState * PyInterpreterState_ThreadHead(PyInterpreterState *interp) + + Return the pointer to the first :c:type:`PyThreadState` object in the list of + threads associated with the interpreter *interp*. + + +.. c:function:: PyThreadState* PyThreadState_Next(PyThreadState *tstate) + + Return the next thread state object after *tstate* from the list of all such + objects belonging to the same :c:type:`PyInterpreterState` object. diff --git a/Doc/c-api/synchronization.rst b/Doc/c-api/synchronization.rst new file mode 100644 index 00000000000000..53c9faeae35464 --- /dev/null +++ b/Doc/c-api/synchronization.rst @@ -0,0 +1,308 @@ +.. highlight:: c + +.. _synchronization: + +Synchronization primitives +========================== + +The C-API provides a basic mutual exclusion lock. + +.. c:type:: PyMutex + + A mutual exclusion lock. The :c:type:`!PyMutex` should be initialized to + zero to represent the unlocked state. For example:: + + PyMutex mutex = {0}; + + Instances of :c:type:`!PyMutex` should not be copied or moved. Both the + contents and address of a :c:type:`!PyMutex` are meaningful, and it must + remain at a fixed, writable location in memory. + + .. note:: + + A :c:type:`!PyMutex` currently occupies one byte, but the size should be + considered unstable. The size may change in future Python releases + without a deprecation period. + + .. versionadded:: 3.13 + +.. c:function:: void PyMutex_Lock(PyMutex *m) + + Lock mutex *m*. If another thread has already locked it, the calling + thread will block until the mutex is unlocked. While blocked, the thread + will temporarily detach the :term:`thread state ` if one exists. + + .. versionadded:: 3.13 + +.. c:function:: void PyMutex_Unlock(PyMutex *m) + + Unlock mutex *m*. The mutex must be locked --- otherwise, the function will + issue a fatal error. + + .. versionadded:: 3.13 + +.. c:function:: int PyMutex_IsLocked(PyMutex *m) + + Returns non-zero if the mutex *m* is currently locked, zero otherwise. + + .. note:: + + This function is intended for use in assertions and debugging only and + should not be used to make concurrency control decisions, as the lock + state may change immediately after the check. + + .. versionadded:: 3.14 + +.. _python-critical-section-api: + +Python critical section API +--------------------------- + +The critical section API provides a deadlock avoidance layer on top of +per-object locks for :term:`free-threaded ` CPython. They are +intended to replace reliance on the :term:`global interpreter lock`, and are +no-ops in versions of Python with the global interpreter lock. + +Critical sections are intended to be used for custom types implemented +in C-API extensions. They should generally not be used with built-in types like +:class:`list` and :class:`dict` because their public C-APIs +already use critical sections internally, with the notable +exception of :c:func:`PyDict_Next`, which requires critical section +to be acquired externally. + +Critical sections avoid deadlocks by implicitly suspending active critical +sections, hence, they do not provide exclusive access such as provided by +traditional locks like :c:type:`PyMutex`. When a critical section is started, +the per-object lock for the object is acquired. If the code executed inside the +critical section calls C-API functions then it can suspend the critical section thereby +releasing the per-object lock, so other threads can acquire the per-object lock +for the same object. + +Variants that accept :c:type:`PyMutex` pointers rather than Python objects are also +available. Use these variants to start a critical section in a situation where +there is no :c:type:`PyObject` -- for example, when working with a C type that +does not extend or wrap :c:type:`PyObject` but still needs to call into the C +API in a manner that might lead to deadlocks. + +The functions and structs used by the macros are exposed for cases +where C macros are not available. They should only be used as in the +given macro expansions. Note that the sizes and contents of the structures may +change in future Python versions. + +.. note:: + + Operations that need to lock two objects at once must use + :c:macro:`Py_BEGIN_CRITICAL_SECTION2`. You *cannot* use nested critical + sections to lock more than one object at once, because the inner critical + section may suspend the outer critical sections. This API does not provide + a way to lock more than two objects at once. + +Example usage:: + + static PyObject * + set_field(MyObject *self, PyObject *value) + { + Py_BEGIN_CRITICAL_SECTION(self); + Py_SETREF(self->field, Py_XNewRef(value)); + Py_END_CRITICAL_SECTION(); + Py_RETURN_NONE; + } + +In the above example, :c:macro:`Py_SETREF` calls :c:macro:`Py_DECREF`, which +can call arbitrary code through an object's deallocation function. The critical +section API avoids potential deadlocks due to reentrancy and lock ordering +by allowing the runtime to temporarily suspend the critical section if the +code triggered by the finalizer blocks and calls :c:func:`PyEval_SaveThread`. + +.. c:macro:: Py_BEGIN_CRITICAL_SECTION(op) + + Acquires the per-object lock for the object *op* and begins a + critical section. + + In the free-threaded build, this macro expands to:: + + { + PyCriticalSection _py_cs; + PyCriticalSection_Begin(&_py_cs, (PyObject*)(op)) + + In the default build, this macro expands to ``{``. + + .. versionadded:: 3.13 + +.. c:macro:: Py_BEGIN_CRITICAL_SECTION_MUTEX(m) + + Locks the mutex *m* and begins a critical section. + + In the free-threaded build, this macro expands to:: + + { + PyCriticalSection _py_cs; + PyCriticalSection_BeginMutex(&_py_cs, m) + + Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION`, there is no cast for + the argument of the macro - it must be a :c:type:`PyMutex` pointer. + + On the default build, this macro expands to ``{``. + + .. versionadded:: 3.14 + +.. c:macro:: Py_END_CRITICAL_SECTION() + + Ends the critical section and releases the per-object lock. + + In the free-threaded build, this macro expands to:: + + PyCriticalSection_End(&_py_cs); + } + + In the default build, this macro expands to ``}``. + + .. versionadded:: 3.13 + +.. c:macro:: Py_BEGIN_CRITICAL_SECTION2(a, b) + + Acquires the per-object locks for the objects *a* and *b* and begins a + critical section. The locks are acquired in a consistent order (lowest + address first) to avoid lock ordering deadlocks. + + In the free-threaded build, this macro expands to:: + + { + PyCriticalSection2 _py_cs2; + PyCriticalSection2_Begin(&_py_cs2, (PyObject*)(a), (PyObject*)(b)) + + In the default build, this macro expands to ``{``. + + .. versionadded:: 3.13 + +.. c:macro:: Py_BEGIN_CRITICAL_SECTION2_MUTEX(m1, m2) + + Locks the mutexes *m1* and *m2* and begins a critical section. + + In the free-threaded build, this macro expands to:: + + { + PyCriticalSection2 _py_cs2; + PyCriticalSection2_BeginMutex(&_py_cs2, m1, m2) + + Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION2`, there is no cast for + the arguments of the macro - they must be :c:type:`PyMutex` pointers. + + On the default build, this macro expands to ``{``. + + .. versionadded:: 3.14 + +.. c:macro:: Py_END_CRITICAL_SECTION2() + + Ends the critical section and releases the per-object locks. + + In the free-threaded build, this macro expands to:: + + PyCriticalSection2_End(&_py_cs2); + } + + In the default build, this macro expands to ``}``. + + .. versionadded:: 3.13 + + +Legacy locking APIs +------------------- + +These APIs are obsolete since Python 3.13 with the introduction of +:c:type:`PyMutex`. + +.. versionchanged:: 3.15 + These APIs are now a simple wrapper around ``PyMutex``. + + +.. c:type:: PyThread_type_lock + + A pointer to a mutual exclusion lock. + + +.. c:type:: PyLockStatus + + The result of acquiring a lock with a timeout. + + .. c:namespace:: NULL + + .. c:enumerator:: PY_LOCK_FAILURE + + Failed to acquire the lock. + + .. c:enumerator:: PY_LOCK_ACQUIRED + + The lock was successfully acquired. + + .. c:enumerator:: PY_LOCK_INTR + + The lock was interrupted by a signal. + + +.. c:function:: PyThread_type_lock PyThread_allocate_lock(void) + + Allocate a new lock. + + On success, this function returns a lock; on failure, this + function returns ``0`` without an exception set. + + The caller does not need to hold an :term:`attached thread state`. + + .. versionchanged:: 3.15 + This function now always uses :c:type:`PyMutex`. In prior versions, this + would use a lock provided by the operating system. + + +.. c:function:: void PyThread_free_lock(PyThread_type_lock lock) + + Destroy *lock*. The lock should not be held by any thread when calling + this. + + The caller does not need to hold an :term:`attached thread state`. + + +.. c:function:: PyLockStatus PyThread_acquire_lock_timed(PyThread_type_lock lock, long long microseconds, int intr_flag) + + Acquire *lock* with a timeout. + + This will wait for *microseconds* microseconds to acquire the lock. If the + timeout expires, this function returns :c:enumerator:`PY_LOCK_FAILURE`. + If *microseconds* is ``-1``, this will wait indefinitely until the lock has + been released. + + If *intr_flag* is ``1``, acquiring the lock may be interrupted by a signal, + in which case this function returns :c:enumerator:`PY_LOCK_INTR`. Upon + interruption, it's generally expected that the caller makes a call to + :c:func:`Py_MakePendingCalls` to propagate an exception to Python code. + + If the lock is successfully acquired, this function returns + :c:enumerator:`PY_LOCK_ACQUIRED`. + + The caller does not need to hold an :term:`attached thread state`. + + +.. c:function:: int PyThread_acquire_lock(PyThread_type_lock lock, int waitflag) + + Acquire *lock*. + + If *waitflag* is ``1`` and another thread currently holds the lock, this + function will wait until the lock can be acquired and will always return + ``1``. + + If *waitflag* is ``0`` and another thread holds the lock, this function will + not wait and instead return ``0``. If the lock is not held by any other + thread, then this function will acquire it and return ``1``. + + Unlike :c:func:`PyThread_acquire_lock_timed`, acquiring the lock cannot be + interrupted by a signal. + + The caller does not need to hold an :term:`attached thread state`. + + +.. c:function:: int PyThread_release_lock(PyThread_type_lock lock) + + Release *lock*. If *lock* is not held, then this function issues a + fatal error. + + The caller does not need to hold an :term:`attached thread state`. diff --git a/Doc/c-api/threads.rst b/Doc/c-api/threads.rst new file mode 100644 index 00000000000000..46e713f4b5f96f --- /dev/null +++ b/Doc/c-api/threads.rst @@ -0,0 +1,827 @@ +.. highlight:: c + +.. _threads: + +Thread states and the global interpreter lock +============================================= + +.. index:: + single: global interpreter lock + single: interpreter lock + single: lock, interpreter + +Unless on a :term:`free-threaded ` build of :term:`CPython`, +the Python interpreter is not fully thread-safe. In order to support +multi-threaded Python programs, there's a global lock, called the :term:`global +interpreter lock` or :term:`GIL`, that must be held by the current thread before +it can safely access Python objects. Without the lock, even the simplest +operations could cause problems in a multi-threaded program: for example, when +two threads simultaneously increment the reference count of the same object, the +reference count could end up being incremented only once instead of twice. + +.. index:: single: setswitchinterval (in module sys) + +Therefore, the rule exists that only the thread that has acquired the +:term:`GIL` may operate on Python objects or call Python/C API functions. +In order to emulate concurrency of execution, the interpreter regularly +tries to switch threads (see :func:`sys.setswitchinterval`). The lock is also +released around potentially blocking I/O operations like reading or writing +a file, so that other Python threads can run in the meantime. + +.. index:: + single: PyThreadState (C type) + +The Python interpreter keeps some thread-specific bookkeeping information +inside a data structure called :c:type:`PyThreadState`, known as a :term:`thread state`. +Each OS thread has a thread-local pointer to a :c:type:`PyThreadState`; a thread state +referenced by this pointer is considered to be :term:`attached `. + +A thread can only have one :term:`attached thread state` at a time. An attached +thread state is typically analogous with holding the :term:`GIL`, except on +:term:`free-threaded ` builds. On builds with the :term:`GIL` enabled, +:term:`attaching ` a thread state will block until the :term:`GIL` +can be acquired. However, even on builds with the :term:`GIL` disabled, it is still required +to have an attached thread state to call most of the C API. + +In general, there will always be an :term:`attached thread state` when using Python's C API. +Only in some specific cases (such as in a :c:macro:`Py_BEGIN_ALLOW_THREADS` block) will the +thread not have an attached thread state. If uncertain, check if :c:func:`PyThreadState_GetUnchecked` returns +``NULL``. + +Detaching the thread state from extension code +---------------------------------------------- + +Most extension code manipulating the :term:`thread state` has the following simple +structure:: + + Save the thread state in a local variable. + ... Do some blocking I/O operation ... + Restore the thread state from the local variable. + +This is so common that a pair of macros exists to simplify it:: + + Py_BEGIN_ALLOW_THREADS + ... Do some blocking I/O operation ... + Py_END_ALLOW_THREADS + +.. index:: + single: Py_BEGIN_ALLOW_THREADS (C macro) + single: Py_END_ALLOW_THREADS (C macro) + +The :c:macro:`Py_BEGIN_ALLOW_THREADS` macro opens a new block and declares a +hidden local variable; the :c:macro:`Py_END_ALLOW_THREADS` macro closes the +block. + +The block above expands to the following code:: + + PyThreadState *_save; + + _save = PyEval_SaveThread(); + ... Do some blocking I/O operation ... + PyEval_RestoreThread(_save); + +.. index:: + single: PyEval_RestoreThread (C function) + single: PyEval_SaveThread (C function) + +Here is how these functions work: + +The :term:`attached thread state` holds the :term:`GIL` for the entire interpreter. When detaching +the :term:`attached thread state`, the :term:`GIL` is released, allowing other threads to attach +a thread state to their own thread, thus getting the :term:`GIL` and can start executing. +The pointer to the prior :term:`attached thread state` is stored as a local variable. +Upon reaching :c:macro:`Py_END_ALLOW_THREADS`, the thread state that was +previously :term:`attached ` is passed to :c:func:`PyEval_RestoreThread`. +This function will block until another releases its :term:`thread state `, +thus allowing the old :term:`thread state ` to get re-attached and the +C API can be called again. + +For :term:`free-threaded ` builds, the :term:`GIL` is normally +out of the question, but detaching the :term:`thread state ` is still required +for blocking I/O and long operations. The difference is that threads don't have to wait for the :term:`GIL` +to be released to attach their thread state, allowing true multi-core parallelism. + +.. note:: + Calling system I/O functions is the most common use case for detaching + the :term:`thread state `, but it can also be useful before calling + long-running computations which don't need access to Python objects, such + as compression or cryptographic functions operating over memory buffers. + For example, the standard :mod:`zlib` and :mod:`hashlib` modules detach the + :term:`thread state ` when compressing or hashing data. + +APIs +^^^^ + +The following macros are normally used without a trailing semicolon; look for +example usage in the Python source distribution. + +.. note:: + + These macros are still necessary on the :term:`free-threaded build` to prevent + deadlocks. + +.. c:macro:: Py_BEGIN_ALLOW_THREADS + + This macro expands to ``{ PyThreadState *_save; _save = PyEval_SaveThread();``. + Note that it contains an opening brace; it must be matched with a following + :c:macro:`Py_END_ALLOW_THREADS` macro. See above for further discussion of this + macro. + + +.. c:macro:: Py_END_ALLOW_THREADS + + This macro expands to ``PyEval_RestoreThread(_save); }``. Note that it contains + a closing brace; it must be matched with an earlier + :c:macro:`Py_BEGIN_ALLOW_THREADS` macro. See above for further discussion of + this macro. + + +.. c:macro:: Py_BLOCK_THREADS + + This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent to + :c:macro:`Py_END_ALLOW_THREADS` without the closing brace. + + +.. c:macro:: Py_UNBLOCK_THREADS + + This macro expands to ``_save = PyEval_SaveThread();``: it is equivalent to + :c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable + declaration. + + +.. _gilstate: + +Non-Python created threads +-------------------------- + +When threads are created using the dedicated Python APIs (such as the +:mod:`threading` module), a thread state is automatically associated to them +and the code shown above is therefore correct. However, when threads are +created from C (for example by a third-party library with its own thread +management), they don't hold the :term:`GIL`, because they don't have an +:term:`attached thread state`. + +If you need to call Python code from these threads (often this will be part +of a callback API provided by the aforementioned third-party library), +you must first register these threads with the interpreter by +creating an :term:`attached thread state` before you can start using the Python/C +API. When you are done, you should detach the :term:`thread state `, and +finally free it. + +The :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` functions do +all of the above automatically. The typical idiom for calling into Python +from a C thread is:: + + PyGILState_STATE gstate; + gstate = PyGILState_Ensure(); + + /* Perform Python actions here. */ + result = CallSomeFunction(); + /* evaluate result or handle exception */ + + /* Release the thread. No Python API allowed beyond this point. */ + PyGILState_Release(gstate); + +Note that the ``PyGILState_*`` functions assume there is only one global +interpreter (created automatically by :c:func:`Py_Initialize`). Python +supports the creation of additional interpreters (using +:c:func:`Py_NewInterpreter`), but mixing multiple interpreters and the +``PyGILState_*`` API is unsupported. This is because :c:func:`PyGILState_Ensure` +and similar functions default to :term:`attaching ` a +:term:`thread state` for the main interpreter, meaning that the thread can't safely +interact with the calling subinterpreter. + +Supporting subinterpreters in non-Python threads +------------------------------------------------ + +If you would like to support subinterpreters with non-Python created threads, you +must use the ``PyThreadState_*`` API instead of the traditional ``PyGILState_*`` +API. + +In particular, you must store the interpreter state from the calling +function and pass it to :c:func:`PyThreadState_New`, which will ensure that +the :term:`thread state` is targeting the correct interpreter:: + + /* The return value of PyInterpreterState_Get() from the + function that created this thread. */ + PyInterpreterState *interp = ThreadData->interp; + PyThreadState *tstate = PyThreadState_New(interp); + PyThreadState_Swap(tstate); + + /* GIL of the subinterpreter is now held. + Perform Python actions here. */ + result = CallSomeFunction(); + /* evaluate result or handle exception */ + + /* Destroy the thread state. No Python API allowed beyond this point. */ + PyThreadState_Clear(tstate); + PyThreadState_DeleteCurrent(); + + +.. _fork-and-threads: + +Cautions about fork() +--------------------- + +Another important thing to note about threads is their behaviour in the face +of the C :c:func:`fork` call. On most systems with :c:func:`fork`, after a +process forks only the thread that issued the fork will exist. This has a +concrete impact both on how locks must be handled and on all stored state +in CPython's runtime. + +The fact that only the "current" thread remains +means any locks held by other threads will never be released. Python solves +this for :func:`os.fork` by acquiring the locks it uses internally before +the fork, and releasing them afterwards. In addition, it resets any +:ref:`lock-objects` in the child. When extending or embedding Python, there +is no way to inform Python of additional (non-Python) locks that need to be +acquired before or reset after a fork. OS facilities such as +:c:func:`!pthread_atfork` would need to be used to accomplish the same thing. +Additionally, when extending or embedding Python, calling :c:func:`fork` +directly rather than through :func:`os.fork` (and returning to or calling +into Python) may result in a deadlock by one of Python's internal locks +being held by a thread that is defunct after the fork. +:c:func:`PyOS_AfterFork_Child` tries to reset the necessary locks, but is not +always able to. + +The fact that all other threads go away also means that CPython's +runtime state there must be cleaned up properly, which :func:`os.fork` +does. This means finalizing all other :c:type:`PyThreadState` objects +belonging to the current interpreter and all other +:c:type:`PyInterpreterState` objects. Due to this and the special +nature of the :ref:`"main" interpreter `, +:c:func:`fork` should only be called in that interpreter's "main" +thread, where the CPython global runtime was originally initialized. +The only exception is if :c:func:`exec` will be called immediately +after. + + +High-level APIs +--------------- + +These are the most commonly used types and functions when writing multi-threaded +C extensions. + + +.. c:type:: PyThreadState + + This data structure represents the state of a single thread. The only public + data member is: + + .. c:member:: PyInterpreterState *interp + + This thread's interpreter state. + + +.. c:function:: void PyEval_InitThreads() + + .. index:: + single: PyEval_AcquireThread() + single: PyEval_ReleaseThread() + single: PyEval_SaveThread() + single: PyEval_RestoreThread() + + Deprecated function which does nothing. + + In Python 3.6 and older, this function created the GIL if it didn't exist. + + .. versionchanged:: 3.9 + The function now does nothing. + + .. versionchanged:: 3.7 + This function is now called by :c:func:`Py_Initialize()`, so you don't + have to call it yourself anymore. + + .. versionchanged:: 3.2 + This function cannot be called before :c:func:`Py_Initialize()` anymore. + + .. deprecated:: 3.9 + + .. index:: pair: module; _thread + + +.. c:function:: PyThreadState* PyEval_SaveThread() + + Detach the :term:`attached thread state` and return it. + The thread will have no :term:`thread state` upon returning. + + +.. c:function:: void PyEval_RestoreThread(PyThreadState *tstate) + + Set the :term:`attached thread state` to *tstate*. + The passed :term:`thread state` **should not** be :term:`attached `, + otherwise deadlock ensues. *tstate* will be attached upon returning. + + .. note:: + Calling this function from a thread when the runtime is finalizing will + hang the thread until the program exits, even if the thread was not + created by Python. Refer to + :ref:`cautions-regarding-runtime-finalization` for more details. + + .. versionchanged:: 3.14 + Hangs the current thread, rather than terminating it, if called while the + interpreter is finalizing. + +.. c:function:: PyThreadState* PyThreadState_Get() + + Return the :term:`attached thread state`. If the thread has no attached + thread state, (such as when inside of :c:macro:`Py_BEGIN_ALLOW_THREADS` + block), then this issues a fatal error (so that the caller needn't check + for ``NULL``). + + See also :c:func:`PyThreadState_GetUnchecked`. + +.. c:function:: PyThreadState* PyThreadState_GetUnchecked() + + Similar to :c:func:`PyThreadState_Get`, but don't kill the process with a + fatal error if it is NULL. The caller is responsible to check if the result + is NULL. + + .. versionadded:: 3.13 + In Python 3.5 to 3.12, the function was private and known as + ``_PyThreadState_UncheckedGet()``. + + +.. c:function:: PyThreadState* PyThreadState_Swap(PyThreadState *tstate) + + Set the :term:`attached thread state` to *tstate*, and return the + :term:`thread state` that was attached prior to calling. + + This function is safe to call without an :term:`attached thread state`; it + will simply return ``NULL`` indicating that there was no prior thread state. + + .. seealso:: + :c:func:`PyEval_ReleaseThread` + + .. note:: + Similar to :c:func:`PyGILState_Ensure`, this function will hang the + thread if the runtime is finalizing. + + +GIL-state APIs +-------------- + +The following functions use thread-local storage, and are not compatible +with sub-interpreters: + +.. c:type:: PyGILState_STATE + + The type of the value returned by :c:func:`PyGILState_Ensure` and passed to + :c:func:`PyGILState_Release`. + + .. c:enumerator:: PyGILState_LOCKED + + The GIL was already held when :c:func:`PyGILState_Ensure` was called. + + .. c:enumerator:: PyGILState_UNLOCKED + + The GIL was not held when :c:func:`PyGILState_Ensure` was called. + +.. c:function:: PyGILState_STATE PyGILState_Ensure() + + Ensure that the current thread is ready to call the Python C API regardless + of the current state of Python, or of the :term:`attached thread state`. This may + be called as many times as desired by a thread as long as each call is + matched with a call to :c:func:`PyGILState_Release`. In general, other + thread-related APIs may be used between :c:func:`PyGILState_Ensure` and + :c:func:`PyGILState_Release` calls as long as the thread state is restored to + its previous state before the Release(). For example, normal usage of the + :c:macro:`Py_BEGIN_ALLOW_THREADS` and :c:macro:`Py_END_ALLOW_THREADS` macros is + acceptable. + + The return value is an opaque "handle" to the :term:`attached thread state` when + :c:func:`PyGILState_Ensure` was called, and must be passed to + :c:func:`PyGILState_Release` to ensure Python is left in the same state. Even + though recursive calls are allowed, these handles *cannot* be shared - each + unique call to :c:func:`PyGILState_Ensure` must save the handle for its call + to :c:func:`PyGILState_Release`. + + When the function returns, there will be an :term:`attached thread state` + and the thread will be able to call arbitrary Python code. Failure is a fatal error. + + .. warning:: + Calling this function when the runtime is finalizing is unsafe. Doing + so will either hang the thread until the program ends, or fully crash + the interpreter in rare cases. Refer to + :ref:`cautions-regarding-runtime-finalization` for more details. + + .. versionchanged:: 3.14 + Hangs the current thread, rather than terminating it, if called while the + interpreter is finalizing. + +.. c:function:: void PyGILState_Release(PyGILState_STATE) + + Release any resources previously acquired. After this call, Python's state will + be the same as it was prior to the corresponding :c:func:`PyGILState_Ensure` call + (but generally this state will be unknown to the caller, hence the use of the + GILState API). + + Every call to :c:func:`PyGILState_Ensure` must be matched by a call to + :c:func:`PyGILState_Release` on the same thread. + +.. c:function:: PyThreadState* PyGILState_GetThisThreadState() + + Get the :term:`attached thread state` for this thread. May return ``NULL`` if no + GILState API has been used on the current thread. Note that the main thread + always has such a thread-state, even if no auto-thread-state call has been + made on the main thread. This is mainly a helper/diagnostic function. + + .. note:: + This function may return non-``NULL`` even when the :term:`thread state` + is detached. + Prefer :c:func:`PyThreadState_Get` or :c:func:`PyThreadState_GetUnchecked` + for most cases. + + .. seealso:: :c:func:`PyThreadState_Get` + +.. c:function:: int PyGILState_Check() + + Return ``1`` if the current thread is holding the :term:`GIL` and ``0`` otherwise. + This function can be called from any thread at any time. + Only if it has had its :term:`thread state ` initialized + via :c:func:`PyGILState_Ensure` will it return ``1``. + This is mainly a helper/diagnostic function. It can be useful + for example in callback contexts or memory allocation functions when + knowing that the :term:`GIL` is locked can allow the caller to perform sensitive + actions or otherwise behave differently. + + .. note:: + If the current Python process has ever created a subinterpreter, this + function will *always* return ``1``. Prefer :c:func:`PyThreadState_GetUnchecked` + for most cases. + + .. versionadded:: 3.4 + + +Low-level APIs +-------------- + +.. c:function:: PyThreadState* PyThreadState_New(PyInterpreterState *interp) + + Create a new thread state object belonging to the given interpreter object. + An :term:`attached thread state` is not needed. + +.. c:function:: void PyThreadState_Clear(PyThreadState *tstate) + + Reset all information in a :term:`thread state` object. *tstate* + must be :term:`attached ` + + .. versionchanged:: 3.9 + This function now calls the :c:member:`!PyThreadState.on_delete` callback. + Previously, that happened in :c:func:`PyThreadState_Delete`. + + .. versionchanged:: 3.13 + The :c:member:`!PyThreadState.on_delete` callback was removed. + + +.. c:function:: void PyThreadState_Delete(PyThreadState *tstate) + + Destroy a :term:`thread state` object. *tstate* should not + be :term:`attached ` to any thread. + *tstate* must have been reset with a previous call to + :c:func:`PyThreadState_Clear`. + + +.. c:function:: void PyThreadState_DeleteCurrent(void) + + Detach the :term:`attached thread state` (which must have been reset + with a previous call to :c:func:`PyThreadState_Clear`) and then destroy it. + + No :term:`thread state` will be :term:`attached ` upon + returning. + +.. c:function:: PyFrameObject* PyThreadState_GetFrame(PyThreadState *tstate) + + Get the current frame of the Python thread state *tstate*. + + Return a :term:`strong reference`. Return ``NULL`` if no frame is currently + executing. + + See also :c:func:`PyEval_GetFrame`. + + *tstate* must not be ``NULL``, and must be :term:`attached `. + + .. versionadded:: 3.9 + + +.. c:function:: uint64_t PyThreadState_GetID(PyThreadState *tstate) + + Get the unique :term:`thread state` identifier of the Python thread state *tstate*. + + *tstate* must not be ``NULL``, and must be :term:`attached `. + + .. versionadded:: 3.9 + + +.. c:function:: PyInterpreterState* PyThreadState_GetInterpreter(PyThreadState *tstate) + + Get the interpreter of the Python thread state *tstate*. + + *tstate* must not be ``NULL``, and must be :term:`attached `. + + .. versionadded:: 3.9 + + +.. c:function:: void PyThreadState_EnterTracing(PyThreadState *tstate) + + Suspend tracing and profiling in the Python thread state *tstate*. + + Resume them using the :c:func:`PyThreadState_LeaveTracing` function. + + .. versionadded:: 3.11 + + +.. c:function:: void PyThreadState_LeaveTracing(PyThreadState *tstate) + + Resume tracing and profiling in the Python thread state *tstate* suspended + by the :c:func:`PyThreadState_EnterTracing` function. + + See also :c:func:`PyEval_SetTrace` and :c:func:`PyEval_SetProfile` + functions. + + .. versionadded:: 3.11 + + +.. c:function:: int PyUnstable_ThreadState_SetStackProtection(PyThreadState *tstate, void *stack_start_addr, size_t stack_size) + + Set the stack protection start address and stack protection size + of a Python thread state. + + On success, return ``0``. + On failure, set an exception and return ``-1``. + + CPython implements :ref:`recursion control ` for C code by raising + :py:exc:`RecursionError` when it notices that the machine execution stack is close + to overflow. See for example the :c:func:`Py_EnterRecursiveCall` function. + For this, it needs to know the location of the current thread's stack, which it + normally gets from the operating system. + When the stack is changed, for example using context switching techniques like the + Boost library's ``boost::context``, you must call + :c:func:`~PyUnstable_ThreadState_SetStackProtection` to inform CPython of the change. + + Call :c:func:`~PyUnstable_ThreadState_SetStackProtection` either before + or after changing the stack. + Do not call any other Python C API between the call and the stack + change. + + See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this operation. + + .. versionadded:: 3.15 + + +.. c:function:: void PyUnstable_ThreadState_ResetStackProtection(PyThreadState *tstate) + + Reset the stack protection start address and stack protection size + of a Python thread state to the operating system defaults. + + See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation. + + .. versionadded:: 3.15 + + +.. c:function:: PyObject* PyThreadState_GetDict() + + Return a dictionary in which extensions can store thread-specific state + information. Each extension should use a unique key to use to store state in + the dictionary. It is okay to call this function when no :term:`thread state` + is :term:`attached `. If this function returns + ``NULL``, no exception has been raised and the caller should assume no + thread state is attached. + + +.. c:function:: void PyEval_AcquireThread(PyThreadState *tstate) + + :term:`Attach ` *tstate* to the current thread, + which must not be ``NULL`` or already :term:`attached `. + + The calling thread must not already have an :term:`attached thread state`. + + .. note:: + Calling this function from a thread when the runtime is finalizing will + hang the thread until the program exits, even if the thread was not + created by Python. Refer to + :ref:`cautions-regarding-runtime-finalization` for more details. + + .. versionchanged:: 3.8 + Updated to be consistent with :c:func:`PyEval_RestoreThread`, + :c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`, + and terminate the current thread if called while the interpreter is finalizing. + + .. versionchanged:: 3.14 + Hangs the current thread, rather than terminating it, if called while the + interpreter is finalizing. + + :c:func:`PyEval_RestoreThread` is a higher-level function which is always + available (even when threads have not been initialized). + + +.. c:function:: void PyEval_ReleaseThread(PyThreadState *tstate) + + Detach the :term:`attached thread state`. + The *tstate* argument, which must not be ``NULL``, is only used to check + that it represents the :term:`attached thread state` --- if it isn't, a fatal error is + reported. + + :c:func:`PyEval_SaveThread` is a higher-level function which is always + available (even when threads have not been initialized). + + +Asynchronous notifications +========================== + +A mechanism is provided to make asynchronous notifications to the main +interpreter thread. These notifications take the form of a function +pointer and a void pointer argument. + + +.. c:function:: int Py_AddPendingCall(int (*func)(void *), void *arg) + + Schedule a function to be called from the main interpreter thread. On + success, ``0`` is returned and *func* is queued for being called in the + main thread. On failure, ``-1`` is returned without setting any exception. + + When successfully queued, *func* will be *eventually* called from the + main interpreter thread with the argument *arg*. It will be called + asynchronously with respect to normally running Python code, but with + both these conditions met: + + * on a :term:`bytecode` boundary; + * with the main thread holding an :term:`attached thread state` + (*func* can therefore use the full C API). + + *func* must return ``0`` on success, or ``-1`` on failure with an exception + set. *func* won't be interrupted to perform another asynchronous + notification recursively, but it can still be interrupted to switch + threads if the :term:`thread state ` is detached. + + This function doesn't need an :term:`attached thread state`. However, to call this + function in a subinterpreter, the caller must have an :term:`attached thread state`. + Otherwise, the function *func* can be scheduled to be called from the wrong interpreter. + + .. warning:: + This is a low-level function, only useful for very special cases. + There is no guarantee that *func* will be called as quick as + possible. If the main thread is busy executing a system call, + *func* won't be called before the system call returns. This + function is generally **not** suitable for calling Python code from + arbitrary C threads. Instead, use the :ref:`PyGILState API`. + + .. versionadded:: 3.1 + + .. versionchanged:: 3.9 + If this function is called in a subinterpreter, the function *func* is + now scheduled to be called from the subinterpreter, rather than being + called from the main interpreter. Each subinterpreter now has its own + list of scheduled calls. + + .. versionchanged:: 3.12 + This function now always schedules *func* to be run in the main + interpreter. + + +.. c:function:: int Py_MakePendingCalls(void) + + Execute all pending calls. This is usually executed automatically by the + interpreter. + + This function returns ``0`` on success, and returns ``-1`` with an exception + set on failure. + + If this is not called in the main thread of the main + interpreter, this function does nothing and returns ``0``. + The caller must hold an :term:`attached thread state`. + + .. versionadded:: 3.1 + + .. versionchanged:: 3.12 + This function only runs pending calls in the main interpreter. + + +.. c:function:: int PyThreadState_SetAsyncExc(unsigned long id, PyObject *exc) + + Asynchronously raise an exception in a thread. The *id* argument is the thread + id of the target thread; *exc* is the exception object to be raised. This + function does not steal any references to *exc*. To prevent naive misuse, you + must write your own C extension to call this. Must be called with an :term:`attached thread state`. + Returns the number of thread states modified; this is normally one, but will be + zero if the thread id isn't found. If *exc* is ``NULL``, the pending + exception (if any) for the thread is cleared. This raises no exceptions. + + .. versionchanged:: 3.7 + The type of the *id* parameter changed from :c:expr:`long` to + :c:expr:`unsigned long`. + + +Operating system thread APIs +============================ + +.. c:macro:: PYTHREAD_INVALID_THREAD_ID + + Sentinel value for an invalid thread ID. + + This is currently equivalent to ``(unsigned long)-1``. + + +.. c:function:: unsigned long PyThread_start_new_thread(void (*func)(void *), void *arg) + + Start function *func* in a new thread with argument *arg*. + The resulting thread is not intended to be joined. + + *func* must not be ``NULL``, but *arg* may be ``NULL``. + + On success, this function returns the identifier of the new thread; on failure, + this returns :c:macro:`PYTHREAD_INVALID_THREAD_ID`. + + The caller does not need to hold an :term:`attached thread state`. + + +.. c:function:: unsigned long PyThread_get_thread_ident(void) + + Return the identifier of the current thread, which will never be zero. + + This function cannot fail, and the caller does not need to hold an + :term:`attached thread state`. + + .. seealso:: + :py:func:`threading.get_ident` + + +.. c:function:: PyObject *PyThread_GetInfo(void) + + Get general information about the current thread in the form of a + :ref:`struct sequence ` object. This information is + accessible as :py:attr:`sys.thread_info` in Python. + + On success, this returns a new :term:`strong reference` to the thread + information; on failure, this returns ``NULL`` with an exception set. + + The caller must hold an :term:`attached thread state`. + + +.. c:macro:: PY_HAVE_THREAD_NATIVE_ID + + This macro is defined when the system supports native thread IDs. + + +.. c:function:: unsigned long PyThread_get_thread_native_id(void) + + Get the native identifier of the current thread as it was assigned by the operating + system's kernel, which will never be less than zero. + + This function is only available when :c:macro:`PY_HAVE_THREAD_NATIVE_ID` is + defined. + + This function cannot fail, and the caller does not need to hold an + :term:`attached thread state`. + + .. seealso:: + :py:func:`threading.get_native_id` + + +.. c:function:: void PyThread_exit_thread(void) + + Terminate the current thread. This function is generally considered unsafe + and should be avoided. It is kept solely for backwards compatibility. + + This function is only safe to call if all functions in the full call + stack are written to safely allow it. + + .. warning:: + + If the current system uses POSIX threads (also known as "pthreads"), + this calls :manpage:`pthread_exit(3)`, which attempts to unwind the stack + and call C++ destructors on some libc implementations. However, if a + ``noexcept`` function is reached, it may terminate the process. + Other systems, such as macOS, do unwinding. + + On Windows, this function calls ``_endthreadex()``, which kills the thread + without calling C++ destructors. + + In any case, there is a risk of corruption on the thread's stack. + + .. deprecated:: 3.14 + + +.. c:function:: void PyThread_init_thread(void) + + Initialize ``PyThread*`` APIs. Python executes this function automatically, + so there's little need to call it from an extension module. + + +.. c:function:: int PyThread_set_stacksize(size_t size) + + Set the stack size of the current thread to *size* bytes. + + This function returns ``0`` on success, ``-1`` if *size* is invalid, or + ``-2`` if the system does not support changing the stack size. This function + does not set exceptions. + + The caller does not need to hold an :term:`attached thread state`. + + +.. c:function:: size_t PyThread_get_stacksize(void) + + Return the stack size of the current thread in bytes, or ``0`` if the system's + default stack size is in use. + + The caller does not need to hold an :term:`attached thread state`. diff --git a/Doc/c-api/tls.rst b/Doc/c-api/tls.rst new file mode 100644 index 00000000000000..93ac5557141e25 --- /dev/null +++ b/Doc/c-api/tls.rst @@ -0,0 +1,155 @@ +.. highlight:: c + +.. _thread-local-storage: + +Thread-local storage support +============================ + +The Python interpreter provides low-level support for thread-local storage +(TLS) which wraps the underlying native TLS implementation to support the +Python-level thread-local storage API (:class:`threading.local`). The +CPython C level APIs are similar to those offered by pthreads and Windows: +use a thread key and functions to associate a :c:expr:`void*` value per +thread. + +A :term:`thread state` does *not* need to be :term:`attached ` +when calling these functions; they supply their own locking. + +Note that :file:`Python.h` does not include the declaration of the TLS APIs, +you need to include :file:`pythread.h` to use thread-local storage. + +.. note:: + None of these API functions handle memory management on behalf of the + :c:expr:`void*` values. You need to allocate and deallocate them yourself. + If the :c:expr:`void*` values happen to be :c:expr:`PyObject*`, these + functions don't do refcount operations on them either. + +.. _thread-specific-storage-api: + +Thread-specific storage API +--------------------------- + +The thread-specific storage (TSS) API was introduced to supersede the use of the existing TLS API within the +CPython interpreter. This API uses a new type :c:type:`Py_tss_t` instead of +:c:expr:`int` to represent thread keys. + +.. versionadded:: 3.7 + +.. seealso:: "A New C-API for Thread-Local Storage in CPython" (:pep:`539`) + + +.. c:type:: Py_tss_t + + This data structure represents the state of a thread key, the definition of + which may depend on the underlying TLS implementation, and it has an + internal field representing the key's initialization state. There are no + public members in this structure. + + When :ref:`Py_LIMITED_API ` is not defined, static allocation of + this type by :c:macro:`Py_tss_NEEDS_INIT` is allowed. + + +.. c:macro:: Py_tss_NEEDS_INIT + + This macro expands to the initializer for :c:type:`Py_tss_t` variables. + Note that this macro won't be defined with :ref:`Py_LIMITED_API `. + + +Dynamic allocation +------------------ + +Dynamic allocation of the :c:type:`Py_tss_t`, required in extension modules +built with :ref:`Py_LIMITED_API `, where static allocation of this type +is not possible due to its implementation being opaque at build time. + + +.. c:function:: Py_tss_t* PyThread_tss_alloc() + + Return a value which is the same state as a value initialized with + :c:macro:`Py_tss_NEEDS_INIT`, or ``NULL`` in the case of dynamic allocation + failure. + + +.. c:function:: void PyThread_tss_free(Py_tss_t *key) + + Free the given *key* allocated by :c:func:`PyThread_tss_alloc`, after + first calling :c:func:`PyThread_tss_delete` to ensure any associated + thread locals have been unassigned. This is a no-op if the *key* + argument is ``NULL``. + + .. note:: + A freed key becomes a dangling pointer. You should reset the key to + ``NULL``. + + +Methods +------- + +The parameter *key* of these functions must not be ``NULL``. Moreover, the +behaviors of :c:func:`PyThread_tss_set` and :c:func:`PyThread_tss_get` are +undefined if the given :c:type:`Py_tss_t` has not been initialized by +:c:func:`PyThread_tss_create`. + + +.. c:function:: int PyThread_tss_is_created(Py_tss_t *key) + + Return a non-zero value if the given :c:type:`Py_tss_t` has been initialized + by :c:func:`PyThread_tss_create`. + + +.. c:function:: int PyThread_tss_create(Py_tss_t *key) + + Return a zero value on successful initialization of a TSS key. The behavior + is undefined if the value pointed to by the *key* argument is not + initialized by :c:macro:`Py_tss_NEEDS_INIT`. This function can be called + repeatedly on the same key -- calling it on an already initialized key is a + no-op and immediately returns success. + + +.. c:function:: void PyThread_tss_delete(Py_tss_t *key) + + Destroy a TSS key to forget the values associated with the key across all + threads, and change the key's initialization state to uninitialized. A + destroyed key is able to be initialized again by + :c:func:`PyThread_tss_create`. This function can be called repeatedly on + the same key -- calling it on an already destroyed key is a no-op. + + +.. c:function:: int PyThread_tss_set(Py_tss_t *key, void *value) + + Return a zero value to indicate successfully associating a :c:expr:`void*` + value with a TSS key in the current thread. Each thread has a distinct + mapping of the key to a :c:expr:`void*` value. + + +.. c:function:: void* PyThread_tss_get(Py_tss_t *key) + + Return the :c:expr:`void*` value associated with a TSS key in the current + thread. This returns ``NULL`` if no value is associated with the key in the + current thread. + + +.. _thread-local-storage-api: + +Legacy APIs +----------- + +.. deprecated:: 3.7 + This API is superseded by the + :ref:`thread-specific storage (TSS) API `. + +.. note:: + This version of the API does not support platforms where the native TLS key + is defined in a way that cannot be safely cast to ``int``. On such platforms, + :c:func:`PyThread_create_key` will return immediately with a failure status, + and the other TLS functions will all be no-ops on such platforms. + +Due to the compatibility problem noted above, this version of the API should not +be used in new code. + +.. c:function:: int PyThread_create_key() +.. c:function:: void PyThread_delete_key(int key) +.. c:function:: int PyThread_set_key_value(int key, void *value) +.. c:function:: void* PyThread_get_key_value(int key) +.. c:function:: void PyThread_delete_key_value(int key) +.. c:function:: void PyThread_ReInitTLS() From 8246d588e48f7072c283db3e4eb1795a9a9780bf Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 20 Feb 2026 12:44:30 -0600 Subject: [PATCH 084/110] Simplify summary tables in the itertools docs (gh-145050) Combine two dispatch tables into once. --- Doc/library/itertools.rst | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index ce444d7bdfbadb..06a71535b5c93c 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -27,18 +27,7 @@ For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a sequence ``f(0), f(1), ...``. The same effect can be achieved in Python by combining :func:`map` and :func:`count` to form ``map(f, count())``. - -**Infinite iterators:** - -================== ================= ================================================= ========================================= -Iterator Arguments Results Example -================== ================= ================================================= ========================================= -:func:`count` [start[, step]] start, start+step, start+2*step, ... ``count(10) → 10 11 12 13 14 ...`` -:func:`cycle` p p0, p1, ... plast, p0, p1, ... ``cycle('ABCD') → A B C D A B C D ...`` -:func:`repeat` elem [,n] elem, elem, elem, ... endlessly or up to n times ``repeat(10, 3) → 10 10 10`` -================== ================= ================================================= ========================================= - -**Iterators terminating on the shortest input sequence:** +**General iterators:** ============================ ============================ ================================================= ============================================================= Iterator Arguments Results Example @@ -48,11 +37,14 @@ Iterator Arguments Results :func:`chain` p, q, ... p0, p1, ... plast, q0, q1, ... ``chain('ABC', 'DEF') → A B C D E F`` :func:`chain.from_iterable` iterable p0, p1, ... plast, q0, q1, ... ``chain.from_iterable(['ABC', 'DEF']) → A B C D E F`` :func:`compress` data, selectors (d[0] if s[0]), (d[1] if s[1]), ... ``compress('ABCDEF', [1,0,1,0,1,1]) → A C E F`` +:func:`count` [start[, step]] start, start+step, start+2*step, ... ``count(10) → 10 11 12 13 14 ...`` +:func:`cycle` p p0, p1, ... plast, p0, p1, ... ``cycle('ABCD') → A B C D A B C D ...`` :func:`dropwhile` predicate, seq seq[n], seq[n+1], starting when predicate fails ``dropwhile(lambda x: x<5, [1,4,6,3,8]) → 6 3 8`` :func:`filterfalse` predicate, seq elements of seq where predicate(elem) fails ``filterfalse(lambda x: x<5, [1,4,6,3,8]) → 6 8`` :func:`groupby` iterable[, key] sub-iterators grouped by value of key(v) ``groupby(['A','B','DEF'], len) → (1, A B) (3, DEF)`` :func:`islice` seq, [start,] stop [, step] elements from seq[start:stop:step] ``islice('ABCDEFG', 2, None) → C D E F G`` :func:`pairwise` iterable (p[0], p[1]), (p[1], p[2]) ``pairwise('ABCDEFG') → AB BC CD DE EF FG`` +:func:`repeat` elem [,n] elem, elem, elem, ... endlessly or up to n times ``repeat(10, 3) → 10 10 10`` :func:`starmap` func, seq func(\*seq[0]), func(\*seq[1]), ... ``starmap(pow, [(2,5), (3,2), (10,3)]) → 32 9 1000`` :func:`takewhile` predicate, seq seq[0], seq[1], until predicate fails ``takewhile(lambda x: x<5, [1,4,6,3,8]) → 1 4`` :func:`tee` it, n it1, it2, ... itn splits one iterator into n ``tee('ABC', 2) → A B C, A B C`` From a56532771a9e24689576a0c38146f0ab2d82b491 Mon Sep 17 00:00:00 2001 From: Alper Date: Fri, 20 Feb 2026 10:52:18 -0800 Subject: [PATCH 085/110] gh-144981: Make PyUnstable_Code_SetExtra/GetExtra thread-safe (#144980) * Make PyUnstable_Code_SetExtra/GetExtra thread-safe --- Lib/test/test_free_threading/test_code.py | 109 ++++++++++++++ ...-02-18-15-12-34.gh-issue-144981.4ZdM63.rst | 3 + Objects/codeobject.c | 142 ++++++++++++++---- Python/ceval.c | 20 ++- 4 files changed, 243 insertions(+), 31 deletions(-) create mode 100644 Misc/NEWS.d/next/C_API/2026-02-18-15-12-34.gh-issue-144981.4ZdM63.rst diff --git a/Lib/test/test_free_threading/test_code.py b/Lib/test/test_free_threading/test_code.py index a5136a3ba4edc7..2fc5eea3773c39 100644 --- a/Lib/test/test_free_threading/test_code.py +++ b/Lib/test/test_free_threading/test_code.py @@ -1,9 +1,41 @@ import unittest +try: + import ctypes +except ImportError: + ctypes = None + from threading import Thread from unittest import TestCase from test.support import threading_helper +from test.support.threading_helper import run_concurrently + +if ctypes is not None: + capi = ctypes.pythonapi + + freefunc = ctypes.CFUNCTYPE(None, ctypes.c_voidp) + + RequestCodeExtraIndex = capi.PyUnstable_Eval_RequestCodeExtraIndex + RequestCodeExtraIndex.argtypes = (freefunc,) + RequestCodeExtraIndex.restype = ctypes.c_ssize_t + + SetExtra = capi.PyUnstable_Code_SetExtra + SetExtra.argtypes = (ctypes.py_object, ctypes.c_ssize_t, ctypes.c_voidp) + SetExtra.restype = ctypes.c_int + + GetExtra = capi.PyUnstable_Code_GetExtra + GetExtra.argtypes = ( + ctypes.py_object, + ctypes.c_ssize_t, + ctypes.POINTER(ctypes.c_voidp), + ) + GetExtra.restype = ctypes.c_int + +# Note: each call to RequestCodeExtraIndex permanently allocates a slot +# (the counter is monotonically increasing), up to MAX_CO_EXTRA_USERS (255). +NTHREADS = 20 + @threading_helper.requires_working_threading() class TestCode(TestCase): @@ -25,6 +57,83 @@ def run_in_thread(): for thread in threads: thread.join() + @unittest.skipUnless(ctypes, "ctypes is required") + def test_request_code_extra_index_concurrent(self): + """Test concurrent calls to RequestCodeExtraIndex""" + results = [] + + def worker(): + idx = RequestCodeExtraIndex(freefunc(0)) + self.assertGreaterEqual(idx, 0) + results.append(idx) + + run_concurrently(worker_func=worker, nthreads=NTHREADS) + + # Every thread must get a unique index. + self.assertEqual(len(results), NTHREADS) + self.assertEqual(len(set(results)), NTHREADS) + + @unittest.skipUnless(ctypes, "ctypes is required") + def test_code_extra_all_ops_concurrent(self): + """Test concurrent RequestCodeExtraIndex + SetExtra + GetExtra""" + LOOP = 100 + + def f(): + pass + + code = f.__code__ + + def worker(): + idx = RequestCodeExtraIndex(freefunc(0)) + self.assertGreaterEqual(idx, 0) + + for i in range(LOOP): + ret = SetExtra(code, idx, ctypes.c_voidp(i + 1)) + self.assertEqual(ret, 0) + + for _ in range(LOOP): + extra = ctypes.c_voidp() + ret = GetExtra(code, idx, extra) + self.assertEqual(ret, 0) + # The slot was set by this thread, so the value must + # be the last one written. + self.assertEqual(extra.value, LOOP) + + run_concurrently(worker_func=worker, nthreads=NTHREADS) + + @unittest.skipUnless(ctypes, "ctypes is required") + def test_code_extra_set_get_concurrent(self): + """Test concurrent SetExtra + GetExtra on a shared index""" + LOOP = 100 + + def f(): + pass + + code = f.__code__ + + idx = RequestCodeExtraIndex(freefunc(0)) + self.assertGreaterEqual(idx, 0) + + def worker(): + for i in range(LOOP): + ret = SetExtra(code, idx, ctypes.c_voidp(i + 1)) + self.assertEqual(ret, 0) + + for _ in range(LOOP): + extra = ctypes.c_voidp() + ret = GetExtra(code, idx, extra) + self.assertEqual(ret, 0) + # Value is set by any writer thread. + self.assertTrue(1 <= extra.value <= LOOP) + + run_concurrently(worker_func=worker, nthreads=NTHREADS) + + # Every thread's last write is LOOP, so the final value must be LOOP. + extra = ctypes.c_voidp() + ret = GetExtra(code, idx, extra) + self.assertEqual(ret, 0) + self.assertEqual(extra.value, LOOP) + if __name__ == "__main__": unittest.main() diff --git a/Misc/NEWS.d/next/C_API/2026-02-18-15-12-34.gh-issue-144981.4ZdM63.rst b/Misc/NEWS.d/next/C_API/2026-02-18-15-12-34.gh-issue-144981.4ZdM63.rst new file mode 100644 index 00000000000000..d86886ab09704a --- /dev/null +++ b/Misc/NEWS.d/next/C_API/2026-02-18-15-12-34.gh-issue-144981.4ZdM63.rst @@ -0,0 +1,3 @@ +Made :c:func:`PyUnstable_Code_SetExtra`, :c:func:`PyUnstable_Code_GetExtra`, +and :c:func:`PyUnstable_Eval_RequestCodeExtraIndex` thread-safe on the +:term:`free threaded ` build. diff --git a/Objects/codeobject.c b/Objects/codeobject.c index 776444a0cc2086..520190824fbf1a 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -1575,6 +1575,67 @@ typedef struct { } _PyCodeObjectExtra; +static inline size_t +code_extra_size(Py_ssize_t n) +{ + return sizeof(_PyCodeObjectExtra) + (n - 1) * sizeof(void *); +} + +#ifdef Py_GIL_DISABLED +static int +code_extra_grow_ft(PyCodeObject *co, _PyCodeObjectExtra *old_co_extra, + Py_ssize_t old_ce_size, Py_ssize_t new_ce_size, + Py_ssize_t index, void *extra) +{ + _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(co); + _PyCodeObjectExtra *new_co_extra = PyMem_Malloc( + code_extra_size(new_ce_size)); + if (new_co_extra == NULL) { + PyErr_NoMemory(); + return -1; + } + + if (old_ce_size > 0) { + memcpy(new_co_extra->ce_extras, old_co_extra->ce_extras, + old_ce_size * sizeof(void *)); + } + for (Py_ssize_t i = old_ce_size; i < new_ce_size; i++) { + new_co_extra->ce_extras[i] = NULL; + } + new_co_extra->ce_size = new_ce_size; + new_co_extra->ce_extras[index] = extra; + + // Publish new buffer and its contents to lock-free readers. + FT_ATOMIC_STORE_PTR_RELEASE(co->co_extra, new_co_extra); + if (old_co_extra != NULL) { + // QSBR: defer old-buffer free until lock-free readers quiesce. + _PyMem_FreeDelayed(old_co_extra, code_extra_size(old_ce_size)); + } + return 0; +} +#else +static int +code_extra_grow_gil(PyCodeObject *co, _PyCodeObjectExtra *old_co_extra, + Py_ssize_t old_ce_size, Py_ssize_t new_ce_size, + Py_ssize_t index, void *extra) +{ + _PyCodeObjectExtra *new_co_extra = PyMem_Realloc( + old_co_extra, code_extra_size(new_ce_size)); + if (new_co_extra == NULL) { + PyErr_NoMemory(); + return -1; + } + + for (Py_ssize_t i = old_ce_size; i < new_ce_size; i++) { + new_co_extra->ce_extras[i] = NULL; + } + new_co_extra->ce_size = new_ce_size; + new_co_extra->ce_extras[index] = extra; + co->co_extra = new_co_extra; + return 0; +} +#endif + int PyUnstable_Code_GetExtra(PyObject *code, Py_ssize_t index, void **extra) { @@ -1583,15 +1644,19 @@ PyUnstable_Code_GetExtra(PyObject *code, Py_ssize_t index, void **extra) return -1; } - PyCodeObject *o = (PyCodeObject*) code; - _PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra*) o->co_extra; + PyCodeObject *co = (PyCodeObject *)code; + *extra = NULL; - if (co_extra == NULL || index < 0 || co_extra->ce_size <= index) { - *extra = NULL; + if (index < 0) { return 0; } - *extra = co_extra->ce_extras[index]; + // Lock-free read; pairs with release stores in SetExtra. + _PyCodeObjectExtra *co_extra = FT_ATOMIC_LOAD_PTR_ACQUIRE(co->co_extra); + if (co_extra != NULL && index < co_extra->ce_size) { + *extra = FT_ATOMIC_LOAD_PTR_ACQUIRE(co_extra->ce_extras[index]); + } + return 0; } @@ -1601,40 +1666,59 @@ PyUnstable_Code_SetExtra(PyObject *code, Py_ssize_t index, void *extra) { PyInterpreterState *interp = _PyInterpreterState_GET(); - if (!PyCode_Check(code) || index < 0 || - index >= interp->co_extra_user_count) { + // co_extra_user_count is monotonically increasing and published with + // release store in RequestCodeExtraIndex, so once an index is valid + // it stays valid. + Py_ssize_t user_count = FT_ATOMIC_LOAD_SSIZE_ACQUIRE( + interp->co_extra_user_count); + + if (!PyCode_Check(code) || index < 0 || index >= user_count) { PyErr_BadInternalCall(); return -1; } - PyCodeObject *o = (PyCodeObject*) code; - _PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra *) o->co_extra; + PyCodeObject *co = (PyCodeObject *)code; + int result = 0; + void *old_slot_value = NULL; - if (co_extra == NULL || co_extra->ce_size <= index) { - Py_ssize_t i = (co_extra == NULL ? 0 : co_extra->ce_size); - co_extra = PyMem_Realloc( - co_extra, - sizeof(_PyCodeObjectExtra) + - (interp->co_extra_user_count-1) * sizeof(void*)); - if (co_extra == NULL) { - return -1; - } - for (; i < interp->co_extra_user_count; i++) { - co_extra->ce_extras[i] = NULL; - } - co_extra->ce_size = interp->co_extra_user_count; - o->co_extra = co_extra; + Py_BEGIN_CRITICAL_SECTION(co); + + _PyCodeObjectExtra *old_co_extra = (_PyCodeObjectExtra *)co->co_extra; + Py_ssize_t old_ce_size = (old_co_extra == NULL) + ? 0 : old_co_extra->ce_size; + + // Fast path: slot already exists, update in place. + if (index < old_ce_size) { + old_slot_value = old_co_extra->ce_extras[index]; + FT_ATOMIC_STORE_PTR_RELEASE(old_co_extra->ce_extras[index], extra); + goto done; } - if (co_extra->ce_extras[index] != NULL) { - freefunc free = interp->co_extra_freefuncs[index]; - if (free != NULL) { - free(co_extra->ce_extras[index]); + // Slow path: buffer needs to grow. + Py_ssize_t new_ce_size = user_count; +#ifdef Py_GIL_DISABLED + // FT build: allocate new buffer and swap; QSBR reclaims the old one. + result = code_extra_grow_ft( + co, old_co_extra, old_ce_size, new_ce_size, index, extra); +#else + // GIL build: grow with realloc. + result = code_extra_grow_gil( + co, old_co_extra, old_ce_size, new_ce_size, index, extra); +#endif + +done:; + Py_END_CRITICAL_SECTION(); + if (old_slot_value != NULL) { + // Free the old slot value if a free function was registered. + // The caller must ensure no other thread can still access the old + // value after this overwrite. + freefunc free_extra = interp->co_extra_freefuncs[index]; + if (free_extra != NULL) { + free_extra(old_slot_value); } } - co_extra->ce_extras[index] = extra; - return 0; + return result; } diff --git a/Python/ceval.c b/Python/ceval.c index 8e905a5e689ed9..2cd7c7bfd28d09 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3493,11 +3493,27 @@ PyUnstable_Eval_RequestCodeExtraIndex(freefunc free) PyInterpreterState *interp = _PyInterpreterState_GET(); Py_ssize_t new_index; - if (interp->co_extra_user_count == MAX_CO_EXTRA_USERS - 1) { +#ifdef Py_GIL_DISABLED + struct _py_code_state *state = &interp->code_state; + FT_MUTEX_LOCK(&state->mutex); +#endif + + if (interp->co_extra_user_count >= MAX_CO_EXTRA_USERS - 1) { +#ifdef Py_GIL_DISABLED + FT_MUTEX_UNLOCK(&state->mutex); +#endif return -1; } - new_index = interp->co_extra_user_count++; + + new_index = interp->co_extra_user_count; interp->co_extra_freefuncs[new_index] = free; + + // Publish freefuncs[new_index] before making the index visible. + FT_ATOMIC_STORE_SSIZE_RELEASE(interp->co_extra_user_count, new_index + 1); + +#ifdef Py_GIL_DISABLED + FT_MUTEX_UNLOCK(&state->mutex); +#endif return new_index; } From 75c57531996afabf3bc551c4add4ba1e9e9ce827 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Fri, 20 Feb 2026 19:02:14 +0000 Subject: [PATCH 086/110] Fix errors in `CODEOWNERS` (#145049) Fix erros in CODEOWNERS --- .github/CODEOWNERS | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index f656e8e52cd3dc..1adbacbb7d1098 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -295,10 +295,10 @@ Tools/jit/ @brandtbucher @savannahostrowski @diegorusso InternalDocs/jit.md @brandtbucher @savannahostrowski @diegorusso @AA-Turner # Lazy imports (PEP 810) -Objects/lazyimportobject.c @twouters @DinoV @pablogsal -Include/internal/pycore_lazyimportobject.h @twouters @DinoV @pablogsal -Lib/test/test_import/test_lazy_imports.py @twouters @DinoV @pablogsal -Lib/test/test_import/data/lazy_imports/ @twouters @DinoV @pablogsal +Objects/lazyimportobject.c @yhg1s @DinoV @pablogsal +Include/internal/pycore_lazyimportobject.h @yhg1s @DinoV @pablogsal +Lib/test/test_import/test_lazy_imports.py @yhg1s @DinoV @pablogsal +Lib/test/test_import/data/lazy_imports/ @yhg1s @DinoV @pablogsal # Micro-op / μop / Tier 2 Optimiser Python/optimizer.c @markshannon @Fidget-Spinner From 70da972f97ec799dc7d7ab069fe195455f2f81b2 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Fri, 20 Feb 2026 14:31:58 -0500 Subject: [PATCH 087/110] gh-144809: Make deque copy atomic in free-threaded build (gh-144966) --- .../test_free_threading/test_collections.py | 29 ++++++++++++ ...-02-18-00-00-00.gh-issue-144809.nYpEUx.rst | 1 + Modules/_collectionsmodule.c | 45 ++++++++++++------- 3 files changed, 59 insertions(+), 16 deletions(-) create mode 100644 Lib/test/test_free_threading/test_collections.py create mode 100644 Misc/NEWS.d/next/Library/2026-02-18-00-00-00.gh-issue-144809.nYpEUx.rst diff --git a/Lib/test/test_free_threading/test_collections.py b/Lib/test/test_free_threading/test_collections.py new file mode 100644 index 00000000000000..3a413ccf396d4b --- /dev/null +++ b/Lib/test/test_free_threading/test_collections.py @@ -0,0 +1,29 @@ +import unittest +from collections import deque +from copy import copy +from test.support import threading_helper + +threading_helper.requires_working_threading(module=True) + + +class TestDeque(unittest.TestCase): + def test_copy_race(self): + # gh-144809: Test that deque copy is thread safe. It previously + # could raise a "deque mutated during iteration" error. + d = deque(range(100)) + + def mutate(): + for i in range(1000): + d.append(i) + if len(d) > 200: + d.popleft() + + def copy_loop(): + for _ in range(1000): + copy(d) + + threading_helper.run_concurrently([mutate, copy_loop]) + + +if __name__ == "__main__": + unittest.main() diff --git a/Misc/NEWS.d/next/Library/2026-02-18-00-00-00.gh-issue-144809.nYpEUx.rst b/Misc/NEWS.d/next/Library/2026-02-18-00-00-00.gh-issue-144809.nYpEUx.rst new file mode 100644 index 00000000000000..62c20b7fa06d94 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-18-00-00-00.gh-issue-144809.nYpEUx.rst @@ -0,0 +1 @@ +Make :class:`collections.deque` copy atomic in the :term:`free-threaded build`. diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 45ca63e6d7c77f..72865f87fc484f 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -605,29 +605,42 @@ deque_copy_impl(dequeobject *deque) collections_state *state = find_module_state_by_def(Py_TYPE(deque)); if (Py_IS_TYPE(deque, state->deque_type)) { dequeobject *new_deque; - PyObject *rv; + Py_ssize_t n = Py_SIZE(deque); new_deque = (dequeobject *)deque_new(state->deque_type, NULL, NULL); if (new_deque == NULL) return NULL; new_deque->maxlen = old_deque->maxlen; - /* Fast path for the deque_repeat() common case where len(deque) == 1 - * - * It's safe to not acquire the per-object lock for new_deque; it's - * invisible to other threads. + + /* Copy elements directly by walking the block structure. + * This is safe because the caller holds the deque lock and + * the new deque is not yet visible to other threads. */ - if (Py_SIZE(deque) == 1) { - PyObject *item = old_deque->leftblock->data[old_deque->leftindex]; - rv = deque_append_impl(new_deque, item); - } else { - rv = deque_extend_impl(new_deque, (PyObject *)deque); - } - if (rv != NULL) { - Py_DECREF(rv); - return (PyObject *)new_deque; + if (n > 0) { + block *b = old_deque->leftblock; + Py_ssize_t index = old_deque->leftindex; + + /* Space saving heuristic. Start filling from the left */ + assert(new_deque->leftblock == new_deque->rightblock); + assert(new_deque->leftindex == new_deque->rightindex + 1); + new_deque->leftindex = 1; + new_deque->rightindex = 0; + + for (Py_ssize_t i = 0; i < n; i++) { + PyObject *item = b->data[index]; + if (deque_append_lock_held(new_deque, Py_NewRef(item), + new_deque->maxlen) < 0) { + Py_DECREF(new_deque); + return NULL; + } + index++; + if (index == BLOCKLEN) { + b = b->rightlink; + index = 0; + } + } } - Py_DECREF(new_deque); - return NULL; + return (PyObject *)new_deque; } if (old_deque->maxlen < 0) result = PyObject_CallOneArg((PyObject *)(Py_TYPE(deque)), From 06292614ff7cef0ba28da6dfded58fb0e731b2e3 Mon Sep 17 00:00:00 2001 From: Peter Bierma Date: Fri, 20 Feb 2026 19:25:45 -0500 Subject: [PATCH 088/110] gh-144748: Document 3.12 and 3.14 changes to `PyErr_CheckSignals` (GH-144982) Co-authored-by: Petr Viktorin --- Doc/c-api/exceptions.rst | 52 +++++++++++++++++++++++++++------------- 1 file changed, 35 insertions(+), 17 deletions(-) diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index a1cfb8872345cf..72b013612d77f5 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -673,28 +673,46 @@ Signal Handling single: SIGINT (C macro) single: KeyboardInterrupt (built-in exception) - This function interacts with Python's signal handling. + Handle external interruptions, such as signals or activating a debugger, + whose processing has been delayed until it is safe + to run Python code and/or raise exceptions. - If the function is called from the main thread and under the main Python - interpreter, it checks whether a signal has been sent to the processes - and if so, invokes the corresponding signal handler. If the :mod:`signal` - module is supported, this can invoke a signal handler written in Python. + For example, pressing :kbd:`Ctrl-C` causes a terminal to send the + :py:data:`signal.SIGINT` signal. + This function executes the corresponding Python signal handler, which, + by default, raises the :exc:`KeyboardInterrupt` exception. - The function attempts to handle all pending signals, and then returns ``0``. - However, if a Python signal handler raises an exception, the error - indicator is set and the function returns ``-1`` immediately (such that - other pending signals may not have been handled yet: they will be on the - next :c:func:`PyErr_CheckSignals()` invocation). + :c:func:`!PyErr_CheckSignals` should be called by long-running C code + frequently enough so that the response appears immediate to humans. - If the function is called from a non-main thread, or under a non-main - Python interpreter, it does nothing and returns ``0``. + Handlers invoked by this function currently include: - This function can be called by long-running C code that wants to - be interruptible by user requests (such as by pressing Ctrl-C). + - Signal handlers, including Python functions registered using + the :mod:`signal` module. - .. note:: - The default Python signal handler for :c:macro:`!SIGINT` raises the - :exc:`KeyboardInterrupt` exception. + Signal handlers are only run in the main thread of the main interpreter. + + (This is where the function got the name: originally, signals + were the only way to interrupt the interpreter.) + + - Running the garbage collector, if necessary. + + - Executing a pending :ref:`remote debugger ` script. + + If any handler raises an exception, immediately return ``-1`` with that + exception set. + Any remaining interruptions are left to be processed on the next + :c:func:`PyErr_CheckSignals()` invocation, if appropriate. + + If all handlers finish successfully, or there are no handlers to run, + return ``0``. + + .. versionchanged:: 3.12 + This function may now invoke the garbage collector. + + .. versionchanged:: 3.14 + This function may now execute a remote debugger script, if remote + debugging is enabled. .. c:function:: void PyErr_SetInterrupt() From 273d5062ca17ac47354486f3fc6e672a04cf22e0 Mon Sep 17 00:00:00 2001 From: Rafael Santos Date: Fri, 20 Feb 2026 22:57:29 -0600 Subject: [PATCH 089/110] gh-145028: Fix blake2 tests in test_hashlib when it is missing due to build config (GH-145029) specifically configure --without-builtin-hashlib-hashes means the otherwise guaranteed available blake2 family will not exist. this allows the test suite to still pass. --- Lib/test/test_hashlib.py | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py index 489bb049d2fadb..f0e2d527af2615 100644 --- a/Lib/test/test_hashlib.py +++ b/Lib/test/test_hashlib.py @@ -134,8 +134,11 @@ def __init__(self, *args, **kwargs): algorithms.add(algorithm.lower()) _blake2 = self._conditional_import_module('_blake2') + blake2_hashes = {'blake2b', 'blake2s'} if _blake2: - algorithms.update({'blake2b', 'blake2s'}) + algorithms.update(blake2_hashes) + else: + algorithms.difference_update(blake2_hashes) self.constructors_to_test = {} for algorithm in algorithms: @@ -232,7 +235,12 @@ def test_algorithms_available(self): # all available algorithms must be loadable, bpo-47101 self.assertNotIn("undefined", hashlib.algorithms_available) for name in hashlib.algorithms_available: - digest = hashlib.new(name, usedforsecurity=False) + with self.subTest(name): + try: + _ = hashlib.new(name, usedforsecurity=False) + except ValueError as exc: + self.skip_if_blake2_not_builtin(name, exc) + raise def test_usedforsecurity_true(self): hashlib.new("sha256", usedforsecurity=True) @@ -504,6 +512,7 @@ def test_sha3_256_update_over_4gb(self): self.assertEqual(h.hexdigest(), "e2d4535e3b613135c14f2fe4e026d7ad8d569db44901740beffa30d430acb038") @requires_resource('cpu') + @requires_blake2 def test_blake2_update_over_4gb(self): # blake2s or blake2b doesn't matter based on how our C code is structured, this tests the # common loop macro logic. @@ -798,6 +807,12 @@ def test_case_sha512_3(self): "e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973eb"+ "de0ff244877ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b") + def skip_if_blake2_not_builtin(self, name, skip_reason): + # blake2 builtins may be absent if python built with + # a subset of --with-builtin-hashlib-hashes or none. + if "blake2" in name and "blake2" not in builtin_hashes: + self.skipTest(skip_reason) + def check_blake2(self, constructor, salt_size, person_size, key_size, digest_size, max_offset): self.assertEqual(constructor.SALT_SIZE, salt_size) @@ -1080,10 +1095,16 @@ def test_sha256_gil(self): def test_threaded_hashing_fast(self): # Same as test_threaded_hashing_slow() but only tests some functions # since otherwise test_hashlib.py becomes too slow during development. - for name in ['md5', 'sha1', 'sha256', 'sha3_256', 'blake2s']: + algos = ['md5', 'sha1', 'sha256', 'sha3_256', 'blake2s'] + for name in algos: if constructor := getattr(hashlib, name, None): with self.subTest(name): - self.do_test_threaded_hashing(constructor, is_shake=False) + try: + self.do_test_threaded_hashing(constructor, is_shake=False) + except ValueError as exc: + self.skip_if_blake2_not_builtin(name, exc) + raise + if shake_128 := getattr(hashlib, 'shake_128', None): self.do_test_threaded_hashing(shake_128, is_shake=True) From 85021bc2477f3ab394172b6dda3110e59f4777dd Mon Sep 17 00:00:00 2001 From: Mohsin Mehmood <55545648+mohsinm-dev@users.noreply.github.com> Date: Sat, 21 Feb 2026 10:36:26 +0500 Subject: [PATCH 090/110] gh-144694: Fix re.Match.group() doc claiming [1..99] range limit (#144696) The documentation incorrectly stated that numeric group arguments must be in the range [1..99]. This limit was removed in Python 3.5 (bpo-22437). Replace with "a positive integer" since the next sentence already documents the IndexError for out-of-range values. --- Doc/library/re.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Doc/library/re.rst b/Doc/library/re.rst index cc11d0205dc5cb..7edb85ca507722 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -1434,10 +1434,10 @@ when there is no match, you can test whether there was a match with a simple result is a single string; if there are multiple arguments, the result is a tuple with one item per argument. Without arguments, *group1* defaults to zero (the whole match is returned). If a *groupN* argument is zero, the corresponding - return value is the entire matching string; if it is in the inclusive range - [1..99], it is the string matching the corresponding parenthesized group. If a - group number is negative or larger than the number of groups defined in the - pattern, an :exc:`IndexError` exception is raised. If a group is contained in a + return value is the entire matching string; if it is a positive integer, it is + the string matching the corresponding parenthesized group. If a group number is + negative or larger than the number of groups defined in the pattern, an + :exc:`IndexError` exception is raised. If a group is contained in a part of the pattern that did not match, the corresponding result is ``None``. If a group is contained in a part of the pattern that matched multiple times, the last match is returned. :: From 20b1535ca40a5b93088cdbc669e86215f1630599 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 11:07:55 +0100 Subject: [PATCH 091/110] gh-141510, PEP 814: Add frozendict support to pickle (#144967) Add frozendict.__getnewargs__() method. --- Lib/test/picklecommon.py | 11 ++++++++ Lib/test/pickletester.py | 45 ++++++++++++++++++++++++++++++++- Lib/test/test_dict.py | 54 +++++++++++++++++++++++++++++++++++++--- Objects/dictobject.c | 13 ++++++++++ 4 files changed, 118 insertions(+), 5 deletions(-) diff --git a/Lib/test/picklecommon.py b/Lib/test/picklecommon.py index b749ee09f564bf..bb8e41b01492ea 100644 --- a/Lib/test/picklecommon.py +++ b/Lib/test/picklecommon.py @@ -263,6 +263,17 @@ class MyFrozenSet(frozenset): MyStr, MyUnicode, MyTuple, MyList, MyDict, MySet, MyFrozenSet] +try: + frozendict +except NameError: + # Python 3.14 and older + pass +else: + class MyFrozenDict(dict): + sample = frozendict({"a": 1, "b": 2}) + myclasses.append(MyFrozenDict) + + # For test_newobj_overridden_new class MyIntWithNew(int): def __new__(cls, value): diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 3d4ed8a2b6ee40..0624b6a0257829 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -2839,11 +2839,13 @@ def test_recursive_multi(self): self.assertEqual(list(x[0].attr.keys()), [1]) self.assertIs(x[0].attr[1], x) - def _test_recursive_collection_and_inst(self, factory, oldminproto=None): + def _test_recursive_collection_and_inst(self, factory, oldminproto=None, + minprotocol=0): if self.py_version < (3, 0): self.skipTest('"classic" classes are not interoperable with Python 2') # Mutable object containing a collection containing the original # object. + protocols = range(minprotocol, pickle.HIGHEST_PROTOCOL + 1) o = Object() o.attr = factory([o]) t = type(o.attr) @@ -2883,6 +2885,11 @@ def test_recursive_tuple_and_inst(self): def test_recursive_dict_and_inst(self): self._test_recursive_collection_and_inst(dict.fromkeys, oldminproto=0) + def test_recursive_frozendict_and_inst(self): + if self.py_version < (3, 15): + self.skipTest('need frozendict') + self._test_recursive_collection_and_inst(frozendict.fromkeys, minprotocol=2) + def test_recursive_set_and_inst(self): self._test_recursive_collection_and_inst(set) @@ -2904,6 +2911,42 @@ def test_recursive_set_subclass_and_inst(self): def test_recursive_frozenset_subclass_and_inst(self): self._test_recursive_collection_and_inst(MyFrozenSet) + def _test_recursive_collection_in_key(self, factory, minprotocol=0): + protocols = range(minprotocol, pickle.HIGHEST_PROTOCOL + 1) + key = Object() + o = factory({key: 1}) + key.attr = o + for proto in protocols: + with self.subTest(proto=proto): + s = self.dumps(o, proto) + x = self.loads(s) + keys = list(x.keys()) + self.assertEqual(len(keys), 1) + self.assertIs(keys[0].attr, x) + + def test_recursive_frozendict_in_key(self): + self._test_recursive_collection_in_key(frozendict, minprotocol=2) + + def test_recursive_frozendict_subclass_in_key(self): + self._test_recursive_collection_in_key(MyFrozenDict) + + def _test_recursive_collection_in_value(self, factory, minprotocol=0): + protocols = range(minprotocol, pickle.HIGHEST_PROTOCOL + 1) + o = factory(key=[]) + o['key'].append(o) + for proto in protocols: + with self.subTest(proto=proto): + s = self.dumps(o, proto) + x = self.loads(s) + self.assertEqual(len(x['key']), 1) + self.assertIs(x['key'][0], x) + + def test_recursive_frozendict_in_value(self): + self._test_recursive_collection_in_value(frozendict, minprotocol=2) + + def test_recursive_frozendict_subclass_in_value(self): + self._test_recursive_collection_in_value(MyFrozenDict) + def test_recursive_inst_state(self): # Mutable object containing itself. y = REX_state() diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 71f72cb2557670..9cfaa4a86fa9fd 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -1731,6 +1731,10 @@ class FrozenDict(frozendict): pass +class FrozenDictSlots(frozendict): + __slots__ = ('slot_attr',) + + class FrozenDictTests(unittest.TestCase): def test_copy(self): d = frozendict(x=1, y=2) @@ -1773,10 +1777,8 @@ def test_repr(self): d = frozendict(x=1, y=2) self.assertEqual(repr(d), "frozendict({'x': 1, 'y': 2})") - class MyFrozenDict(frozendict): - pass - d = MyFrozenDict(x=1, y=2) - self.assertEqual(repr(d), "MyFrozenDict({'x': 1, 'y': 2})") + d = FrozenDict(x=1, y=2) + self.assertEqual(repr(d), "FrozenDict({'x': 1, 'y': 2})") def test_hash(self): # hash() doesn't rely on the items order @@ -1825,6 +1827,50 @@ def __new__(self): self.assertEqual(type(fd), DictSubclass) self.assertEqual(created, frozendict(x=1)) + def test_pickle(self): + for proto in range(pickle.HIGHEST_PROTOCOL + 1): + for fd in ( + frozendict(), + frozendict(x=1, y=2), + FrozenDict(x=1, y=2), + FrozenDictSlots(x=1, y=2), + ): + if type(fd) == FrozenDict: + fd.attr = 123 + if type(fd) == FrozenDictSlots: + fd.slot_attr = 456 + with self.subTest(fd=fd, proto=proto): + if proto >= 2: + p = pickle.dumps(fd, proto) + fd2 = pickle.loads(p) + self.assertEqual(fd2, fd) + self.assertEqual(type(fd2), type(fd)) + if type(fd) == FrozenDict: + self.assertEqual(fd2.attr, 123) + if type(fd) == FrozenDictSlots: + self.assertEqual(fd2.slot_attr, 456) + else: + # protocol 0 and 1 don't support frozendict + with self.assertRaises(TypeError): + pickle.dumps(fd, proto) + + def test_pickle_iter(self): + fd = frozendict(c=1, b=2, a=3, d=4, e=5, f=6) + for method_name in (None, 'keys', 'values', 'items'): + if method_name is not None: + meth = getattr(fd, method_name) + else: + meth = lambda: fd + expected = list(meth())[1:] + for proto in range(pickle.HIGHEST_PROTOCOL + 1): + with self.subTest(method_name=method_name, protocol=proto): + it = iter(meth()) + next(it) + p = pickle.dumps(it, proto) + unpickled = pickle.loads(p) + self.assertEqual(list(unpickled), expected) + self.assertEqual(list(it), expected) + if __name__ == "__main__": unittest.main() diff --git a/Objects/dictobject.c b/Objects/dictobject.c index af3fcca7455470..8f960352fa4824 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -7930,6 +7930,18 @@ _PyObject_InlineValuesConsistencyCheck(PyObject *obj) // --- frozendict implementation --------------------------------------------- +static PyObject * +frozendict_getnewargs(PyObject *op, PyObject *Py_UNUSED(dummy)) +{ + // Call dict(op): convert 'op' frozendict to a dict + PyObject *arg = PyObject_CallOneArg((PyObject*)&PyDict_Type, op); + if (arg == NULL) { + return NULL; + } + return Py_BuildValue("(N)", arg); +} + + static PyNumberMethods frozendict_as_number = { .nb_or = frozendict_or, }; @@ -7951,6 +7963,7 @@ static PyMethodDef frozendict_methods[] = { DICT_COPY_METHODDEF DICT___REVERSED___METHODDEF {"__class_getitem__", Py_GenericAlias, METH_O|METH_CLASS, PyDoc_STR("See PEP 585")}, + {"__getnewargs__", frozendict_getnewargs, METH_NOARGS}, {NULL, NULL} /* sentinel */ }; From 347fc438cf903c1d7fa5063464ae2e93c11b2232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9n=C3=A9dikt=20Tran?= <10796600+picnixz@users.noreply.github.com> Date: Sat, 21 Feb 2026 12:20:42 +0100 Subject: [PATCH 092/110] gh-143698: correctly check `scheduler` and `setpgroup` values for `os.posix_spawn[p]` (#143699) Fix an issue where passing invalid arguments to `os.posix_spawn[p]` functions raised a SystemError instead of a TypeError, and allow to explicitly use `None` for `scheduler` and `setpgroup` as specified in the docs. --- Lib/test/test_inspect/test_inspect.py | 3 +-- Lib/test/test_os/test_posix.py | 19 +++++++++++++++ ...-01-11-16-59-22.gh-issue-143698.b-Cpeb.rst | 3 +++ ...-01-11-18-35-52.gh-issue-143698.gXDzsJ.rst | 3 +++ Modules/clinic/posixmodule.c.h | 10 ++++---- Modules/posixmodule.c | 23 ++++++++++++------- 6 files changed, 46 insertions(+), 15 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-01-11-16-59-22.gh-issue-143698.b-Cpeb.rst create mode 100644 Misc/NEWS.d/next/Library/2026-01-11-18-35-52.gh-issue-143698.gXDzsJ.rst diff --git a/Lib/test/test_inspect/test_inspect.py b/Lib/test/test_inspect/test_inspect.py index 00cc5aab32c273..4ad32c649ea83c 100644 --- a/Lib/test/test_inspect/test_inspect.py +++ b/Lib/test/test_inspect/test_inspect.py @@ -6267,8 +6267,7 @@ def test_operator_module_has_signatures(self): def test_os_module_has_signatures(self): unsupported_signature = {'chmod', 'utime'} unsupported_signature |= {name for name in - ['get_terminal_size', 'link', 'posix_spawn', 'posix_spawnp', - 'register_at_fork', 'startfile'] + ['get_terminal_size', 'link', 'register_at_fork', 'startfile'] if hasattr(os, name)} self._test_module_has_signatures(os, unsupported_signature=unsupported_signature) diff --git a/Lib/test/test_os/test_posix.py b/Lib/test/test_os/test_posix.py index 995c48bdbbffd6..0e8495a4eff2ed 100644 --- a/Lib/test/test_os/test_posix.py +++ b/Lib/test/test_os/test_posix.py @@ -2008,6 +2008,11 @@ def test_setpgroup(self): ) support.wait_process(pid, exitcode=0) + def test_setpgroup_allow_none(self): + path, args = self.NOOP_PROGRAM[0], self.NOOP_PROGRAM + pid = self.spawn_func(path, args, os.environ, setpgroup=None) + support.wait_process(pid, exitcode=0) + def test_setpgroup_wrong_type(self): with self.assertRaises(TypeError): self.spawn_func(sys.executable, @@ -2108,6 +2113,20 @@ def test_setsigdef_wrong_type(self): [sys.executable, "-c", "pass"], os.environ, setsigdef=[signal.NSIG, signal.NSIG+1]) + def test_scheduler_allow_none(self): + path, args = self.NOOP_PROGRAM[0], self.NOOP_PROGRAM + pid = self.spawn_func(path, args, os.environ, scheduler=None) + support.wait_process(pid, exitcode=0) + + @support.subTests("scheduler", [object(), 1, [1, 2]]) + def test_scheduler_wrong_type(self, scheduler): + path, args = self.NOOP_PROGRAM[0], self.NOOP_PROGRAM + with self.assertRaisesRegex( + TypeError, + "scheduler must be a tuple or None", + ): + self.spawn_func(path, args, os.environ, scheduler=scheduler) + @requires_sched @unittest.skipIf(sys.platform.startswith(('freebsd', 'netbsd')), "bpo-34685: test can fail on BSD") diff --git a/Misc/NEWS.d/next/Library/2026-01-11-16-59-22.gh-issue-143698.b-Cpeb.rst b/Misc/NEWS.d/next/Library/2026-01-11-16-59-22.gh-issue-143698.b-Cpeb.rst new file mode 100644 index 00000000000000..05dc4941c98a83 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-01-11-16-59-22.gh-issue-143698.b-Cpeb.rst @@ -0,0 +1,3 @@ +Raise :exc:`TypeError` instead of :exc:`SystemError` when the *scheduler* +in :func:`os.posix_spawn` or :func:`os.posix_spawnp` is not a tuple. +Patch by Bénédikt Tran. diff --git a/Misc/NEWS.d/next/Library/2026-01-11-18-35-52.gh-issue-143698.gXDzsJ.rst b/Misc/NEWS.d/next/Library/2026-01-11-18-35-52.gh-issue-143698.gXDzsJ.rst new file mode 100644 index 00000000000000..5f95b0de7d8895 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-01-11-18-35-52.gh-issue-143698.gXDzsJ.rst @@ -0,0 +1,3 @@ +Allow *scheduler* and *setpgroup* arguments to be explicitly :const:`None` +when calling :func:`os.posix_spawn` or :func:`os.posix_spawnp`. Patch by +Bénédikt Tran. diff --git a/Modules/clinic/posixmodule.c.h b/Modules/clinic/posixmodule.c.h index c4f498d233164c..ad4c5dd1c9bc08 100644 --- a/Modules/clinic/posixmodule.c.h +++ b/Modules/clinic/posixmodule.c.h @@ -3910,8 +3910,8 @@ os_execve(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *k PyDoc_STRVAR(os_posix_spawn__doc__, "posix_spawn($module, path, argv, env, /, *, file_actions=(),\n" -" setpgroup=, resetids=False, setsid=False,\n" -" setsigmask=(), setsigdef=(), scheduler=)\n" +" setpgroup=None, resetids=False, setsid=False,\n" +" setsigmask=(), setsigdef=(), scheduler=None)\n" "--\n" "\n" "Execute the program specified by path in a new process.\n" @@ -4063,8 +4063,8 @@ os_posix_spawn(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObje PyDoc_STRVAR(os_posix_spawnp__doc__, "posix_spawnp($module, path, argv, env, /, *, file_actions=(),\n" -" setpgroup=, resetids=False, setsid=False,\n" -" setsigmask=(), setsigdef=(), scheduler=)\n" +" setpgroup=None, resetids=False, setsid=False,\n" +" setsigmask=(), setsigdef=(), scheduler=None)\n" "--\n" "\n" "Execute the program specified by path in a new process.\n" @@ -13611,4 +13611,4 @@ os__emscripten_log(PyObject *module, PyObject *const *args, Py_ssize_t nargs, Py #ifndef OS__EMSCRIPTEN_LOG_METHODDEF #define OS__EMSCRIPTEN_LOG_METHODDEF #endif /* !defined(OS__EMSCRIPTEN_LOG_METHODDEF) */ -/*[clinic end generated code: output=89c21e2151ac7316 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=e709b8b783fbc261 input=a9049054013a1b77]*/ diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 072027fa0f6174..8d38e034aa6b5e 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -7611,6 +7611,7 @@ parse_posix_spawn_flags(PyObject *module, const char *func_name, PyObject *setpg PyObject *setsigdef, PyObject *scheduler, posix_spawnattr_t *attrp) { + assert(scheduler == NULL || scheduler == Py_None || PyTuple_Check(scheduler)); long all_flags = 0; errno = posix_spawnattr_init(attrp); @@ -7619,7 +7620,7 @@ parse_posix_spawn_flags(PyObject *module, const char *func_name, PyObject *setpg return -1; } - if (setpgroup) { + if (setpgroup && setpgroup != Py_None) { pid_t pgid = PyLong_AsPid(setpgroup); if (pgid == (pid_t)-1 && PyErr_Occurred()) { goto fail; @@ -7692,7 +7693,7 @@ parse_posix_spawn_flags(PyObject *module, const char *func_name, PyObject *setpg } #endif - if (scheduler) { + if (scheduler && scheduler != Py_None) { #ifdef POSIX_SPAWN_SETSCHEDULER PyObject *py_schedpolicy; PyObject *schedparam_obj; @@ -7917,6 +7918,12 @@ py_posix_spawn(int use_posix_spawnp, PyObject *module, path_t *path, PyObject *a goto exit; } + if (scheduler && !PyTuple_Check(scheduler) && scheduler != Py_None) { + PyErr_Format(PyExc_TypeError, + "%s: scheduler must be a tuple or None", func_name); + goto exit; + } + argvlist = parse_arglist(argv, &argc); if (argvlist == NULL) { goto exit; @@ -8028,7 +8035,7 @@ os.posix_spawn * file_actions: object(c_default='NULL') = () A sequence of file action tuples. - setpgroup: object = NULL + setpgroup: object(c_default='NULL') = None The pgroup to use with the POSIX_SPAWN_SETPGROUP flag. resetids: bool = False If the value is `true` the POSIX_SPAWN_RESETIDS will be activated. @@ -8038,7 +8045,7 @@ os.posix_spawn The sigmask to use with the POSIX_SPAWN_SETSIGMASK flag. setsigdef: object(c_default='NULL') = () The sigmask to use with the POSIX_SPAWN_SETSIGDEF flag. - scheduler: object = NULL + scheduler: object(c_default='NULL') = None A tuple with the scheduler policy (optional) and parameters. Execute the program specified by path in a new process. @@ -8050,7 +8057,7 @@ os_posix_spawn_impl(PyObject *module, path_t *path, PyObject *argv, PyObject *setpgroup, int resetids, int setsid, PyObject *setsigmask, PyObject *setsigdef, PyObject *scheduler) -/*[clinic end generated code: output=14a1098c566bc675 input=808aed1090d84e33]*/ +/*[clinic end generated code: output=14a1098c566bc675 input=69e7c9ebbdcf94a5]*/ { return py_posix_spawn(0, module, path, argv, env, file_actions, setpgroup, resetids, setsid, setsigmask, setsigdef, @@ -8074,7 +8081,7 @@ os.posix_spawnp * file_actions: object(c_default='NULL') = () A sequence of file action tuples. - setpgroup: object = NULL + setpgroup: object(c_default='NULL') = None The pgroup to use with the POSIX_SPAWN_SETPGROUP flag. resetids: bool = False If the value is `True` the POSIX_SPAWN_RESETIDS will be activated. @@ -8084,7 +8091,7 @@ os.posix_spawnp The sigmask to use with the POSIX_SPAWN_SETSIGMASK flag. setsigdef: object(c_default='NULL') = () The sigmask to use with the POSIX_SPAWN_SETSIGDEF flag. - scheduler: object = NULL + scheduler: object(c_default='NULL') = None A tuple with the scheduler policy (optional) and parameters. Execute the program specified by path in a new process. @@ -8096,7 +8103,7 @@ os_posix_spawnp_impl(PyObject *module, path_t *path, PyObject *argv, PyObject *setpgroup, int resetids, int setsid, PyObject *setsigmask, PyObject *setsigdef, PyObject *scheduler) -/*[clinic end generated code: output=7b9aaefe3031238d input=9e89e616116752a1]*/ +/*[clinic end generated code: output=7b9aaefe3031238d input=a5c057527c6881a5]*/ { return py_posix_spawn(1, module, path, argv, env, file_actions, setpgroup, resetids, setsid, setsigmask, setsigdef, From 7b0bd9eb91ce0d4546c6d6f537eea558d1bf5fc8 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 12:22:47 +0100 Subject: [PATCH 093/110] gh-141510, PEP 814: Add frozendict support to json (#144903) --- Lib/json/encoder.py | 8 ++++---- Lib/test/test_json/test_dump.py | 12 ++++++++++++ .../2026-02-17-11-15-17.gh-issue-141510.ZmqEUb.rst | 2 ++ Modules/_json.c | 4 ++-- 4 files changed, 20 insertions(+), 6 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-17-11-15-17.gh-issue-141510.ZmqEUb.rst diff --git a/Lib/json/encoder.py b/Lib/json/encoder.py index 4c70e8b75ed132..718b3254241c56 100644 --- a/Lib/json/encoder.py +++ b/Lib/json/encoder.py @@ -79,7 +79,7 @@ class JSONEncoder(object): +-------------------+---------------+ | Python | JSON | +===================+===============+ - | dict | object | + | dict, frozendict | object | +-------------------+---------------+ | list, tuple | array | +-------------------+---------------+ @@ -308,7 +308,7 @@ def _iterencode_list(lst, _current_indent_level): yield buf if isinstance(value, (list, tuple)): chunks = _iterencode_list(value, _current_indent_level) - elif isinstance(value, dict): + elif isinstance(value, (dict, frozendict)): chunks = _iterencode_dict(value, _current_indent_level) else: chunks = _iterencode(value, _current_indent_level) @@ -395,7 +395,7 @@ def _iterencode_dict(dct, _current_indent_level): else: if isinstance(value, (list, tuple)): chunks = _iterencode_list(value, _current_indent_level) - elif isinstance(value, dict): + elif isinstance(value, (dict, frozendict)): chunks = _iterencode_dict(value, _current_indent_level) else: chunks = _iterencode(value, _current_indent_level) @@ -429,7 +429,7 @@ def _iterencode(o, _current_indent_level): yield _floatstr(o) elif isinstance(o, (list, tuple)): yield from _iterencode_list(o, _current_indent_level) - elif isinstance(o, dict): + elif isinstance(o, (dict, frozendict)): yield from _iterencode_dict(o, _current_indent_level) else: if markers is not None: diff --git a/Lib/test/test_json/test_dump.py b/Lib/test/test_json/test_dump.py index 39470754003bb6..9880698455ca5e 100644 --- a/Lib/test/test_json/test_dump.py +++ b/Lib/test/test_json/test_dump.py @@ -12,6 +12,18 @@ def test_dump(self): def test_dumps(self): self.assertEqual(self.dumps({}), '{}') + def test_dumps_dict(self): + self.assertEqual(self.dumps({'x': 1, 'y': 2}), + '{"x": 1, "y": 2}') + self.assertEqual(self.dumps(frozendict({'x': 1, 'y': 2})), + '{"x": 1, "y": 2}') + lst = [{'x': 1}, frozendict(y=2)] + self.assertEqual(self.dumps(lst), + '[{"x": 1}, {"y": 2}]') + data = {'x': dict(a=1), 'y': frozendict(b=2)} + self.assertEqual(self.dumps(data), + '{"x": {"a": 1}, "y": {"b": 2}}') + def test_dump_skipkeys(self): v = {b'invalid_key': False, 'valid_key': True} with self.assertRaises(TypeError): diff --git a/Misc/NEWS.d/next/Library/2026-02-17-11-15-17.gh-issue-141510.ZmqEUb.rst b/Misc/NEWS.d/next/Library/2026-02-17-11-15-17.gh-issue-141510.ZmqEUb.rst new file mode 100644 index 00000000000000..59a8b4165cdd15 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-17-11-15-17.gh-issue-141510.ZmqEUb.rst @@ -0,0 +1,2 @@ +The :mod:`json` module now supports the :class:`frozendict` type. Patch by +Victor Stinner. diff --git a/Modules/_json.c b/Modules/_json.c index c7e62c4fe55c64..cbede8f44dc065 100644 --- a/Modules/_json.c +++ b/Modules/_json.c @@ -1599,7 +1599,7 @@ encoder_listencode_obj(PyEncoderObject *s, PyUnicodeWriter *writer, _Py_LeaveRecursiveCall(); return rv; } - else if (PyDict_Check(obj)) { + else if (PyAnyDict_Check(obj)) { if (_Py_EnterRecursiveCall(" while encoding a JSON object")) return -1; rv = encoder_listencode_dict(s, writer, obj, indent_level, indent_cache); @@ -1838,7 +1838,7 @@ encoder_listencode_dict(PyEncoderObject *s, PyUnicodeWriter *writer, goto bail; } - if (s->sort_keys || !PyDict_CheckExact(dct)) { + if (s->sort_keys || !PyAnyDict_CheckExact(dct)) { PyObject *items = PyMapping_Items(dct); if (items == NULL || (s->sort_keys && PyList_Sort(items) < 0)) { Py_XDECREF(items); From 3a2a686cc45de2fb685ff332b7b914f27f660680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9n=C3=A9dikt=20Tran?= <10796600+picnixz@users.noreply.github.com> Date: Sat, 21 Feb 2026 12:31:16 +0100 Subject: [PATCH 094/110] gh-142516: fix reference leaks in `ssl.SSLContext` objects (#143685) --- Lib/test/test_ssl.py | 106 +++++++++++++++--- ...-01-11-13-03-32.gh-issue-142516.u7An-s.rst | 2 + Modules/_ssl.c | 25 ++++- 3 files changed, 111 insertions(+), 22 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-01-11-13-03-32.gh-issue-142516.u7An-s.rst diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 7e9ba735b3ce66..dc795c6bd8a41f 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -57,6 +57,16 @@ CAN_GET_SELECTED_OPENSSL_SIGALG = ssl.OPENSSL_VERSION_INFO >= (3, 5) PY_SSL_DEFAULT_CIPHERS = sysconfig.get_config_var('PY_SSL_DEFAULT_CIPHERS') +HAS_KEYLOG = hasattr(ssl.SSLContext, 'keylog_filename') +requires_keylog = unittest.skipUnless( + HAS_KEYLOG, 'test requires OpenSSL 1.1.1 with keylog callback') +CAN_SET_KEYLOG = HAS_KEYLOG and os.name != "nt" +requires_keylog_setter = unittest.skipUnless( + CAN_SET_KEYLOG, + "cannot set 'keylog_filename' on Windows" +) + + PROTOCOL_TO_TLS_VERSION = {} for proto, ver in ( ("PROTOCOL_SSLv3", "SSLv3"), @@ -266,34 +276,69 @@ def utc_offset(): #NOTE: ignore issues like #1647654 ) -def test_wrap_socket(sock, *, - cert_reqs=ssl.CERT_NONE, ca_certs=None, - ciphers=None, ciphersuites=None, - min_version=None, max_version=None, - certfile=None, keyfile=None, - **kwargs): - if not kwargs.get("server_side"): - kwargs["server_hostname"] = SIGNED_CERTFILE_HOSTNAME - context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) - else: +def make_test_context( + *, + server_side=False, + check_hostname=None, + cert_reqs=ssl.CERT_NONE, + ca_certs=None, certfile=None, keyfile=None, + ciphers=None, ciphersuites=None, + min_version=None, max_version=None, +): + if server_side: context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER) - if cert_reqs is not None: + else: + context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + + if check_hostname is None: if cert_reqs == ssl.CERT_NONE: context.check_hostname = False + else: + context.check_hostname = check_hostname + + if cert_reqs is not None: context.verify_mode = cert_reqs + if ca_certs is not None: context.load_verify_locations(ca_certs) if certfile is not None or keyfile is not None: context.load_cert_chain(certfile, keyfile) + if ciphers is not None: context.set_ciphers(ciphers) if ciphersuites is not None: context.set_ciphersuites(ciphersuites) + if min_version is not None: context.minimum_version = min_version if max_version is not None: context.maximum_version = max_version - return context.wrap_socket(sock, **kwargs) + + return context + + +def test_wrap_socket( + sock, + *, + server_side=False, + check_hostname=None, + cert_reqs=ssl.CERT_NONE, + ca_certs=None, certfile=None, keyfile=None, + ciphers=None, ciphersuites=None, + min_version=None, max_version=None, + **kwargs, +): + context = make_test_context( + server_side=server_side, + check_hostname=check_hostname, + cert_reqs=cert_reqs, + ca_certs=ca_certs, certfile=certfile, keyfile=keyfile, + ciphers=ciphers, ciphersuites=ciphersuites, + min_version=min_version, max_version=max_version, + ) + if not server_side: + kwargs.setdefault("server_hostname", SIGNED_CERTFILE_HOSTNAME) + return context.wrap_socket(sock, server_side=server_side, **kwargs) USE_SAME_TEST_CONTEXT = False @@ -1741,6 +1786,39 @@ def test_num_tickest(self): with self.assertRaises(ValueError): ctx.num_tickets = 1 + @support.cpython_only + def test_refcycle_msg_callback(self): + # See https://github.com/python/cpython/issues/142516. + ctx = make_test_context() + def msg_callback(*args, _=ctx, **kwargs): ... + ctx._msg_callback = msg_callback + + @support.cpython_only + @requires_keylog_setter + def test_refcycle_keylog_filename(self): + # See https://github.com/python/cpython/issues/142516. + self.addCleanup(os_helper.unlink, os_helper.TESTFN) + ctx = make_test_context() + class KeylogFilename(str): ... + ctx.keylog_filename = KeylogFilename(os_helper.TESTFN) + ctx.keylog_filename._ = ctx + + @support.cpython_only + @unittest.skipUnless(ssl.HAS_PSK, 'requires TLS-PSK') + def test_refcycle_psk_client_callback(self): + # See https://github.com/python/cpython/issues/142516. + ctx = make_test_context() + def psk_client_callback(*args, _=ctx, **kwargs): ... + ctx.set_psk_client_callback(psk_client_callback) + + @support.cpython_only + @unittest.skipUnless(ssl.HAS_PSK, 'requires TLS-PSK') + def test_refcycle_psk_server_callback(self): + # See https://github.com/python/cpython/issues/142516. + ctx = make_test_context(server_side=True) + def psk_server_callback(*args, _=ctx, **kwargs): ... + ctx.set_psk_server_callback(psk_server_callback) + class SSLErrorTests(unittest.TestCase): @@ -5174,10 +5252,6 @@ def test_internal_chain_server(self): self.assertEqual(res, b'\x02\n') -HAS_KEYLOG = hasattr(ssl.SSLContext, 'keylog_filename') -requires_keylog = unittest.skipUnless( - HAS_KEYLOG, 'test requires OpenSSL 1.1.1 with keylog callback') - class TestSSLDebug(unittest.TestCase): def keylog_lines(self, fname=os_helper.TESTFN): diff --git a/Misc/NEWS.d/next/Library/2026-01-11-13-03-32.gh-issue-142516.u7An-s.rst b/Misc/NEWS.d/next/Library/2026-01-11-13-03-32.gh-issue-142516.u7An-s.rst new file mode 100644 index 00000000000000..efa7c8a1f62692 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-01-11-13-03-32.gh-issue-142516.u7An-s.rst @@ -0,0 +1,2 @@ +:mod:`ssl`: fix reference leaks in :class:`ssl.SSLContext` objects. Patch by +Bénédikt Tran. diff --git a/Modules/_ssl.c b/Modules/_ssl.c index b0c0d8deeecd23..2eb31229a9bf3c 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -331,7 +331,7 @@ typedef struct { int post_handshake_auth; #endif PyObject *msg_cb; - PyObject *keylog_filename; + PyObject *keylog_filename; // can be anything accepted by Py_fopen() BIO *keylog_bio; /* Cached module state, also used in SSLSocket and SSLSession code. */ _sslmodulestate *state; @@ -361,7 +361,7 @@ typedef struct { PySSLContext *ctx; /* weakref to SSL context */ char shutdown_seen_zero; enum py_ssl_server_or_client socket_type; - PyObject *owner; /* Python level "owner" passed to servername callback */ + PyObject *owner; /* weakref to Python level "owner" passed to servername callback */ PyObject *server_hostname; } PySSLSocket; @@ -2436,6 +2436,17 @@ PySSL_traverse(PyObject *op, visitproc visit, void *arg) return 0; } +static int +PySSL_clear(PyObject *op) +{ + PySSLSocket *self = PySSLSocket_CAST(op); + Py_CLEAR(self->Socket); + Py_CLEAR(self->ctx); + Py_CLEAR(self->owner); + Py_CLEAR(self->server_hostname); + return 0; +} + static void PySSL_dealloc(PyObject *op) { @@ -2456,10 +2467,7 @@ PySSL_dealloc(PyObject *op) SSL_set_shutdown(self->ssl, SSL_SENT_SHUTDOWN | SSL_get_shutdown(self->ssl)); SSL_free(self->ssl); } - Py_XDECREF(self->Socket); - Py_XDECREF(self->ctx); - Py_XDECREF(self->server_hostname); - Py_XDECREF(self->owner); + (void)PySSL_clear(op); PyObject_GC_Del(self); Py_DECREF(tp); } @@ -3568,6 +3576,11 @@ context_traverse(PyObject *op, visitproc visit, void *arg) PySSLContext *self = PySSLContext_CAST(op); Py_VISIT(self->set_sni_cb); Py_VISIT(self->msg_cb); + Py_VISIT(self->keylog_filename); +#ifndef OPENSSL_NO_PSK + Py_VISIT(self->psk_client_callback); + Py_VISIT(self->psk_server_callback); +#endif Py_VISIT(Py_TYPE(self)); return 0; } From 34f4fa8425afed341e44921033b130ba7d099337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9n=C3=A9dikt=20Tran?= <10796600+picnixz@users.noreply.github.com> Date: Sat, 21 Feb 2026 12:42:13 +0100 Subject: [PATCH 095/110] gh-141226: Deprecate PEP-456 support for embedders (#141287) Deprecate PEP-456 [1] support for providing an external definition of the string hashing scheme. Removal is scheduled for Python 3.19. Previously, embedders could define the ``Py_HASH_ALGORITHM`` macro to be ``Py_HASH_EXTERNAL`` [2] to indicate that the hashing scheme was provided externally but this feature was undocumented, untested and most likely unused. [1]: https://peps.python.org/pep-0456/ [2]: https://peps.python.org/pep-0456/#hash-function-selection --- Doc/deprecations/c-api-pending-removal-in-3.19.rst | 4 ++++ Doc/deprecations/index.rst | 4 ++++ Doc/whatsnew/3.15.rst | 10 ++++++++++ .../2025-11-09-15-44-58.gh-issue-141226.KTb_3F.rst | 3 +++ Python/pyhash.c | 2 +- 5 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 Doc/deprecations/c-api-pending-removal-in-3.19.rst create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2025-11-09-15-44-58.gh-issue-141226.KTb_3F.rst diff --git a/Doc/deprecations/c-api-pending-removal-in-3.19.rst b/Doc/deprecations/c-api-pending-removal-in-3.19.rst new file mode 100644 index 00000000000000..ac9dcb8b424a17 --- /dev/null +++ b/Doc/deprecations/c-api-pending-removal-in-3.19.rst @@ -0,0 +1,4 @@ +Pending removal in Python 3.19 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +* :pep:`456` embedders support for the string hashing scheme definition. diff --git a/Doc/deprecations/index.rst b/Doc/deprecations/index.rst index c91c64a1092457..bb8bfb5c227c2d 100644 --- a/Doc/deprecations/index.rst +++ b/Doc/deprecations/index.rst @@ -20,8 +20,12 @@ C API deprecations .. include:: c-api-pending-removal-in-3.15.rst +.. include:: c-api-pending-removal-in-3.16.rst + .. include:: c-api-pending-removal-in-3.18.rst +.. include:: c-api-pending-removal-in-3.19.rst + .. include:: c-api-pending-removal-in-3.20.rst .. include:: c-api-pending-removal-in-future.rst diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index feccc496fad0e0..4aac6c453f533d 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -1723,6 +1723,16 @@ on Python 3.13 and older. Deprecated C APIs ----------------- +* Deprecate :pep:`456` support for providing an external definition + of the string hashing scheme. Removal is scheduled for Python 3.19. + + Previously, embedders could define :c:macro:`Py_HASH_ALGORITHM` to be + ``Py_HASH_EXTERNAL`` to indicate that the hashing scheme was provided + externally but this feature was undocumented, untested and most likely + unused. + + (Contributed by Bénédikt Tran in :gh:`141226`.) + * For unsigned integer formats in :c:func:`PyArg_ParseTuple`, accepting Python integers with value that is larger than the maximal value for the C type or less than the minimal value for the corresponding diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2025-11-09-15-44-58.gh-issue-141226.KTb_3F.rst b/Misc/NEWS.d/next/Core_and_Builtins/2025-11-09-15-44-58.gh-issue-141226.KTb_3F.rst new file mode 100644 index 00000000000000..3f7ce7326187d4 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2025-11-09-15-44-58.gh-issue-141226.KTb_3F.rst @@ -0,0 +1,3 @@ +Deprecate :pep:`456` support for providing an external definition +of the string hashing scheme. Removal is scheduled for Python 3.19. +Patch by Bénédikt Tran. diff --git a/Python/pyhash.c b/Python/pyhash.c index 157312a936bbcc..1eb890794a7544 100644 --- a/Python/pyhash.c +++ b/Python/pyhash.c @@ -17,7 +17,7 @@ _Py_HashSecret_t _Py_HashSecret = {{0}}; #if Py_HASH_ALGORITHM == Py_HASH_EXTERNAL -extern PyHash_FuncDef PyHash_Func; +Py_DEPRECATED(3.15) extern PyHash_FuncDef PyHash_Func; #else static PyHash_FuncDef PyHash_Func; #endif From 2133e16bfe6d0a93c26873e82fd52a27bbf75774 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 13:05:35 +0100 Subject: [PATCH 096/110] gh-141510: Fix test_xpickle for Python 3.14 and older (#145069) Skip tests on frozendict on Python 3.14 and older. --- Lib/test/pickletester.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 0624b6a0257829..6ac4b19da3ea9c 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -2925,9 +2925,13 @@ def _test_recursive_collection_in_key(self, factory, minprotocol=0): self.assertIs(keys[0].attr, x) def test_recursive_frozendict_in_key(self): + if self.py_version < (3, 15): + self.skipTest('need frozendict') self._test_recursive_collection_in_key(frozendict, minprotocol=2) def test_recursive_frozendict_subclass_in_key(self): + if self.py_version < (3, 15): + self.skipTest('need frozendict') self._test_recursive_collection_in_key(MyFrozenDict) def _test_recursive_collection_in_value(self, factory, minprotocol=0): @@ -2942,9 +2946,13 @@ def _test_recursive_collection_in_value(self, factory, minprotocol=0): self.assertIs(x['key'][0], x) def test_recursive_frozendict_in_value(self): + if self.py_version < (3, 15): + self.skipTest('need frozendict') self._test_recursive_collection_in_value(frozendict, minprotocol=2) def test_recursive_frozendict_subclass_in_value(self): + if self.py_version < (3, 15): + self.skipTest('need frozendict') self._test_recursive_collection_in_value(MyFrozenDict) def test_recursive_inst_state(self): @@ -3437,6 +3445,8 @@ def test_newobj_generic(self): self.skipTest('int and str subclasses are not interoperable with Python 2') if (3, 0) <= self.py_version < (3, 4) and proto < 2 and C in (MyStr, MyUnicode): self.skipTest('str subclasses are not interoperable with Python < 3.4') + if self.py_version < (3, 15) and C == MyFrozenDict: + self.skipTest('frozendict is not available on Python < 3.15') B = C.__base__ x = C(C.sample) x.foo = 42 @@ -3458,6 +3468,8 @@ def test_newobj_proxies(self): with self.subTest(proto=proto, C=C): if self.py_version < (3, 4) and proto < 3 and C in (MyStr, MyUnicode): self.skipTest('str subclasses are not interoperable with Python < 3.4') + if self.py_version < (3, 15) and C == MyFrozenDict: + self.skipTest('frozendict is not available on Python < 3.15') B = C.__base__ x = C(C.sample) x.foo = 42 From 0499a0c17f59178dee4513323268c00f60939cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20S=C5=82awecki?= Date: Sat, 21 Feb 2026 13:50:55 +0100 Subject: [PATCH 097/110] gh-144285: Update *What's New* entry after GH-144299 (#145077) --- Doc/whatsnew/3.15.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index 4aac6c453f533d..fa3ba25a954e40 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -403,7 +403,7 @@ Improved error messages File "/home/pablogsal/github/python/main/lel.py", line 42, in print(container.area) ^^^^^^^^^^^^^^ - AttributeError: 'Container' object has no attribute 'area'. Did you mean: 'inner.area'? + AttributeError: 'Container' object has no attribute 'area'. Did you mean '.inner.area' instead of '.area'? Other language changes From e1bd0cd37b1816092761e5ad5f2d0464c0e78fbb Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Sat, 21 Feb 2026 12:52:40 +0000 Subject: [PATCH 098/110] gh-145058: Add input validation to `_PyImport_LazyImportModuleLevelObject` (#145068) --- Lib/test/test_import/test_lazy_imports.py | 9 +++++++++ .../2026-02-21-09-47-45.gh-issue-145058.e-RBw-.rst | 2 ++ Python/import.c | 11 +++++++++++ 3 files changed, 22 insertions(+) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2026-02-21-09-47-45.gh-issue-145058.e-RBw-.rst diff --git a/Lib/test/test_import/test_lazy_imports.py b/Lib/test/test_import/test_lazy_imports.py index a4c9c14ae2b5f8..dc185c070acc62 100644 --- a/Lib/test/test_import/test_lazy_imports.py +++ b/Lib/test/test_import/test_lazy_imports.py @@ -393,6 +393,15 @@ def test_dunder_lazy_import_used(self): import test.test_import.data.lazy_imports.dunder_lazy_import_used self.assertIn("test.test_import.data.lazy_imports.basic2", sys.modules) + def test_dunder_lazy_import_invalid_arguments(self): + """__lazy_import__ should reject invalid arguments.""" + for invalid_name in (b"", 123, None): + with self.assertRaises(TypeError): + __lazy_import__(invalid_name) + + with self.assertRaises(ValueError): + __lazy_import__("sys", level=-1) + def test_dunder_lazy_import_builtins(self): """__lazy_import__ should use module's __builtins__ for __import__.""" from test.test_import.data.lazy_imports import dunder_lazy_import_builtins diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-02-21-09-47-45.gh-issue-145058.e-RBw-.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-21-09-47-45.gh-issue-145058.e-RBw-.rst new file mode 100644 index 00000000000000..05eb296f96ec6d --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-02-21-09-47-45.gh-issue-145058.e-RBw-.rst @@ -0,0 +1,2 @@ +Fix a crash when :func:`!__lazy_import__` is passed a non-string argument, +by raising an :exc:`TypeError` instead. diff --git a/Python/import.c b/Python/import.c index c20c55727d2f94..4c234a4a70437c 100644 --- a/Python/import.c +++ b/Python/import.c @@ -4468,6 +4468,17 @@ _PyImport_LazyImportModuleLevelObject(PyThreadState *tstate, PyObject *globals, PyObject *locals, PyObject *fromlist, int level) { + assert(name != NULL); + if (!PyUnicode_Check(name)) { + _PyErr_Format(tstate, PyExc_TypeError, + "module name must be a string, got %T", name); + return NULL; + } + if (level < 0) { + _PyErr_SetString(tstate, PyExc_ValueError, "level must be >= 0"); + return NULL; + } + PyObject *abs_name = get_abs_name(tstate, name, globals, level); if (abs_name == NULL) { return NULL; From 7258dbc51803e27c1fec7b2a402e297187de3b95 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 21 Feb 2026 08:14:53 -0600 Subject: [PATCH 099/110] Use `lazy` imports in `collections` (gh-145054) --- Lib/collections/__init__.py | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 55ffc36ea5b0c7..2eee4c70955513 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -32,6 +32,8 @@ _sys.modules['collections.abc'] = _collections_abc abc = _collections_abc +lazy from copy import copy as _copy +lazy from heapq import nlargest as _nlargest from itertools import chain as _chain from itertools import repeat as _repeat from itertools import starmap as _starmap @@ -59,8 +61,6 @@ except ImportError: pass -heapq = None # Lazily imported - ################################################################################ ### OrderedDict @@ -634,12 +634,7 @@ def most_common(self, n=None): if n is None: return sorted(self.items(), key=_itemgetter(1), reverse=True) - # Lazy import to speedup Python startup time - global heapq - if heapq is None: - import heapq - - return heapq.nlargest(n, self.items(), key=_itemgetter(1)) + return _nlargest(n, self.items(), key=_itemgetter(1)) def elements(self): '''Iterator over elements repeating each as many times as its count. @@ -1249,11 +1244,10 @@ def __copy__(self): def copy(self): if self.__class__ is UserDict: return UserDict(self.data.copy()) - import copy data = self.data try: self.data = {} - c = copy.copy(self) + c = _copy(self) finally: self.data = data c.update(self) From 646bd86e3b2f4f484129bd4a926cf73fafc9f874 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 16:30:40 +0100 Subject: [PATCH 100/110] gh-141510: Fix copy.deepcopy() for recursive frozendict (#145027) --- Lib/copy.py | 12 +++++++++++- Lib/test/test_copy.py | 17 +++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/Lib/copy.py b/Lib/copy.py index 33dabb3395a7c0..6149301ad1389e 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -204,7 +204,17 @@ def _deepcopy_dict(x, memo, deepcopy=deepcopy): d[dict] = _deepcopy_dict def _deepcopy_frozendict(x, memo, deepcopy=deepcopy): - y = _deepcopy_dict(x, memo, deepcopy) + y = {} + for key, value in x.items(): + y[deepcopy(key, memo)] = deepcopy(value, memo) + + # We're not going to put the frozendict in the memo, but it's still + # important we check for it, in case the frozendict contains recursive + # mutable structures. + try: + return memo[id(x)] + except KeyError: + pass return frozendict(y) d[frozendict] = _deepcopy_frozendict diff --git a/Lib/test/test_copy.py b/Lib/test/test_copy.py index 858e5e089d5aba..98f56b5ae87f96 100644 --- a/Lib/test/test_copy.py +++ b/Lib/test/test_copy.py @@ -432,6 +432,23 @@ def test_deepcopy_frozendict(self): self.assertIsNot(x, y) self.assertIsNot(x["foo"], y["foo"]) + # recursive frozendict + x = frozendict(foo=[]) + x['foo'].append(x) + y = copy.deepcopy(x) + self.assertEqual(y.keys(), x.keys()) + self.assertIsNot(x, y) + self.assertIsNot(x["foo"], y["foo"]) + self.assertIs(y['foo'][0], y) + + x = frozendict(foo=[]) + x['foo'].append(x) + x = x['foo'] + y = copy.deepcopy(x) + self.assertIsNot(x, y) + self.assertIsNot(x[0], y[0]) + self.assertIs(y[0]['foo'], y) + @support.skip_emscripten_stack_overflow() @support.skip_wasi_stack_overflow() def test_deepcopy_reflexive_dict(self): From 9e083b57eeb0282f8c5f7bbeec3750b51cf80dcc Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 17:00:23 +0100 Subject: [PATCH 101/110] gh-141510: Test frozendict C API (#145081) Add tests on functions: * PyAnyDict_Check() * PyAnyDict_CheckExact() * PyFrozenDict_Check() * PyFrozenDict_CheckExact() * PyFrozenDict_New() --- Lib/test/test_capi/test_dict.py | 68 +++++++++++++++++++++++++++++++++ Modules/_testcapi/dict.c | 42 ++++++++++++++++++++ 2 files changed, 110 insertions(+) diff --git a/Lib/test/test_capi/test_dict.py b/Lib/test/test_capi/test_dict.py index e726e3d813d888..bdd7aa9819fc48 100644 --- a/Lib/test/test_capi/test_dict.py +++ b/Lib/test/test_capi/test_dict.py @@ -26,6 +26,19 @@ def gen(): yield 'c' +class FrozenDictSubclass(frozendict): + pass + + +DICT_TYPES = (dict, DictSubclass, OrderedDict) +FROZENDICT_TYPES = (frozendict, FrozenDictSubclass) +ANYDICT_TYPES = DICT_TYPES + FROZENDICT_TYPES +MAPPING_TYPES = (UserDict,) +NOT_FROZENDICT_TYPES = DICT_TYPES + MAPPING_TYPES +NOT_ANYDICT_TYPES = MAPPING_TYPES +OTHER_TYPES = (lambda: [1], lambda: 42, object) # (list, int, object) + + class CAPITest(unittest.TestCase): def test_dict_check(self): @@ -545,6 +558,61 @@ def test_dict_popstring(self): # CRASHES dict_popstring({}, NULL) # CRASHES dict_popstring({"a": 1}, NULL) + def test_frozendict_check(self): + # Test PyFrozenDict_Check() + check = _testcapi.frozendict_check + for dict_type in FROZENDICT_TYPES: + self.assertTrue(check(dict_type(x=1))) + for dict_type in NOT_FROZENDICT_TYPES + OTHER_TYPES: + self.assertFalse(check(dict_type())) + # CRASHES check(NULL) + + def test_frozendict_checkexact(self): + # Test PyFrozenDict_CheckExact() + check = _testcapi.frozendict_checkexact + for dict_type in FROZENDICT_TYPES: + self.assertEqual(check(dict_type(x=1)), dict_type == frozendict) + for dict_type in NOT_FROZENDICT_TYPES + OTHER_TYPES: + self.assertFalse(check(dict_type())) + # CRASHES check(NULL) + + def test_anydict_check(self): + # Test PyAnyDict_Check() + check = _testcapi.anydict_check + for dict_type in ANYDICT_TYPES: + self.assertTrue(check(dict_type({1: 2}))) + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertFalse(check(test_type())) + # CRASHES check(NULL) + + def test_anydict_checkexact(self): + # Test PyAnyDict_CheckExact() + check = _testcapi.anydict_checkexact + for dict_type in ANYDICT_TYPES: + self.assertEqual(check(dict_type(x=1)), + dict_type in (dict, frozendict)) + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertFalse(check(test_type())) + # CRASHES check(NULL) + + def test_frozendict_new(self): + # Test PyFrozenDict_New() + frozendict_new = _testcapi.frozendict_new + + for dict_type in ANYDICT_TYPES: + dct = frozendict_new(dict_type({'x': 1})) + self.assertEqual(dct, frozendict(x=1)) + self.assertIs(type(dct), frozendict) + + dct = frozendict_new([('x', 1), ('y', 2)]) + self.assertEqual(dct, frozendict(x=1, y=2)) + self.assertIs(type(dct), frozendict) + + # PyFrozenDict_New(NULL) creates an empty dictionary + dct = frozendict_new(NULL) + self.assertEqual(dct, frozendict()) + self.assertIs(type(dct), frozendict) + if __name__ == "__main__": unittest.main() diff --git a/Modules/_testcapi/dict.c b/Modules/_testcapi/dict.c index b7c73d7332bd4e..172591b03182ab 100644 --- a/Modules/_testcapi/dict.c +++ b/Modules/_testcapi/dict.c @@ -258,6 +258,43 @@ test_dict_iteration(PyObject* self, PyObject *Py_UNUSED(ignored)) } +static PyObject * +frozendict_check(PyObject *self, PyObject *obj) +{ + NULLABLE(obj); + return PyLong_FromLong(PyFrozenDict_Check(obj)); +} + +static PyObject * +frozendict_checkexact(PyObject *self, PyObject *obj) +{ + NULLABLE(obj); + return PyLong_FromLong(PyFrozenDict_CheckExact(obj)); +} + +static PyObject * +anydict_check(PyObject *self, PyObject *obj) +{ + NULLABLE(obj); + return PyLong_FromLong(PyAnyDict_Check(obj)); +} + +static PyObject * +anydict_checkexact(PyObject *self, PyObject *obj) +{ + NULLABLE(obj); + return PyLong_FromLong(PyAnyDict_CheckExact(obj)); +} + + +static PyObject * +frozendict_new(PyObject *self, PyObject *obj) +{ + NULLABLE(obj); + return PyFrozenDict_New(obj); +} + + static PyMethodDef test_methods[] = { {"dict_containsstring", dict_containsstring, METH_VARARGS}, {"dict_getitemref", dict_getitemref, METH_VARARGS}, @@ -269,6 +306,11 @@ static PyMethodDef test_methods[] = { {"dict_popstring", dict_popstring, METH_VARARGS}, {"dict_popstring_null", dict_popstring_null, METH_VARARGS}, {"test_dict_iteration", test_dict_iteration, METH_NOARGS}, + {"frozendict_check", frozendict_check, METH_O}, + {"frozendict_checkexact", frozendict_checkexact, METH_O}, + {"anydict_check", anydict_check, METH_O}, + {"anydict_checkexact", anydict_checkexact, METH_O}, + {"frozendict_new", frozendict_new, METH_O}, {NULL}, }; From 770d354549914e3538e7db07e537dab17ece2610 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 17:08:24 +0100 Subject: [PATCH 102/110] gh-141510: Support frozendict in pprint (#144908) Co-authored-by: devdanzin <74280297+devdanzin@users.noreply.github.com> --- Lib/pprint.py | 34 ++++++++++++++++++++++++++++++---- Lib/test/test_pprint.py | 40 ++++++++++++++++++++++++++++++++++++++-- 2 files changed, 68 insertions(+), 6 deletions(-) diff --git a/Lib/pprint.py b/Lib/pprint.py index 92a2c543ac279c..e111bd59d4152c 100644 --- a/Lib/pprint.py +++ b/Lib/pprint.py @@ -235,6 +235,20 @@ def _pprint_dict(self, object, stream, indent, allowance, context, level): _dispatch[dict.__repr__] = _pprint_dict + def _pprint_frozendict(self, object, stream, indent, allowance, context, level): + write = stream.write + cls = object.__class__ + stream.write(cls.__name__ + '(') + length = len(object) + if length: + self._pprint_dict(object, stream, + indent + len(cls.__name__) + 1, + allowance + 1, + context, level) + write(')') + + _dispatch[frozendict.__repr__] = _pprint_frozendict + def _pprint_ordered_dict(self, object, stream, indent, allowance, context, level): if not len(object): stream.write(repr(object)) @@ -623,12 +637,21 @@ def _safe_repr(self, object, context, maxlevels, level): else: return repr(object), True, False - if issubclass(typ, dict) and r is dict.__repr__: + if ((issubclass(typ, dict) and r is dict.__repr__) + or (issubclass(typ, frozendict) and r is frozendict.__repr__)): + is_frozendict = issubclass(typ, frozendict) if not object: - return "{}", True, False + if is_frozendict: + rep = f"{object.__class__.__name__}()" + else: + rep = "{}" + return rep, True, False objid = id(object) if maxlevels and level >= maxlevels: - return "{...}", False, objid in context + rep = "{...}" + if is_frozendict: + rep = f"{object.__class__.__name__}({rep})" + return rep, False, objid in context if objid in context: return _recursion(object), False, True context[objid] = 1 @@ -651,7 +674,10 @@ def _safe_repr(self, object, context, maxlevels, level): if krecur or vrecur: recursive = True del context[objid] - return "{%s}" % ", ".join(components), readable, recursive + rep = "{%s}" % ", ".join(components) + if is_frozendict: + rep = f"{object.__class__.__name__}({rep})" + return rep, readable, recursive if (issubclass(typ, list) and r is list.__repr__) or \ (issubclass(typ, tuple) and r is tuple.__repr__): diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py index 41c337ade7eca1..f3860a5d511989 100644 --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -67,6 +67,13 @@ class dict3(dict): def __repr__(self): return dict.__repr__(self) +class frozendict2(frozendict): + pass + +class frozendict3(frozendict): + def __repr__(self): + return frozendict.__repr__(self) + class dict_custom_repr(dict): def __repr__(self): return '*'*len(dict.__repr__(self)) @@ -254,18 +261,22 @@ def test_same_as_repr(self): set(), set2(), set3(), frozenset(), frozenset2(), frozenset3(), {}, dict2(), dict3(), + frozendict(), frozendict2(), frozendict3(), {}.keys(), {}.values(), {}.items(), MappingView({}), KeysView({}), ItemsView({}), ValuesView({}), self.assertTrue, pprint, -6, -6, -6-6j, -1.5, "x", b"x", bytearray(b"x"), (3,), [3], {3: 6}, - (1,2), [3,4], {5: 6}, + (1,2), [3,4], tuple2((1,2)), tuple3((1,2)), tuple3(range(100)), [3,4], list2([3,4]), list3([3,4]), list3(range(100)), set({7}), set2({7}), set3({7}), frozenset({8}), frozenset2({8}), frozenset3({8}), - dict2({5: 6}), dict3({5: 6}), + {5: 6}, dict2({5: 6}), dict3({5: 6}), + frozendict({5: 6}), frozendict2({5: 6}), frozendict3({5: 6}), {5: 6}.keys(), {5: 6}.values(), {5: 6}.items(), + frozendict({5: 6}).keys(), frozendict({5: 6}).values(), + frozendict({5: 6}).items(), MappingView({5: 6}), KeysView({5: 6}), ItemsView({5: 6}), ValuesView({5: 6}), range(10, -11, -1), @@ -330,20 +341,45 @@ def test_basic_line_wrap(self): for type in [dict, dict2]: self.assertEqual(pprint.pformat(type(o)), exp) + exp = """\ +frozendict({'RPM_cal': 0, + 'RPM_cal2': 48059, + 'Speed_cal': 0, + 'controldesk_runtime_us': 0, + 'main_code_runtime_us': 0, + 'read_io_runtime_us': 0, + 'write_io_runtime_us': 43690})""" + self.assertEqual(pprint.pformat(frozendict(o)), exp) + exp = """\ +frozendict2({'RPM_cal': 0, + 'RPM_cal2': 48059, + 'Speed_cal': 0, + 'controldesk_runtime_us': 0, + 'main_code_runtime_us': 0, + 'read_io_runtime_us': 0, + 'write_io_runtime_us': 43690})""" + self.assertEqual(pprint.pformat(frozendict2(o)), exp) + o = range(100) exp = 'dict_keys([%s])' % ',\n '.join(map(str, o)) keys = dict.fromkeys(o).keys() self.assertEqual(pprint.pformat(keys), exp) + keys = frozendict.fromkeys(o).keys() + self.assertEqual(pprint.pformat(keys), exp) o = range(100) exp = 'dict_values([%s])' % ',\n '.join(map(str, o)) values = {v: v for v in o}.values() self.assertEqual(pprint.pformat(values), exp) + values = frozendict({v: v for v in o}).values() + self.assertEqual(pprint.pformat(values), exp) o = range(100) exp = 'dict_items([%s])' % ',\n '.join("(%s, %s)" % (i, i) for i in o) items = {v: v for v in o}.items() self.assertEqual(pprint.pformat(items), exp) + items = frozendict({v: v for v in o}).items() + self.assertEqual(pprint.pformat(items), exp) o = range(100) exp = 'odict_keys([%s])' % ',\n '.join(map(str, o)) From 6940c1dc0c211670a4531bc13c10233e2fcf1335 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 17:21:43 +0100 Subject: [PATCH 103/110] gh-141510: Check argument in PyDict_MergeFromSeq2() (#145082) PyDict_MergeFromSeq2() now fails with SystemError if the first argument is not a dict or a dict subclass. PyDict_Update(), PyDict_Merge() and _PyDict_MergeEx() no longer accept frozendict. --- Lib/test/test_capi/test_dict.py | 9 +++-- Objects/dictobject.c | 64 +++++++++++++++++++++------------ 2 files changed, 49 insertions(+), 24 deletions(-) diff --git a/Lib/test/test_capi/test_dict.py b/Lib/test/test_capi/test_dict.py index bdd7aa9819fc48..d3cc279cd3f955 100644 --- a/Lib/test/test_capi/test_dict.py +++ b/Lib/test/test_capi/test_dict.py @@ -419,6 +419,7 @@ def test_dict_next(self): # CRASHES dict_next(NULL, 0) def test_dict_update(self): + # Test PyDict_Update() update = _testlimitedcapi.dict_update for cls1 in dict, DictSubclass: for cls2 in dict, DictSubclass, UserDict: @@ -429,11 +430,13 @@ def test_dict_update(self): self.assertRaises(AttributeError, update, {}, []) self.assertRaises(AttributeError, update, {}, 42) self.assertRaises(SystemError, update, UserDict(), {}) + self.assertRaises(SystemError, update, frozendict(), {}) self.assertRaises(SystemError, update, 42, {}) self.assertRaises(SystemError, update, {}, NULL) self.assertRaises(SystemError, update, NULL, {}) def test_dict_merge(self): + # Test PyDict_Merge() merge = _testlimitedcapi.dict_merge for cls1 in dict, DictSubclass: for cls2 in dict, DictSubclass, UserDict: @@ -447,11 +450,13 @@ def test_dict_merge(self): self.assertRaises(AttributeError, merge, {}, [], 0) self.assertRaises(AttributeError, merge, {}, 42, 0) self.assertRaises(SystemError, merge, UserDict(), {}, 0) + self.assertRaises(SystemError, merge, frozendict(), {}, 0) self.assertRaises(SystemError, merge, 42, {}, 0) self.assertRaises(SystemError, merge, {}, NULL, 0) self.assertRaises(SystemError, merge, NULL, {}, 0) def test_dict_mergefromseq2(self): + # Test PyDict_MergeFromSeq2() mergefromseq2 = _testlimitedcapi.dict_mergefromseq2 for cls1 in dict, DictSubclass: for cls2 in list, iter: @@ -466,8 +471,8 @@ def test_dict_mergefromseq2(self): self.assertRaises(ValueError, mergefromseq2, {}, [(1, 2, 3)], 0) self.assertRaises(TypeError, mergefromseq2, {}, [1], 0) self.assertRaises(TypeError, mergefromseq2, {}, 42, 0) - # CRASHES mergefromseq2(UserDict(), [], 0) - # CRASHES mergefromseq2(42, [], 0) + self.assertRaises(SystemError, mergefromseq2, UserDict(), [], 0) + self.assertRaises(SystemError, mergefromseq2, 42, [], 0) # CRASHES mergefromseq2({}, NULL, 0) # CRASHES mergefromseq2(NULL, {}, 0) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 8f960352fa4824..276e1df21a80d8 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -140,6 +140,7 @@ static PyObject* frozendict_new(PyTypeObject *type, PyObject *args, PyObject *kwds); static PyObject* dict_new(PyTypeObject *type, PyObject *args, PyObject *kwds); static int dict_merge(PyObject *a, PyObject *b, int override); +static int dict_merge_from_seq2(PyObject *d, PyObject *seq2, int override); /*[clinic input] @@ -3818,16 +3819,16 @@ static int dict_update_arg(PyObject *self, PyObject *arg) { if (PyAnyDict_CheckExact(arg)) { - return PyDict_Merge(self, arg, 1); + return dict_merge(self, arg, 1); } int has_keys = PyObject_HasAttrWithError(arg, &_Py_ID(keys)); if (has_keys < 0) { return -1; } if (has_keys) { - return PyDict_Merge(self, arg, 1); + return dict_merge(self, arg, 1); } - return PyDict_MergeFromSeq2(self, arg, 1); + return dict_merge_from_seq2(self, arg, 1); } static int @@ -3846,7 +3847,7 @@ dict_update_common(PyObject *self, PyObject *args, PyObject *kwds, if (result == 0 && kwds != NULL) { if (PyArg_ValidateKeywordArguments(kwds)) - result = PyDict_Merge(self, kwds, 1); + result = dict_merge(self, kwds, 1); else result = -1; } @@ -3960,8 +3961,8 @@ merge_from_seq2_lock_held(PyObject *d, PyObject *seq2, int override) return Py_SAFE_DOWNCAST(i, Py_ssize_t, int); } -int -PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override) +static int +dict_merge_from_seq2(PyObject *d, PyObject *seq2, int override) { int res; Py_BEGIN_CRITICAL_SECTION(d); @@ -3971,6 +3972,19 @@ PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override) return res; } +int +PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override) +{ + assert(d != NULL); + assert(seq2 != NULL); + if (!PyDict_Check(d)) { + PyErr_BadInternalCall(); + return -1; + } + + return dict_merge_from_seq2(d, seq2, override); +} + static int dict_dict_merge(PyDictObject *mp, PyDictObject *other, int override) { @@ -4070,23 +4084,14 @@ dict_dict_merge(PyDictObject *mp, PyDictObject *other, int override) static int dict_merge(PyObject *a, PyObject *b, int override) { - PyDictObject *mp, *other; - + assert(a != NULL); + assert(b != NULL); assert(0 <= override && override <= 2); - /* We accept for the argument either a concrete dictionary object, - * or an abstract "mapping" object. For the former, we can do - * things quite efficiently. For the latter, we only require that - * PyMapping_Keys() and PyObject_GetItem() be supported. - */ - if (a == NULL || !PyAnyDict_Check(a) || b == NULL) { - PyErr_BadInternalCall(); - return -1; - } - mp = (PyDictObject*)a; + PyDictObject *mp = _PyAnyDict_CAST(a); int res = 0; if (PyAnyDict_Check(b) && (Py_TYPE(b)->tp_iter == dict_iter)) { - other = (PyDictObject*)b; + PyDictObject *other = (PyDictObject*)b; int res; Py_BEGIN_CRITICAL_SECTION2(a, b); res = dict_dict_merge((PyDictObject *)a, other, override); @@ -4167,23 +4172,38 @@ dict_merge(PyObject *a, PyObject *b, int override) } } +static int +dict_merge_api(PyObject *a, PyObject *b, int override) +{ + /* We accept for the argument either a concrete dictionary object, + * or an abstract "mapping" object. For the former, we can do + * things quite efficiently. For the latter, we only require that + * PyMapping_Keys() and PyObject_GetItem() be supported. + */ + if (a == NULL || !PyDict_Check(a) || b == NULL) { + PyErr_BadInternalCall(); + return -1; + } + return dict_merge(a, b, override); +} + int PyDict_Update(PyObject *a, PyObject *b) { - return dict_merge(a, b, 1); + return dict_merge_api(a, b, 1); } int PyDict_Merge(PyObject *a, PyObject *b, int override) { /* XXX Deprecate override not in (0, 1). */ - return dict_merge(a, b, override != 0); + return dict_merge_api(a, b, override != 0); } int _PyDict_MergeEx(PyObject *a, PyObject *b, int override) { - return dict_merge(a, b, override); + return dict_merge_api(a, b, override); } /*[clinic input] From f1f61bf87207c27da06ff73611b76933e456ef18 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Sat, 21 Feb 2026 17:27:55 +0000 Subject: [PATCH 104/110] gh-66802: Add `unicodedata.block()` function (#145042) Closes #66802 --- Doc/library/unicodedata.rst | 12 + Doc/whatsnew/3.15.rst | 5 + Lib/test/test_unicodedata.py | 91 +++ ...6-02-20-13-03-10.gh-issue-66802.OYcAi_.rst | 3 + Modules/clinic/unicodedata.c.h | 38 +- Modules/unicodedata.c | 36 +- Modules/unicodedata_db.h | 703 ++++++++++++++++++ Tools/unicode/makeunicodedata.py | 36 + 8 files changed, 922 insertions(+), 2 deletions(-) create mode 100644 Misc/NEWS.d/next/Library/2026-02-20-13-03-10.gh-issue-66802.OYcAi_.rst diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst index 2fc8b1d8b52341..d5f0405efbecc6 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -130,6 +130,18 @@ following functions: `Unicode Standard Annex #11 `_. +.. function:: block(chr, /) + + Returns the `block + `_ + assigned to the character *chr*. For example:: + + >>> unicodedata.block('S') + 'Basic Latin' + + .. versionadded:: next + + .. function:: mirrored(chr, /) Returns the mirrored property assigned to the character *chr* as diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index fa3ba25a954e40..cd1ec0e5c452d3 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -1134,6 +1134,11 @@ unicodedata of the character which are related to the above algorithm. (Contributed by Serhiy Storchaka and Guillaume Sanchez in :gh:`74902`.) +* Add :func:`~unicodedata.block` function to return the `Unicode block + `_ + assigned to a character. + (Contributed by Stan Ulbrych in :gh:`66802`.) + unittest -------- diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 1d03e7d9fec717..8d4ba677faaa6f 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -973,6 +973,97 @@ def graphemes(*args): 'a\U0001F1FA\U0001F1E6\U0001F1FA\U0001F1F3'), ['a', '\U0001F1FA\U0001F1E6', '\U0001F1FA\U0001F1F3']) + def test_block(self): + self.assertEqual(self.db.block('\u0000'), 'Basic Latin') + self.assertEqual(self.db.block('\u0041'), 'Basic Latin') + self.assertEqual(self.db.block('\u007F'), 'Basic Latin') + self.assertEqual(self.db.block('\u0080'), 'Latin-1 Supplement') + self.assertEqual(self.db.block('\u00FF'), 'Latin-1 Supplement') + self.assertEqual(self.db.block('\u1159'), 'Hangul Jamo') + self.assertEqual(self.db.block('\u11F9'), 'Hangul Jamo') + self.assertEqual(self.db.block('\uD788'), 'Hangul Syllables') + self.assertEqual(self.db.block('\uD7A3'), 'Hangul Syllables') + # New in 5.0.0 + self.assertEqual(self.db.block('\u05BA'), 'Hebrew') + self.assertEqual(self.db.block('\u20EF'), 'Combining Diacritical Marks for Symbols') + # New in 5.1.0 + self.assertEqual(self.db.block('\u2064'), 'General Punctuation') + self.assertEqual(self.db.block('\uAA4D'), 'Cham') + # New in 5.2.0 + self.assertEqual(self.db.block('\u0816'), 'Samaritan') + self.assertEqual(self.db.block('\uA97C'), 'Hangul Jamo Extended-A') + self.assertEqual(self.db.block('\uD7C6'), 'Hangul Jamo Extended-B') + self.assertEqual(self.db.block('\uD7FB'), 'Hangul Jamo Extended-B') + # New in 6.0.0 + self.assertEqual(self.db.block('\u093A'), 'Devanagari') + self.assertEqual(self.db.block('\U00011002'), 'Brahmi') + # New in 6.1.0 + self.assertEqual(self.db.block('\U000E0FFF'), 'No_Block') + self.assertEqual(self.db.block('\U00016F7E'), 'Miao') + # New in 6.2.0 + self.assertEqual(self.db.block('\U0001F1E6'), 'Enclosed Alphanumeric Supplement') + self.assertEqual(self.db.block('\U0001F1FF'), 'Enclosed Alphanumeric Supplement') + # New in 6.3.0 + self.assertEqual(self.db.block('\u180E'), 'Mongolian') + self.assertEqual(self.db.block('\u1A1B'), 'Buginese') + # New in 7.0.0 + self.assertEqual(self.db.block('\u0E33'), 'Thai') + self.assertEqual(self.db.block('\u0EB3'), 'Lao') + self.assertEqual(self.db.block('\U0001BCA3'), 'Shorthand Format Controls') + self.assertEqual(self.db.block('\U0001E8D6'), 'Mende Kikakui') + self.assertEqual(self.db.block('\U0001163E'), 'Modi') + # New in 8.0.0 + self.assertEqual(self.db.block('\u08E3'), 'Arabic Extended-A') + self.assertEqual(self.db.block('\U00011726'), 'Ahom') + # New in 9.0.0 + self.assertEqual(self.db.block('\u0600'), 'Arabic') + self.assertEqual(self.db.block('\U000E007F'), 'Tags') + self.assertEqual(self.db.block('\U00011CB4'), 'Marchen') + self.assertEqual(self.db.block('\u200D'), 'General Punctuation') + # New in 10.0.0 + self.assertEqual(self.db.block('\U00011D46'), 'Masaram Gondi') + self.assertEqual(self.db.block('\U00011D47'), 'Masaram Gondi') + self.assertEqual(self.db.block('\U00011A97'), 'Soyombo') + # New in 11.0.0 + self.assertEqual(self.db.block('\U000110CD'), 'Kaithi') + self.assertEqual(self.db.block('\u07FD'), 'NKo') + self.assertEqual(self.db.block('\U00011EF6'), 'Makasar') + # New in 12.0.0 + self.assertEqual(self.db.block('\U00011A84'), 'Soyombo') + self.assertEqual(self.db.block('\U00013438'), 'Egyptian Hieroglyph Format Controls') + self.assertEqual(self.db.block('\U0001E2EF'), 'Wancho') + self.assertEqual(self.db.block('\U00016F87'), 'Miao') + # New in 13.0.0 + self.assertEqual(self.db.block('\U00011941'), 'Dives Akuru') + self.assertEqual(self.db.block('\U00016FE4'), 'Ideographic Symbols and Punctuation') + self.assertEqual(self.db.block('\U00011942'), 'Dives Akuru') + # New in 14.0.0 + self.assertEqual(self.db.block('\u0891'), 'Arabic Extended-B') + self.assertEqual(self.db.block('\U0001E2AE'), 'Toto') + # New in 15.0.0 + self.assertEqual(self.db.block('\U00011F02'), 'Kawi') + self.assertEqual(self.db.block('\U0001343F'), 'Egyptian Hieroglyph Format Controls') + self.assertEqual(self.db.block('\U0001E4EF'), 'Nag Mundari') + self.assertEqual(self.db.block('\U00011F3F'), 'Kawi') + # New in 16.0.0 + self.assertEqual(self.db.block('\U000113D1'), 'Tulu-Tigalari') + self.assertEqual(self.db.block('\U0001E5EF'), 'Ol Onal') + self.assertEqual(self.db.block('\U0001612C'), 'Gurung Khema') + self.assertEqual(self.db.block('\U00016D63'), 'Kirat Rai') + # New in 17.0.0 + self.assertEqual(self.db.block('\u1AEB'), 'Combining Diacritical Marks Extended') + self.assertEqual(self.db.block('\U00011B67'), 'Sharada Supplement') + # Unassigned + self.assertEqual(self.db.block('\U00100000'), 'Supplementary Private Use Area-B') + self.assertEqual(self.db.block('\U0010FFFF'), 'Supplementary Private Use Area-B') + + def test_block_invalid_input(self): + self.assertRaises(TypeError, self.db.block) + self.assertRaises(TypeError, self.db.block, b'x') + self.assertRaises(TypeError, self.db.block, 120) + self.assertRaises(TypeError, self.db.block, '') + self.assertRaises(TypeError, self.db.block, 'xx') + class Unicode_3_2_0_FunctionsTest(unittest.TestCase, BaseUnicodeFunctionsTest): db = unicodedata.ucd_3_2_0 diff --git a/Misc/NEWS.d/next/Library/2026-02-20-13-03-10.gh-issue-66802.OYcAi_.rst b/Misc/NEWS.d/next/Library/2026-02-20-13-03-10.gh-issue-66802.OYcAi_.rst new file mode 100644 index 00000000000000..68a25262c7d7f7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2026-02-20-13-03-10.gh-issue-66802.OYcAi_.rst @@ -0,0 +1,3 @@ +Add :func:`unicodedata.block` function to return the `Unicode block +`_ of a +character. diff --git a/Modules/clinic/unicodedata.c.h b/Modules/clinic/unicodedata.c.h index 8e2dd7a0ce5663..5443893079b1af 100644 --- a/Modules/clinic/unicodedata.c.h +++ b/Modules/clinic/unicodedata.c.h @@ -691,6 +691,42 @@ unicodedata_iter_graphemes(PyObject *module, PyObject *const *args, Py_ssize_t n return return_value; } +PyDoc_STRVAR(unicodedata_block__doc__, +"block($module, chr, /)\n" +"--\n" +"\n" +"Return block assigned to the character chr."); + +#define UNICODEDATA_BLOCK_METHODDEF \ + {"block", (PyCFunction)unicodedata_block, METH_O, unicodedata_block__doc__}, + +static PyObject * +unicodedata_block_impl(PyObject *module, int chr); + +static PyObject * +unicodedata_block(PyObject *module, PyObject *arg) +{ + PyObject *return_value = NULL; + int chr; + + if (!PyUnicode_Check(arg)) { + _PyArg_BadArgument("block", "argument", "a unicode character", arg); + goto exit; + } + if (PyUnicode_GET_LENGTH(arg) != 1) { + PyErr_Format(PyExc_TypeError, + "block(): argument must be a unicode character, " + "not a string of length %zd", + PyUnicode_GET_LENGTH(arg)); + goto exit; + } + chr = PyUnicode_READ_CHAR(arg, 0); + return_value = unicodedata_block_impl(module, chr); + +exit: + return return_value; +} + PyDoc_STRVAR(unicodedata_grapheme_cluster_break__doc__, "grapheme_cluster_break($module, chr, /)\n" "--\n" @@ -798,4 +834,4 @@ unicodedata_extended_pictographic(PyObject *module, PyObject *arg) exit: return return_value; } -/*[clinic end generated code: output=0f09cc90f06ace76 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=482a87df218f07c1 input=a9049054013a1b77]*/ diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 1ed9760874b2a6..f20726a937ce38 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -2066,6 +2066,39 @@ unicodedata_iter_graphemes_impl(PyObject *module, PyObject *unistr, return (PyObject*)gbi; } +/*[clinic input] +unicodedata.block + + chr: int(accept={str}) + / + +Return block assigned to the character chr. +[clinic start generated code]*/ + +static PyObject * +unicodedata_block_impl(PyObject *module, int chr) +/*[clinic end generated code: output=5f8b40c49eaec75a input=0834cf2642d6eaae]*/ +{ + Py_UCS4 c = (Py_UCS4)chr; + int lo = 0, hi = BLOCK_COUNT - 1; + while (lo <= hi) { + int mid = (lo + hi) / 2; + if (c < _PyUnicode_Blocks[mid].start) { + hi = mid - 1; + } + else if (c > _PyUnicode_Blocks[mid].end) { + lo = mid + 1; + } + else { + size_t name = _PyUnicode_Blocks[mid].name; + return PyUnicode_FromString(_PyUnicode_BlockNames[name]); + } + } + // Otherwise, return the default value per + // https://www.unicode.org/versions/latest/core-spec/chapter-3/#G64189 + return PyUnicode_FromString("No_Block"); +} + /*[clinic input] unicodedata.grapheme_cluster_break @@ -2128,6 +2161,7 @@ unicodedata_extended_pictographic_impl(PyObject *module, int chr) // an UCD instance. static PyMethodDef unicodedata_functions[] = { // Module only functions. + UNICODEDATA_BLOCK_METHODDEF UNICODEDATA_GRAPHEME_CLUSTER_BREAK_METHODDEF UNICODEDATA_INDIC_CONJUNCT_BREAK_METHODDEF UNICODEDATA_EXTENDED_PICTOGRAPHIC_METHODDEF @@ -2137,7 +2171,7 @@ static PyMethodDef unicodedata_functions[] = { // The following definitions are shared between the module // and the UCD class. -#define DB_methods (unicodedata_functions + 6) +#define DB_methods (unicodedata_functions + 7) UNICODEDATA_UCD_DECIMAL_METHODDEF UNICODEDATA_UCD_DIGIT_METHODDEF diff --git a/Modules/unicodedata_db.h b/Modules/unicodedata_db.h index 3cc5776a1f240d..9e88f5cca7115b 100644 --- a/Modules/unicodedata_db.h +++ b/Modules/unicodedata_db.h @@ -796,6 +796,709 @@ const char * const _PyUnicode_IndicConjunctBreakNames[] = { "Extend", NULL }; +static const char * const _PyUnicode_BlockNames[] = { + "Basic Latin", + "Latin-1 Supplement", + "Latin Extended-A", + "Latin Extended-B", + "IPA Extensions", + "Spacing Modifier Letters", + "Combining Diacritical Marks", + "Greek and Coptic", + "Cyrillic", + "Cyrillic Supplement", + "Armenian", + "Hebrew", + "Arabic", + "Syriac", + "Arabic Supplement", + "Thaana", + "NKo", + "Samaritan", + "Mandaic", + "Syriac Supplement", + "Arabic Extended-B", + "Arabic Extended-A", + "Devanagari", + "Bengali", + "Gurmukhi", + "Gujarati", + "Oriya", + "Tamil", + "Telugu", + "Kannada", + "Malayalam", + "Sinhala", + "Thai", + "Lao", + "Tibetan", + "Myanmar", + "Georgian", + "Hangul Jamo", + "Ethiopic", + "Ethiopic Supplement", + "Cherokee", + "Unified Canadian Aboriginal Syllabics", + "Ogham", + "Runic", + "Tagalog", + "Hanunoo", + "Buhid", + "Tagbanwa", + "Khmer", + "Mongolian", + "Unified Canadian Aboriginal Syllabics Extended", + "Limbu", + "Tai Le", + "New Tai Lue", + "Khmer Symbols", + "Buginese", + "Tai Tham", + "Combining Diacritical Marks Extended", + "Balinese", + "Sundanese", + "Batak", + "Lepcha", + "Ol Chiki", + "Cyrillic Extended-C", + "Georgian Extended", + "Sundanese Supplement", + "Vedic Extensions", + "Phonetic Extensions", + "Phonetic Extensions Supplement", + "Combining Diacritical Marks Supplement", + "Latin Extended Additional", + "Greek Extended", + "General Punctuation", + "Superscripts and Subscripts", + "Currency Symbols", + "Combining Diacritical Marks for Symbols", + "Letterlike Symbols", + "Number Forms", + "Arrows", + "Mathematical Operators", + "Miscellaneous Technical", + "Control Pictures", + "Optical Character Recognition", + "Enclosed Alphanumerics", + "Box Drawing", + "Block Elements", + "Geometric Shapes", + "Miscellaneous Symbols", + "Dingbats", + "Miscellaneous Mathematical Symbols-A", + "Supplemental Arrows-A", + "Braille Patterns", + "Supplemental Arrows-B", + "Miscellaneous Mathematical Symbols-B", + "Supplemental Mathematical Operators", + "Miscellaneous Symbols and Arrows", + "Glagolitic", + "Latin Extended-C", + "Coptic", + "Georgian Supplement", + "Tifinagh", + "Ethiopic Extended", + "Cyrillic Extended-A", + "Supplemental Punctuation", + "CJK Radicals Supplement", + "Kangxi Radicals", + "Ideographic Description Characters", + "CJK Symbols and Punctuation", + "Hiragana", + "Katakana", + "Bopomofo", + "Hangul Compatibility Jamo", + "Kanbun", + "Bopomofo Extended", + "CJK Strokes", + "Katakana Phonetic Extensions", + "Enclosed CJK Letters and Months", + "CJK Compatibility", + "CJK Unified Ideographs Extension A", + "Yijing Hexagram Symbols", + "CJK Unified Ideographs", + "Yi Syllables", + "Yi Radicals", + "Lisu", + "Vai", + "Cyrillic Extended-B", + "Bamum", + "Modifier Tone Letters", + "Latin Extended-D", + "Syloti Nagri", + "Common Indic Number Forms", + "Phags-pa", + "Saurashtra", + "Devanagari Extended", + "Kayah Li", + "Rejang", + "Hangul Jamo Extended-A", + "Javanese", + "Myanmar Extended-B", + "Cham", + "Myanmar Extended-A", + "Tai Viet", + "Meetei Mayek Extensions", + "Ethiopic Extended-A", + "Latin Extended-E", + "Cherokee Supplement", + "Meetei Mayek", + "Hangul Syllables", + "Hangul Jamo Extended-B", + "High Surrogates", + "High Private Use Surrogates", + "Low Surrogates", + "Private Use Area", + "CJK Compatibility Ideographs", + "Alphabetic Presentation Forms", + "Arabic Presentation Forms-A", + "Variation Selectors", + "Vertical Forms", + "Combining Half Marks", + "CJK Compatibility Forms", + "Small Form Variants", + "Arabic Presentation Forms-B", + "Halfwidth and Fullwidth Forms", + "Specials", + "Linear B Syllabary", + "Linear B Ideograms", + "Aegean Numbers", + "Ancient Greek Numbers", + "Ancient Symbols", + "Phaistos Disc", + "Lycian", + "Carian", + "Coptic Epact Numbers", + "Old Italic", + "Gothic", + "Old Permic", + "Ugaritic", + "Old Persian", + "Deseret", + "Shavian", + "Osmanya", + "Osage", + "Elbasan", + "Caucasian Albanian", + "Vithkuqi", + "Todhri", + "Linear A", + "Latin Extended-F", + "Cypriot Syllabary", + "Imperial Aramaic", + "Palmyrene", + "Nabataean", + "Hatran", + "Phoenician", + "Lydian", + "Sidetic", + "Meroitic Hieroglyphs", + "Meroitic Cursive", + "Kharoshthi", + "Old South Arabian", + "Old North Arabian", + "Manichaean", + "Avestan", + "Inscriptional Parthian", + "Inscriptional Pahlavi", + "Psalter Pahlavi", + "Old Turkic", + "Old Hungarian", + "Hanifi Rohingya", + "Garay", + "Rumi Numeral Symbols", + "Yezidi", + "Arabic Extended-C", + "Old Sogdian", + "Sogdian", + "Old Uyghur", + "Chorasmian", + "Elymaic", + "Brahmi", + "Kaithi", + "Sora Sompeng", + "Chakma", + "Mahajani", + "Sharada", + "Sinhala Archaic Numbers", + "Khojki", + "Multani", + "Khudawadi", + "Grantha", + "Tulu-Tigalari", + "Newa", + "Tirhuta", + "Siddham", + "Modi", + "Mongolian Supplement", + "Takri", + "Myanmar Extended-C", + "Ahom", + "Dogra", + "Warang Citi", + "Dives Akuru", + "Nandinagari", + "Zanabazar Square", + "Soyombo", + "Unified Canadian Aboriginal Syllabics Extended-A", + "Pau Cin Hau", + "Devanagari Extended-A", + "Sharada Supplement", + "Sunuwar", + "Bhaiksuki", + "Marchen", + "Masaram Gondi", + "Gunjala Gondi", + "Tolong Siki", + "Makasar", + "Kawi", + "Lisu Supplement", + "Tamil Supplement", + "Cuneiform", + "Cuneiform Numbers and Punctuation", + "Early Dynastic Cuneiform", + "Cypro-Minoan", + "Egyptian Hieroglyphs", + "Egyptian Hieroglyph Format Controls", + "Egyptian Hieroglyphs Extended-A", + "Anatolian Hieroglyphs", + "Gurung Khema", + "Bamum Supplement", + "Mro", + "Tangsa", + "Bassa Vah", + "Pahawh Hmong", + "Kirat Rai", + "Medefaidrin", + "Beria Erfe", + "Miao", + "Ideographic Symbols and Punctuation", + "Tangut", + "Tangut Components", + "Khitan Small Script", + "Tangut Supplement", + "Tangut Components Supplement", + "Kana Extended-B", + "Kana Supplement", + "Kana Extended-A", + "Small Kana Extension", + "Nushu", + "Duployan", + "Shorthand Format Controls", + "Symbols for Legacy Computing Supplement", + "Miscellaneous Symbols Supplement", + "Znamenny Musical Notation", + "Byzantine Musical Symbols", + "Musical Symbols", + "Ancient Greek Musical Notation", + "Kaktovik Numerals", + "Mayan Numerals", + "Tai Xuan Jing Symbols", + "Counting Rod Numerals", + "Mathematical Alphanumeric Symbols", + "Sutton SignWriting", + "Latin Extended-G", + "Glagolitic Supplement", + "Cyrillic Extended-D", + "Nyiakeng Puachue Hmong", + "Toto", + "Wancho", + "Nag Mundari", + "Ol Onal", + "Tai Yo", + "Ethiopic Extended-B", + "Mende Kikakui", + "Adlam", + "Indic Siyaq Numbers", + "Ottoman Siyaq Numbers", + "Arabic Mathematical Alphabetic Symbols", + "Mahjong Tiles", + "Domino Tiles", + "Playing Cards", + "Enclosed Alphanumeric Supplement", + "Enclosed Ideographic Supplement", + "Miscellaneous Symbols and Pictographs", + "Emoticons", + "Ornamental Dingbats", + "Transport and Map Symbols", + "Alchemical Symbols", + "Geometric Shapes Extended", + "Supplemental Arrows-C", + "Supplemental Symbols and Pictographs", + "Chess Symbols", + "Symbols and Pictographs Extended-A", + "Symbols for Legacy Computing", + "CJK Unified Ideographs Extension B", + "CJK Unified Ideographs Extension C", + "CJK Unified Ideographs Extension D", + "CJK Unified Ideographs Extension E", + "CJK Unified Ideographs Extension F", + "CJK Unified Ideographs Extension I", + "CJK Compatibility Ideographs Supplement", + "CJK Unified Ideographs Extension G", + "CJK Unified Ideographs Extension H", + "CJK Unified Ideographs Extension J", + "Tags", + "Variation Selectors Supplement", + "Supplementary Private Use Area-A", + "Supplementary Private Use Area-B", +}; +typedef struct { + Py_UCS4 start; + Py_UCS4 end; + unsigned short name; +} _PyUnicode_Block; +static const _PyUnicode_Block _PyUnicode_Blocks[] = { + {0x0000, 0x007F, 0}, + {0x0080, 0x00FF, 1}, + {0x0100, 0x017F, 2}, + {0x0180, 0x024F, 3}, + {0x0250, 0x02AF, 4}, + {0x02B0, 0x02FF, 5}, + {0x0300, 0x036F, 6}, + {0x0370, 0x03FF, 7}, + {0x0400, 0x04FF, 8}, + {0x0500, 0x052F, 9}, + {0x0530, 0x058F, 10}, + {0x0590, 0x05FF, 11}, + {0x0600, 0x06FF, 12}, + {0x0700, 0x074F, 13}, + {0x0750, 0x077F, 14}, + {0x0780, 0x07BF, 15}, + {0x07C0, 0x07FF, 16}, + {0x0800, 0x083F, 17}, + {0x0840, 0x085F, 18}, + {0x0860, 0x086F, 19}, + {0x0870, 0x089F, 20}, + {0x08A0, 0x08FF, 21}, + {0x0900, 0x097F, 22}, + {0x0980, 0x09FF, 23}, + {0x0A00, 0x0A7F, 24}, + {0x0A80, 0x0AFF, 25}, + {0x0B00, 0x0B7F, 26}, + {0x0B80, 0x0BFF, 27}, + {0x0C00, 0x0C7F, 28}, + {0x0C80, 0x0CFF, 29}, + {0x0D00, 0x0D7F, 30}, + {0x0D80, 0x0DFF, 31}, + {0x0E00, 0x0E7F, 32}, + {0x0E80, 0x0EFF, 33}, + {0x0F00, 0x0FFF, 34}, + {0x1000, 0x109F, 35}, + {0x10A0, 0x10FF, 36}, + {0x1100, 0x11FF, 37}, + {0x1200, 0x137F, 38}, + {0x1380, 0x139F, 39}, + {0x13A0, 0x13FF, 40}, + {0x1400, 0x167F, 41}, + {0x1680, 0x169F, 42}, + {0x16A0, 0x16FF, 43}, + {0x1700, 0x171F, 44}, + {0x1720, 0x173F, 45}, + {0x1740, 0x175F, 46}, + {0x1760, 0x177F, 47}, + {0x1780, 0x17FF, 48}, + {0x1800, 0x18AF, 49}, + {0x18B0, 0x18FF, 50}, + {0x1900, 0x194F, 51}, + {0x1950, 0x197F, 52}, + {0x1980, 0x19DF, 53}, + {0x19E0, 0x19FF, 54}, + {0x1A00, 0x1A1F, 55}, + {0x1A20, 0x1AAF, 56}, + {0x1AB0, 0x1AFF, 57}, + {0x1B00, 0x1B7F, 58}, + {0x1B80, 0x1BBF, 59}, + {0x1BC0, 0x1BFF, 60}, + {0x1C00, 0x1C4F, 61}, + {0x1C50, 0x1C7F, 62}, + {0x1C80, 0x1C8F, 63}, + {0x1C90, 0x1CBF, 64}, + {0x1CC0, 0x1CCF, 65}, + {0x1CD0, 0x1CFF, 66}, + {0x1D00, 0x1D7F, 67}, + {0x1D80, 0x1DBF, 68}, + {0x1DC0, 0x1DFF, 69}, + {0x1E00, 0x1EFF, 70}, + {0x1F00, 0x1FFF, 71}, + {0x2000, 0x206F, 72}, + {0x2070, 0x209F, 73}, + {0x20A0, 0x20CF, 74}, + {0x20D0, 0x20FF, 75}, + {0x2100, 0x214F, 76}, + {0x2150, 0x218F, 77}, + {0x2190, 0x21FF, 78}, + {0x2200, 0x22FF, 79}, + {0x2300, 0x23FF, 80}, + {0x2400, 0x243F, 81}, + {0x2440, 0x245F, 82}, + {0x2460, 0x24FF, 83}, + {0x2500, 0x257F, 84}, + {0x2580, 0x259F, 85}, + {0x25A0, 0x25FF, 86}, + {0x2600, 0x26FF, 87}, + {0x2700, 0x27BF, 88}, + {0x27C0, 0x27EF, 89}, + {0x27F0, 0x27FF, 90}, + {0x2800, 0x28FF, 91}, + {0x2900, 0x297F, 92}, + {0x2980, 0x29FF, 93}, + {0x2A00, 0x2AFF, 94}, + {0x2B00, 0x2BFF, 95}, + {0x2C00, 0x2C5F, 96}, + {0x2C60, 0x2C7F, 97}, + {0x2C80, 0x2CFF, 98}, + {0x2D00, 0x2D2F, 99}, + {0x2D30, 0x2D7F, 100}, + {0x2D80, 0x2DDF, 101}, + {0x2DE0, 0x2DFF, 102}, + {0x2E00, 0x2E7F, 103}, + {0x2E80, 0x2EFF, 104}, + {0x2F00, 0x2FDF, 105}, + {0x2FF0, 0x2FFF, 106}, + {0x3000, 0x303F, 107}, + {0x3040, 0x309F, 108}, + {0x30A0, 0x30FF, 109}, + {0x3100, 0x312F, 110}, + {0x3130, 0x318F, 111}, + {0x3190, 0x319F, 112}, + {0x31A0, 0x31BF, 113}, + {0x31C0, 0x31EF, 114}, + {0x31F0, 0x31FF, 115}, + {0x3200, 0x32FF, 116}, + {0x3300, 0x33FF, 117}, + {0x3400, 0x4DBF, 118}, + {0x4DC0, 0x4DFF, 119}, + {0x4E00, 0x9FFF, 120}, + {0xA000, 0xA48F, 121}, + {0xA490, 0xA4CF, 122}, + {0xA4D0, 0xA4FF, 123}, + {0xA500, 0xA63F, 124}, + {0xA640, 0xA69F, 125}, + {0xA6A0, 0xA6FF, 126}, + {0xA700, 0xA71F, 127}, + {0xA720, 0xA7FF, 128}, + {0xA800, 0xA82F, 129}, + {0xA830, 0xA83F, 130}, + {0xA840, 0xA87F, 131}, + {0xA880, 0xA8DF, 132}, + {0xA8E0, 0xA8FF, 133}, + {0xA900, 0xA92F, 134}, + {0xA930, 0xA95F, 135}, + {0xA960, 0xA97F, 136}, + {0xA980, 0xA9DF, 137}, + {0xA9E0, 0xA9FF, 138}, + {0xAA00, 0xAA5F, 139}, + {0xAA60, 0xAA7F, 140}, + {0xAA80, 0xAADF, 141}, + {0xAAE0, 0xAAFF, 142}, + {0xAB00, 0xAB2F, 143}, + {0xAB30, 0xAB6F, 144}, + {0xAB70, 0xABBF, 145}, + {0xABC0, 0xABFF, 146}, + {0xAC00, 0xD7AF, 147}, + {0xD7B0, 0xD7FF, 148}, + {0xD800, 0xDB7F, 149}, + {0xDB80, 0xDBFF, 150}, + {0xDC00, 0xDFFF, 151}, + {0xE000, 0xF8FF, 152}, + {0xF900, 0xFAFF, 153}, + {0xFB00, 0xFB4F, 154}, + {0xFB50, 0xFDFF, 155}, + {0xFE00, 0xFE0F, 156}, + {0xFE10, 0xFE1F, 157}, + {0xFE20, 0xFE2F, 158}, + {0xFE30, 0xFE4F, 159}, + {0xFE50, 0xFE6F, 160}, + {0xFE70, 0xFEFF, 161}, + {0xFF00, 0xFFEF, 162}, + {0xFFF0, 0xFFFF, 163}, + {0x10000, 0x1007F, 164}, + {0x10080, 0x100FF, 165}, + {0x10100, 0x1013F, 166}, + {0x10140, 0x1018F, 167}, + {0x10190, 0x101CF, 168}, + {0x101D0, 0x101FF, 169}, + {0x10280, 0x1029F, 170}, + {0x102A0, 0x102DF, 171}, + {0x102E0, 0x102FF, 172}, + {0x10300, 0x1032F, 173}, + {0x10330, 0x1034F, 174}, + {0x10350, 0x1037F, 175}, + {0x10380, 0x1039F, 176}, + {0x103A0, 0x103DF, 177}, + {0x10400, 0x1044F, 178}, + {0x10450, 0x1047F, 179}, + {0x10480, 0x104AF, 180}, + {0x104B0, 0x104FF, 181}, + {0x10500, 0x1052F, 182}, + {0x10530, 0x1056F, 183}, + {0x10570, 0x105BF, 184}, + {0x105C0, 0x105FF, 185}, + {0x10600, 0x1077F, 186}, + {0x10780, 0x107BF, 187}, + {0x10800, 0x1083F, 188}, + {0x10840, 0x1085F, 189}, + {0x10860, 0x1087F, 190}, + {0x10880, 0x108AF, 191}, + {0x108E0, 0x108FF, 192}, + {0x10900, 0x1091F, 193}, + {0x10920, 0x1093F, 194}, + {0x10940, 0x1095F, 195}, + {0x10980, 0x1099F, 196}, + {0x109A0, 0x109FF, 197}, + {0x10A00, 0x10A5F, 198}, + {0x10A60, 0x10A7F, 199}, + {0x10A80, 0x10A9F, 200}, + {0x10AC0, 0x10AFF, 201}, + {0x10B00, 0x10B3F, 202}, + {0x10B40, 0x10B5F, 203}, + {0x10B60, 0x10B7F, 204}, + {0x10B80, 0x10BAF, 205}, + {0x10C00, 0x10C4F, 206}, + {0x10C80, 0x10CFF, 207}, + {0x10D00, 0x10D3F, 208}, + {0x10D40, 0x10D8F, 209}, + {0x10E60, 0x10E7F, 210}, + {0x10E80, 0x10EBF, 211}, + {0x10EC0, 0x10EFF, 212}, + {0x10F00, 0x10F2F, 213}, + {0x10F30, 0x10F6F, 214}, + {0x10F70, 0x10FAF, 215}, + {0x10FB0, 0x10FDF, 216}, + {0x10FE0, 0x10FFF, 217}, + {0x11000, 0x1107F, 218}, + {0x11080, 0x110CF, 219}, + {0x110D0, 0x110FF, 220}, + {0x11100, 0x1114F, 221}, + {0x11150, 0x1117F, 222}, + {0x11180, 0x111DF, 223}, + {0x111E0, 0x111FF, 224}, + {0x11200, 0x1124F, 225}, + {0x11280, 0x112AF, 226}, + {0x112B0, 0x112FF, 227}, + {0x11300, 0x1137F, 228}, + {0x11380, 0x113FF, 229}, + {0x11400, 0x1147F, 230}, + {0x11480, 0x114DF, 231}, + {0x11580, 0x115FF, 232}, + {0x11600, 0x1165F, 233}, + {0x11660, 0x1167F, 234}, + {0x11680, 0x116CF, 235}, + {0x116D0, 0x116FF, 236}, + {0x11700, 0x1174F, 237}, + {0x11800, 0x1184F, 238}, + {0x118A0, 0x118FF, 239}, + {0x11900, 0x1195F, 240}, + {0x119A0, 0x119FF, 241}, + {0x11A00, 0x11A4F, 242}, + {0x11A50, 0x11AAF, 243}, + {0x11AB0, 0x11ABF, 244}, + {0x11AC0, 0x11AFF, 245}, + {0x11B00, 0x11B5F, 246}, + {0x11B60, 0x11B7F, 247}, + {0x11BC0, 0x11BFF, 248}, + {0x11C00, 0x11C6F, 249}, + {0x11C70, 0x11CBF, 250}, + {0x11D00, 0x11D5F, 251}, + {0x11D60, 0x11DAF, 252}, + {0x11DB0, 0x11DEF, 253}, + {0x11EE0, 0x11EFF, 254}, + {0x11F00, 0x11F5F, 255}, + {0x11FB0, 0x11FBF, 256}, + {0x11FC0, 0x11FFF, 257}, + {0x12000, 0x123FF, 258}, + {0x12400, 0x1247F, 259}, + {0x12480, 0x1254F, 260}, + {0x12F90, 0x12FFF, 261}, + {0x13000, 0x1342F, 262}, + {0x13430, 0x1345F, 263}, + {0x13460, 0x143FF, 264}, + {0x14400, 0x1467F, 265}, + {0x16100, 0x1613F, 266}, + {0x16800, 0x16A3F, 267}, + {0x16A40, 0x16A6F, 268}, + {0x16A70, 0x16ACF, 269}, + {0x16AD0, 0x16AFF, 270}, + {0x16B00, 0x16B8F, 271}, + {0x16D40, 0x16D7F, 272}, + {0x16E40, 0x16E9F, 273}, + {0x16EA0, 0x16EDF, 274}, + {0x16F00, 0x16F9F, 275}, + {0x16FE0, 0x16FFF, 276}, + {0x17000, 0x187FF, 277}, + {0x18800, 0x18AFF, 278}, + {0x18B00, 0x18CFF, 279}, + {0x18D00, 0x18D7F, 280}, + {0x18D80, 0x18DFF, 281}, + {0x1AFF0, 0x1AFFF, 282}, + {0x1B000, 0x1B0FF, 283}, + {0x1B100, 0x1B12F, 284}, + {0x1B130, 0x1B16F, 285}, + {0x1B170, 0x1B2FF, 286}, + {0x1BC00, 0x1BC9F, 287}, + {0x1BCA0, 0x1BCAF, 288}, + {0x1CC00, 0x1CEBF, 289}, + {0x1CEC0, 0x1CEFF, 290}, + {0x1CF00, 0x1CFCF, 291}, + {0x1D000, 0x1D0FF, 292}, + {0x1D100, 0x1D1FF, 293}, + {0x1D200, 0x1D24F, 294}, + {0x1D2C0, 0x1D2DF, 295}, + {0x1D2E0, 0x1D2FF, 296}, + {0x1D300, 0x1D35F, 297}, + {0x1D360, 0x1D37F, 298}, + {0x1D400, 0x1D7FF, 299}, + {0x1D800, 0x1DAAF, 300}, + {0x1DF00, 0x1DFFF, 301}, + {0x1E000, 0x1E02F, 302}, + {0x1E030, 0x1E08F, 303}, + {0x1E100, 0x1E14F, 304}, + {0x1E290, 0x1E2BF, 305}, + {0x1E2C0, 0x1E2FF, 306}, + {0x1E4D0, 0x1E4FF, 307}, + {0x1E5D0, 0x1E5FF, 308}, + {0x1E6C0, 0x1E6FF, 309}, + {0x1E7E0, 0x1E7FF, 310}, + {0x1E800, 0x1E8DF, 311}, + {0x1E900, 0x1E95F, 312}, + {0x1EC70, 0x1ECBF, 313}, + {0x1ED00, 0x1ED4F, 314}, + {0x1EE00, 0x1EEFF, 315}, + {0x1F000, 0x1F02F, 316}, + {0x1F030, 0x1F09F, 317}, + {0x1F0A0, 0x1F0FF, 318}, + {0x1F100, 0x1F1FF, 319}, + {0x1F200, 0x1F2FF, 320}, + {0x1F300, 0x1F5FF, 321}, + {0x1F600, 0x1F64F, 322}, + {0x1F650, 0x1F67F, 323}, + {0x1F680, 0x1F6FF, 324}, + {0x1F700, 0x1F77F, 325}, + {0x1F780, 0x1F7FF, 326}, + {0x1F800, 0x1F8FF, 327}, + {0x1F900, 0x1F9FF, 328}, + {0x1FA00, 0x1FA6F, 329}, + {0x1FA70, 0x1FAFF, 330}, + {0x1FB00, 0x1FBFF, 331}, + {0x20000, 0x2A6DF, 332}, + {0x2A700, 0x2B73F, 333}, + {0x2B740, 0x2B81F, 334}, + {0x2B820, 0x2CEAF, 335}, + {0x2CEB0, 0x2EBEF, 336}, + {0x2EBF0, 0x2EE5F, 337}, + {0x2F800, 0x2FA1F, 338}, + {0x30000, 0x3134F, 339}, + {0x31350, 0x323AF, 340}, + {0x323B0, 0x3347F, 341}, + {0xE0000, 0xE007F, 342}, + {0xE0100, 0xE01EF, 343}, + {0xF0000, 0xFFFFF, 344}, + {0x100000, 0x10FFFF, 345}, +}; +#define BLOCK_COUNT 346 + static const char *decomp_prefix[] = { "", "", diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index 11f626ca0aba7a..5db850ca2d1f0c 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -60,6 +60,7 @@ CASE_FOLDING = "CaseFolding%s.txt" GRAPHEME_CLUSTER_BREAK = "auxiliary/GraphemeBreakProperty%s.txt" EMOJI_DATA = "emoji/emoji-data%s.txt" +BLOCKS = "Blocks%s.txt" # Private Use Areas -- in planes 1, 15, 16 PUA_1 = range(0xE000, 0xF900) @@ -392,6 +393,34 @@ def makeunicodedata(unicode, trace): fprint(" NULL") fprint("};") + # Generate block tables + names = [] + name_to_index = {} + blocks = [] + for start, end, name in unicode.blocks: + if name not in name_to_index: + name_to_index[name] = len(names) + names.append(name) + blocks.append((start, end, name_to_index[name])) + + fprint("static const char * const _PyUnicode_BlockNames[] = {") + for name in names: + fprint(' "%s",' % name) + fprint("};") + + fprint("typedef struct {") + fprint(" Py_UCS4 start;") + fprint(" Py_UCS4 end;") + fprint(" unsigned short name;") + fprint("} _PyUnicode_Block;") + + fprint("static const _PyUnicode_Block _PyUnicode_Blocks[] = {") + for start, end, name in blocks: + fprint(" {0x%04X, 0x%04X, %d}," % (start, end, name)) + fprint("};") + fprint(f"#define BLOCK_COUNT {len(blocks)}") + fprint() + fprint("static const char *decomp_prefix[] = {") for name in decomp_prefix: fprint(" \"%s\"," % name) @@ -1205,6 +1234,13 @@ def __init__(self, version, ideograph_check=True): ext_picts[char] = True self.ext_picts = ext_picts + # See https://www.unicode.org/versions/Unicode17.0.0/core-spec/chapter-3/#G64189 + self.blocks = [] + for record in UcdFile(BLOCKS, version).records(): + start_end, name = record + start, end = [int(c, 16) for c in start_end.split('..')] + self.blocks.append((start, end, name)) + self.blocks.sort() def uselatin1(self): # restrict character range to ISO Latin 1 From c9380aebbe35973528392ff85f8914eb4c626d5b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 18:36:02 +0100 Subject: [PATCH 105/110] gh-141510: Check argument in PyDict_Contains() (#145083) PyDict_Contains() and PyDict_ContainsString() now fail with SystemError if the first argument is not a dict, frozendict, dict subclass or frozendict subclass. --- Lib/test/test_capi/test_dict.py | 8 ++++++-- Objects/dictobject.c | 28 ++++++++++++++++++++-------- 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Lib/test/test_capi/test_dict.py b/Lib/test/test_capi/test_dict.py index d3cc279cd3f955..f69ccbdbd1117d 100644 --- a/Lib/test/test_capi/test_dict.py +++ b/Lib/test/test_capi/test_dict.py @@ -223,6 +223,7 @@ def test_dict_getitemwitherror(self): # CRASHES getitem(NULL, 'a') def test_dict_contains(self): + # Test PyDict_Contains() contains = _testlimitedcapi.dict_contains dct = {'a': 1, '\U0001f40d': 2} self.assertTrue(contains(dct, 'a')) @@ -235,11 +236,12 @@ def test_dict_contains(self): self.assertRaises(TypeError, contains, {}, []) # unhashable # CRASHES contains({}, NULL) - # CRASHES contains(UserDict(), 'a') - # CRASHES contains(42, 'a') + self.assertRaises(SystemError, contains, UserDict(), 'a') + self.assertRaises(SystemError, contains, 42, 'a') # CRASHES contains(NULL, 'a') def test_dict_contains_string(self): + # Test PyDict_ContainsString() contains_string = _testcapi.dict_containsstring dct = {'a': 1, '\U0001f40d': 2} self.assertTrue(contains_string(dct, b'a')) @@ -251,6 +253,8 @@ def test_dict_contains_string(self): self.assertTrue(contains_string(dct2, b'a')) self.assertFalse(contains_string(dct2, b'b')) + self.assertRaises(SystemError, contains_string, UserDict(), 'a') + self.assertRaises(SystemError, contains_string, 42, 'a') # CRASHES contains({}, NULL) # CRASHES contains(NULL, b'a') diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 276e1df21a80d8..0a8ba74c2287c1 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -140,6 +140,7 @@ static PyObject* frozendict_new(PyTypeObject *type, PyObject *args, PyObject *kwds); static PyObject* dict_new(PyTypeObject *type, PyObject *args, PyObject *kwds); static int dict_merge(PyObject *a, PyObject *b, int override); +static int dict_contains(PyObject *op, PyObject *key); static int dict_merge_from_seq2(PyObject *d, PyObject *seq2, int override); @@ -4126,7 +4127,7 @@ dict_merge(PyObject *a, PyObject *b, int override) for (key = PyIter_Next(iter); key; key = PyIter_Next(iter)) { if (override != 1) { - status = PyDict_Contains(a, key); + status = dict_contains(a, key); if (status != 0) { if (status > 0) { if (override == 0) { @@ -4484,7 +4485,7 @@ static PyObject * dict___contains___impl(PyDictObject *self, PyObject *key) /*[clinic end generated code: output=1b314e6da7687dae input=fe1cb42ad831e820]*/ { - int contains = PyDict_Contains((PyObject *)self, key); + int contains = dict_contains((PyObject *)self, key); if (contains < 0) { return NULL; } @@ -4984,9 +4985,8 @@ static PyMethodDef mapp_methods[] = { {NULL, NULL} /* sentinel */ }; -/* Return 1 if `key` is in dict `op`, 0 if not, and -1 on error. */ -int -PyDict_Contains(PyObject *op, PyObject *key) +static int +dict_contains(PyObject *op, PyObject *key) { Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { @@ -4997,6 +4997,18 @@ PyDict_Contains(PyObject *op, PyObject *key) return _PyDict_Contains_KnownHash(op, key, hash); } +/* Return 1 if `key` is in dict `op`, 0 if not, and -1 on error. */ +int +PyDict_Contains(PyObject *op, PyObject *key) +{ + if (!PyAnyDict_Check(op)) { + PyErr_BadInternalCall(); + return -1; + } + + return dict_contains(op, key); +} + int PyDict_ContainsString(PyObject *op, const char *key) { @@ -5013,7 +5025,7 @@ PyDict_ContainsString(PyObject *op, const char *key) int _PyDict_Contains_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash) { - PyDictObject *mp = (PyDictObject *)op; + PyDictObject *mp = _PyAnyDict_CAST(op); PyObject *value; Py_ssize_t ix; @@ -5042,7 +5054,7 @@ static PySequenceMethods dict_as_sequence = { 0, /* sq_slice */ 0, /* sq_ass_item */ 0, /* sq_ass_slice */ - PyDict_Contains, /* sq_contains */ + dict_contains, /* sq_contains */ 0, /* sq_inplace_concat */ 0, /* sq_inplace_repeat */ }; @@ -6292,7 +6304,7 @@ dictkeys_contains(PyObject *self, PyObject *obj) _PyDictViewObject *dv = (_PyDictViewObject *)self; if (dv->dv_dict == NULL) return 0; - return PyDict_Contains((PyObject *)dv->dv_dict, obj); + return dict_contains((PyObject *)dv->dv_dict, obj); } static PySequenceMethods dictkeys_as_sequence = { From 25fc04d041bc28ee45db2576640164bc68dc4a45 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 20:07:30 +0100 Subject: [PATCH 106/110] gh-141510: Test frozendict in test_capi.test_dict (#145084) Complete PyDict_Clear() documentation. --- Doc/c-api/dict.rst | 3 + Lib/test/test_capi/test_dict.py | 566 ++++++++++++++++---------------- Modules/_testlimitedcapi/dict.c | 1 + 3 files changed, 290 insertions(+), 280 deletions(-) diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index 736f282e7bd47a..1d74140ea360ba 100644 --- a/Doc/c-api/dict.rst +++ b/Doc/c-api/dict.rst @@ -58,6 +58,9 @@ Dictionary objects Empty an existing dictionary of all key-value pairs. + Do nothing if the argument is not a :class:`dict` or a :class:`!dict` + subclass. + .. c:function:: int PyDict_Contains(PyObject *p, PyObject *key) diff --git a/Lib/test/test_capi/test_dict.py b/Lib/test/test_capi/test_dict.py index f69ccbdbd1117d..d9de9bb4c8125d 100644 --- a/Lib/test/test_capi/test_dict.py +++ b/Lib/test/test_capi/test_dict.py @@ -34,6 +34,7 @@ class FrozenDictSubclass(frozendict): FROZENDICT_TYPES = (frozendict, FrozenDictSubclass) ANYDICT_TYPES = DICT_TYPES + FROZENDICT_TYPES MAPPING_TYPES = (UserDict,) +NOT_DICT_TYPES = FROZENDICT_TYPES + MAPPING_TYPES NOT_FROZENDICT_TYPES = DICT_TYPES + MAPPING_TYPES NOT_ANYDICT_TYPES = MAPPING_TYPES OTHER_TYPES = (lambda: [1], lambda: 42, object) # (list, int, object) @@ -42,24 +43,29 @@ class FrozenDictSubclass(frozendict): class CAPITest(unittest.TestCase): def test_dict_check(self): + # Test PyDict_Check() check = _testlimitedcapi.dict_check - self.assertTrue(check({1: 2})) - self.assertTrue(check(OrderedDict({1: 2}))) - self.assertFalse(check(UserDict({1: 2}))) - self.assertFalse(check([1, 2])) - self.assertFalse(check(object())) + for dict_type in DICT_TYPES: + self.assertTrue(check(dict_type({1: 2}))) + for test_type in NOT_DICT_TYPES: + self.assertFalse(check(test_type({1: 2}))) + for test_type in OTHER_TYPES: + self.assertFalse(check(test_type())) # CRASHES check(NULL) def test_dict_checkexact(self): + # Test PyDict_CheckExact() check = _testlimitedcapi.dict_checkexact - self.assertTrue(check({1: 2})) - self.assertFalse(check(OrderedDict({1: 2}))) - self.assertFalse(check(UserDict({1: 2}))) - self.assertFalse(check([1, 2])) - self.assertFalse(check(object())) + for dict_type in DICT_TYPES: + self.assertEqual(check(dict_type({1: 2})), dict_type == dict) + for test_type in NOT_DICT_TYPES: + self.assertFalse(check(test_type({1: 2}))) + for test_type in OTHER_TYPES: + self.assertFalse(check(test_type())) # CRASHES check(NULL) def test_dict_new(self): + # Test PyDict_New() dict_new = _testlimitedcapi.dict_new dct = dict_new() self.assertEqual(dct, {}) @@ -68,73 +74,84 @@ def test_dict_new(self): self.assertIsNot(dct2, dct) def test_dictproxy_new(self): + # Test PyDictProxy_New() dictproxy_new = _testlimitedcapi.dictproxy_new - for dct in {1: 2}, OrderedDict({1: 2}), UserDict({1: 2}): + for dict_type in ANYDICT_TYPES + MAPPING_TYPES: + if dict_type == DictSubclass: + continue + dct = dict_type({1: 2}) proxy = dictproxy_new(dct) self.assertIs(type(proxy), MappingProxyType) self.assertEqual(proxy, dct) with self.assertRaises(TypeError): proxy[1] = 3 self.assertEqual(proxy[1], 2) - dct[1] = 4 - self.assertEqual(proxy[1], 4) + if not isinstance(dct, frozendict): + dct[1] = 4 + self.assertEqual(proxy[1], 4) self.assertRaises(TypeError, dictproxy_new, []) self.assertRaises(TypeError, dictproxy_new, 42) # CRASHES dictproxy_new(NULL) def test_dict_copy(self): + # Test PyDict_Copy() copy = _testlimitedcapi.dict_copy - for dct in {1: 2}, OrderedDict({1: 2}): + for dict_type in ANYDICT_TYPES: + if issubclass(dict_type, frozendict): + expected_type = frozendict + else: + expected_type = dict + dct = dict_type({1: 2}) dct_copy = copy(dct) - self.assertIs(type(dct_copy), dict) + self.assertIs(type(dct_copy), expected_type) self.assertEqual(dct_copy, dct) - self.assertRaises(SystemError, copy, UserDict()) - self.assertRaises(SystemError, copy, []) - self.assertRaises(SystemError, copy, 42) + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, copy, test_type()) self.assertRaises(SystemError, copy, NULL) def test_dict_clear(self): + # Test PyDict_Clear() clear = _testlimitedcapi.dict_clear - dct = {1: 2} - clear(dct) - self.assertEqual(dct, {}) - - # NOTE: It is not safe to call it with OrderedDict. + for dict_type in DICT_TYPES: + if dict_type == OrderedDict: + # NOTE: It is not safe to call it with OrderedDict. + continue + dct = dict_type({1: 2}) + clear(dct) + self.assertEqual(dct, {}) # Has no effect for non-dicts. - dct = UserDict({1: 2}) - clear(dct) - self.assertEqual(dct, {1: 2}) + for test_type in NOT_DICT_TYPES: + dct = test_type({1: 2}) + clear(dct) + self.assertEqual(dct, {1: 2}) lst = [1, 2] clear(lst) self.assertEqual(lst, [1, 2]) clear(object()) - # CRASHES? clear(NULL) + # CRASHES clear(NULL) def test_dict_size(self): + # Test PyDict_Size() size = _testlimitedcapi.dict_size - self.assertEqual(size({1: 2}), 1) - self.assertEqual(size(OrderedDict({1: 2})), 1) + for dict_type in ANYDICT_TYPES: + self.assertEqual(size(dict_type({1: 2, 3: 4})), 2) - self.assertRaises(SystemError, size, UserDict()) - self.assertRaises(SystemError, size, []) - self.assertRaises(SystemError, size, 42) - self.assertRaises(SystemError, size, object()) + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, size, test_type()) self.assertRaises(SystemError, size, NULL) def test_dict_getitem(self): + # Test PyDict_GetItem() getitem = _testlimitedcapi.dict_getitem - dct = {'a': 1, '\U0001f40d': 2} - self.assertEqual(getitem(dct, 'a'), 1) - self.assertIs(getitem(dct, 'b'), KeyError) - self.assertEqual(getitem(dct, '\U0001f40d'), 2) - - dct2 = DictSubclass(dct) - self.assertEqual(getitem(dct2, 'a'), 1) - self.assertIs(getitem(dct2, 'b'), KeyError) + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, '\U0001f40d': 2}) + self.assertEqual(getitem(dct, 'a'), 1) + self.assertIs(getitem(dct, 'b'), KeyError) + self.assertEqual(getitem(dct, '\U0001f40d'), 2) with support.catch_unraisable_exception() as cm: self.assertIs(getitem({}, []), KeyError) # unhashable @@ -142,21 +159,20 @@ def test_dict_getitem(self): self.assertEqual(str(cm.unraisable.exc_value), "unhashable type: 'list'") - self.assertIs(getitem(42, 'a'), KeyError) - self.assertIs(getitem([1], 0), KeyError) + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertIs(getitem(test_type(), 'a'), KeyError) + # CRASHES getitem({}, NULL) # CRASHES getitem(NULL, 'a') def test_dict_getitemstring(self): + # Test PyDict_GetItemString() getitemstring = _testlimitedcapi.dict_getitemstring - dct = {'a': 1, '\U0001f40d': 2} - self.assertEqual(getitemstring(dct, b'a'), 1) - self.assertIs(getitemstring(dct, b'b'), KeyError) - self.assertEqual(getitemstring(dct, '\U0001f40d'.encode()), 2) - - dct2 = DictSubclass(dct) - self.assertEqual(getitemstring(dct2, b'a'), 1) - self.assertIs(getitemstring(dct2, b'b'), KeyError) + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, '\U0001f40d': 2}) + self.assertEqual(getitemstring(dct, b'a'), 1) + self.assertIs(getitemstring(dct, b'b'), KeyError) + self.assertEqual(getitemstring(dct, '\U0001f40d'.encode()), 2) with support.catch_unraisable_exception() as cm: self.assertIs(getitemstring({}, INVALID_UTF8), KeyError) @@ -164,225 +180,196 @@ def test_dict_getitemstring(self): self.assertRegex(str(cm.unraisable.exc_value), "'utf-8' codec can't decode") - self.assertIs(getitemstring(42, b'a'), KeyError) - self.assertIs(getitemstring([], b'a'), KeyError) + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertIs(getitemstring(test_type(), b'a'), KeyError) # CRASHES getitemstring({}, NULL) # CRASHES getitemstring(NULL, b'a') def test_dict_getitemref(self): + # Test PyDict_GetItemRef() getitem = _testcapi.dict_getitemref - dct = {'a': 1, '\U0001f40d': 2} - self.assertEqual(getitem(dct, 'a'), 1) - self.assertIs(getitem(dct, 'b'), KeyError) - self.assertEqual(getitem(dct, '\U0001f40d'), 2) - - dct2 = DictSubclass(dct) - self.assertEqual(getitem(dct2, 'a'), 1) - self.assertIs(getitem(dct2, 'b'), KeyError) + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, '\U0001f40d': 2}) + self.assertEqual(getitem(dct, 'a'), 1) + self.assertIs(getitem(dct, 'b'), KeyError) + self.assertEqual(getitem(dct, '\U0001f40d'), 2) - self.assertRaises(SystemError, getitem, 42, 'a') self.assertRaises(TypeError, getitem, {}, []) # unhashable - self.assertRaises(SystemError, getitem, [], 1) - self.assertRaises(SystemError, getitem, [], 'a') + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, getitem, test_type(), 'a') # CRASHES getitem({}, NULL) # CRASHES getitem(NULL, 'a') def test_dict_getitemstringref(self): + # Test PyDict_GetItemStringRef() getitemstring = _testcapi.dict_getitemstringref - dct = {'a': 1, '\U0001f40d': 2} - self.assertEqual(getitemstring(dct, b'a'), 1) - self.assertIs(getitemstring(dct, b'b'), KeyError) - self.assertEqual(getitemstring(dct, '\U0001f40d'.encode()), 2) - - dct2 = DictSubclass(dct) - self.assertEqual(getitemstring(dct2, b'a'), 1) - self.assertIs(getitemstring(dct2, b'b'), KeyError) + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, '\U0001f40d': 2}) + self.assertEqual(getitemstring(dct, b'a'), 1) + self.assertIs(getitemstring(dct, b'b'), KeyError) + self.assertEqual(getitemstring(dct, '\U0001f40d'.encode()), 2) - self.assertRaises(SystemError, getitemstring, 42, b'a') self.assertRaises(UnicodeDecodeError, getitemstring, {}, INVALID_UTF8) - self.assertRaises(SystemError, getitemstring, [], b'a') + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, getitemstring, test_type(), b'a') # CRASHES getitemstring({}, NULL) # CRASHES getitemstring(NULL, b'a') def test_dict_getitemwitherror(self): + # Test PyDict_GetItemWithError() getitem = _testlimitedcapi.dict_getitemwitherror - dct = {'a': 1, '\U0001f40d': 2} - self.assertEqual(getitem(dct, 'a'), 1) - self.assertIs(getitem(dct, 'b'), KeyError) - self.assertEqual(getitem(dct, '\U0001f40d'), 2) - - dct2 = DictSubclass(dct) - self.assertEqual(getitem(dct2, 'a'), 1) - self.assertIs(getitem(dct2, 'b'), KeyError) + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, '\U0001f40d': 2}) + self.assertEqual(getitem(dct, 'a'), 1) + self.assertIs(getitem(dct, 'b'), KeyError) + self.assertEqual(getitem(dct, '\U0001f40d'), 2) - self.assertRaises(SystemError, getitem, 42, 'a') self.assertRaises(TypeError, getitem, {}, []) # unhashable - self.assertRaises(SystemError, getitem, [], 1) - self.assertRaises(SystemError, getitem, [], 'a') + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, getitem, [], 'a') # CRASHES getitem({}, NULL) # CRASHES getitem(NULL, 'a') def test_dict_contains(self): # Test PyDict_Contains() contains = _testlimitedcapi.dict_contains - dct = {'a': 1, '\U0001f40d': 2} - self.assertTrue(contains(dct, 'a')) - self.assertFalse(contains(dct, 'b')) - self.assertTrue(contains(dct, '\U0001f40d')) - - dct2 = DictSubclass(dct) - self.assertTrue(contains(dct2, 'a')) - self.assertFalse(contains(dct2, 'b')) + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, '\U0001f40d': 2}) + self.assertTrue(contains(dct, 'a')) + self.assertFalse(contains(dct, 'b')) + self.assertTrue(contains(dct, '\U0001f40d')) self.assertRaises(TypeError, contains, {}, []) # unhashable + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, contains, test_type(), 'a') + # CRASHES contains({}, NULL) - self.assertRaises(SystemError, contains, UserDict(), 'a') - self.assertRaises(SystemError, contains, 42, 'a') # CRASHES contains(NULL, 'a') def test_dict_contains_string(self): # Test PyDict_ContainsString() contains_string = _testcapi.dict_containsstring - dct = {'a': 1, '\U0001f40d': 2} - self.assertTrue(contains_string(dct, b'a')) - self.assertFalse(contains_string(dct, b'b')) - self.assertTrue(contains_string(dct, '\U0001f40d'.encode())) - self.assertRaises(UnicodeDecodeError, contains_string, dct, INVALID_UTF8) - - dct2 = DictSubclass(dct) - self.assertTrue(contains_string(dct2, b'a')) - self.assertFalse(contains_string(dct2, b'b')) - - self.assertRaises(SystemError, contains_string, UserDict(), 'a') - self.assertRaises(SystemError, contains_string, 42, 'a') + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, '\U0001f40d': 2}) + self.assertTrue(contains_string(dct, b'a')) + self.assertFalse(contains_string(dct, b'b')) + self.assertTrue(contains_string(dct, '\U0001f40d'.encode())) + self.assertRaises(UnicodeDecodeError, contains_string, dct, INVALID_UTF8) + + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, contains_string, test_type(), b'a') + # CRASHES contains({}, NULL) # CRASHES contains(NULL, b'a') def test_dict_setitem(self): + # Test PyDict_SetItem() setitem = _testlimitedcapi.dict_setitem - dct = {} - setitem(dct, 'a', 5) - self.assertEqual(dct, {'a': 5}) - setitem(dct, '\U0001f40d', 8) - self.assertEqual(dct, {'a': 5, '\U0001f40d': 8}) - - dct2 = DictSubclass() - setitem(dct2, 'a', 5) - self.assertEqual(dct2, {'a': 5}) + for dict_type in DICT_TYPES: + dct = dict_type() + setitem(dct, 'a', 5) + self.assertEqual(dct, {'a': 5}) + setitem(dct, '\U0001f40d', 8) + self.assertEqual(dct, {'a': 5, '\U0001f40d': 8}) self.assertRaises(TypeError, setitem, {}, [], 5) # unhashable - self.assertRaises(SystemError, setitem, UserDict(), 'a', 5) - self.assertRaises(SystemError, setitem, [1], 0, 5) - self.assertRaises(SystemError, setitem, 42, 'a', 5) + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, setitem, test_type(), 'a', 5) # CRASHES setitem({}, NULL, 5) # CRASHES setitem({}, 'a', NULL) # CRASHES setitem(NULL, 'a', 5) def test_dict_setitemstring(self): + # Test PyDict_SetItemString() setitemstring = _testlimitedcapi.dict_setitemstring - dct = {} - setitemstring(dct, b'a', 5) - self.assertEqual(dct, {'a': 5}) - setitemstring(dct, '\U0001f40d'.encode(), 8) - self.assertEqual(dct, {'a': 5, '\U0001f40d': 8}) - - dct2 = DictSubclass() - setitemstring(dct2, b'a', 5) - self.assertEqual(dct2, {'a': 5}) + for dict_type in DICT_TYPES: + dct = dict_type() + setitemstring(dct, b'a', 5) + self.assertEqual(dct, {'a': 5}) + setitemstring(dct, '\U0001f40d'.encode(), 8) + self.assertEqual(dct, {'a': 5, '\U0001f40d': 8}) self.assertRaises(UnicodeDecodeError, setitemstring, {}, INVALID_UTF8, 5) - self.assertRaises(SystemError, setitemstring, UserDict(), b'a', 5) - self.assertRaises(SystemError, setitemstring, 42, b'a', 5) + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, setitemstring, test_type(), b'a', 5) # CRASHES setitemstring({}, NULL, 5) # CRASHES setitemstring({}, b'a', NULL) # CRASHES setitemstring(NULL, b'a', 5) def test_dict_delitem(self): + # Test PyDict_DelItem() delitem = _testlimitedcapi.dict_delitem - dct = {'a': 1, 'c': 2, '\U0001f40d': 3} - delitem(dct, 'a') - self.assertEqual(dct, {'c': 2, '\U0001f40d': 3}) - self.assertRaises(KeyError, delitem, dct, 'b') - delitem(dct, '\U0001f40d') - self.assertEqual(dct, {'c': 2}) - - dct2 = DictSubclass({'a': 1, 'c': 2}) - delitem(dct2, 'a') - self.assertEqual(dct2, {'c': 2}) - self.assertRaises(KeyError, delitem, dct2, 'b') + for dict_type in DICT_TYPES: + dct = dict_type({'a': 1, 'c': 2, '\U0001f40d': 3}) + delitem(dct, 'a') + self.assertEqual(dct, {'c': 2, '\U0001f40d': 3}) + self.assertRaises(KeyError, delitem, dct, 'b') + delitem(dct, '\U0001f40d') + self.assertEqual(dct, {'c': 2}) self.assertRaises(TypeError, delitem, {}, []) # unhashable - self.assertRaises(SystemError, delitem, UserDict({'a': 1}), 'a') - self.assertRaises(SystemError, delitem, [1], 0) - self.assertRaises(SystemError, delitem, 42, 'a') + for test_type in NOT_DICT_TYPES: + self.assertRaises(SystemError, delitem, test_type({'a': 1}), 'a') + for test_type in OTHER_TYPES: + self.assertRaises(SystemError, delitem, test_type(), 'a') # CRASHES delitem({}, NULL) # CRASHES delitem(NULL, 'a') def test_dict_delitemstring(self): + # Test PyDict_DelItemString() delitemstring = _testlimitedcapi.dict_delitemstring - dct = {'a': 1, 'c': 2, '\U0001f40d': 3} - delitemstring(dct, b'a') - self.assertEqual(dct, {'c': 2, '\U0001f40d': 3}) - self.assertRaises(KeyError, delitemstring, dct, b'b') - delitemstring(dct, '\U0001f40d'.encode()) - self.assertEqual(dct, {'c': 2}) - - dct2 = DictSubclass({'a': 1, 'c': 2}) - delitemstring(dct2, b'a') - self.assertEqual(dct2, {'c': 2}) - self.assertRaises(KeyError, delitemstring, dct2, b'b') + for dict_type in DICT_TYPES: + dct = dict_type({'a': 1, 'c': 2, '\U0001f40d': 3}) + delitemstring(dct, b'a') + self.assertEqual(dct, {'c': 2, '\U0001f40d': 3}) + self.assertRaises(KeyError, delitemstring, dct, b'b') + delitemstring(dct, '\U0001f40d'.encode()) + self.assertEqual(dct, {'c': 2}) self.assertRaises(UnicodeDecodeError, delitemstring, {}, INVALID_UTF8) - self.assertRaises(SystemError, delitemstring, UserDict({'a': 1}), b'a') - self.assertRaises(SystemError, delitemstring, 42, b'a') + for test_type in NOT_DICT_TYPES: + self.assertRaises(SystemError, delitemstring, test_type({'a': 1}), b'a') + for test_type in OTHER_TYPES: + self.assertRaises(SystemError, delitemstring, test_type(), b'a') # CRASHES delitemstring({}, NULL) # CRASHES delitemstring(NULL, b'a') def test_dict_setdefault(self): + # Test PyDict_SetDefault() setdefault = _testcapi.dict_setdefault - dct = {} - self.assertEqual(setdefault(dct, 'a', 5), 5) - self.assertEqual(dct, {'a': 5}) - self.assertEqual(setdefault(dct, 'a', 8), 5) - self.assertEqual(dct, {'a': 5}) - - dct2 = DictSubclass() - self.assertEqual(setdefault(dct2, 'a', 5), 5) - self.assertEqual(dct2, {'a': 5}) - self.assertEqual(setdefault(dct2, 'a', 8), 5) - self.assertEqual(dct2, {'a': 5}) + for dict_type in DICT_TYPES: + dct = dict_type() + self.assertEqual(setdefault(dct, 'a', 5), 5) + self.assertEqual(dct, {'a': 5}) + self.assertEqual(setdefault(dct, 'a', 8), 5) + self.assertEqual(dct, {'a': 5}) self.assertRaises(TypeError, setdefault, {}, [], 5) # unhashable - self.assertRaises(SystemError, setdefault, UserDict(), 'a', 5) - self.assertRaises(SystemError, setdefault, [1], 0, 5) - self.assertRaises(SystemError, setdefault, 42, 'a', 5) + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, setdefault, test_type(), 'a', 5) # CRASHES setdefault({}, NULL, 5) # CRASHES setdefault({}, 'a', NULL) # CRASHES setdefault(NULL, 'a', 5) def test_dict_setdefaultref(self): + # Test PyDict_SetDefaultRef() setdefault = _testcapi.dict_setdefaultref - dct = {} - self.assertEqual(setdefault(dct, 'a', 5), 5) - self.assertEqual(dct, {'a': 5}) - self.assertEqual(setdefault(dct, 'a', 8), 5) - self.assertEqual(dct, {'a': 5}) - - dct2 = DictSubclass() - self.assertEqual(setdefault(dct2, 'a', 5), 5) - self.assertEqual(dct2, {'a': 5}) - self.assertEqual(setdefault(dct2, 'a', 8), 5) - self.assertEqual(dct2, {'a': 5}) + for dict_type in DICT_TYPES: + dct = dict_type() + self.assertEqual(setdefault(dct, 'a', 5), 5) + self.assertEqual(dct, {'a': 5}) + self.assertEqual(setdefault(dct, 'a', 8), 5) + self.assertEqual(dct, {'a': 5}) self.assertRaises(TypeError, setdefault, {}, [], 5) # unhashable - self.assertRaises(SystemError, setdefault, UserDict(), 'a', 5) - self.assertRaises(SystemError, setdefault, [1], 0, 5) - self.assertRaises(SystemError, setdefault, 42, 'a', 5) + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, setdefault, test_type(), 'a', 5) # CRASHES setdefault({}, NULL, 5) # CRASHES setdefault({}, 'a', NULL) # CRASHES setdefault(NULL, 'a', 5) def test_mapping_keys_valuesitems(self): + # Test PyDict_Keys(), PyDict_Values() and PyDict_Items() class BadMapping(dict): def keys(self): return None @@ -391,7 +378,8 @@ def values(self): def items(self): return None dict_obj = {'foo': 1, 'bar': 2, 'spam': 3} - for mapping in [dict_obj, DictSubclass(dict_obj), BadMapping(dict_obj)]: + for dict_type in ANYDICT_TYPES + (BadMapping,): + mapping = dict_type(dict_obj) self.assertListEqual(_testlimitedcapi.dict_keys(mapping), list(dict_obj.keys())) self.assertListEqual(_testlimitedcapi.dict_values(mapping), @@ -399,51 +387,57 @@ def items(self): self.assertListEqual(_testlimitedcapi.dict_items(mapping), list(dict_obj.items())) - def test_dict_keys_valuesitems_bad_arg(self): - for mapping in UserDict(), [], object(): + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + mapping = test_type() self.assertRaises(SystemError, _testlimitedcapi.dict_keys, mapping) self.assertRaises(SystemError, _testlimitedcapi.dict_values, mapping) self.assertRaises(SystemError, _testlimitedcapi.dict_items, mapping) def test_dict_next(self): + # Test PyDict_Next() dict_next = _testlimitedcapi.dict_next self.assertIsNone(dict_next({}, 0)) - dct = {'a': 1, 'b': 2, 'c': 3} - pos = 0 - pairs = [] - while True: - res = dict_next(dct, pos) - if res is None: - break - rc, pos, key, value = res - self.assertEqual(rc, 1) - pairs.append((key, value)) - self.assertEqual(pairs, list(dct.items())) + for dict_type in ANYDICT_TYPES: + dct = dict_type({'a': 1, 'b': 2, 'c': 3}) + pos = 0 + pairs = [] + while True: + res = dict_next(dct, pos) + if res is None: + break + rc, pos, key, value = res + self.assertEqual(rc, 1) + pairs.append((key, value)) + self.assertEqual(pairs, list(dct.items())) + + for test_type in NOT_ANYDICT_TYPES + OTHER_TYPES: + dct = test_type() + pos = 0 + self.assertEqual(dict_next(dct, pos), None) # CRASHES dict_next(NULL, 0) def test_dict_update(self): # Test PyDict_Update() update = _testlimitedcapi.dict_update - for cls1 in dict, DictSubclass: - for cls2 in dict, DictSubclass, UserDict: + for cls1 in DICT_TYPES: + for cls2 in ANYDICT_TYPES + MAPPING_TYPES: dct = cls1({'a': 1, 'b': 2}) update(dct, cls2({'b': 3, 'c': 4})) self.assertEqual(dct, {'a': 1, 'b': 3, 'c': 4}) self.assertRaises(AttributeError, update, {}, []) self.assertRaises(AttributeError, update, {}, 42) - self.assertRaises(SystemError, update, UserDict(), {}) - self.assertRaises(SystemError, update, frozendict(), {}) - self.assertRaises(SystemError, update, 42, {}) + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, update, test_type(), {}) self.assertRaises(SystemError, update, {}, NULL) self.assertRaises(SystemError, update, NULL, {}) def test_dict_merge(self): # Test PyDict_Merge() merge = _testlimitedcapi.dict_merge - for cls1 in dict, DictSubclass: - for cls2 in dict, DictSubclass, UserDict: + for cls1 in DICT_TYPES: + for cls2 in ANYDICT_TYPES + MAPPING_TYPES: dct = cls1({'a': 1, 'b': 2}) merge(dct, cls2({'b': 3, 'c': 4}), 0) self.assertEqual(dct, {'a': 1, 'b': 2, 'c': 4}) @@ -453,16 +447,15 @@ def test_dict_merge(self): self.assertRaises(AttributeError, merge, {}, [], 0) self.assertRaises(AttributeError, merge, {}, 42, 0) - self.assertRaises(SystemError, merge, UserDict(), {}, 0) - self.assertRaises(SystemError, merge, frozendict(), {}, 0) - self.assertRaises(SystemError, merge, 42, {}, 0) + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, merge, test_type(), {}, 0) self.assertRaises(SystemError, merge, {}, NULL, 0) self.assertRaises(SystemError, merge, NULL, {}, 0) def test_dict_mergefromseq2(self): # Test PyDict_MergeFromSeq2() mergefromseq2 = _testlimitedcapi.dict_mergefromseq2 - for cls1 in dict, DictSubclass: + for cls1 in DICT_TYPES: for cls2 in list, iter: dct = cls1({'a': 1, 'b': 2}) mergefromseq2(dct, cls2([('b', 3), ('c', 4)]), 0) @@ -475,8 +468,8 @@ def test_dict_mergefromseq2(self): self.assertRaises(ValueError, mergefromseq2, {}, [(1, 2, 3)], 0) self.assertRaises(TypeError, mergefromseq2, {}, [1], 0) self.assertRaises(TypeError, mergefromseq2, {}, 42, 0) - self.assertRaises(SystemError, mergefromseq2, UserDict(), [], 0) - self.assertRaises(SystemError, mergefromseq2, 42, [], 0) + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + self.assertRaises(SystemError, mergefromseq2, test_type(), [], 0) # CRASHES mergefromseq2({}, NULL, 0) # CRASHES mergefromseq2(NULL, {}, 0) @@ -485,39 +478,47 @@ def test_dict_pop(self): dict_pop = _testcapi.dict_pop dict_pop_null = _testcapi.dict_pop_null - # key present, get removed value - mydict = {"key": "value", "key2": "value2"} - self.assertEqual(dict_pop(mydict, "key"), (1, "value")) - self.assertEqual(mydict, {"key2": "value2"}) - self.assertEqual(dict_pop(mydict, "key2"), (1, "value2")) - self.assertEqual(mydict, {}) - - # key present, ignore removed value - mydict = {"key": "value", "key2": "value2"} - self.assertEqual(dict_pop_null(mydict, "key"), 1) - self.assertEqual(mydict, {"key2": "value2"}) - self.assertEqual(dict_pop_null(mydict, "key2"), 1) - self.assertEqual(mydict, {}) - - # key missing, expect removed value; empty dict has a fast path - self.assertEqual(dict_pop({}, "key"), (0, NULL)) - self.assertEqual(dict_pop({"a": 1}, "key"), (0, NULL)) - - # key missing, ignored removed value; empty dict has a fast path - self.assertEqual(dict_pop_null({}, "key"), 0) - self.assertEqual(dict_pop_null({"a": 1}, "key"), 0) - - # dict error - not_dict = UserDict({1: 2}) - self.assertRaises(SystemError, dict_pop, not_dict, "key") - self.assertRaises(SystemError, dict_pop_null, not_dict, "key") - - # key error; don't hash key if dict is empty - not_hashable_key = ["list"] - self.assertEqual(dict_pop({}, not_hashable_key), (0, NULL)) - with self.assertRaises(TypeError): - dict_pop({'key': 1}, not_hashable_key) - dict_pop({}, NULL) # key is not checked if dict is empty + for dict_type in DICT_TYPES: + # key present, get removed value + mydict = dict_type({"key": "value", "key2": "value2"}) + self.assertEqual(dict_pop(mydict, "key"), (1, "value")) + self.assertEqual(mydict, {"key2": "value2"}) + self.assertEqual(dict_pop(mydict, "key2"), (1, "value2")) + self.assertEqual(mydict, {}) + + # key present, ignore removed value + mydict = dict_type({"key": "value", "key2": "value2"}) + self.assertEqual(dict_pop_null(mydict, "key"), 1) + self.assertEqual(mydict, {"key2": "value2"}) + self.assertEqual(dict_pop_null(mydict, "key2"), 1) + self.assertEqual(mydict, {}) + + # key missing, expect removed value; empty dict has a fast path + mydict = dict_type() + self.assertEqual(dict_pop(mydict, "key"), (0, NULL)) + mydict = dict_type({"a": 1}) + self.assertEqual(dict_pop(mydict, "key"), (0, NULL)) + + # key missing, ignored removed value; empty dict has a fast path + mydict = dict_type() + self.assertEqual(dict_pop_null(mydict, "key"), 0) + mydict = dict_type({"a": 1}) + self.assertEqual(dict_pop_null(mydict, "key"), 0) + + # key error; don't hash key if dict is empty + not_hashable_key = ["list"] + mydict = dict_type() + self.assertEqual(dict_pop(mydict, not_hashable_key), (0, NULL)) + dict_pop(mydict, NULL) # key is not checked if dict is empty + mydict = dict_type({'key': 1}) + with self.assertRaises(TypeError): + dict_pop(mydict, not_hashable_key) + + # wrong dict type + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + not_dict = test_type() + self.assertRaises(SystemError, dict_pop, not_dict, "key") + self.assertRaises(SystemError, dict_pop_null, not_dict, "key") # CRASHES dict_pop(NULL, "key") # CRASHES dict_pop({"a": 1}, NULL) @@ -527,41 +528,46 @@ def test_dict_popstring(self): dict_popstring = _testcapi.dict_popstring dict_popstring_null = _testcapi.dict_popstring_null - # key present, get removed value - mydict = {"key": "value", "key2": "value2"} - self.assertEqual(dict_popstring(mydict, "key"), (1, "value")) - self.assertEqual(mydict, {"key2": "value2"}) - self.assertEqual(dict_popstring(mydict, "key2"), (1, "value2")) - self.assertEqual(mydict, {}) - - # key present, ignore removed value - mydict = {"key": "value", "key2": "value2"} - self.assertEqual(dict_popstring_null(mydict, "key"), 1) - self.assertEqual(mydict, {"key2": "value2"}) - self.assertEqual(dict_popstring_null(mydict, "key2"), 1) - self.assertEqual(mydict, {}) - - # key missing; empty dict has a fast path - self.assertEqual(dict_popstring({}, "key"), (0, NULL)) - self.assertEqual(dict_popstring_null({}, "key"), 0) - self.assertEqual(dict_popstring({"a": 1}, "key"), (0, NULL)) - self.assertEqual(dict_popstring_null({"a": 1}, "key"), 0) - - # non-ASCII key - non_ascii = '\U0001f40d' - dct = {'\U0001f40d': 123} - self.assertEqual(dict_popstring(dct, '\U0001f40d'.encode()), (1, 123)) - dct = {'\U0001f40d': 123} - self.assertEqual(dict_popstring_null(dct, '\U0001f40d'.encode()), 1) - - # dict error - not_dict = UserDict({1: 2}) - self.assertRaises(SystemError, dict_popstring, not_dict, "key") - self.assertRaises(SystemError, dict_popstring_null, not_dict, "key") - - # key error - self.assertRaises(UnicodeDecodeError, dict_popstring, {1: 2}, INVALID_UTF8) - self.assertRaises(UnicodeDecodeError, dict_popstring_null, {1: 2}, INVALID_UTF8) + for dict_type in DICT_TYPES: + # key present, get removed value + mydict = dict_type({"key": "value", "key2": "value2"}) + self.assertEqual(dict_popstring(mydict, "key"), (1, "value")) + self.assertEqual(mydict, {"key2": "value2"}) + self.assertEqual(dict_popstring(mydict, "key2"), (1, "value2")) + self.assertEqual(mydict, {}) + + # key present, ignore removed value + mydict = dict_type({"key": "value", "key2": "value2"}) + self.assertEqual(dict_popstring_null(mydict, "key"), 1) + self.assertEqual(mydict, {"key2": "value2"}) + self.assertEqual(dict_popstring_null(mydict, "key2"), 1) + self.assertEqual(mydict, {}) + + # key missing; empty dict has a fast path + mydict = dict_type() + self.assertEqual(dict_popstring(mydict, "key"), (0, NULL)) + self.assertEqual(dict_popstring_null(mydict, "key"), 0) + mydict = dict_type({"a": 1}) + self.assertEqual(dict_popstring(mydict, "key"), (0, NULL)) + self.assertEqual(dict_popstring_null(mydict, "key"), 0) + + # non-ASCII key + non_ascii = '\U0001f40d' + dct = dict_type({'\U0001f40d': 123}) + self.assertEqual(dict_popstring(dct, '\U0001f40d'.encode()), (1, 123)) + dct = dict_type({'\U0001f40d': 123}) + self.assertEqual(dict_popstring_null(dct, '\U0001f40d'.encode()), 1) + + # key error + mydict = dict_type({1: 2}) + self.assertRaises(UnicodeDecodeError, dict_popstring, mydict, INVALID_UTF8) + self.assertRaises(UnicodeDecodeError, dict_popstring_null, mydict, INVALID_UTF8) + + # wrong dict type + for test_type in NOT_DICT_TYPES + OTHER_TYPES: + not_dict = test_type() + self.assertRaises(SystemError, dict_popstring, not_dict, "key") + self.assertRaises(SystemError, dict_popstring_null, not_dict, "key") # CRASHES dict_popstring(NULL, "key") # CRASHES dict_popstring({}, NULL) diff --git a/Modules/_testlimitedcapi/dict.c b/Modules/_testlimitedcapi/dict.c index ec32712eef6434..b9acda00897ad4 100644 --- a/Modules/_testlimitedcapi/dict.c +++ b/Modules/_testlimitedcapi/dict.c @@ -32,6 +32,7 @@ dictproxy_new(PyObject *self, PyObject *obj) static PyObject * dict_clear(PyObject *self, PyObject *obj) { + NULLABLE(obj); PyDict_Clear(obj); Py_RETURN_NONE; } From fbd3b25e00fdfd5e0a30c64848624dc471987c30 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 20:08:28 +0100 Subject: [PATCH 107/110] gh-141510: Change dict_unhashable_type() error message for frozendict (#145085) --- Lib/test/test_dict.py | 29 +++++++++++++++++++++++++++++ Objects/dictobject.c | 37 +++++++++++++++++++++---------------- 2 files changed, 50 insertions(+), 16 deletions(-) diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 9cfaa4a86fa9fd..14b501360d0b8e 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -1871,6 +1871,35 @@ def test_pickle_iter(self): self.assertEqual(list(unpickled), expected) self.assertEqual(list(it), expected) + def test_unhashable_key(self): + d = frozendict(a=1) + key = [1, 2, 3] + + def check_unhashable_key(): + msg = "cannot use 'list' as a frozendict key (unhashable type: 'list')" + return self.assertRaisesRegex(TypeError, re.escape(msg)) + + with check_unhashable_key(): + key in d + with check_unhashable_key(): + d[key] + with check_unhashable_key(): + d.get(key) + + # Only TypeError exception is overridden, + # other exceptions are left unchanged. + class HashError: + def __hash__(self): + raise KeyError('error') + + key2 = HashError() + with self.assertRaises(KeyError): + key2 in d + with self.assertRaises(KeyError): + d[key2] + with self.assertRaises(KeyError): + d.get(key2) + if __name__ == "__main__": unittest.main() diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 0a8ba74c2287c1..6c802ca569d48c 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2377,7 +2377,7 @@ PyDict_GetItem(PyObject *op, PyObject *key) } static void -dict_unhashable_type(PyObject *key) +dict_unhashable_type(PyObject *op, PyObject *key) { PyObject *exc = PyErr_GetRaisedException(); assert(exc != NULL); @@ -2386,9 +2386,14 @@ dict_unhashable_type(PyObject *key) return; } - PyErr_Format(PyExc_TypeError, - "cannot use '%T' as a dict key (%S)", - key, exc); + const char *errmsg; + if (PyObject_IsInstance(op, (PyObject*)&PyFrozenDict_Type)) { + errmsg = "cannot use '%T' as a frozendict key (%S)"; + } + else { + errmsg = "cannot use '%T' as a dict key (%S)"; + } + PyErr_Format(PyExc_TypeError, errmsg, key, exc); Py_DECREF(exc); } @@ -2401,7 +2406,7 @@ _PyDict_LookupIndexAndValue(PyDictObject *mp, PyObject *key, PyObject **value) Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type((PyObject*)mp, key); return -1; } @@ -2505,7 +2510,7 @@ PyDict_GetItemRef(PyObject *op, PyObject *key, PyObject **result) Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type(op, key); *result = NULL; return -1; } @@ -2521,7 +2526,7 @@ _PyDict_GetItemRef_Unicode_LockHeld(PyDictObject *op, PyObject *key, PyObject ** Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type((PyObject*)op, key); *result = NULL; return -1; } @@ -2559,7 +2564,7 @@ PyDict_GetItemWithError(PyObject *op, PyObject *key) } hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type(op, key); return NULL; } @@ -2705,7 +2710,7 @@ setitem_take2_lock_held(PyDictObject *mp, PyObject *key, PyObject *value) Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type((PyObject*)mp, key); Py_DECREF(key); Py_DECREF(value); return -1; @@ -2864,7 +2869,7 @@ PyDict_DelItem(PyObject *op, PyObject *key) assert(key); Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type(op, key); return -1; } @@ -3183,7 +3188,7 @@ pop_lock_held(PyObject *op, PyObject *key, PyObject **result) Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type(op, key); if (result) { *result = NULL; } @@ -3596,7 +3601,7 @@ dict_subscript(PyObject *self, PyObject *key) hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type(self, key); return NULL; } ix = _Py_dict_lookup_threadsafe(mp, key, hash, &value); @@ -4515,7 +4520,7 @@ dict_get_impl(PyDictObject *self, PyObject *key, PyObject *default_value) hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type((PyObject*)self, key); return NULL; } ix = _Py_dict_lookup_threadsafe(self, key, hash, &val); @@ -4547,7 +4552,7 @@ dict_setdefault_ref_lock_held(PyObject *d, PyObject *key, PyObject *default_valu hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type(d, key); if (result) { *result = NULL; } @@ -4990,7 +4995,7 @@ dict_contains(PyObject *op, PyObject *key) { Py_hash_t hash = _PyObject_HashFast(key); if (hash == -1) { - dict_unhashable_type(key); + dict_unhashable_type(op, key); return -1; } @@ -7066,7 +7071,7 @@ _PyDict_SetItem_LockHeld(PyDictObject *dict, PyObject *name, PyObject *value) if (value == NULL) { Py_hash_t hash = _PyObject_HashFast(name); if (hash == -1) { - dict_unhashable_type(name); + dict_unhashable_type((PyObject*)dict, name); return -1; } return _PyDict_DelItem_KnownHash_LockHeld((PyObject *)dict, name, hash); From 2be2dd5fc219a5c252d72f351c85db14314bfca5 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 21 Feb 2026 22:06:59 +0100 Subject: [PATCH 108/110] gh-145076: Check globals type in __lazy_import__() (#145086) --- Lib/test/test_import/test_lazy_imports.py | 2 ++ Python/bltinmodule.c | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/Lib/test/test_import/test_lazy_imports.py b/Lib/test/test_import/test_lazy_imports.py index dc185c070acc62..39d37f68e0b47b 100644 --- a/Lib/test/test_import/test_lazy_imports.py +++ b/Lib/test/test_import/test_lazy_imports.py @@ -401,6 +401,8 @@ def test_dunder_lazy_import_invalid_arguments(self): with self.assertRaises(ValueError): __lazy_import__("sys", level=-1) + with self.assertRaises(TypeError): + __lazy_import__("sys", globals=1) def test_dunder_lazy_import_builtins(self): """__lazy_import__ should use module's __builtins__ for __import__.""" diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 493a6e0413d8eb..301125051f3b0e 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -318,6 +318,12 @@ builtin___lazy_import___impl(PyObject *module, PyObject *name, locals = globals; } + if (!PyDict_Check(globals)) { + PyErr_Format(PyExc_TypeError, + "expect dict for globals, got %T", globals); + return NULL; + } + if (PyDict_GetItemRef(globals, &_Py_ID(__builtins__), &builtins) < 0) { return NULL; } From faea32b729e132172d39d54517822e772ad0017a Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Sun, 22 Feb 2026 19:01:27 +1100 Subject: [PATCH 109/110] gh-145092: Fix compiler warning for memchr() and wcschr() returning const pointer (GH-145093) --- Objects/stringlib/fastsearch.h | 4 ++-- Python/preconfig.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Objects/stringlib/fastsearch.h b/Objects/stringlib/fastsearch.h index b447865c986bef..26bb0555ca9b6c 100644 --- a/Objects/stringlib/fastsearch.h +++ b/Objects/stringlib/fastsearch.h @@ -69,8 +69,8 @@ STRINGLIB(find_char)(const STRINGLIB_CHAR* s, Py_ssize_t n, STRINGLIB_CHAR ch) and UCS4 representations. */ if (needle != 0) { do { - void *candidate = memchr(p, needle, - (e - p) * sizeof(STRINGLIB_CHAR)); + const void *candidate = memchr(p, needle, + (e - p) * sizeof(STRINGLIB_CHAR)); if (candidate == NULL) return -1; s1 = p; diff --git a/Python/preconfig.c b/Python/preconfig.c index e4cd10d9e3d40d..0fdc0a87317712 100644 --- a/Python/preconfig.c +++ b/Python/preconfig.c @@ -584,7 +584,7 @@ _Py_get_xoption(const PyWideStringList *xoptions, const wchar_t *name) for (Py_ssize_t i=0; i < xoptions->length; i++) { const wchar_t *option = xoptions->items[i]; size_t len; - wchar_t *sep = wcschr(option, L'='); + const wchar_t *sep = wcschr(option, L'='); if (sep != NULL) { len = (sep - option); } @@ -615,7 +615,7 @@ preconfig_init_utf8_mode(PyPreConfig *config, const _PyPreCmdline *cmdline) const wchar_t *xopt; xopt = _Py_get_xoption(&cmdline->xoptions, L"utf8"); if (xopt) { - wchar_t *sep = wcschr(xopt, L'='); + const wchar_t *sep = wcschr(xopt, L'='); if (sep) { xopt = sep + 1; if (wcscmp(xopt, L"1") == 0) { From 5944a539b91cc6bd140c64a3530d08015a4f8c30 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Sun, 22 Feb 2026 12:02:15 +0100 Subject: [PATCH 110/110] Fix warnings on main (GH-145104) --- Modules/unicodedata.c | 2 +- Python/optimizer.c | 4 +++- Python/optimizer_bytecodes.c | 12 ++++++++---- Python/optimizer_cases.c.h | 12 ++++++++---- 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index f20726a937ce38..27bdd19c409471 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -1493,7 +1493,7 @@ _getcode(const char* name, int namelen, Py_UCS4* code) } if (i < (int)Py_ARRAY_LENGTH(derived_name_prefixes)) { - Py_UCS4 v = parse_hex_code(name + prefixlen, namelen - prefixlen); + Py_UCS4 v = parse_hex_code(name + prefixlen, namelen - (int)prefixlen); if (find_prefix_id(v) != i) { return 0; } diff --git a/Python/optimizer.c b/Python/optimizer.c index f075e28d71e0f8..6a575c8573724a 100644 --- a/Python/optimizer.c +++ b/Python/optimizer.c @@ -40,6 +40,7 @@ #define _PyExecutorObject_CAST(op) ((_PyExecutorObject *)(op)) +#ifndef Py_GIL_DISABLED static bool has_space_for_executor(PyCodeObject *code, _Py_CODEUNIT *instr) { @@ -110,6 +111,7 @@ insert_executor(PyCodeObject *code, _Py_CODEUNIT *instr, int index, _PyExecutorO instr->op.code = ENTER_EXECUTOR; instr->op.arg = index; } +#endif // Py_GIL_DISABLED static _PyExecutorObject * make_executor_from_uops(_PyThreadStateImpl *tstate, _PyUOpInstruction *buffer, int length, const _PyBloomFilter *dependencies); @@ -128,7 +130,6 @@ _PyOptimizer_Optimize( _PyInterpreterFrame *frame, PyThreadState *tstate) { _PyThreadStateImpl *_tstate = (_PyThreadStateImpl *)tstate; - int chain_depth = _tstate->jit_tracer_state->initial_state.chain_depth; PyInterpreterState *interp = _PyInterpreterState_GET(); if (!interp->jit) { // gh-140936: It is possible that interp->jit will become false during @@ -152,6 +153,7 @@ _PyOptimizer_Optimize( // make progress in order to avoid infinite loops or excessively-long // side-exit chains. We can only insert the executor into the bytecode if // this is true, since a deopt won't infinitely re-enter the executor: + int chain_depth = _tstate->jit_tracer_state->initial_state.chain_depth; chain_depth %= MAX_CHAIN_DEPTH; bool progress_needed = chain_depth == 0; PyCodeObject *code = (PyCodeObject *)_tstate->jit_tracer_state->initial_state.code; diff --git a/Python/optimizer_bytecodes.c b/Python/optimizer_bytecodes.c index 228bd51a28bb69..4e4aec2f37e29b 100644 --- a/Python/optimizer_bytecodes.c +++ b/Python/optimizer_bytecodes.c @@ -1641,7 +1641,8 @@ dummy_func(void) { } op(_GUARD_IP__PUSH_FRAME, (ip/4 --)) { - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + (void)ip; + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); // TO DO // Normal function calls to known functions // do not need an IP guard. @@ -1659,24 +1660,27 @@ dummy_func(void) { } op(_GUARD_IP_YIELD_VALUE, (ip/4 --)) { + (void)ip; if (ctx->frame->caller) { REPLACE_OP(this_instr, _NOP, 0, 0); } - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); } op(_GUARD_IP_RETURN_VALUE, (ip/4 --)) { + (void)ip; if (ctx->frame->caller) { REPLACE_OP(this_instr, _NOP, 0, 0); } - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); } op(_GUARD_IP_RETURN_GENERATOR, (ip/4 --)) { + (void)ip; if (ctx->frame->caller) { REPLACE_OP(this_instr, _NOP, 0, 0); } - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); } diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index a93e85329297cd..286fe014b65f0e 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -4159,34 +4159,38 @@ case _GUARD_IP__PUSH_FRAME: { PyObject *ip = (PyObject *)this_instr->operand0; - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + (void)ip; + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); break; } case _GUARD_IP_YIELD_VALUE: { PyObject *ip = (PyObject *)this_instr->operand0; + (void)ip; if (ctx->frame->caller) { REPLACE_OP(this_instr, _NOP, 0, 0); } - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); break; } case _GUARD_IP_RETURN_VALUE: { PyObject *ip = (PyObject *)this_instr->operand0; + (void)ip; if (ctx->frame->caller) { REPLACE_OP(this_instr, _NOP, 0, 0); } - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); break; } case _GUARD_IP_RETURN_GENERATOR: { PyObject *ip = (PyObject *)this_instr->operand0; + (void)ip; if (ctx->frame->caller) { REPLACE_OP(this_instr, _NOP, 0, 0); } - stack_pointer = sym_set_stack_depth(this_instr->operand1, stack_pointer); + stack_pointer = sym_set_stack_depth((int)this_instr->operand1, stack_pointer); break; }